Add Network Modeling Assignment 1 notes

This commit is contained in:
David Doebel
2026-03-22 15:58:12 +01:00
parent 6551f7a011
commit 5de46cc713
26 changed files with 1469 additions and 0 deletions

Binary file not shown.

View File

@@ -0,0 +1,21 @@
-0.516043609934
-10.638489495673
7.896556078348
-1.540710855877
-16.798136872658
1.749158790732
5.384935150669
-0.776002801558
-2.492773411133
2.518385767148
2.057557124534
-6.313375621762
9.251636338882
-0.913369159152
-13.891454931290
0.849642516591
-0.961079366321
2.104256707346
2.935554314720
0.462402304987
1.717675610382
1 -0.516043609934
2 -10.638489495673
3 7.896556078348
4 -1.540710855877
5 -16.798136872658
6 1.749158790732
7 5.384935150669
8 -0.776002801558
9 -2.492773411133
10 2.518385767148
11 2.057557124534
12 -6.313375621762
13 9.251636338882
14 -0.913369159152
15 -13.891454931290
16 0.849642516591
17 -0.961079366321
18 2.104256707346
19 2.935554314720
20 0.462402304987
21 1.717675610382

View File

@@ -0,0 +1,21 @@
1.000000000000
2.000000000000
3.000000000000
4.000000000000
5.000000000000
6.000000000000
7.000000000000
8.000000000000
9.000000000000
10.000000000000
11.000000000000
12.000000000000
13.000000000000
14.000000000000
15.000000000000
16.000000000000
17.000000000000
18.000000000000
19.000000000000
20.000000000000
21.000000000000
1 1.000000000000
2 2.000000000000
3 3.000000000000
4 4.000000000000
5 5.000000000000
6 6.000000000000
7 7.000000000000
8 8.000000000000
9 9.000000000000
10 10.000000000000
11 11.000000000000
12 12.000000000000
13 13.000000000000
14 14.000000000000
15 15.000000000000
16 16.000000000000
17 17.000000000000
18 18.000000000000
19 19.000000000000
20 20.000000000000
21 21.000000000000

View File

@@ -0,0 +1,253 @@
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"#### General guidance\n",
"\n",
"This serves as a template which will guide you through the implementation of this task. It is advised\n",
"to first read the whole template and get a sense of the overall structure of the code before trying to fill in any of the TODO gaps.\n",
"This is the jupyter notebook version of the template. For the python file version, please refer to the file `template_solution.py`.\n",
"\n",
"First, we import necessary libraries:"
]
},
{
"cell_type": "code",
"metadata": {
"ExecuteTime": {
"end_time": "2026-03-15T18:22:13.169924Z",
"start_time": "2026-03-15T18:22:13.165934Z"
}
},
"source": [
"import numpy as np\n",
"import pandas as pd\n",
"\n",
"# Add any additional imports here (however, the task is solvable without using \n",
"# any additional imports)\n",
"# import ..."
],
"outputs": [],
"execution_count": 30
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
" #### Loading data"
]
},
{
"cell_type": "code",
"metadata": {
"ExecuteTime": {
"end_time": "2026-03-15T18:22:13.190312Z",
"start_time": "2026-03-15T18:22:13.181357Z"
}
},
"source": [
"data = pd.read_csv(\"train.csv\")\n",
"y = data[\"y\"].to_numpy()\n",
"data = data.drop(columns=[\"Id\", \"y\"])\n",
"# print a few data samples\n",
"print(data.head())\n",
"X = data.to_numpy()"
],
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
" x1 x2 x3 x4 x5\n",
"0 0.02 0.05 -0.09 -0.43 -0.08\n",
"1 -0.13 0.11 -0.08 -0.29 -0.03\n",
"2 0.08 0.06 -0.07 -0.41 -0.03\n",
"3 0.02 -0.12 0.01 -0.43 -0.02\n",
"4 -0.14 -0.12 -0.08 -0.02 -0.08\n"
]
}
],
"execution_count": 31
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"#### Transform features"
]
},
{
"cell_type": "code",
"metadata": {
"ExecuteTime": {
"end_time": "2026-03-15T18:22:13.201976Z",
"start_time": "2026-03-15T18:22:13.198370Z"
}
},
"source": [
"\"\"\"\n",
"Transform the 5 input features of matrix X (x_i denoting the i-th component of a given row in X) \n",
"into 21 new features phi(X) in the following manner:\n",
"5 linear features: phi_1(X) = x_1, phi_2(X) = x_2, phi_3(X) = x_3, phi_4(X) = x_4, phi_5(X) = x_5\n",
"5 quadratic features: phi_6(X) = x_1^2, phi_7(X) = x_2^2, phi_8(X) = x_3^2, phi_9(X) = x_4^2, phi_10(X) = x_5^2\n",
"5 exponential features: phi_11(X) = exp(x_1), phi_12(X) = exp(x_2), phi_13(X) = exp(x_3), phi_14(X) = exp(x_4), phi_15(X) = exp(x_5)\n",
"5 cosine features: phi_16(X) = cos(x_1), phi_17(X) = cos(x_2), phi_18(X) = cos(x_3), phi_19(X) = cos(x_4), phi_20(X) = cos(x_5)\n",
"1 constant feature: phi_21(X)=1\n",
"\n",
"Parameters\n",
"----------\n",
"X: matrix of floats, dim = (700,5), inputs with 5 features\n",
"\n",
"Compute\n",
"----------\n",
"X_transformed: matrix of floats: dim = (700,21), transformed input with 21 features\n",
"\"\"\"\n",
"X_transformed = np.zeros((700, 21))\n",
"quadratic_features = np.power(X,2)\n",
"exponential_features = np.exp(X)\n",
"cosine_features = np.cos(X)\n",
"constant_feature = np.ones((X.shape[0],1))\n",
"X_transformed = np.concatenate((X, quadratic_features, exponential_features, cosine_features, constant_feature), axis=1)\n",
"assert X_transformed.shape == (700, 21)"
],
"outputs": [],
"execution_count": 32
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"#### Fit data"
]
},
{
"cell_type": "code",
"metadata": {
"ExecuteTime": {
"end_time": "2026-03-15T18:22:13.625674Z",
"start_time": "2026-03-15T18:22:13.217438Z"
}
},
"source": [
"\"\"\"\n",
"Use the transformed data points X_transformed and fit the logistic regression on this \n",
"transformed data. Finally, compute the weights of the fitted logistic regression. \n",
"\n",
"Parameters\n",
"----------\n",
"X_transformed: array of floats: dim = (700,21), transformed input with 21 features\n",
"y: array of integers \\in {0,1}, dim = (700,), input labels\n",
"\n",
"Compute\n",
"----------\n",
"w: array of floats: dim = (21,), optimal parameters of logistic regression\n",
"\"\"\"\n",
"weights = np.zeros((21,))\n",
"learning_rate = 2 * X.shape[0] / np.linalg.svd(X_transformed, compute_uv=False)[0]**2\n",
"tolerance = 0.001\n",
"sigma = lambda x : 1/(1+np.exp(-x))\n",
"gradient = lambda w, X, y: X.T @ (sigma(X @ w) - y) / X.shape[0]\n",
"update = 1000000\n",
"while np.linalg.norm(update) > tolerance:\n",
" # Select a random batch (SGD)\n",
" selection = np.random.choice(X_transformed.shape[0], 100, replace=False)\n",
" X_random = X_transformed[selection,:]\n",
" update = learning_rate * gradient(weights, X_random, y[selection])\n",
" weights -= update\n",
"\n",
"assert weights.shape == (21,)"
],
"outputs": [],
"execution_count": 33
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2026-03-15T18:22:13.630314Z",
"start_time": "2026-03-15T18:22:13.629075Z"
}
},
"cell_type": "code",
"source": "",
"outputs": [],
"execution_count": null
},
{
"cell_type": "code",
"metadata": {
"ExecuteTime": {
"end_time": "2026-03-15T18:22:13.636358Z",
"start_time": "2026-03-15T18:22:13.633885Z"
}
},
"source": [
"# Save results in the required format\n",
"np.savetxt(\"./results.csv\", weights, fmt=\"%.12f\")"
],
"outputs": [],
"execution_count": 34
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2026-03-15T18:22:13.643898Z",
"start_time": "2026-03-15T18:22:13.641041Z"
}
},
"cell_type": "code",
"source": [
"matrix = np.array([[1,2],[3,4],[5,6],[7,8],[9,10]])\n",
"np.linalg.svd(X_transformed,compute_uv=False)\n",
"matrix[np.random.choice(matrix.shape[0], 1, replace=False), :]"
],
"outputs": [
{
"data": {
"text/plain": [
"array([[1, 2]])"
]
},
"execution_count": 35,
"metadata": {},
"output_type": "execute_result"
}
],
"execution_count": 35
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2026-03-15T18:22:13.707327Z",
"start_time": "2026-03-15T18:22:13.706165Z"
}
},
"cell_type": "code",
"source": "",
"outputs": [],
"execution_count": null
}
],
"metadata": {
"kernelspec": {
"display_name": ".venv",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.10.12"
}
},
"nbformat": 4,
"nbformat_minor": 2
}

View File

@@ -0,0 +1,69 @@
# This serves as a template which will guide you through the implementation of this task. It is advised
# to first read the whole template and get a sense of the overall structure of the code before trying to fill in any of the TODO gaps.
# First, we import necessary libraries:
import numpy as np
import pandas as pd
# Add any additional imports here (however, the task is solvable without using
# any additional imports)
# import ...
def transform_features(X):
"""
This function transforms the 5 input features of matrix X (x_i denoting the i-th component in a given row of X)
into 21 new features phi(X) in the following manner:
5 linear features: phi_1(X) = x_1, phi_2(X) = x_2, phi_3(X) = x_3, phi_4(X) = x_4, phi_5(X) = x_5
5 quadratic features: phi_6(X) = x_1^2, phi_7(X) = x_2^2, phi_8(X) = x_3^2, phi_9(X) = x_4^2, phi_10(X) = x_5^2
5 exponential features: phi_11(X) = exp(x_1), phi_12(X) = exp(x_2), phi_13(X) = exp(x_3), phi_14(X) = exp(x_4), phi_15(X) = exp(x_5)
5 cosine features: phi_16(X) = cos(x_1), phi_17(X) = cos(x_2), phi_18(X) = cos(x_3), phi_19(X) = cos(x_4), phi_20(X) = cos(x_5)
1 constant feature: phi_21(X)=1
Parameters
----------
X: matrix of floats, dim = (700,5), inputs with 5 features
Returns
----------
X_transformed: matrix of floats: dim = (700,21), transformed input with 21 features
"""
X_transformed = np.zeros((700, 21))
# TODO: Enter your code here
assert X_transformed.shape == (700, 21)
return X_transformed
def fit_logistic_regression(X, y):
"""
This function receives training data points, transforms them, and then fits the logistic regression on this
transformed data. Finally, it outputs the weights of the fitted logistic regression.
Parameters
----------
X: matrix of floats, dim = (700,5), inputs with 5 features
y: array of integers \in {0,1}, dim = (700,), input labels
Returns
----------
weights: array of floats: dim = (21,), optimal parameters of logistic regression
"""
weights = np.zeros((21,))
X_transformed = transform_features(X)
# TODO: Enter your code here
assert weights.shape == (21,)
return weights
# Main function. You don't have to change this
if __name__ == "__main__":
# Data loading
data = pd.read_csv("train.csv")
y = data["y"].to_numpy()
data = data.drop(columns=["Id", "y"])
# print a few data samples
print(data.head())
X = data.to_numpy()
# The function retrieving optimal LR parameters
w = fit_logistic_regression(X, y)
# Save results in the required format
np.savetxt("./results.csv", w, fmt="%.12f")

View File

@@ -0,0 +1,701 @@
Id,y,x1,x2,x3,x4,x5
0,0,0.019999999999999907,0.04999999999999993,-0.09000000000000008,-0.43000000000000005,-0.08000000000000007
1,0,-0.13000000000000006,0.10999999999999999,-0.08000000000000007,-0.29000000000000004,-0.030000000000000027
2,0,0.07999999999999996,0.05999999999999994,-0.07000000000000006,-0.41000000000000003,-0.030000000000000027
3,0,0.019999999999999907,-0.12000000000000005,0.009999999999999898,-0.43000000000000005,-0.020000000000000018
4,1,-0.14000000000000007,-0.12000000000000005,-0.08000000000000007,-0.020000000000000018,-0.08000000000000007
5,1,-0.050000000000000044,-0.16000000000000003,0.0,-0.39,-0.07000000000000006
6,0,-0.06000000000000005,-0.020000000000000018,-0.08000000000000007,0.08999999999999997,-0.030000000000000027
7,0,-0.08000000000000007,-0.11000000000000004,0.029999999999999916,-0.36000000000000004,0.019999999999999907
8,1,-0.010000000000000009,-0.06000000000000005,0.09999999999999998,-0.20000000000000007,-0.07000000000000006
9,0,-0.16000000000000003,-0.17000000000000004,0.039999999999999925,-0.41000000000000003,0.019999999999999907
10,1,-0.13000000000000006,-0.17000000000000004,-0.020000000000000018,-0.3500000000000001,-0.030000000000000027
11,1,-0.14000000000000007,-0.19000000000000006,0.029999999999999916,-0.36000000000000004,-0.040000000000000036
12,1,-0.16000000000000003,-0.14000000000000007,0.009999999999999898,-0.21000000000000008,-0.030000000000000027
13,1,0.039999999999999925,-0.16000000000000003,-0.040000000000000036,-0.10000000000000003,-0.030000000000000027
14,0,0.09999999999999998,-0.010000000000000009,-0.11000000000000004,-0.37000000000000005,-0.10000000000000003
15,1,-0.10000000000000003,-0.12000000000000005,-0.040000000000000036,-0.45000000000000007,-0.06000000000000005
16,1,-0.09000000000000008,-0.17000000000000004,-0.06000000000000005,-0.45000000000000007,-0.07000000000000006
17,0,0.019999999999999907,-0.09000000000000008,-0.020000000000000018,-0.45000000000000007,-0.050000000000000044
18,1,-0.06000000000000005,-0.22000000000000003,-0.010000000000000009,-0.3500000000000001,-0.07000000000000006
19,0,0.04999999999999993,0.039999999999999925,-0.010000000000000009,-0.3500000000000001,-0.06000000000000005
20,1,-0.11000000000000004,-0.16000000000000003,-0.06000000000000005,-0.4,-0.06000000000000005
21,0,-0.13000000000000006,-0.12000000000000005,-0.08000000000000007,-0.3400000000000001,-0.050000000000000044
22,0,0.16999999999999993,0.06999999999999995,-0.14000000000000007,-0.26000000000000006,-0.07000000000000006
23,0,-0.13000000000000006,-0.030000000000000027,-0.040000000000000036,-0.43000000000000005,-0.010000000000000009
24,0,-0.10000000000000003,-0.030000000000000027,-0.040000000000000036,-0.41000000000000003,0.019999999999999907
25,0,-0.050000000000000044,-0.050000000000000044,-0.040000000000000036,-0.050000000000000044,-0.020000000000000018
26,0,0.029999999999999916,-0.11000000000000004,-0.030000000000000027,-0.37000000000000005,0.029999999999999916
27,1,0.009999999999999898,-0.09000000000000008,0.039999999999999925,-0.38000000000000006,-0.050000000000000044
28,0,0.06999999999999995,0.10999999999999999,0.009999999999999898,-0.32000000000000006,-0.07000000000000006
29,0,0.24,0.31999999999999995,-0.20000000000000007,-0.17000000000000004,0.0
30,0,-0.030000000000000027,-0.020000000000000018,-0.13000000000000006,-0.4600000000000001,0.009999999999999898
31,0,-0.050000000000000044,-0.050000000000000044,-0.13000000000000006,0.30999999999999994,-0.040000000000000036
32,0,-0.18000000000000005,0.04999999999999993,0.04999999999999993,-0.44000000000000006,-0.030000000000000027
33,0,-0.23000000000000004,-0.010000000000000009,-0.050000000000000044,-0.13000000000000006,-0.050000000000000044
34,0,0.21999999999999997,0.17999999999999994,-0.14000000000000007,-0.30000000000000004,-0.13000000000000006
35,1,0.17999999999999994,0.10999999999999999,-0.09000000000000008,-0.22000000000000003,-0.14000000000000007
36,0,0.15999999999999992,0.04999999999999993,-0.11000000000000004,-0.26000000000000006,-0.020000000000000018
37,0,-0.16000000000000003,-0.11000000000000004,0.009999999999999898,-0.38000000000000006,0.0
38,0,0.029999999999999916,-0.030000000000000027,-0.13000000000000006,-0.12000000000000005,-0.06000000000000005
39,0,0.009999999999999898,-0.030000000000000027,-0.030000000000000027,-0.22000000000000003,-0.030000000000000027
40,0,0.29999999999999993,0.12,-0.17000000000000004,-0.32000000000000006,-0.020000000000000018
41,0,0.29999999999999993,0.17999999999999994,-0.050000000000000044,-0.16000000000000003,-0.010000000000000009
42,0,0.22999999999999998,0.009999999999999898,-0.15000000000000008,-0.28,0.029999999999999916
43,0,-0.15000000000000008,-0.020000000000000018,-0.17000000000000004,-0.36000000000000004,-0.050000000000000044
44,1,-0.19000000000000006,-0.20000000000000007,0.0,-0.38000000000000006,-0.08000000000000007
45,1,-0.030000000000000027,-0.25000000000000006,0.019999999999999907,-0.17000000000000004,-0.09000000000000008
46,1,0.17999999999999994,0.18999999999999995,0.019999999999999907,-0.09000000000000008,-0.16000000000000003
47,1,-0.07000000000000006,-0.17000000000000004,-0.040000000000000036,-0.2700000000000001,-0.08000000000000007
48,0,0.17999999999999994,0.009999999999999898,-0.050000000000000044,-0.28,0.019999999999999907
49,1,-0.14000000000000007,-0.32000000000000006,-0.22000000000000003,-0.4,-0.06000000000000005
50,1,-0.08000000000000007,-0.17000000000000004,-0.050000000000000044,-0.3500000000000001,-0.040000000000000036
51,0,-0.15000000000000008,-0.030000000000000027,-0.11000000000000004,-0.42000000000000004,-0.040000000000000036
52,0,-0.11000000000000004,-0.10000000000000003,-0.010000000000000009,-0.13000000000000006,-0.010000000000000009
53,1,0.0,-0.08000000000000007,0.019999999999999907,-0.29000000000000004,-0.050000000000000044
54,1,0.07999999999999996,0.029999999999999916,0.0,-0.33000000000000007,-0.10000000000000003
55,1,0.07999999999999996,0.0,0.0,-0.3400000000000001,-0.11000000000000004
56,0,0.09999999999999998,0.05999999999999994,-0.07000000000000006,-0.4600000000000001,-0.07000000000000006
57,0,-0.030000000000000027,-0.12000000000000005,-0.050000000000000044,-0.23000000000000004,-0.010000000000000009
58,0,-0.18000000000000005,-0.07000000000000006,-0.030000000000000027,-0.37000000000000005,-0.06000000000000005
59,0,-0.11000000000000004,0.019999999999999907,-0.08000000000000007,0.10999999999999999,-0.040000000000000036
60,1,-0.13000000000000006,-0.21000000000000008,-0.040000000000000036,-0.040000000000000036,-0.020000000000000018
61,1,-0.19000000000000006,-0.24000000000000005,-0.09000000000000008,-0.38000000000000006,-0.11000000000000004
62,1,-0.08000000000000007,-0.13000000000000006,-0.050000000000000044,-0.24000000000000005,-0.040000000000000036
63,0,-0.15000000000000008,-0.10000000000000003,0.029999999999999916,-0.37000000000000005,0.019999999999999907
64,0,-0.020000000000000018,-0.08000000000000007,-0.12000000000000005,-0.48000000000000004,-0.040000000000000036
65,0,0.039999999999999925,-0.09000000000000008,-0.11000000000000004,-0.3400000000000001,-0.050000000000000044
66,0,-0.22000000000000003,-0.10000000000000003,0.009999999999999898,-0.4700000000000001,-0.010000000000000009
67,0,-0.08000000000000007,-0.020000000000000018,-0.010000000000000009,-0.44000000000000006,-0.050000000000000044
68,1,-0.09000000000000008,-0.17000000000000004,0.029999999999999916,-0.41000000000000003,0.009999999999999898
69,0,0.25,0.2899999999999999,-0.09000000000000008,-0.19000000000000006,0.0
70,0,-0.08000000000000007,-0.14000000000000007,-0.040000000000000036,-0.32000000000000006,0.0
71,0,0.019999999999999907,-0.050000000000000044,-0.07000000000000006,-0.29000000000000004,0.009999999999999898
72,0,0.039999999999999925,-0.06000000000000005,-0.12000000000000005,0.04999999999999993,-0.09000000000000008
73,0,-0.11000000000000004,-0.010000000000000009,-0.020000000000000018,0.09999999999999998,-0.09000000000000008
74,1,-0.10000000000000003,-0.07000000000000006,0.019999999999999907,-0.33000000000000007,-0.12000000000000005
75,1,-0.07000000000000006,-0.14000000000000007,0.0,-0.010000000000000009,-0.14000000000000007
76,0,0.06999999999999995,-0.030000000000000027,-0.020000000000000018,-0.16000000000000003,-0.06000000000000005
77,0,-0.06000000000000005,-0.020000000000000018,-0.030000000000000027,-0.020000000000000018,-0.050000000000000044
78,1,0.06999999999999995,0.009999999999999898,0.029999999999999916,-0.16000000000000003,-0.18000000000000005
79,0,-0.13000000000000006,0.009999999999999898,-0.050000000000000044,-0.07000000000000006,-0.08000000000000007
80,0,-0.08000000000000007,-0.11000000000000004,-0.010000000000000009,-0.06000000000000005,-0.030000000000000027
81,0,-0.06000000000000005,0.019999999999999907,-0.10000000000000003,-0.10000000000000003,-0.10000000000000003
82,0,-0.050000000000000044,-0.020000000000000018,0.039999999999999925,0.009999999999999898,0.019999999999999907
83,1,-0.020000000000000018,-0.040000000000000036,0.06999999999999995,-0.19000000000000006,-0.10000000000000003
84,0,0.10999999999999999,0.05999999999999994,-0.16000000000000003,-0.13000000000000006,-0.06000000000000005
85,0,-0.28,0.019999999999999907,-0.3500000000000001,-0.43000000000000005,-0.050000000000000044
86,0,-0.17000000000000004,-0.12000000000000005,-0.21000000000000008,-0.4,-0.010000000000000009
87,0,0.24,0.06999999999999995,-0.11000000000000004,-0.2700000000000001,-0.050000000000000044
88,1,-0.06000000000000005,-0.040000000000000036,0.029999999999999916,-0.26000000000000006,-0.050000000000000044
89,0,-0.14000000000000007,-0.09000000000000008,-0.040000000000000036,-0.15000000000000008,-0.030000000000000027
90,1,-0.20000000000000007,-0.10000000000000003,0.05999999999999994,-0.10000000000000003,-0.050000000000000044
91,1,-0.10000000000000003,-0.18000000000000005,-0.09000000000000008,-0.3400000000000001,-0.040000000000000036
92,1,-0.16000000000000003,-0.11000000000000004,0.0,-0.36000000000000004,-0.11000000000000004
93,1,-0.23000000000000004,-0.13000000000000006,0.07999999999999996,-0.4,-0.040000000000000036
94,0,-0.07000000000000006,0.04999999999999993,-0.07000000000000006,-0.31000000000000005,-0.06000000000000005
95,1,-0.18000000000000005,-0.06000000000000005,-0.19000000000000006,-0.30000000000000004,-0.13000000000000006
96,0,0.1299999999999999,0.1399999999999999,-0.040000000000000036,-0.20000000000000007,-0.10000000000000003
97,0,0.04999999999999993,0.15999999999999992,-0.17000000000000004,-0.23000000000000004,0.019999999999999907
98,0,0.21999999999999997,0.18999999999999995,-0.16000000000000003,-0.28,-0.030000000000000027
99,1,0.07999999999999996,0.009999999999999898,0.009999999999999898,-0.29000000000000004,-0.19000000000000006
100,0,-0.20000000000000007,0.019999999999999907,-0.21000000000000008,-0.32000000000000006,-0.12000000000000005
101,0,-0.20000000000000007,-0.13000000000000006,-0.17000000000000004,-0.44000000000000006,-0.07000000000000006
102,1,-0.09000000000000008,-0.040000000000000036,-0.06000000000000005,-0.16000000000000003,-0.15000000000000008
103,1,-0.08000000000000007,-0.33000000000000007,0.009999999999999898,-0.29000000000000004,-0.08000000000000007
104,1,-0.09000000000000008,-0.17000000000000004,-0.010000000000000009,-0.32000000000000006,-0.09000000000000008
105,0,-0.12000000000000005,0.029999999999999916,-0.20000000000000007,-0.4,-0.040000000000000036
106,1,-0.14000000000000007,-0.21000000000000008,-0.020000000000000018,-0.38000000000000006,0.0
107,0,-0.26000000000000006,0.0,-0.010000000000000009,-0.38000000000000006,-0.06000000000000005
108,0,0.08999999999999997,0.08999999999999997,-0.040000000000000036,-0.4,0.039999999999999925
109,0,-0.29000000000000004,0.039999999999999925,-0.08000000000000007,-0.33000000000000007,-0.010000000000000009
110,1,-0.11000000000000004,-0.15000000000000008,-0.06000000000000005,-0.10000000000000003,-0.06000000000000005
111,0,-0.12000000000000005,-0.040000000000000036,-0.15000000000000008,-0.33000000000000007,-0.050000000000000044
112,1,-0.26000000000000006,-0.24000000000000005,0.009999999999999898,-0.37000000000000005,-0.08000000000000007
113,1,-0.16000000000000003,-0.12000000000000005,-0.07000000000000006,-0.09000000000000008,-0.07000000000000006
114,0,-0.11000000000000004,-0.050000000000000044,-0.06000000000000005,-0.4,-0.040000000000000036
115,0,-0.11000000000000004,-0.11000000000000004,-0.06000000000000005,0.039999999999999925,-0.07000000000000006
116,1,0.029999999999999916,0.10999999999999999,0.0,-0.15000000000000008,-0.09000000000000008
117,1,-0.09000000000000008,-0.09000000000000008,0.009999999999999898,-0.08000000000000007,-0.08000000000000007
118,1,-0.21000000000000008,-0.040000000000000036,-0.08000000000000007,-0.3400000000000001,-0.30000000000000004
119,1,-0.09000000000000008,-0.15000000000000008,0.09999999999999998,-0.30000000000000004,-0.030000000000000027
120,0,0.07999999999999996,0.05999999999999994,-0.2700000000000001,-0.28,-0.050000000000000044
121,0,-0.010000000000000009,-0.030000000000000027,-0.010000000000000009,-0.10000000000000003,-0.040000000000000036
122,0,0.10999999999999999,0.05999999999999994,-0.020000000000000018,-0.13000000000000006,-0.030000000000000027
123,0,0.029999999999999916,0.039999999999999925,-0.07000000000000006,-0.13000000000000006,-0.030000000000000027
124,0,-0.020000000000000018,-0.010000000000000009,-0.22000000000000003,-0.25000000000000006,-0.020000000000000018
125,0,0.019999999999999907,0.05999999999999994,-0.020000000000000018,-0.39,-0.08000000000000007
126,1,-0.16000000000000003,-0.18000000000000005,-0.030000000000000027,-0.4,-0.040000000000000036
127,0,-0.10000000000000003,0.1499999999999999,-0.08000000000000007,-0.030000000000000027,-0.030000000000000027
128,1,-0.030000000000000027,-0.050000000000000044,-0.010000000000000009,-0.51,-0.11000000000000004
129,1,-0.15000000000000008,-0.16000000000000003,0.029999999999999916,-0.09000000000000008,-0.08000000000000007
130,1,-0.06000000000000005,0.07999999999999996,0.009999999999999898,-0.41000000000000003,-0.09000000000000008
131,0,-0.16000000000000003,0.05999999999999994,-0.040000000000000036,-0.25000000000000006,-0.07000000000000006
132,1,0.039999999999999925,-0.06000000000000005,0.009999999999999898,-0.31000000000000005,-0.15000000000000008
133,0,0.05999999999999994,-0.050000000000000044,-0.040000000000000036,-0.14000000000000007,-0.020000000000000018
134,0,-0.21000000000000008,0.019999999999999907,-0.020000000000000018,-0.4,-0.050000000000000044
135,0,-0.22000000000000003,-0.020000000000000018,-0.06000000000000005,-0.3500000000000001,-0.020000000000000018
136,0,-0.17000000000000004,0.019999999999999907,-0.06000000000000005,-0.30000000000000004,-0.020000000000000018
137,0,-0.08000000000000007,-0.020000000000000018,-0.06000000000000005,-0.39,-0.030000000000000027
138,1,-0.2700000000000001,-0.24000000000000005,0.019999999999999907,-0.41000000000000003,-0.06000000000000005
139,1,-0.09000000000000008,-0.24000000000000005,0.07999999999999996,-0.26000000000000006,0.06999999999999995
140,1,-0.17000000000000004,-0.09000000000000008,0.0,-0.4,-0.09000000000000008
141,0,0.019999999999999907,-0.08000000000000007,-0.050000000000000044,-0.09000000000000008,-0.010000000000000009
142,1,0.07999999999999996,0.039999999999999925,0.009999999999999898,-0.37000000000000005,-0.13000000000000006
143,1,-0.19000000000000006,-0.10000000000000003,-0.16000000000000003,-0.29000000000000004,-0.11000000000000004
144,0,-0.13000000000000006,0.009999999999999898,-0.030000000000000027,-0.4,-0.020000000000000018
145,1,-0.28,-0.19000000000000006,0.04999999999999993,-0.4700000000000001,-0.040000000000000036
146,1,0.029999999999999916,-0.08000000000000007,-0.06000000000000005,-0.42000000000000004,-0.11000000000000004
147,0,-0.17000000000000004,-0.010000000000000009,-0.08000000000000007,-0.25000000000000006,-0.020000000000000018
148,1,-0.30000000000000004,-0.20000000000000007,-0.09000000000000008,-0.22000000000000003,-0.030000000000000027
149,1,-0.050000000000000044,-0.22000000000000003,-0.06000000000000005,-0.37000000000000005,-0.06000000000000005
150,0,0.019999999999999907,-0.06000000000000005,-0.06000000000000005,-0.44000000000000006,-0.08000000000000007
151,1,-0.12000000000000005,-0.17000000000000004,-0.030000000000000027,-0.42000000000000004,-0.020000000000000018
152,1,-0.15000000000000008,-0.17000000000000004,-0.12000000000000005,-0.22000000000000003,-0.08000000000000007
153,0,-0.11000000000000004,-0.13000000000000006,-0.050000000000000044,-0.32000000000000006,-0.020000000000000018
154,0,-0.20000000000000007,0.12,-0.10000000000000003,-0.4,-0.030000000000000027
155,1,-0.14000000000000007,-0.25000000000000006,-0.06000000000000005,-0.41000000000000003,-0.030000000000000027
156,1,-0.14000000000000007,-0.13000000000000006,0.0,-0.4600000000000001,-0.07000000000000006
157,0,0.10999999999999999,0.1499999999999999,-0.040000000000000036,0.08999999999999997,-0.030000000000000027
158,1,-0.07000000000000006,-0.09000000000000008,-0.030000000000000027,-0.4,-0.08000000000000007
159,0,0.1499999999999999,0.029999999999999916,-0.08000000000000007,-0.13000000000000006,0.029999999999999916
160,1,-0.16000000000000003,-0.14000000000000007,0.1499999999999999,-0.3500000000000001,-0.020000000000000018
161,1,-0.16000000000000003,-0.14000000000000007,0.1499999999999999,-0.3500000000000001,-0.020000000000000018
162,0,-0.020000000000000018,-0.07000000000000006,-0.07000000000000006,-0.36000000000000004,-0.040000000000000036
163,0,-0.14000000000000007,-0.050000000000000044,-0.06000000000000005,-0.44000000000000006,-0.040000000000000036
164,0,0.009999999999999898,-0.050000000000000044,-0.030000000000000027,-0.38000000000000006,0.0
165,0,-0.21000000000000008,-0.11000000000000004,-0.13000000000000006,-0.45000000000000007,0.0
166,1,-0.14000000000000007,-0.14000000000000007,-0.14000000000000007,-0.36000000000000004,-0.07000000000000006
167,0,-0.30000000000000004,-0.06000000000000005,-0.23000000000000004,-0.28,-0.050000000000000044
168,0,-0.17000000000000004,-0.14000000000000007,-0.18000000000000005,-0.16000000000000003,-0.07000000000000006
169,0,-0.30000000000000004,-0.12000000000000005,-0.26000000000000006,-0.45000000000000007,-0.050000000000000044
170,1,-0.25000000000000006,-0.12000000000000005,-0.030000000000000027,-0.33000000000000007,-0.050000000000000044
171,0,-0.08000000000000007,0.04999999999999993,-0.12000000000000005,-0.36000000000000004,-0.09000000000000008
172,1,0.09999999999999998,-0.11000000000000004,-0.06000000000000005,-0.33000000000000007,-0.07000000000000006
173,1,-0.3500000000000001,-0.15000000000000008,-0.010000000000000009,-0.45000000000000007,-0.06000000000000005
174,0,-0.18000000000000005,0.12,-0.12000000000000005,-0.11000000000000004,-0.030000000000000027
175,1,-0.12000000000000005,-0.18000000000000005,-0.08000000000000007,-0.24000000000000005,-0.030000000000000027
176,1,-0.25000000000000006,-0.25000000000000006,0.0,-0.23000000000000004,-0.040000000000000036
177,1,-0.07000000000000006,-0.25000000000000006,-0.07000000000000006,-0.21000000000000008,-0.050000000000000044
178,1,-0.18000000000000005,-0.19000000000000006,0.0,-0.3500000000000001,-0.07000000000000006
179,1,-0.17000000000000004,-0.16000000000000003,-0.030000000000000027,0.10999999999999999,-0.09000000000000008
180,1,-0.32000000000000006,-0.22000000000000003,0.1299999999999999,-0.38000000000000006,-0.040000000000000036
181,1,-0.07000000000000006,-0.13000000000000006,-0.050000000000000044,-0.43000000000000005,-0.09000000000000008
182,1,-0.020000000000000018,-0.18000000000000005,-0.040000000000000036,-0.38000000000000006,-0.08000000000000007
183,0,-0.13000000000000006,0.009999999999999898,-0.030000000000000027,-0.030000000000000027,-0.030000000000000027
184,0,-0.08000000000000007,0.07999999999999996,0.04999999999999993,-0.33000000000000007,0.039999999999999925
185,0,-0.25000000000000006,-0.010000000000000009,-0.040000000000000036,-0.39,-0.040000000000000036
186,0,-0.24000000000000005,0.009999999999999898,-0.06000000000000005,-0.41000000000000003,-0.030000000000000027
187,0,-0.24000000000000005,-0.14000000000000007,-0.040000000000000036,-0.32000000000000006,0.039999999999999925
188,0,0.029999999999999916,-0.06000000000000005,-0.040000000000000036,-0.28,-0.010000000000000009
189,0,-0.19000000000000006,-0.14000000000000007,-0.050000000000000044,-0.45000000000000007,0.009999999999999898
190,0,0.18999999999999995,0.1399999999999999,-0.18000000000000005,-0.29000000000000004,-0.07000000000000006
191,0,0.04999999999999993,0.15999999999999992,-0.25000000000000006,-0.23000000000000004,0.0
192,0,-0.12000000000000005,-0.14000000000000007,0.039999999999999925,-0.3500000000000001,0.009999999999999898
193,0,-0.040000000000000036,-0.050000000000000044,-0.050000000000000044,-0.020000000000000018,-0.010000000000000009
194,0,0.06999999999999995,0.0,-0.11000000000000004,0.019999999999999907,-0.050000000000000044
195,1,-0.040000000000000036,0.0,-0.020000000000000018,-0.030000000000000027,-0.11000000000000004
196,1,0.019999999999999907,0.019999999999999907,0.019999999999999907,-0.07000000000000006,-0.07000000000000006
197,0,0.15999999999999992,0.05999999999999994,-0.22000000000000003,-0.2700000000000001,0.0
198,0,0.15999999999999992,0.04999999999999993,-0.19000000000000006,-0.26000000000000006,0.009999999999999898
199,1,-0.10000000000000003,-0.13000000000000006,-0.18000000000000005,-0.23000000000000004,-0.08000000000000007
200,0,0.009999999999999898,0.009999999999999898,-0.12000000000000005,-0.19000000000000006,-0.040000000000000036
201,1,-0.14000000000000007,-0.25000000000000006,0.05999999999999994,-0.44000000000000006,-0.16000000000000003
202,0,-0.07000000000000006,-0.10000000000000003,-0.11000000000000004,-0.11000000000000004,-0.040000000000000036
203,0,-0.14000000000000007,0.019999999999999907,-0.15000000000000008,0.08999999999999997,-0.10000000000000003
204,0,0.029999999999999916,0.04999999999999993,-0.22000000000000003,-0.3400000000000001,-0.050000000000000044
205,0,-0.040000000000000036,0.20999999999999996,-0.18000000000000005,-0.22000000000000003,-0.050000000000000044
206,1,-0.06000000000000005,-0.040000000000000036,0.039999999999999925,-0.050000000000000044,-0.08000000000000007
207,1,-0.07000000000000006,0.039999999999999925,-0.13000000000000006,0.0,-0.20000000000000007
208,1,-0.06000000000000005,-0.15000000000000008,-0.12000000000000005,-0.06000000000000005,-0.14000000000000007
209,1,-0.06000000000000005,-0.16000000000000003,0.0,0.1399999999999999,-0.06000000000000005
210,0,-0.19000000000000006,0.019999999999999907,-0.12000000000000005,-0.050000000000000044,-0.12000000000000005
211,0,-0.010000000000000009,-0.11000000000000004,-0.11000000000000004,-0.020000000000000018,-0.06000000000000005
212,0,0.10999999999999999,0.12,-0.10000000000000003,-0.2700000000000001,-0.10000000000000003
213,0,-0.030000000000000027,-0.050000000000000044,-0.10000000000000003,-0.28,-0.08000000000000007
214,0,-0.21000000000000008,0.09999999999999998,-0.07000000000000006,-0.3500000000000001,-0.020000000000000018
215,1,-0.040000000000000036,-0.16000000000000003,0.039999999999999925,-0.44000000000000006,-0.010000000000000009
216,1,0.20999999999999996,0.22999999999999998,0.019999999999999907,-0.33000000000000007,-0.08000000000000007
217,0,-0.09000000000000008,-0.10000000000000003,0.029999999999999916,-0.07000000000000006,0.0
218,0,0.16999999999999993,0.2699999999999999,-0.13000000000000006,-0.26000000000000006,-0.010000000000000009
219,0,0.21999999999999997,0.17999999999999994,0.019999999999999907,-0.31000000000000005,-0.030000000000000027
220,0,0.1399999999999999,0.08999999999999997,-0.020000000000000018,-0.28,0.039999999999999925
221,0,-0.09000000000000008,-0.020000000000000018,-0.19000000000000006,-0.42000000000000004,-0.06000000000000005
222,1,0.0,-0.040000000000000036,-0.08000000000000007,-0.39,-0.10000000000000003
223,1,0.009999999999999898,-0.15000000000000008,0.029999999999999916,-0.32000000000000006,-0.16000000000000003
224,1,0.0,-0.15000000000000008,0.019999999999999907,-0.3500000000000001,-0.14000000000000007
225,0,0.019999999999999907,0.0,-0.11000000000000004,-0.44000000000000006,-0.050000000000000044
226,1,-0.030000000000000027,-0.18000000000000005,0.09999999999999998,-0.31000000000000005,-0.13000000000000006
227,1,-0.22000000000000003,-0.20000000000000007,-0.020000000000000018,-0.45000000000000007,-0.20000000000000007
228,0,0.1299999999999999,0.04999999999999993,-0.18000000000000005,-0.29000000000000004,-0.040000000000000036
229,1,-0.19000000000000006,-0.030000000000000027,0.039999999999999925,-0.37000000000000005,-0.14000000000000007
230,1,-0.15000000000000008,-0.11000000000000004,-0.030000000000000027,-0.39,-0.050000000000000044
231,1,-0.25000000000000006,-0.10000000000000003,-0.020000000000000018,-0.040000000000000036,-0.06000000000000005
232,0,-0.20000000000000007,-0.19000000000000006,-0.23000000000000004,-0.42000000000000004,0.009999999999999898
233,0,0.2599999999999999,0.21999999999999997,-0.07000000000000006,-0.33000000000000007,-0.10000000000000003
234,0,0.2599999999999999,0.18999999999999995,-0.020000000000000018,-0.33000000000000007,-0.10000000000000003
235,1,-0.15000000000000008,-0.050000000000000044,0.019999999999999907,-0.41000000000000003,-0.11000000000000004
236,1,-0.18000000000000005,-0.050000000000000044,0.18999999999999995,-0.39,-0.010000000000000009
237,1,-0.18000000000000005,-0.050000000000000044,0.18999999999999995,-0.39,-0.010000000000000009
238,1,-0.030000000000000027,-0.12000000000000005,-0.050000000000000044,-0.23000000000000004,-0.040000000000000036
239,0,-0.10000000000000003,-0.020000000000000018,0.1499999999999999,-0.41000000000000003,0.029999999999999916
240,0,-0.16000000000000003,0.0,-0.08000000000000007,-0.42000000000000004,-0.09000000000000008
241,1,-0.030000000000000027,-0.030000000000000027,0.039999999999999925,-0.43000000000000005,-0.07000000000000006
242,0,-0.14000000000000007,0.009999999999999898,0.15999999999999992,-0.3400000000000001,0.009999999999999898
243,1,-0.11000000000000004,-0.29000000000000004,0.009999999999999898,-0.20000000000000007,-0.040000000000000036
244,1,-0.36000000000000004,-0.30000000000000004,-0.040000000000000036,-0.42000000000000004,-0.030000000000000027
245,0,-0.050000000000000044,-0.030000000000000027,-0.010000000000000009,-0.42000000000000004,-0.050000000000000044
246,0,-0.12000000000000005,0.12,-0.11000000000000004,-0.050000000000000044,-0.040000000000000036
247,1,-0.29000000000000004,-0.17000000000000004,0.09999999999999998,-0.45000000000000007,-0.12000000000000005
248,0,-0.010000000000000009,-0.14000000000000007,-0.22000000000000003,-0.26000000000000006,-0.040000000000000036
249,0,-0.22000000000000003,-0.14000000000000007,-0.26000000000000006,-0.33000000000000007,-0.030000000000000027
250,0,-0.12000000000000005,-0.030000000000000027,-0.040000000000000036,-0.33000000000000007,-0.050000000000000044
251,0,0.029999999999999916,0.019999999999999907,0.0,-0.3500000000000001,-0.020000000000000018
252,1,-0.17000000000000004,-0.28,-0.10000000000000003,-0.44000000000000006,-0.15000000000000008
253,1,0.0,-0.13000000000000006,-0.020000000000000018,-0.4,-0.06000000000000005
254,0,-0.20000000000000007,0.12,-0.18000000000000005,-0.48000000000000004,-0.030000000000000027
255,1,-0.29000000000000004,-0.20000000000000007,0.039999999999999925,-0.23000000000000004,-0.19000000000000006
256,1,-0.21000000000000008,-0.16000000000000003,0.029999999999999916,-0.3400000000000001,-0.09000000000000008
257,1,-0.14000000000000007,-0.24000000000000005,-0.06000000000000005,-0.3500000000000001,-0.050000000000000044
258,1,-0.33000000000000007,-0.36000000000000004,-0.030000000000000027,-0.36000000000000004,-0.12000000000000005
259,0,-0.010000000000000009,-0.020000000000000018,0.0,-0.3400000000000001,-0.06000000000000005
260,1,-0.20000000000000007,-0.32000000000000006,-0.07000000000000006,-0.4,-0.050000000000000044
261,1,-0.18000000000000005,-0.08000000000000007,0.029999999999999916,-0.3400000000000001,-0.10000000000000003
262,0,0.24,-0.10000000000000003,-0.06000000000000005,-0.41000000000000003,-0.030000000000000027
263,0,0.039999999999999925,0.0,-0.09000000000000008,-0.36000000000000004,-0.06000000000000005
264,1,-0.15000000000000008,-0.32000000000000006,-0.020000000000000018,-0.30000000000000004,-0.15000000000000008
265,0,-0.09000000000000008,0.08999999999999997,-0.020000000000000018,0.05999999999999994,-0.030000000000000027
266,1,-0.13000000000000006,-0.17000000000000004,-0.020000000000000018,-0.42000000000000004,-0.09000000000000008
267,0,-0.06000000000000005,-0.050000000000000044,-0.040000000000000036,-0.4700000000000001,-0.08000000000000007
268,0,-0.030000000000000027,0.04999999999999993,-0.040000000000000036,-0.3500000000000001,-0.010000000000000009
269,0,-0.020000000000000018,-0.14000000000000007,-0.15000000000000008,-0.4,-0.040000000000000036
270,1,-0.10000000000000003,-0.21000000000000008,-0.030000000000000027,-0.4,-0.050000000000000044
271,0,-0.10000000000000003,-0.13000000000000006,-0.07000000000000006,0.22999999999999998,-0.07000000000000006
272,0,-0.050000000000000044,-0.010000000000000009,-0.21000000000000008,-0.4,-0.050000000000000044
273,0,0.0,-0.040000000000000036,-0.010000000000000009,-0.37000000000000005,-0.020000000000000018
274,1,0.04999999999999993,-0.26000000000000006,0.029999999999999916,-0.44000000000000006,-0.07000000000000006
275,0,-0.19000000000000006,-0.030000000000000027,-0.10000000000000003,-0.33000000000000007,-0.09000000000000008
276,0,0.2699999999999999,0.019999999999999907,-0.23000000000000004,-0.52,-0.030000000000000027
277,0,-0.17000000000000004,-0.11000000000000004,-0.030000000000000027,-0.38000000000000006,-0.020000000000000018
278,0,-0.040000000000000036,-0.020000000000000018,-0.06000000000000005,-0.3500000000000001,-0.08000000000000007
279,1,-0.21000000000000008,-0.17000000000000004,0.009999999999999898,-0.45000000000000007,-0.08000000000000007
280,0,-0.20000000000000007,-0.07000000000000006,-0.26000000000000006,-0.3400000000000001,-0.040000000000000036
281,0,0.21999999999999997,0.1399999999999999,-0.24000000000000005,-0.33000000000000007,-0.030000000000000027
282,0,-0.010000000000000009,-0.10000000000000003,-0.030000000000000027,-0.45000000000000007,-0.040000000000000036
283,0,-0.11000000000000004,0.0,-0.020000000000000018,-0.24000000000000005,0.009999999999999898
284,0,-0.11000000000000004,0.0,-0.030000000000000027,-0.24000000000000005,0.009999999999999898
285,0,-0.2700000000000001,-0.13000000000000006,-0.16000000000000003,-0.41000000000000003,-0.030000000000000027
286,0,-0.040000000000000036,0.18999999999999995,-0.19000000000000006,-0.42000000000000004,-0.10000000000000003
287,0,0.1499999999999999,0.0,-0.17000000000000004,-0.29000000000000004,-0.040000000000000036
288,0,0.019999999999999907,0.039999999999999925,-0.13000000000000006,-0.44000000000000006,-0.010000000000000009
289,0,-0.020000000000000018,0.08999999999999997,-0.07000000000000006,-0.22000000000000003,-0.040000000000000036
290,0,0.009999999999999898,0.029999999999999916,-0.12000000000000005,-0.4,-0.040000000000000036
291,0,0.029999999999999916,0.019999999999999907,-0.10000000000000003,-0.37000000000000005,0.0
292,0,0.36,0.04999999999999993,-0.16000000000000003,-0.3400000000000001,-0.020000000000000018
293,0,-0.010000000000000009,0.0,-0.11000000000000004,-0.42000000000000004,-0.020000000000000018
294,0,0.06999999999999995,0.04999999999999993,-0.15000000000000008,-0.3400000000000001,-0.050000000000000044
295,0,0.019999999999999907,-0.030000000000000027,-0.18000000000000005,-0.38000000000000006,-0.040000000000000036
296,0,-0.20000000000000007,-0.10000000000000003,-0.13000000000000006,-0.37000000000000005,-0.08000000000000007
297,0,-0.24000000000000005,-0.09000000000000008,-0.010000000000000009,-0.44000000000000006,-0.040000000000000036
298,1,-0.22000000000000003,-0.18000000000000005,-0.11000000000000004,-0.37000000000000005,-0.050000000000000044
299,0,0.05999999999999994,0.019999999999999907,-0.10000000000000003,-0.43000000000000005,-0.030000000000000027
300,0,-0.030000000000000027,0.12,-0.14000000000000007,-0.37000000000000005,-0.030000000000000027
301,0,0.16999999999999993,-0.010000000000000009,-0.15000000000000008,-0.4,-0.10000000000000003
302,0,-0.010000000000000009,-0.10000000000000003,-0.10000000000000003,-0.25000000000000006,0.019999999999999907
303,0,-0.21000000000000008,0.039999999999999925,-0.09000000000000008,-0.43000000000000005,-0.040000000000000036
304,0,0.20999999999999996,0.24,-0.050000000000000044,-0.16000000000000003,-0.020000000000000018
305,0,0.20999999999999996,0.30999999999999994,-0.09000000000000008,-0.19000000000000006,-0.08000000000000007
306,0,-0.21000000000000008,-0.10000000000000003,-0.07000000000000006,-0.41000000000000003,-0.010000000000000009
307,0,-0.13000000000000006,-0.050000000000000044,-0.08000000000000007,-0.42000000000000004,-0.06000000000000005
308,0,0.009999999999999898,0.04999999999999993,-0.11000000000000004,-0.30000000000000004,-0.06000000000000005
309,0,0.06999999999999995,0.05999999999999994,-0.14000000000000007,-0.44000000000000006,-0.040000000000000036
310,1,-0.31000000000000005,-0.16000000000000003,-0.050000000000000044,-0.38000000000000006,-0.06000000000000005
311,0,0.0,0.05999999999999994,-0.030000000000000027,-0.32000000000000006,0.009999999999999898
312,0,0.019999999999999907,0.039999999999999925,-0.050000000000000044,-0.32000000000000006,-0.030000000000000027
313,0,0.1499999999999999,0.029999999999999916,-0.030000000000000027,-0.41000000000000003,-0.07000000000000006
314,0,-0.10000000000000003,-0.21000000000000008,-0.23000000000000004,-0.39,-0.010000000000000009
315,0,-0.020000000000000018,-0.010000000000000009,-0.14000000000000007,-0.3400000000000001,-0.08000000000000007
316,0,-0.17000000000000004,-0.12000000000000005,-0.28,-0.44000000000000006,-0.10000000000000003
317,1,-0.23000000000000004,-0.12000000000000005,-0.07000000000000006,-0.48000000000000004,-0.08000000000000007
318,1,0.25,0.2599999999999999,-0.15000000000000008,-0.20000000000000007,-0.17000000000000004
319,0,0.1299999999999999,0.039999999999999925,-0.050000000000000044,-0.43000000000000005,-0.040000000000000036
320,0,-0.10000000000000003,-0.08000000000000007,-0.12000000000000005,-0.3500000000000001,-0.010000000000000009
321,1,-0.21000000000000008,-0.20000000000000007,0.009999999999999898,-0.39,-0.040000000000000036
322,0,0.17999999999999994,0.15999999999999992,-0.09000000000000008,-0.31000000000000005,0.009999999999999898
323,0,-0.020000000000000018,0.009999999999999898,-0.040000000000000036,-0.37000000000000005,0.029999999999999916
324,0,-0.14000000000000007,-0.040000000000000036,-0.16000000000000003,-0.39,-0.06000000000000005
325,0,0.35,0.20999999999999996,-0.22000000000000003,-0.09000000000000008,-0.040000000000000036
326,0,0.25,0.33999999999999997,-0.17000000000000004,-0.15000000000000008,-0.030000000000000027
327,1,-0.11000000000000004,-0.16000000000000003,0.0,-0.42000000000000004,-0.020000000000000018
328,1,-0.09000000000000008,-0.09000000000000008,0.019999999999999907,-0.4,-0.07000000000000006
329,1,-0.15000000000000008,-0.17000000000000004,-0.050000000000000044,-0.040000000000000036,-0.07000000000000006
330,0,-0.19000000000000006,-0.22000000000000003,-0.24000000000000005,-0.3400000000000001,0.0
331,0,0.1299999999999999,0.039999999999999925,-0.06000000000000005,-0.25000000000000006,-0.010000000000000009
332,0,-0.21000000000000008,0.0,-0.20000000000000007,-0.26000000000000006,-0.030000000000000027
333,0,0.2799999999999999,0.09999999999999998,-0.20000000000000007,0.21999999999999997,-0.07000000000000006
334,0,-0.050000000000000044,0.019999999999999907,-0.020000000000000018,-0.2700000000000001,-0.030000000000000027
335,1,-0.19000000000000006,-0.13000000000000006,0.05999999999999994,-0.29000000000000004,-0.08000000000000007
336,0,-0.010000000000000009,0.09999999999999998,0.009999999999999898,-0.24000000000000005,0.009999999999999898
337,0,-0.08000000000000007,-0.21000000000000008,-0.14000000000000007,-0.3500000000000001,0.009999999999999898
338,0,0.05999999999999994,0.019999999999999907,-0.040000000000000036,-0.41000000000000003,-0.040000000000000036
339,1,0.0,0.029999999999999916,-0.030000000000000027,-0.4,-0.32000000000000006
340,0,-0.12000000000000005,-0.050000000000000044,-0.19000000000000006,-0.41000000000000003,-0.050000000000000044
341,1,-0.12000000000000005,-0.12000000000000005,-0.07000000000000006,-0.41000000000000003,-0.10000000000000003
342,1,-0.06000000000000005,-0.06000000000000005,-0.08000000000000007,-0.39,-0.09000000000000008
343,0,0.039999999999999925,0.039999999999999925,-0.07000000000000006,-0.26000000000000006,-0.030000000000000027
344,0,-0.07000000000000006,-0.10000000000000003,-0.22000000000000003,-0.3500000000000001,-0.010000000000000009
345,0,-0.21000000000000008,0.12,0.009999999999999898,-0.16000000000000003,-0.030000000000000027
346,0,0.1399999999999999,0.1299999999999999,-0.13000000000000006,-0.23000000000000004,0.019999999999999907
347,1,-0.33000000000000007,-0.26000000000000006,0.019999999999999907,-0.3400000000000001,-0.08000000000000007
348,1,-0.11000000000000004,-0.14000000000000007,-0.040000000000000036,-0.36000000000000004,-0.06000000000000005
349,1,-0.050000000000000044,-0.21000000000000008,-0.10000000000000003,-0.41000000000000003,-0.050000000000000044
350,1,-0.14000000000000007,-0.17000000000000004,-0.09000000000000008,-0.43000000000000005,-0.06000000000000005
351,1,-0.24000000000000005,-0.18000000000000005,-0.040000000000000036,-0.36000000000000004,-0.040000000000000036
352,1,0.029999999999999916,0.08999999999999997,-0.040000000000000036,-0.26000000000000006,-0.10000000000000003
353,0,-0.15000000000000008,-0.040000000000000036,-0.15000000000000008,-0.45000000000000007,-0.020000000000000018
354,1,-0.19000000000000006,-0.23000000000000004,-0.06000000000000005,-0.44000000000000006,-0.050000000000000044
355,0,-0.11000000000000004,0.0,-0.07000000000000006,-0.39,-0.040000000000000036
356,0,0.0,-0.020000000000000018,0.029999999999999916,-0.42000000000000004,-0.040000000000000036
357,1,-0.25000000000000006,-0.25000000000000006,-0.020000000000000018,-0.38000000000000006,-0.040000000000000036
358,0,-0.29000000000000004,-0.050000000000000044,-0.09000000000000008,-0.21000000000000008,-0.07000000000000006
359,1,-0.020000000000000018,0.0,0.009999999999999898,-0.38000000000000006,-0.11000000000000004
360,0,-0.39,-0.18000000000000005,-0.11000000000000004,-0.4700000000000001,-0.020000000000000018
361,1,-0.13000000000000006,-0.050000000000000044,-0.020000000000000018,-0.41000000000000003,-0.11000000000000004
362,1,0.039999999999999925,-0.16000000000000003,0.029999999999999916,-0.38000000000000006,-0.08000000000000007
363,0,0.35,0.1299999999999999,0.009999999999999898,-0.11000000000000004,0.0
364,1,-0.18000000000000005,-0.09000000000000008,-0.030000000000000027,-0.44000000000000006,-0.08000000000000007
365,0,0.029999999999999916,-0.13000000000000006,-0.040000000000000036,-0.37000000000000005,-0.010000000000000009
366,0,0.07999999999999996,-0.030000000000000027,-0.11000000000000004,-0.43000000000000005,-0.030000000000000027
367,1,-0.07000000000000006,-0.25000000000000006,-0.22000000000000003,-0.43000000000000005,-0.040000000000000036
368,0,-0.040000000000000036,-0.050000000000000044,-0.050000000000000044,-0.44000000000000006,-0.050000000000000044
369,0,-0.07000000000000006,-0.13000000000000006,-0.08000000000000007,-0.41000000000000003,-0.010000000000000009
370,0,-0.07000000000000006,-0.09000000000000008,-0.040000000000000036,-0.4,-0.030000000000000027
371,1,-0.08000000000000007,-0.17000000000000004,-0.07000000000000006,-0.38000000000000006,-0.050000000000000044
372,1,-0.12000000000000005,-0.22000000000000003,-0.010000000000000009,-0.38000000000000006,-0.040000000000000036
373,0,-0.13000000000000006,-0.020000000000000018,0.019999999999999907,-0.4,-0.06000000000000005
374,1,-0.07000000000000006,-0.14000000000000007,-0.020000000000000018,-0.39,-0.06000000000000005
375,0,-0.22000000000000003,0.09999999999999998,-0.050000000000000044,-0.4,-0.09000000000000008
376,1,-0.36000000000000004,-0.22000000000000003,-0.23000000000000004,-0.4600000000000001,-0.08000000000000007
377,0,0.17999999999999994,-0.030000000000000027,-0.06000000000000005,-0.48000000000000004,-0.010000000000000009
378,0,0.1299999999999999,-0.08000000000000007,-0.18000000000000005,-0.41000000000000003,-0.010000000000000009
379,0,-0.26000000000000006,-0.06000000000000005,-0.09000000000000008,-0.45000000000000007,-0.10000000000000003
380,0,-0.12000000000000005,-0.050000000000000044,-0.08000000000000007,-0.18000000000000005,-0.040000000000000036
381,1,-0.25000000000000006,-0.11000000000000004,-0.06000000000000005,-0.39,-0.07000000000000006
382,1,-0.010000000000000009,-0.15000000000000008,0.0,-0.3500000000000001,-0.040000000000000036
383,1,-0.16000000000000003,-0.22000000000000003,-0.040000000000000036,-0.39,-0.09000000000000008
384,0,-0.16000000000000003,-0.08000000000000007,-0.06000000000000005,-0.39,-0.020000000000000018
385,1,0.019999999999999907,-0.08000000000000007,0.0,-0.4600000000000001,-0.10000000000000003
386,1,0.019999999999999907,-0.08000000000000007,0.0,-0.44000000000000006,-0.10000000000000003
387,0,0.019999999999999907,-0.11000000000000004,-0.08000000000000007,-0.32000000000000006,-0.040000000000000036
388,1,0.019999999999999907,-0.15000000000000008,-0.050000000000000044,-0.30000000000000004,-0.050000000000000044
389,1,-0.15000000000000008,0.039999999999999925,-0.030000000000000027,-0.2700000000000001,-0.09000000000000008
390,0,0.1299999999999999,-0.06000000000000005,-0.07000000000000006,-0.14000000000000007,-0.07000000000000006
391,0,-0.18000000000000005,-0.07000000000000006,0.04999999999999993,-0.43000000000000005,-0.020000000000000018
392,0,0.039999999999999925,-0.08000000000000007,-0.12000000000000005,-0.040000000000000036,-0.020000000000000018
393,1,-0.09000000000000008,-0.07000000000000006,0.06999999999999995,-0.39,-0.25000000000000006
394,1,-0.28,-0.050000000000000044,-0.010000000000000009,-0.45000000000000007,-0.10000000000000003
395,0,0.0,0.009999999999999898,0.06999999999999995,-0.17000000000000004,0.029999999999999916
396,1,-0.3500000000000001,-0.18000000000000005,-0.07000000000000006,-0.4,-0.050000000000000044
397,0,-0.10000000000000003,0.009999999999999898,0.009999999999999898,-0.41000000000000003,-0.040000000000000036
398,0,-0.13000000000000006,-0.14000000000000007,-0.020000000000000018,-0.3400000000000001,0.009999999999999898
399,0,0.009999999999999898,0.029999999999999916,-0.06000000000000005,0.019999999999999907,-0.030000000000000027
400,1,-0.08000000000000007,-0.22000000000000003,-0.09000000000000008,-0.42000000000000004,-0.09000000000000008
401,1,-0.21000000000000008,-0.16000000000000003,-0.030000000000000027,-0.38000000000000006,-0.14000000000000007
402,1,-0.09000000000000008,-0.11000000000000004,-0.030000000000000027,0.05999999999999994,-0.10000000000000003
403,0,-0.030000000000000027,-0.13000000000000006,-0.09000000000000008,-0.41000000000000003,0.019999999999999907
404,0,-0.10000000000000003,-0.11000000000000004,0.0,-0.4,0.0
405,1,-0.12000000000000005,-0.14000000000000007,0.05999999999999994,-0.42000000000000004,-0.010000000000000009
406,1,-0.19000000000000006,-0.22000000000000003,0.019999999999999907,-0.32000000000000006,-0.12000000000000005
407,1,-0.19000000000000006,-0.22000000000000003,0.019999999999999907,-0.32000000000000006,-0.12000000000000005
408,1,-0.17000000000000004,-0.17000000000000004,-0.010000000000000009,-0.040000000000000036,-0.19000000000000006
409,1,-0.17000000000000004,-0.17000000000000004,-0.010000000000000009,-0.040000000000000036,-0.19000000000000006
410,0,-0.08000000000000007,-0.10000000000000003,-0.18000000000000005,-0.2700000000000001,-0.030000000000000027
411,0,-0.08000000000000007,0.009999999999999898,-0.06000000000000005,-0.4700000000000001,-0.040000000000000036
412,0,0.04999999999999993,0.009999999999999898,-0.11000000000000004,-0.3500000000000001,-0.06000000000000005
413,1,0.0,-0.12000000000000005,0.0,-0.37000000000000005,-0.020000000000000018
414,0,-0.050000000000000044,0.06999999999999995,-0.26000000000000006,-0.21000000000000008,-0.030000000000000027
415,0,-0.030000000000000027,0.12,-0.22000000000000003,-0.14000000000000007,-0.020000000000000018
416,1,-0.19000000000000006,-0.3400000000000001,0.07999999999999996,-0.21000000000000008,-0.09000000000000008
417,1,-0.050000000000000044,-0.08000000000000007,0.019999999999999907,-0.3400000000000001,-0.06000000000000005
418,1,-0.07000000000000006,-0.19000000000000006,0.029999999999999916,-0.39,-0.050000000000000044
419,1,-0.050000000000000044,-0.08000000000000007,0.019999999999999907,-0.3400000000000001,-0.06000000000000005
420,0,-0.030000000000000027,-0.030000000000000027,-0.030000000000000027,-0.39,-0.07000000000000006
421,0,-0.2700000000000001,0.12,-0.09000000000000008,-0.30000000000000004,-0.09000000000000008
422,0,-0.06000000000000005,-0.11000000000000004,-0.07000000000000006,-0.41000000000000003,-0.010000000000000009
423,1,-0.23000000000000004,-0.28,-0.25000000000000006,-0.32000000000000006,-0.030000000000000027
424,0,0.2899999999999999,0.2899999999999999,-0.26000000000000006,-0.25000000000000006,-0.010000000000000009
425,1,-0.13000000000000006,-0.17000000000000004,-0.050000000000000044,-0.28,-0.16000000000000003
426,0,0.04999999999999993,-0.020000000000000018,-0.07000000000000006,-0.4,-0.020000000000000018
427,1,-0.22000000000000003,-0.21000000000000008,0.04999999999999993,-0.37000000000000005,-0.040000000000000036
428,1,-0.010000000000000009,-0.030000000000000027,0.0,-0.2700000000000001,-0.08000000000000007
429,0,0.09999999999999998,0.05999999999999994,-0.040000000000000036,-0.39,-0.07000000000000006
430,0,-0.12000000000000005,-0.15000000000000008,0.019999999999999907,-0.36000000000000004,0.009999999999999898
431,0,-0.19000000000000006,0.05999999999999994,-0.22000000000000003,-0.31000000000000005,-0.050000000000000044
432,0,-0.11000000000000004,0.0,-0.050000000000000044,0.07999999999999996,-0.020000000000000018
433,0,-0.18000000000000005,-0.10000000000000003,-0.040000000000000036,0.18999999999999995,-0.06000000000000005
434,0,0.04999999999999993,-0.020000000000000018,-0.07000000000000006,-0.37000000000000005,-0.020000000000000018
435,0,-0.12000000000000005,-0.030000000000000027,-0.040000000000000036,-0.19000000000000006,-0.06000000000000005
436,0,-0.12000000000000005,-0.030000000000000027,-0.040000000000000036,-0.19000000000000006,-0.06000000000000005
437,1,-0.24000000000000005,-0.22000000000000003,0.04999999999999993,-0.39,-0.040000000000000036
438,1,-0.22000000000000003,-0.22000000000000003,0.04999999999999993,-0.38000000000000006,-0.040000000000000036
439,0,-0.050000000000000044,0.12,-0.07000000000000006,0.029999999999999916,-0.020000000000000018
440,1,-0.15000000000000008,-0.26000000000000006,-0.07000000000000006,-0.28,-0.020000000000000018
441,1,-0.15000000000000008,-0.13000000000000006,-0.06000000000000005,-0.28,-0.06000000000000005
442,0,-0.26000000000000006,-0.06000000000000005,-0.22000000000000003,-0.30000000000000004,-0.050000000000000044
443,0,-0.07000000000000006,-0.16000000000000003,-0.22000000000000003,-0.30000000000000004,-0.06000000000000005
444,0,-0.22000000000000003,-0.16000000000000003,-0.26000000000000006,-0.33000000000000007,-0.050000000000000044
445,0,-0.13000000000000006,-0.12000000000000005,-0.26000000000000006,-0.38000000000000006,-0.050000000000000044
446,0,-0.13000000000000006,-0.11000000000000004,-0.19000000000000006,-0.44000000000000006,-0.08000000000000007
447,0,-0.11000000000000004,0.009999999999999898,-0.26000000000000006,-0.39,-0.050000000000000044
448,0,-0.11000000000000004,0.009999999999999898,-0.26000000000000006,-0.39,-0.050000000000000044
449,0,-0.14000000000000007,-0.12000000000000005,-0.23000000000000004,-0.39,-0.020000000000000018
450,1,-0.040000000000000036,-0.06000000000000005,-0.030000000000000027,-0.4600000000000001,-0.08000000000000007
451,0,-0.030000000000000027,0.0,-0.07000000000000006,-0.10000000000000003,-0.040000000000000036
452,0,-0.11000000000000004,-0.020000000000000018,-0.020000000000000018,0.05999999999999994,-0.030000000000000027
453,1,-0.050000000000000044,-0.13000000000000006,0.06999999999999995,-0.38000000000000006,-0.040000000000000036
454,0,-0.050000000000000044,-0.040000000000000036,-0.08000000000000007,-0.06000000000000005,-0.050000000000000044
455,0,-0.010000000000000009,-0.07000000000000006,-0.06000000000000005,-0.10000000000000003,-0.040000000000000036
456,0,-0.06000000000000005,-0.10000000000000003,-0.040000000000000036,-0.4,-0.040000000000000036
457,0,-0.06000000000000005,-0.030000000000000027,-0.11000000000000004,-0.12000000000000005,-0.07000000000000006
458,0,-0.11000000000000004,0.029999999999999916,-0.030000000000000027,0.17999999999999994,-0.09000000000000008
459,0,0.009999999999999898,0.04999999999999993,-0.010000000000000009,0.10999999999999999,-0.08000000000000007
460,1,-0.020000000000000018,-0.11000000000000004,0.05999999999999994,-0.43000000000000005,-0.040000000000000036
461,0,0.10999999999999999,-0.050000000000000044,-0.030000000000000027,-0.28,-0.050000000000000044
462,0,-0.21000000000000008,-0.07000000000000006,-0.09000000000000008,-0.3400000000000001,-0.06000000000000005
463,1,-0.09000000000000008,0.06999999999999995,0.09999999999999998,-0.11000000000000004,-0.19000000000000006
464,1,-0.050000000000000044,-0.22000000000000003,-0.13000000000000006,-0.38000000000000006,-0.08000000000000007
465,1,0.0,-0.11000000000000004,0.029999999999999916,-0.42000000000000004,-0.050000000000000044
466,1,-0.11000000000000004,-0.18000000000000005,0.029999999999999916,-0.38000000000000006,-0.12000000000000005
467,0,-0.13000000000000006,-0.050000000000000044,0.039999999999999925,-0.31000000000000005,-0.010000000000000009
468,0,-0.09000000000000008,0.029999999999999916,-0.13000000000000006,-0.43000000000000005,0.0
469,0,-0.16000000000000003,-0.11000000000000004,-0.14000000000000007,-0.39,-0.020000000000000018
470,0,0.32999999999999996,0.25,-0.20000000000000007,0.1499999999999999,-0.010000000000000009
471,1,0.019999999999999907,-0.010000000000000009,-0.040000000000000036,-0.3400000000000001,-0.12000000000000005
472,0,0.029999999999999916,0.009999999999999898,-0.10000000000000003,-0.42000000000000004,-0.040000000000000036
473,0,-0.07000000000000006,-0.15000000000000008,-0.24000000000000005,-0.3500000000000001,-0.06000000000000005
474,0,-0.21000000000000008,-0.030000000000000027,-0.21000000000000008,-0.23000000000000004,-0.06000000000000005
475,1,-0.14000000000000007,-0.24000000000000005,0.04999999999999993,-0.43000000000000005,-0.42000000000000004
476,0,-0.06000000000000005,-0.10000000000000003,-0.14000000000000007,-0.24000000000000005,0.0
477,0,0.12,-0.06000000000000005,-0.13000000000000006,-0.29000000000000004,0.04999999999999993
478,1,-0.06000000000000005,-0.11000000000000004,-0.07000000000000006,-0.26000000000000006,-0.09000000000000008
479,1,-0.10000000000000003,-0.15000000000000008,-0.06000000000000005,-0.12000000000000005,-0.030000000000000027
480,0,-0.24000000000000005,-0.20000000000000007,-0.22000000000000003,-0.37000000000000005,-0.010000000000000009
481,0,-0.16000000000000003,-0.050000000000000044,-0.14000000000000007,-0.43000000000000005,-0.11000000000000004
482,0,0.1399999999999999,0.16999999999999993,-0.19000000000000006,-0.19000000000000006,-0.08000000000000007
483,0,0.25,0.19999999999999996,-0.24000000000000005,-0.19000000000000006,-0.050000000000000044
484,0,0.08999999999999997,0.04999999999999993,-0.17000000000000004,-0.26000000000000006,0.009999999999999898
485,0,-0.09000000000000008,-0.13000000000000006,-0.21000000000000008,-0.24000000000000005,-0.020000000000000018
486,1,-0.14000000000000007,-0.31000000000000005,0.039999999999999925,-0.42000000000000004,-0.11000000000000004
487,1,-0.33000000000000007,-0.22000000000000003,-0.15000000000000008,-0.28,-0.06000000000000005
488,0,0.2899999999999999,0.0,-0.23000000000000004,-0.18000000000000005,-0.010000000000000009
489,1,-0.22000000000000003,-0.25000000000000006,0.039999999999999925,-0.19000000000000006,-0.06000000000000005
490,0,0.029999999999999916,-0.030000000000000027,-0.09000000000000008,-0.30000000000000004,-0.030000000000000027
491,0,0.10999999999999999,0.06999999999999995,-0.22000000000000003,-0.15000000000000008,0.039999999999999925
492,0,0.1399999999999999,0.16999999999999993,-0.18000000000000005,-0.20000000000000007,-0.020000000000000018
493,1,-0.020000000000000018,-0.050000000000000044,-0.020000000000000018,-0.040000000000000036,-0.09000000000000008
494,0,-0.030000000000000027,-0.06000000000000005,-0.020000000000000018,0.0,-0.07000000000000006
495,0,0.2799999999999999,0.06999999999999995,-0.18000000000000005,-0.33000000000000007,-0.030000000000000027
496,0,0.32999999999999996,0.20999999999999996,-0.20000000000000007,-0.22000000000000003,-0.12000000000000005
497,1,-0.08000000000000007,-0.13000000000000006,-0.11000000000000004,-0.39,-0.08000000000000007
498,1,-0.20000000000000007,-0.21000000000000008,-0.09000000000000008,-0.3400000000000001,-0.12000000000000005
499,0,0.009999999999999898,-0.07000000000000006,-0.08000000000000007,-0.4,-0.050000000000000044
500,0,-0.13000000000000006,-0.040000000000000036,-0.030000000000000027,-0.040000000000000036,-0.07000000000000006
501,0,-0.18000000000000005,-0.07000000000000006,-0.020000000000000018,0.43999999999999995,-0.06000000000000005
502,1,-0.13000000000000006,-0.24000000000000005,0.0,-0.29000000000000004,-0.09000000000000008
503,1,0.2799999999999999,0.30999999999999994,-0.11000000000000004,-0.020000000000000018,-0.28
504,0,-0.29000000000000004,0.0,0.0,-0.38000000000000006,-0.040000000000000036
505,0,0.32999999999999996,0.2599999999999999,0.039999999999999925,-0.07000000000000006,-0.010000000000000009
506,0,0.29999999999999993,0.36,-0.06000000000000005,-0.19000000000000006,-0.030000000000000027
507,0,-0.19000000000000006,-0.010000000000000009,-0.2700000000000001,-0.24000000000000005,-0.050000000000000044
508,1,0.30999999999999994,0.2699999999999999,0.009999999999999898,-0.20000000000000007,-0.20000000000000007
509,1,-0.13000000000000006,-0.11000000000000004,-0.020000000000000018,-0.42000000000000004,-0.06000000000000005
510,0,-0.040000000000000036,-0.08000000000000007,-0.020000000000000018,-0.28,-0.020000000000000018
511,0,0.20999999999999996,0.039999999999999925,-0.14000000000000007,-0.23000000000000004,0.009999999999999898
512,0,0.19999999999999996,0.17999999999999994,0.0,-0.22000000000000003,-0.050000000000000044
513,0,0.019999999999999907,0.19999999999999996,-0.16000000000000003,-0.19000000000000006,-0.020000000000000018
514,0,0.3799999999999999,0.039999999999999925,-0.23000000000000004,-0.07000000000000006,-0.020000000000000018
515,1,-0.20000000000000007,-0.12000000000000005,0.009999999999999898,-0.38000000000000006,-0.14000000000000007
516,0,-0.14000000000000007,-0.050000000000000044,-0.17000000000000004,-0.3400000000000001,-0.07000000000000006
517,1,-0.040000000000000036,-0.08000000000000007,0.019999999999999907,-0.010000000000000009,-0.08000000000000007
518,1,-0.14000000000000007,-0.24000000000000005,-0.08000000000000007,-0.4,-0.010000000000000009
519,1,-0.13000000000000006,-0.18000000000000005,-0.050000000000000044,-0.32000000000000006,-0.10000000000000003
520,0,-0.08000000000000007,0.009999999999999898,-0.040000000000000036,0.04999999999999993,-0.050000000000000044
521,1,0.2699999999999999,-0.030000000000000027,-0.040000000000000036,-0.36000000000000004,-0.08000000000000007
522,1,-0.20000000000000007,-0.22000000000000003,-0.10000000000000003,-0.37000000000000005,-0.040000000000000036
523,0,-0.050000000000000044,-0.13000000000000006,-0.09000000000000008,-0.37000000000000005,-0.040000000000000036
524,0,-0.020000000000000018,-0.020000000000000018,-0.07000000000000006,-0.42000000000000004,0.0
525,1,-0.12000000000000005,-0.15000000000000008,-0.12000000000000005,-0.43000000000000005,-0.07000000000000006
526,0,-0.040000000000000036,0.05999999999999994,-0.020000000000000018,-0.37000000000000005,-0.06000000000000005
527,1,-0.10000000000000003,-0.16000000000000003,-0.18000000000000005,-0.38000000000000006,-0.07000000000000006
528,1,0.12,-0.06000000000000005,-0.010000000000000009,0.08999999999999997,-0.10000000000000003
529,0,-0.030000000000000027,-0.12000000000000005,-0.09000000000000008,-0.3400000000000001,-0.030000000000000027
530,0,-0.08000000000000007,-0.08000000000000007,-0.06000000000000005,-0.09000000000000008,-0.010000000000000009
531,1,-0.10000000000000003,-0.42000000000000004,-0.20000000000000007,-0.3500000000000001,-0.06000000000000005
532,0,-0.06000000000000005,-0.11000000000000004,-0.08000000000000007,-0.39,-0.06000000000000005
533,0,-0.12000000000000005,-0.030000000000000027,-0.13000000000000006,-0.39,-0.020000000000000018
534,0,-0.10000000000000003,-0.09000000000000008,-0.10000000000000003,-0.4,-0.050000000000000044
535,0,-0.040000000000000036,-0.07000000000000006,0.009999999999999898,0.009999999999999898,-0.050000000000000044
536,0,0.05999999999999994,0.07999999999999996,0.0,-0.36000000000000004,-0.08000000000000007
537,1,-0.10000000000000003,-0.24000000000000005,0.019999999999999907,-0.39,0.04999999999999993
538,0,0.21999999999999997,-0.08000000000000007,-0.09000000000000008,-0.26000000000000006,-0.030000000000000027
539,1,-0.07000000000000006,0.05999999999999994,0.08999999999999997,-0.38000000000000006,-0.10000000000000003
540,1,-0.06000000000000005,-0.22000000000000003,0.05999999999999994,-0.37000000000000005,0.009999999999999898
541,0,-0.17000000000000004,-0.19000000000000006,-0.23000000000000004,-0.33000000000000007,-0.030000000000000027
542,1,-0.17000000000000004,-0.19000000000000006,0.0,-0.41000000000000003,-0.06000000000000005
543,1,-0.23000000000000004,-0.19000000000000006,-0.020000000000000018,-0.28,-0.030000000000000027
544,0,-0.17000000000000004,-0.19000000000000006,-0.23000000000000004,-0.33000000000000007,-0.040000000000000036
545,1,-0.23000000000000004,-0.18000000000000005,-0.030000000000000027,-0.30000000000000004,-0.040000000000000036
546,1,-0.08000000000000007,-0.050000000000000044,0.009999999999999898,-0.32000000000000006,-0.06000000000000005
547,0,-0.06000000000000005,0.05999999999999994,-0.020000000000000018,0.09999999999999998,-0.07000000000000006
548,0,-0.09000000000000008,-0.020000000000000018,-0.020000000000000018,-0.08000000000000007,-0.030000000000000027
549,0,0.15999999999999992,0.019999999999999907,-0.14000000000000007,-0.28,-0.08000000000000007
550,0,-0.15000000000000008,-0.15000000000000008,-0.050000000000000044,-0.37000000000000005,0.009999999999999898
551,0,0.25,0.08999999999999997,-0.040000000000000036,-0.15000000000000008,0.009999999999999898
552,1,-0.06000000000000005,-0.07000000000000006,-0.040000000000000036,-0.36000000000000004,-0.13000000000000006
553,1,-0.38000000000000006,-0.08000000000000007,-0.10000000000000003,-0.44000000000000006,-0.56
554,1,-0.30000000000000004,-0.18000000000000005,-0.040000000000000036,-0.20000000000000007,-0.08000000000000007
555,0,-0.030000000000000027,-0.050000000000000044,-0.050000000000000044,-0.45000000000000007,-0.07000000000000006
556,0,0.019999999999999907,-0.07000000000000006,-0.06000000000000005,-0.15000000000000008,0.009999999999999898
557,0,0.05999999999999994,0.039999999999999925,-0.09000000000000008,-0.4,-0.030000000000000027
558,0,0.12,0.019999999999999907,-0.050000000000000044,-0.37000000000000005,-0.020000000000000018
559,0,-0.16000000000000003,-0.040000000000000036,-0.030000000000000027,-0.040000000000000036,-0.050000000000000044
560,0,-0.050000000000000044,-0.09000000000000008,-0.15000000000000008,-0.12000000000000005,-0.06000000000000005
561,0,0.15999999999999992,0.0,-0.16000000000000003,-0.30000000000000004,-0.050000000000000044
562,0,-0.07000000000000006,-0.12000000000000005,-0.11000000000000004,-0.3400000000000001,-0.050000000000000044
563,1,-0.24000000000000005,-0.09000000000000008,-0.010000000000000009,-0.31000000000000005,-0.07000000000000006
564,0,-0.10000000000000003,0.009999999999999898,-0.040000000000000036,-0.28,-0.040000000000000036
565,0,-0.030000000000000027,-0.08000000000000007,-0.11000000000000004,-0.12000000000000005,-0.07000000000000006
566,0,-0.07000000000000006,-0.08000000000000007,-0.10000000000000003,0.06999999999999995,-0.040000000000000036
567,0,0.1399999999999999,-0.030000000000000027,-0.14000000000000007,-0.3400000000000001,-0.050000000000000044
568,0,0.12,0.12,-0.07000000000000006,-0.41000000000000003,-0.030000000000000027
569,0,-0.09000000000000008,0.039999999999999925,-0.21000000000000008,-0.3500000000000001,-0.040000000000000036
570,0,-0.010000000000000009,-0.07000000000000006,-0.11000000000000004,-0.38000000000000006,-0.07000000000000006
571,1,-0.16000000000000003,-0.030000000000000027,0.04999999999999993,-0.3500000000000001,-0.08000000000000007
572,0,0.009999999999999898,-0.12000000000000005,-0.14000000000000007,-0.36000000000000004,-0.020000000000000018
573,1,-0.16000000000000003,-0.09000000000000008,-0.08000000000000007,-0.38000000000000006,-0.10000000000000003
574,0,-0.22000000000000003,-0.020000000000000018,-0.020000000000000018,-0.43000000000000005,-0.040000000000000036
575,0,-0.13000000000000006,0.2699999999999999,-0.010000000000000009,-0.36000000000000004,-0.09000000000000008
576,0,-0.010000000000000009,0.08999999999999997,-0.06000000000000005,-0.28,-0.010000000000000009
577,1,-0.2700000000000001,-0.10000000000000003,-0.020000000000000018,-0.29000000000000004,-0.07000000000000006
578,1,-0.10000000000000003,-0.14000000000000007,0.039999999999999925,-0.3500000000000001,-0.16000000000000003
579,1,0.24,0.25,-0.010000000000000009,-0.21000000000000008,-0.14000000000000007
580,0,0.22999999999999998,0.17999999999999994,-0.07000000000000006,-0.23000000000000004,-0.08000000000000007
581,1,-0.11000000000000004,-0.08000000000000007,0.06999999999999995,0.10999999999999999,-0.08000000000000007
582,0,0.09999999999999998,-0.040000000000000036,-0.040000000000000036,-0.12000000000000005,0.0
583,1,-0.06000000000000005,-0.07000000000000006,0.029999999999999916,-0.09000000000000008,-0.07000000000000006
584,0,-0.020000000000000018,-0.040000000000000036,-0.020000000000000018,-0.36000000000000004,-0.010000000000000009
585,1,-0.19000000000000006,-0.25000000000000006,-0.030000000000000027,-0.4,-0.030000000000000027
586,1,-0.13000000000000006,-0.17000000000000004,0.029999999999999916,-0.43000000000000005,-0.15000000000000008
587,0,-0.08000000000000007,-0.09000000000000008,-0.020000000000000018,-0.010000000000000009,-0.050000000000000044
588,0,0.039999999999999925,0.029999999999999916,-0.11000000000000004,-0.33000000000000007,-0.010000000000000009
589,0,-0.11000000000000004,0.16999999999999993,-0.09000000000000008,0.08999999999999997,-0.020000000000000018
590,0,0.09999999999999998,-0.020000000000000018,-0.07000000000000006,-0.4,-0.020000000000000018
591,1,-0.10000000000000003,-0.010000000000000009,0.04999999999999993,-0.43000000000000005,-0.09000000000000008
592,0,-0.14000000000000007,-0.06000000000000005,-0.030000000000000027,-0.3400000000000001,-0.06000000000000005
593,0,0.09999999999999998,0.09999999999999998,-0.24000000000000005,-0.020000000000000018,-0.050000000000000044
594,0,0.17999999999999994,0.0,-0.21000000000000008,-0.20000000000000007,-0.050000000000000044
595,0,0.32999999999999996,-0.040000000000000036,-0.15000000000000008,-0.30000000000000004,-0.040000000000000036
596,1,0.10999999999999999,-0.050000000000000044,-0.020000000000000018,-0.3500000000000001,-0.13000000000000006
597,0,0.019999999999999907,-0.10000000000000003,-0.10000000000000003,-0.22000000000000003,-0.06000000000000005
598,0,-0.16000000000000003,0.12,-0.06000000000000005,0.2599999999999999,-0.12000000000000005
599,0,0.029999999999999916,0.009999999999999898,-0.13000000000000006,-0.30000000000000004,-0.050000000000000044
600,1,-0.17000000000000004,-0.26000000000000006,0.0,-0.44000000000000006,-0.030000000000000027
601,0,0.039999999999999925,0.05999999999999994,-0.020000000000000018,-0.16000000000000003,-0.06000000000000005
602,1,-0.20000000000000007,-0.16000000000000003,-0.030000000000000027,-0.08000000000000007,-0.08000000000000007
603,1,-0.050000000000000044,-0.14000000000000007,0.0,-0.18000000000000005,-0.10000000000000003
604,0,-0.15000000000000008,-0.020000000000000018,0.019999999999999907,-0.36000000000000004,-0.040000000000000036
605,1,0.009999999999999898,-0.16000000000000003,0.05999999999999994,-0.26000000000000006,-0.08000000000000007
606,1,-0.040000000000000036,-0.06000000000000005,0.029999999999999916,-0.25000000000000006,-0.06000000000000005
607,0,-0.14000000000000007,-0.030000000000000027,-0.030000000000000027,0.07999999999999996,-0.09000000000000008
608,1,-0.06000000000000005,-0.10000000000000003,0.07999999999999996,-0.20000000000000007,-0.07000000000000006
609,1,0.039999999999999925,-0.050000000000000044,0.039999999999999925,-0.18000000000000005,-0.040000000000000036
610,1,-0.11000000000000004,-0.18000000000000005,0.07999999999999996,-0.42000000000000004,-0.020000000000000018
611,1,0.039999999999999925,0.009999999999999898,0.07999999999999996,-0.040000000000000036,-0.09000000000000008
612,1,-0.030000000000000027,-0.14000000000000007,0.019999999999999907,-0.2700000000000001,-0.06000000000000005
613,1,-0.15000000000000008,-0.040000000000000036,-0.030000000000000027,-0.15000000000000008,-0.17000000000000004
614,0,-0.11000000000000004,-0.13000000000000006,0.06999999999999995,-0.16000000000000003,0.029999999999999916
615,1,-0.12000000000000005,-0.12000000000000005,0.10999999999999999,-0.21000000000000008,-0.08000000000000007
616,1,0.019999999999999907,-0.040000000000000036,0.04999999999999993,-0.23000000000000004,-0.18000000000000005
617,1,0.009999999999999898,0.04999999999999993,-0.010000000000000009,-0.29000000000000004,-0.12000000000000005
618,1,0.009999999999999898,0.019999999999999907,0.019999999999999907,-0.21000000000000008,-0.07000000000000006
619,0,0.07999999999999996,0.07999999999999996,0.0,-0.3500000000000001,-0.06000000000000005
620,1,0.0,-0.06000000000000005,0.04999999999999993,-0.07000000000000006,-0.10000000000000003
621,1,0.039999999999999925,-0.10000000000000003,0.029999999999999916,-0.4,-0.07000000000000006
622,1,-0.20000000000000007,-0.18000000000000005,0.0,-0.12000000000000005,-0.08000000000000007
623,1,-0.030000000000000027,-0.040000000000000036,0.04999999999999993,-0.21000000000000008,-0.06000000000000005
624,1,0.05999999999999994,0.029999999999999916,-0.020000000000000018,-0.09000000000000008,-0.10000000000000003
625,1,-0.010000000000000009,-0.06000000000000005,0.039999999999999925,-0.25000000000000006,-0.10000000000000003
626,0,0.019999999999999907,-0.030000000000000027,0.009999999999999898,-0.10000000000000003,-0.050000000000000044
627,1,0.08999999999999997,-0.030000000000000027,-0.010000000000000009,-0.040000000000000036,-0.09000000000000008
628,0,-0.18000000000000005,-0.020000000000000018,-0.020000000000000018,-0.15000000000000008,-0.050000000000000044
629,0,0.019999999999999907,-0.030000000000000027,-0.06000000000000005,-0.030000000000000027,-0.09000000000000008
630,1,0.04999999999999993,-0.10000000000000003,-0.050000000000000044,-0.19000000000000006,-0.050000000000000044
631,0,-0.010000000000000009,0.029999999999999916,-0.09000000000000008,0.07999999999999996,-0.020000000000000018
632,0,-0.020000000000000018,0.07999999999999996,-0.06000000000000005,-0.43000000000000005,-0.07000000000000006
633,0,-0.16000000000000003,0.17999999999999994,-0.07000000000000006,-0.4,-0.050000000000000044
634,0,0.19999999999999996,0.19999999999999996,-0.21000000000000008,-0.29000000000000004,-0.12000000000000005
635,0,-0.050000000000000044,0.0,-0.050000000000000044,-0.14000000000000007,-0.030000000000000027
636,1,-0.13000000000000006,-0.24000000000000005,-0.06000000000000005,-0.2700000000000001,-0.06000000000000005
637,1,-0.07000000000000006,-0.12000000000000005,-0.11000000000000004,-0.010000000000000009,-0.08000000000000007
638,0,-0.24000000000000005,-0.11000000000000004,-0.12000000000000005,-0.36000000000000004,-0.010000000000000009
639,0,-0.050000000000000044,0.039999999999999925,-0.050000000000000044,-0.30000000000000004,-0.020000000000000018
640,0,-0.07000000000000006,-0.10000000000000003,-0.14000000000000007,-0.10000000000000003,-0.010000000000000009
641,0,-0.06000000000000005,0.0,-0.07000000000000006,0.04999999999999993,-0.06000000000000005
642,1,-0.050000000000000044,-0.08000000000000007,-0.050000000000000044,-0.13000000000000006,-0.07000000000000006
643,1,-0.040000000000000036,-0.18000000000000005,0.05999999999999994,-0.44000000000000006,-0.15000000000000008
644,1,-0.030000000000000027,-0.16000000000000003,0.009999999999999898,-0.44000000000000006,-0.030000000000000027
645,1,-0.050000000000000044,0.0,0.05999999999999994,-0.32000000000000006,-0.040000000000000036
646,0,0.06999999999999995,0.039999999999999925,-0.06000000000000005,-0.29000000000000004,-0.010000000000000009
647,1,-0.10000000000000003,-0.12000000000000005,-0.030000000000000027,-0.25000000000000006,-0.08000000000000007
648,0,0.019999999999999907,0.009999999999999898,-0.020000000000000018,0.1299999999999999,-0.020000000000000018
649,0,0.04999999999999993,0.029999999999999916,-0.09000000000000008,-0.07000000000000006,-0.020000000000000018
650,1,0.06999999999999995,-0.09000000000000008,0.0,-0.44000000000000006,-0.06000000000000005
651,1,-0.010000000000000009,-0.030000000000000027,-0.020000000000000018,-0.16000000000000003,-0.08000000000000007
652,1,-0.15000000000000008,-0.09000000000000008,0.019999999999999907,0.05999999999999994,-0.06000000000000005
653,0,-0.12000000000000005,-0.030000000000000027,-0.030000000000000027,-0.19000000000000006,-0.050000000000000044
654,0,0.009999999999999898,-0.16000000000000003,-0.08000000000000007,-0.32000000000000006,-0.010000000000000009
655,0,-0.10000000000000003,-0.10000000000000003,0.0,-0.44000000000000006,-0.010000000000000009
656,1,-0.09000000000000008,-0.10000000000000003,-0.010000000000000009,-0.28,-0.12000000000000005
657,1,-0.17000000000000004,-0.21000000000000008,-0.07000000000000006,-0.39,-0.07000000000000006
658,1,0.019999999999999907,-0.18000000000000005,-0.16000000000000003,-0.3500000000000001,-0.06000000000000005
659,1,-0.030000000000000027,-0.15000000000000008,-0.06000000000000005,-0.32000000000000006,-0.09000000000000008
660,1,-0.13000000000000006,-0.16000000000000003,-0.06000000000000005,-0.38000000000000006,-0.06000000000000005
661,1,-0.15000000000000008,0.029999999999999916,-0.10000000000000003,-0.37000000000000005,-0.20000000000000007
662,0,0.019999999999999907,0.0,-0.040000000000000036,-0.31000000000000005,0.009999999999999898
663,0,-0.050000000000000044,0.08999999999999997,-0.030000000000000027,-0.37000000000000005,-0.07000000000000006
664,0,0.25,0.22999999999999998,-0.24000000000000005,-0.19000000000000006,-0.15000000000000008
665,0,-0.12000000000000005,-0.15000000000000008,-0.2700000000000001,-0.3500000000000001,-0.07000000000000006
666,1,-0.07000000000000006,0.039999999999999925,-0.010000000000000009,-0.39,-0.12000000000000005
667,1,0.0,0.06999999999999995,-0.040000000000000036,-0.36000000000000004,-0.22000000000000003
668,1,-0.14000000000000007,-0.28,0.009999999999999898,-0.38000000000000006,-0.14000000000000007
669,0,-0.050000000000000044,-0.10000000000000003,-0.020000000000000018,-0.15000000000000008,-0.030000000000000027
670,0,0.039999999999999925,-0.050000000000000044,-0.040000000000000036,-0.11000000000000004,-0.06000000000000005
671,1,-0.19000000000000006,-0.15000000000000008,-0.11000000000000004,-0.42000000000000004,-0.09000000000000008
672,1,-0.19000000000000006,-0.050000000000000044,0.009999999999999898,-0.16000000000000003,-0.08000000000000007
673,1,-0.20000000000000007,-0.17000000000000004,-0.010000000000000009,-0.30000000000000004,-0.07000000000000006
674,1,-0.06000000000000005,-0.20000000000000007,-0.030000000000000027,-0.15000000000000008,-0.010000000000000009
675,0,0.029999999999999916,0.019999999999999907,-0.17000000000000004,-0.040000000000000036,-0.06000000000000005
676,0,0.21999999999999997,0.06999999999999995,-0.030000000000000027,-0.43000000000000005,-0.020000000000000018
677,0,-0.09000000000000008,0.029999999999999916,-0.19000000000000006,-0.25000000000000006,-0.050000000000000044
678,0,-0.08000000000000007,0.05999999999999994,-0.040000000000000036,-0.26000000000000006,-0.050000000000000044
679,0,-0.030000000000000027,0.04999999999999993,-0.050000000000000044,-0.07000000000000006,-0.020000000000000018
680,0,-0.08000000000000007,-0.020000000000000018,-0.030000000000000027,0.039999999999999925,-0.030000000000000027
681,1,-0.23000000000000004,-0.10000000000000003,-0.030000000000000027,-0.2700000000000001,-0.06000000000000005
682,0,-0.20000000000000007,-0.12000000000000005,-0.050000000000000044,-0.39,0.039999999999999925
683,1,-0.17000000000000004,-0.22000000000000003,0.12,-0.26000000000000006,-0.06000000000000005
684,1,-0.45000000000000007,-0.15000000000000008,0.10999999999999999,-0.43000000000000005,-0.11000000000000004
685,0,-0.16000000000000003,-0.030000000000000027,-0.12000000000000005,-0.38000000000000006,-0.020000000000000018
686,0,-0.09000000000000008,-0.06000000000000005,-0.010000000000000009,-0.37000000000000005,0.05999999999999994
687,0,-0.21000000000000008,-0.06000000000000005,-0.12000000000000005,-0.29000000000000004,-0.050000000000000044
688,1,-0.20000000000000007,-0.26000000000000006,-0.06000000000000005,-0.37000000000000005,-0.010000000000000009
689,0,-0.07000000000000006,-0.12000000000000005,-0.050000000000000044,-0.38000000000000006,-0.040000000000000036
690,1,-0.21000000000000008,-0.12000000000000005,-0.020000000000000018,-0.30000000000000004,-0.040000000000000036
691,1,-0.13000000000000006,-0.28,-0.030000000000000027,-0.22000000000000003,-0.010000000000000009
692,0,-0.23000000000000004,-0.08000000000000007,-0.010000000000000009,-0.4,-0.030000000000000027
693,1,-0.11000000000000004,-0.3500000000000001,-0.07000000000000006,-0.32000000000000006,-0.10000000000000003
694,1,-0.12000000000000005,-0.22000000000000003,0.04999999999999993,-0.43000000000000005,-0.07000000000000006
695,0,0.30999999999999994,-0.09000000000000008,0.039999999999999925,-0.09000000000000008,0.029999999999999916
696,0,-0.26000000000000006,-0.010000000000000009,0.019999999999999907,-0.4,0.04999999999999993
697,1,-0.2700000000000001,-0.22000000000000003,-0.010000000000000009,-0.32000000000000006,-0.050000000000000044
698,0,0.18999999999999995,0.10999999999999999,-0.050000000000000044,-0.2700000000000001,-0.040000000000000036
699,0,-0.09000000000000008,-0.09000000000000008,-0.06000000000000005,-0.41000000000000003,-0.06000000000000005
1 Id y x1 x2 x3 x4 x5
2 0 0 0.019999999999999907 0.04999999999999993 -0.09000000000000008 -0.43000000000000005 -0.08000000000000007
3 1 0 -0.13000000000000006 0.10999999999999999 -0.08000000000000007 -0.29000000000000004 -0.030000000000000027
4 2 0 0.07999999999999996 0.05999999999999994 -0.07000000000000006 -0.41000000000000003 -0.030000000000000027
5 3 0 0.019999999999999907 -0.12000000000000005 0.009999999999999898 -0.43000000000000005 -0.020000000000000018
6 4 1 -0.14000000000000007 -0.12000000000000005 -0.08000000000000007 -0.020000000000000018 -0.08000000000000007
7 5 1 -0.050000000000000044 -0.16000000000000003 0.0 -0.39 -0.07000000000000006
8 6 0 -0.06000000000000005 -0.020000000000000018 -0.08000000000000007 0.08999999999999997 -0.030000000000000027
9 7 0 -0.08000000000000007 -0.11000000000000004 0.029999999999999916 -0.36000000000000004 0.019999999999999907
10 8 1 -0.010000000000000009 -0.06000000000000005 0.09999999999999998 -0.20000000000000007 -0.07000000000000006
11 9 0 -0.16000000000000003 -0.17000000000000004 0.039999999999999925 -0.41000000000000003 0.019999999999999907
12 10 1 -0.13000000000000006 -0.17000000000000004 -0.020000000000000018 -0.3500000000000001 -0.030000000000000027
13 11 1 -0.14000000000000007 -0.19000000000000006 0.029999999999999916 -0.36000000000000004 -0.040000000000000036
14 12 1 -0.16000000000000003 -0.14000000000000007 0.009999999999999898 -0.21000000000000008 -0.030000000000000027
15 13 1 0.039999999999999925 -0.16000000000000003 -0.040000000000000036 -0.10000000000000003 -0.030000000000000027
16 14 0 0.09999999999999998 -0.010000000000000009 -0.11000000000000004 -0.37000000000000005 -0.10000000000000003
17 15 1 -0.10000000000000003 -0.12000000000000005 -0.040000000000000036 -0.45000000000000007 -0.06000000000000005
18 16 1 -0.09000000000000008 -0.17000000000000004 -0.06000000000000005 -0.45000000000000007 -0.07000000000000006
19 17 0 0.019999999999999907 -0.09000000000000008 -0.020000000000000018 -0.45000000000000007 -0.050000000000000044
20 18 1 -0.06000000000000005 -0.22000000000000003 -0.010000000000000009 -0.3500000000000001 -0.07000000000000006
21 19 0 0.04999999999999993 0.039999999999999925 -0.010000000000000009 -0.3500000000000001 -0.06000000000000005
22 20 1 -0.11000000000000004 -0.16000000000000003 -0.06000000000000005 -0.4 -0.06000000000000005
23 21 0 -0.13000000000000006 -0.12000000000000005 -0.08000000000000007 -0.3400000000000001 -0.050000000000000044
24 22 0 0.16999999999999993 0.06999999999999995 -0.14000000000000007 -0.26000000000000006 -0.07000000000000006
25 23 0 -0.13000000000000006 -0.030000000000000027 -0.040000000000000036 -0.43000000000000005 -0.010000000000000009
26 24 0 -0.10000000000000003 -0.030000000000000027 -0.040000000000000036 -0.41000000000000003 0.019999999999999907
27 25 0 -0.050000000000000044 -0.050000000000000044 -0.040000000000000036 -0.050000000000000044 -0.020000000000000018
28 26 0 0.029999999999999916 -0.11000000000000004 -0.030000000000000027 -0.37000000000000005 0.029999999999999916
29 27 1 0.009999999999999898 -0.09000000000000008 0.039999999999999925 -0.38000000000000006 -0.050000000000000044
30 28 0 0.06999999999999995 0.10999999999999999 0.009999999999999898 -0.32000000000000006 -0.07000000000000006
31 29 0 0.24 0.31999999999999995 -0.20000000000000007 -0.17000000000000004 0.0
32 30 0 -0.030000000000000027 -0.020000000000000018 -0.13000000000000006 -0.4600000000000001 0.009999999999999898
33 31 0 -0.050000000000000044 -0.050000000000000044 -0.13000000000000006 0.30999999999999994 -0.040000000000000036
34 32 0 -0.18000000000000005 0.04999999999999993 0.04999999999999993 -0.44000000000000006 -0.030000000000000027
35 33 0 -0.23000000000000004 -0.010000000000000009 -0.050000000000000044 -0.13000000000000006 -0.050000000000000044
36 34 0 0.21999999999999997 0.17999999999999994 -0.14000000000000007 -0.30000000000000004 -0.13000000000000006
37 35 1 0.17999999999999994 0.10999999999999999 -0.09000000000000008 -0.22000000000000003 -0.14000000000000007
38 36 0 0.15999999999999992 0.04999999999999993 -0.11000000000000004 -0.26000000000000006 -0.020000000000000018
39 37 0 -0.16000000000000003 -0.11000000000000004 0.009999999999999898 -0.38000000000000006 0.0
40 38 0 0.029999999999999916 -0.030000000000000027 -0.13000000000000006 -0.12000000000000005 -0.06000000000000005
41 39 0 0.009999999999999898 -0.030000000000000027 -0.030000000000000027 -0.22000000000000003 -0.030000000000000027
42 40 0 0.29999999999999993 0.12 -0.17000000000000004 -0.32000000000000006 -0.020000000000000018
43 41 0 0.29999999999999993 0.17999999999999994 -0.050000000000000044 -0.16000000000000003 -0.010000000000000009
44 42 0 0.22999999999999998 0.009999999999999898 -0.15000000000000008 -0.28 0.029999999999999916
45 43 0 -0.15000000000000008 -0.020000000000000018 -0.17000000000000004 -0.36000000000000004 -0.050000000000000044
46 44 1 -0.19000000000000006 -0.20000000000000007 0.0 -0.38000000000000006 -0.08000000000000007
47 45 1 -0.030000000000000027 -0.25000000000000006 0.019999999999999907 -0.17000000000000004 -0.09000000000000008
48 46 1 0.17999999999999994 0.18999999999999995 0.019999999999999907 -0.09000000000000008 -0.16000000000000003
49 47 1 -0.07000000000000006 -0.17000000000000004 -0.040000000000000036 -0.2700000000000001 -0.08000000000000007
50 48 0 0.17999999999999994 0.009999999999999898 -0.050000000000000044 -0.28 0.019999999999999907
51 49 1 -0.14000000000000007 -0.32000000000000006 -0.22000000000000003 -0.4 -0.06000000000000005
52 50 1 -0.08000000000000007 -0.17000000000000004 -0.050000000000000044 -0.3500000000000001 -0.040000000000000036
53 51 0 -0.15000000000000008 -0.030000000000000027 -0.11000000000000004 -0.42000000000000004 -0.040000000000000036
54 52 0 -0.11000000000000004 -0.10000000000000003 -0.010000000000000009 -0.13000000000000006 -0.010000000000000009
55 53 1 0.0 -0.08000000000000007 0.019999999999999907 -0.29000000000000004 -0.050000000000000044
56 54 1 0.07999999999999996 0.029999999999999916 0.0 -0.33000000000000007 -0.10000000000000003
57 55 1 0.07999999999999996 0.0 0.0 -0.3400000000000001 -0.11000000000000004
58 56 0 0.09999999999999998 0.05999999999999994 -0.07000000000000006 -0.4600000000000001 -0.07000000000000006
59 57 0 -0.030000000000000027 -0.12000000000000005 -0.050000000000000044 -0.23000000000000004 -0.010000000000000009
60 58 0 -0.18000000000000005 -0.07000000000000006 -0.030000000000000027 -0.37000000000000005 -0.06000000000000005
61 59 0 -0.11000000000000004 0.019999999999999907 -0.08000000000000007 0.10999999999999999 -0.040000000000000036
62 60 1 -0.13000000000000006 -0.21000000000000008 -0.040000000000000036 -0.040000000000000036 -0.020000000000000018
63 61 1 -0.19000000000000006 -0.24000000000000005 -0.09000000000000008 -0.38000000000000006 -0.11000000000000004
64 62 1 -0.08000000000000007 -0.13000000000000006 -0.050000000000000044 -0.24000000000000005 -0.040000000000000036
65 63 0 -0.15000000000000008 -0.10000000000000003 0.029999999999999916 -0.37000000000000005 0.019999999999999907
66 64 0 -0.020000000000000018 -0.08000000000000007 -0.12000000000000005 -0.48000000000000004 -0.040000000000000036
67 65 0 0.039999999999999925 -0.09000000000000008 -0.11000000000000004 -0.3400000000000001 -0.050000000000000044
68 66 0 -0.22000000000000003 -0.10000000000000003 0.009999999999999898 -0.4700000000000001 -0.010000000000000009
69 67 0 -0.08000000000000007 -0.020000000000000018 -0.010000000000000009 -0.44000000000000006 -0.050000000000000044
70 68 1 -0.09000000000000008 -0.17000000000000004 0.029999999999999916 -0.41000000000000003 0.009999999999999898
71 69 0 0.25 0.2899999999999999 -0.09000000000000008 -0.19000000000000006 0.0
72 70 0 -0.08000000000000007 -0.14000000000000007 -0.040000000000000036 -0.32000000000000006 0.0
73 71 0 0.019999999999999907 -0.050000000000000044 -0.07000000000000006 -0.29000000000000004 0.009999999999999898
74 72 0 0.039999999999999925 -0.06000000000000005 -0.12000000000000005 0.04999999999999993 -0.09000000000000008
75 73 0 -0.11000000000000004 -0.010000000000000009 -0.020000000000000018 0.09999999999999998 -0.09000000000000008
76 74 1 -0.10000000000000003 -0.07000000000000006 0.019999999999999907 -0.33000000000000007 -0.12000000000000005
77 75 1 -0.07000000000000006 -0.14000000000000007 0.0 -0.010000000000000009 -0.14000000000000007
78 76 0 0.06999999999999995 -0.030000000000000027 -0.020000000000000018 -0.16000000000000003 -0.06000000000000005
79 77 0 -0.06000000000000005 -0.020000000000000018 -0.030000000000000027 -0.020000000000000018 -0.050000000000000044
80 78 1 0.06999999999999995 0.009999999999999898 0.029999999999999916 -0.16000000000000003 -0.18000000000000005
81 79 0 -0.13000000000000006 0.009999999999999898 -0.050000000000000044 -0.07000000000000006 -0.08000000000000007
82 80 0 -0.08000000000000007 -0.11000000000000004 -0.010000000000000009 -0.06000000000000005 -0.030000000000000027
83 81 0 -0.06000000000000005 0.019999999999999907 -0.10000000000000003 -0.10000000000000003 -0.10000000000000003
84 82 0 -0.050000000000000044 -0.020000000000000018 0.039999999999999925 0.009999999999999898 0.019999999999999907
85 83 1 -0.020000000000000018 -0.040000000000000036 0.06999999999999995 -0.19000000000000006 -0.10000000000000003
86 84 0 0.10999999999999999 0.05999999999999994 -0.16000000000000003 -0.13000000000000006 -0.06000000000000005
87 85 0 -0.28 0.019999999999999907 -0.3500000000000001 -0.43000000000000005 -0.050000000000000044
88 86 0 -0.17000000000000004 -0.12000000000000005 -0.21000000000000008 -0.4 -0.010000000000000009
89 87 0 0.24 0.06999999999999995 -0.11000000000000004 -0.2700000000000001 -0.050000000000000044
90 88 1 -0.06000000000000005 -0.040000000000000036 0.029999999999999916 -0.26000000000000006 -0.050000000000000044
91 89 0 -0.14000000000000007 -0.09000000000000008 -0.040000000000000036 -0.15000000000000008 -0.030000000000000027
92 90 1 -0.20000000000000007 -0.10000000000000003 0.05999999999999994 -0.10000000000000003 -0.050000000000000044
93 91 1 -0.10000000000000003 -0.18000000000000005 -0.09000000000000008 -0.3400000000000001 -0.040000000000000036
94 92 1 -0.16000000000000003 -0.11000000000000004 0.0 -0.36000000000000004 -0.11000000000000004
95 93 1 -0.23000000000000004 -0.13000000000000006 0.07999999999999996 -0.4 -0.040000000000000036
96 94 0 -0.07000000000000006 0.04999999999999993 -0.07000000000000006 -0.31000000000000005 -0.06000000000000005
97 95 1 -0.18000000000000005 -0.06000000000000005 -0.19000000000000006 -0.30000000000000004 -0.13000000000000006
98 96 0 0.1299999999999999 0.1399999999999999 -0.040000000000000036 -0.20000000000000007 -0.10000000000000003
99 97 0 0.04999999999999993 0.15999999999999992 -0.17000000000000004 -0.23000000000000004 0.019999999999999907
100 98 0 0.21999999999999997 0.18999999999999995 -0.16000000000000003 -0.28 -0.030000000000000027
101 99 1 0.07999999999999996 0.009999999999999898 0.009999999999999898 -0.29000000000000004 -0.19000000000000006
102 100 0 -0.20000000000000007 0.019999999999999907 -0.21000000000000008 -0.32000000000000006 -0.12000000000000005
103 101 0 -0.20000000000000007 -0.13000000000000006 -0.17000000000000004 -0.44000000000000006 -0.07000000000000006
104 102 1 -0.09000000000000008 -0.040000000000000036 -0.06000000000000005 -0.16000000000000003 -0.15000000000000008
105 103 1 -0.08000000000000007 -0.33000000000000007 0.009999999999999898 -0.29000000000000004 -0.08000000000000007
106 104 1 -0.09000000000000008 -0.17000000000000004 -0.010000000000000009 -0.32000000000000006 -0.09000000000000008
107 105 0 -0.12000000000000005 0.029999999999999916 -0.20000000000000007 -0.4 -0.040000000000000036
108 106 1 -0.14000000000000007 -0.21000000000000008 -0.020000000000000018 -0.38000000000000006 0.0
109 107 0 -0.26000000000000006 0.0 -0.010000000000000009 -0.38000000000000006 -0.06000000000000005
110 108 0 0.08999999999999997 0.08999999999999997 -0.040000000000000036 -0.4 0.039999999999999925
111 109 0 -0.29000000000000004 0.039999999999999925 -0.08000000000000007 -0.33000000000000007 -0.010000000000000009
112 110 1 -0.11000000000000004 -0.15000000000000008 -0.06000000000000005 -0.10000000000000003 -0.06000000000000005
113 111 0 -0.12000000000000005 -0.040000000000000036 -0.15000000000000008 -0.33000000000000007 -0.050000000000000044
114 112 1 -0.26000000000000006 -0.24000000000000005 0.009999999999999898 -0.37000000000000005 -0.08000000000000007
115 113 1 -0.16000000000000003 -0.12000000000000005 -0.07000000000000006 -0.09000000000000008 -0.07000000000000006
116 114 0 -0.11000000000000004 -0.050000000000000044 -0.06000000000000005 -0.4 -0.040000000000000036
117 115 0 -0.11000000000000004 -0.11000000000000004 -0.06000000000000005 0.039999999999999925 -0.07000000000000006
118 116 1 0.029999999999999916 0.10999999999999999 0.0 -0.15000000000000008 -0.09000000000000008
119 117 1 -0.09000000000000008 -0.09000000000000008 0.009999999999999898 -0.08000000000000007 -0.08000000000000007
120 118 1 -0.21000000000000008 -0.040000000000000036 -0.08000000000000007 -0.3400000000000001 -0.30000000000000004
121 119 1 -0.09000000000000008 -0.15000000000000008 0.09999999999999998 -0.30000000000000004 -0.030000000000000027
122 120 0 0.07999999999999996 0.05999999999999994 -0.2700000000000001 -0.28 -0.050000000000000044
123 121 0 -0.010000000000000009 -0.030000000000000027 -0.010000000000000009 -0.10000000000000003 -0.040000000000000036
124 122 0 0.10999999999999999 0.05999999999999994 -0.020000000000000018 -0.13000000000000006 -0.030000000000000027
125 123 0 0.029999999999999916 0.039999999999999925 -0.07000000000000006 -0.13000000000000006 -0.030000000000000027
126 124 0 -0.020000000000000018 -0.010000000000000009 -0.22000000000000003 -0.25000000000000006 -0.020000000000000018
127 125 0 0.019999999999999907 0.05999999999999994 -0.020000000000000018 -0.39 -0.08000000000000007
128 126 1 -0.16000000000000003 -0.18000000000000005 -0.030000000000000027 -0.4 -0.040000000000000036
129 127 0 -0.10000000000000003 0.1499999999999999 -0.08000000000000007 -0.030000000000000027 -0.030000000000000027
130 128 1 -0.030000000000000027 -0.050000000000000044 -0.010000000000000009 -0.51 -0.11000000000000004
131 129 1 -0.15000000000000008 -0.16000000000000003 0.029999999999999916 -0.09000000000000008 -0.08000000000000007
132 130 1 -0.06000000000000005 0.07999999999999996 0.009999999999999898 -0.41000000000000003 -0.09000000000000008
133 131 0 -0.16000000000000003 0.05999999999999994 -0.040000000000000036 -0.25000000000000006 -0.07000000000000006
134 132 1 0.039999999999999925 -0.06000000000000005 0.009999999999999898 -0.31000000000000005 -0.15000000000000008
135 133 0 0.05999999999999994 -0.050000000000000044 -0.040000000000000036 -0.14000000000000007 -0.020000000000000018
136 134 0 -0.21000000000000008 0.019999999999999907 -0.020000000000000018 -0.4 -0.050000000000000044
137 135 0 -0.22000000000000003 -0.020000000000000018 -0.06000000000000005 -0.3500000000000001 -0.020000000000000018
138 136 0 -0.17000000000000004 0.019999999999999907 -0.06000000000000005 -0.30000000000000004 -0.020000000000000018
139 137 0 -0.08000000000000007 -0.020000000000000018 -0.06000000000000005 -0.39 -0.030000000000000027
140 138 1 -0.2700000000000001 -0.24000000000000005 0.019999999999999907 -0.41000000000000003 -0.06000000000000005
141 139 1 -0.09000000000000008 -0.24000000000000005 0.07999999999999996 -0.26000000000000006 0.06999999999999995
142 140 1 -0.17000000000000004 -0.09000000000000008 0.0 -0.4 -0.09000000000000008
143 141 0 0.019999999999999907 -0.08000000000000007 -0.050000000000000044 -0.09000000000000008 -0.010000000000000009
144 142 1 0.07999999999999996 0.039999999999999925 0.009999999999999898 -0.37000000000000005 -0.13000000000000006
145 143 1 -0.19000000000000006 -0.10000000000000003 -0.16000000000000003 -0.29000000000000004 -0.11000000000000004
146 144 0 -0.13000000000000006 0.009999999999999898 -0.030000000000000027 -0.4 -0.020000000000000018
147 145 1 -0.28 -0.19000000000000006 0.04999999999999993 -0.4700000000000001 -0.040000000000000036
148 146 1 0.029999999999999916 -0.08000000000000007 -0.06000000000000005 -0.42000000000000004 -0.11000000000000004
149 147 0 -0.17000000000000004 -0.010000000000000009 -0.08000000000000007 -0.25000000000000006 -0.020000000000000018
150 148 1 -0.30000000000000004 -0.20000000000000007 -0.09000000000000008 -0.22000000000000003 -0.030000000000000027
151 149 1 -0.050000000000000044 -0.22000000000000003 -0.06000000000000005 -0.37000000000000005 -0.06000000000000005
152 150 0 0.019999999999999907 -0.06000000000000005 -0.06000000000000005 -0.44000000000000006 -0.08000000000000007
153 151 1 -0.12000000000000005 -0.17000000000000004 -0.030000000000000027 -0.42000000000000004 -0.020000000000000018
154 152 1 -0.15000000000000008 -0.17000000000000004 -0.12000000000000005 -0.22000000000000003 -0.08000000000000007
155 153 0 -0.11000000000000004 -0.13000000000000006 -0.050000000000000044 -0.32000000000000006 -0.020000000000000018
156 154 0 -0.20000000000000007 0.12 -0.10000000000000003 -0.4 -0.030000000000000027
157 155 1 -0.14000000000000007 -0.25000000000000006 -0.06000000000000005 -0.41000000000000003 -0.030000000000000027
158 156 1 -0.14000000000000007 -0.13000000000000006 0.0 -0.4600000000000001 -0.07000000000000006
159 157 0 0.10999999999999999 0.1499999999999999 -0.040000000000000036 0.08999999999999997 -0.030000000000000027
160 158 1 -0.07000000000000006 -0.09000000000000008 -0.030000000000000027 -0.4 -0.08000000000000007
161 159 0 0.1499999999999999 0.029999999999999916 -0.08000000000000007 -0.13000000000000006 0.029999999999999916
162 160 1 -0.16000000000000003 -0.14000000000000007 0.1499999999999999 -0.3500000000000001 -0.020000000000000018
163 161 1 -0.16000000000000003 -0.14000000000000007 0.1499999999999999 -0.3500000000000001 -0.020000000000000018
164 162 0 -0.020000000000000018 -0.07000000000000006 -0.07000000000000006 -0.36000000000000004 -0.040000000000000036
165 163 0 -0.14000000000000007 -0.050000000000000044 -0.06000000000000005 -0.44000000000000006 -0.040000000000000036
166 164 0 0.009999999999999898 -0.050000000000000044 -0.030000000000000027 -0.38000000000000006 0.0
167 165 0 -0.21000000000000008 -0.11000000000000004 -0.13000000000000006 -0.45000000000000007 0.0
168 166 1 -0.14000000000000007 -0.14000000000000007 -0.14000000000000007 -0.36000000000000004 -0.07000000000000006
169 167 0 -0.30000000000000004 -0.06000000000000005 -0.23000000000000004 -0.28 -0.050000000000000044
170 168 0 -0.17000000000000004 -0.14000000000000007 -0.18000000000000005 -0.16000000000000003 -0.07000000000000006
171 169 0 -0.30000000000000004 -0.12000000000000005 -0.26000000000000006 -0.45000000000000007 -0.050000000000000044
172 170 1 -0.25000000000000006 -0.12000000000000005 -0.030000000000000027 -0.33000000000000007 -0.050000000000000044
173 171 0 -0.08000000000000007 0.04999999999999993 -0.12000000000000005 -0.36000000000000004 -0.09000000000000008
174 172 1 0.09999999999999998 -0.11000000000000004 -0.06000000000000005 -0.33000000000000007 -0.07000000000000006
175 173 1 -0.3500000000000001 -0.15000000000000008 -0.010000000000000009 -0.45000000000000007 -0.06000000000000005
176 174 0 -0.18000000000000005 0.12 -0.12000000000000005 -0.11000000000000004 -0.030000000000000027
177 175 1 -0.12000000000000005 -0.18000000000000005 -0.08000000000000007 -0.24000000000000005 -0.030000000000000027
178 176 1 -0.25000000000000006 -0.25000000000000006 0.0 -0.23000000000000004 -0.040000000000000036
179 177 1 -0.07000000000000006 -0.25000000000000006 -0.07000000000000006 -0.21000000000000008 -0.050000000000000044
180 178 1 -0.18000000000000005 -0.19000000000000006 0.0 -0.3500000000000001 -0.07000000000000006
181 179 1 -0.17000000000000004 -0.16000000000000003 -0.030000000000000027 0.10999999999999999 -0.09000000000000008
182 180 1 -0.32000000000000006 -0.22000000000000003 0.1299999999999999 -0.38000000000000006 -0.040000000000000036
183 181 1 -0.07000000000000006 -0.13000000000000006 -0.050000000000000044 -0.43000000000000005 -0.09000000000000008
184 182 1 -0.020000000000000018 -0.18000000000000005 -0.040000000000000036 -0.38000000000000006 -0.08000000000000007
185 183 0 -0.13000000000000006 0.009999999999999898 -0.030000000000000027 -0.030000000000000027 -0.030000000000000027
186 184 0 -0.08000000000000007 0.07999999999999996 0.04999999999999993 -0.33000000000000007 0.039999999999999925
187 185 0 -0.25000000000000006 -0.010000000000000009 -0.040000000000000036 -0.39 -0.040000000000000036
188 186 0 -0.24000000000000005 0.009999999999999898 -0.06000000000000005 -0.41000000000000003 -0.030000000000000027
189 187 0 -0.24000000000000005 -0.14000000000000007 -0.040000000000000036 -0.32000000000000006 0.039999999999999925
190 188 0 0.029999999999999916 -0.06000000000000005 -0.040000000000000036 -0.28 -0.010000000000000009
191 189 0 -0.19000000000000006 -0.14000000000000007 -0.050000000000000044 -0.45000000000000007 0.009999999999999898
192 190 0 0.18999999999999995 0.1399999999999999 -0.18000000000000005 -0.29000000000000004 -0.07000000000000006
193 191 0 0.04999999999999993 0.15999999999999992 -0.25000000000000006 -0.23000000000000004 0.0
194 192 0 -0.12000000000000005 -0.14000000000000007 0.039999999999999925 -0.3500000000000001 0.009999999999999898
195 193 0 -0.040000000000000036 -0.050000000000000044 -0.050000000000000044 -0.020000000000000018 -0.010000000000000009
196 194 0 0.06999999999999995 0.0 -0.11000000000000004 0.019999999999999907 -0.050000000000000044
197 195 1 -0.040000000000000036 0.0 -0.020000000000000018 -0.030000000000000027 -0.11000000000000004
198 196 1 0.019999999999999907 0.019999999999999907 0.019999999999999907 -0.07000000000000006 -0.07000000000000006
199 197 0 0.15999999999999992 0.05999999999999994 -0.22000000000000003 -0.2700000000000001 0.0
200 198 0 0.15999999999999992 0.04999999999999993 -0.19000000000000006 -0.26000000000000006 0.009999999999999898
201 199 1 -0.10000000000000003 -0.13000000000000006 -0.18000000000000005 -0.23000000000000004 -0.08000000000000007
202 200 0 0.009999999999999898 0.009999999999999898 -0.12000000000000005 -0.19000000000000006 -0.040000000000000036
203 201 1 -0.14000000000000007 -0.25000000000000006 0.05999999999999994 -0.44000000000000006 -0.16000000000000003
204 202 0 -0.07000000000000006 -0.10000000000000003 -0.11000000000000004 -0.11000000000000004 -0.040000000000000036
205 203 0 -0.14000000000000007 0.019999999999999907 -0.15000000000000008 0.08999999999999997 -0.10000000000000003
206 204 0 0.029999999999999916 0.04999999999999993 -0.22000000000000003 -0.3400000000000001 -0.050000000000000044
207 205 0 -0.040000000000000036 0.20999999999999996 -0.18000000000000005 -0.22000000000000003 -0.050000000000000044
208 206 1 -0.06000000000000005 -0.040000000000000036 0.039999999999999925 -0.050000000000000044 -0.08000000000000007
209 207 1 -0.07000000000000006 0.039999999999999925 -0.13000000000000006 0.0 -0.20000000000000007
210 208 1 -0.06000000000000005 -0.15000000000000008 -0.12000000000000005 -0.06000000000000005 -0.14000000000000007
211 209 1 -0.06000000000000005 -0.16000000000000003 0.0 0.1399999999999999 -0.06000000000000005
212 210 0 -0.19000000000000006 0.019999999999999907 -0.12000000000000005 -0.050000000000000044 -0.12000000000000005
213 211 0 -0.010000000000000009 -0.11000000000000004 -0.11000000000000004 -0.020000000000000018 -0.06000000000000005
214 212 0 0.10999999999999999 0.12 -0.10000000000000003 -0.2700000000000001 -0.10000000000000003
215 213 0 -0.030000000000000027 -0.050000000000000044 -0.10000000000000003 -0.28 -0.08000000000000007
216 214 0 -0.21000000000000008 0.09999999999999998 -0.07000000000000006 -0.3500000000000001 -0.020000000000000018
217 215 1 -0.040000000000000036 -0.16000000000000003 0.039999999999999925 -0.44000000000000006 -0.010000000000000009
218 216 1 0.20999999999999996 0.22999999999999998 0.019999999999999907 -0.33000000000000007 -0.08000000000000007
219 217 0 -0.09000000000000008 -0.10000000000000003 0.029999999999999916 -0.07000000000000006 0.0
220 218 0 0.16999999999999993 0.2699999999999999 -0.13000000000000006 -0.26000000000000006 -0.010000000000000009
221 219 0 0.21999999999999997 0.17999999999999994 0.019999999999999907 -0.31000000000000005 -0.030000000000000027
222 220 0 0.1399999999999999 0.08999999999999997 -0.020000000000000018 -0.28 0.039999999999999925
223 221 0 -0.09000000000000008 -0.020000000000000018 -0.19000000000000006 -0.42000000000000004 -0.06000000000000005
224 222 1 0.0 -0.040000000000000036 -0.08000000000000007 -0.39 -0.10000000000000003
225 223 1 0.009999999999999898 -0.15000000000000008 0.029999999999999916 -0.32000000000000006 -0.16000000000000003
226 224 1 0.0 -0.15000000000000008 0.019999999999999907 -0.3500000000000001 -0.14000000000000007
227 225 0 0.019999999999999907 0.0 -0.11000000000000004 -0.44000000000000006 -0.050000000000000044
228 226 1 -0.030000000000000027 -0.18000000000000005 0.09999999999999998 -0.31000000000000005 -0.13000000000000006
229 227 1 -0.22000000000000003 -0.20000000000000007 -0.020000000000000018 -0.45000000000000007 -0.20000000000000007
230 228 0 0.1299999999999999 0.04999999999999993 -0.18000000000000005 -0.29000000000000004 -0.040000000000000036
231 229 1 -0.19000000000000006 -0.030000000000000027 0.039999999999999925 -0.37000000000000005 -0.14000000000000007
232 230 1 -0.15000000000000008 -0.11000000000000004 -0.030000000000000027 -0.39 -0.050000000000000044
233 231 1 -0.25000000000000006 -0.10000000000000003 -0.020000000000000018 -0.040000000000000036 -0.06000000000000005
234 232 0 -0.20000000000000007 -0.19000000000000006 -0.23000000000000004 -0.42000000000000004 0.009999999999999898
235 233 0 0.2599999999999999 0.21999999999999997 -0.07000000000000006 -0.33000000000000007 -0.10000000000000003
236 234 0 0.2599999999999999 0.18999999999999995 -0.020000000000000018 -0.33000000000000007 -0.10000000000000003
237 235 1 -0.15000000000000008 -0.050000000000000044 0.019999999999999907 -0.41000000000000003 -0.11000000000000004
238 236 1 -0.18000000000000005 -0.050000000000000044 0.18999999999999995 -0.39 -0.010000000000000009
239 237 1 -0.18000000000000005 -0.050000000000000044 0.18999999999999995 -0.39 -0.010000000000000009
240 238 1 -0.030000000000000027 -0.12000000000000005 -0.050000000000000044 -0.23000000000000004 -0.040000000000000036
241 239 0 -0.10000000000000003 -0.020000000000000018 0.1499999999999999 -0.41000000000000003 0.029999999999999916
242 240 0 -0.16000000000000003 0.0 -0.08000000000000007 -0.42000000000000004 -0.09000000000000008
243 241 1 -0.030000000000000027 -0.030000000000000027 0.039999999999999925 -0.43000000000000005 -0.07000000000000006
244 242 0 -0.14000000000000007 0.009999999999999898 0.15999999999999992 -0.3400000000000001 0.009999999999999898
245 243 1 -0.11000000000000004 -0.29000000000000004 0.009999999999999898 -0.20000000000000007 -0.040000000000000036
246 244 1 -0.36000000000000004 -0.30000000000000004 -0.040000000000000036 -0.42000000000000004 -0.030000000000000027
247 245 0 -0.050000000000000044 -0.030000000000000027 -0.010000000000000009 -0.42000000000000004 -0.050000000000000044
248 246 0 -0.12000000000000005 0.12 -0.11000000000000004 -0.050000000000000044 -0.040000000000000036
249 247 1 -0.29000000000000004 -0.17000000000000004 0.09999999999999998 -0.45000000000000007 -0.12000000000000005
250 248 0 -0.010000000000000009 -0.14000000000000007 -0.22000000000000003 -0.26000000000000006 -0.040000000000000036
251 249 0 -0.22000000000000003 -0.14000000000000007 -0.26000000000000006 -0.33000000000000007 -0.030000000000000027
252 250 0 -0.12000000000000005 -0.030000000000000027 -0.040000000000000036 -0.33000000000000007 -0.050000000000000044
253 251 0 0.029999999999999916 0.019999999999999907 0.0 -0.3500000000000001 -0.020000000000000018
254 252 1 -0.17000000000000004 -0.28 -0.10000000000000003 -0.44000000000000006 -0.15000000000000008
255 253 1 0.0 -0.13000000000000006 -0.020000000000000018 -0.4 -0.06000000000000005
256 254 0 -0.20000000000000007 0.12 -0.18000000000000005 -0.48000000000000004 -0.030000000000000027
257 255 1 -0.29000000000000004 -0.20000000000000007 0.039999999999999925 -0.23000000000000004 -0.19000000000000006
258 256 1 -0.21000000000000008 -0.16000000000000003 0.029999999999999916 -0.3400000000000001 -0.09000000000000008
259 257 1 -0.14000000000000007 -0.24000000000000005 -0.06000000000000005 -0.3500000000000001 -0.050000000000000044
260 258 1 -0.33000000000000007 -0.36000000000000004 -0.030000000000000027 -0.36000000000000004 -0.12000000000000005
261 259 0 -0.010000000000000009 -0.020000000000000018 0.0 -0.3400000000000001 -0.06000000000000005
262 260 1 -0.20000000000000007 -0.32000000000000006 -0.07000000000000006 -0.4 -0.050000000000000044
263 261 1 -0.18000000000000005 -0.08000000000000007 0.029999999999999916 -0.3400000000000001 -0.10000000000000003
264 262 0 0.24 -0.10000000000000003 -0.06000000000000005 -0.41000000000000003 -0.030000000000000027
265 263 0 0.039999999999999925 0.0 -0.09000000000000008 -0.36000000000000004 -0.06000000000000005
266 264 1 -0.15000000000000008 -0.32000000000000006 -0.020000000000000018 -0.30000000000000004 -0.15000000000000008
267 265 0 -0.09000000000000008 0.08999999999999997 -0.020000000000000018 0.05999999999999994 -0.030000000000000027
268 266 1 -0.13000000000000006 -0.17000000000000004 -0.020000000000000018 -0.42000000000000004 -0.09000000000000008
269 267 0 -0.06000000000000005 -0.050000000000000044 -0.040000000000000036 -0.4700000000000001 -0.08000000000000007
270 268 0 -0.030000000000000027 0.04999999999999993 -0.040000000000000036 -0.3500000000000001 -0.010000000000000009
271 269 0 -0.020000000000000018 -0.14000000000000007 -0.15000000000000008 -0.4 -0.040000000000000036
272 270 1 -0.10000000000000003 -0.21000000000000008 -0.030000000000000027 -0.4 -0.050000000000000044
273 271 0 -0.10000000000000003 -0.13000000000000006 -0.07000000000000006 0.22999999999999998 -0.07000000000000006
274 272 0 -0.050000000000000044 -0.010000000000000009 -0.21000000000000008 -0.4 -0.050000000000000044
275 273 0 0.0 -0.040000000000000036 -0.010000000000000009 -0.37000000000000005 -0.020000000000000018
276 274 1 0.04999999999999993 -0.26000000000000006 0.029999999999999916 -0.44000000000000006 -0.07000000000000006
277 275 0 -0.19000000000000006 -0.030000000000000027 -0.10000000000000003 -0.33000000000000007 -0.09000000000000008
278 276 0 0.2699999999999999 0.019999999999999907 -0.23000000000000004 -0.52 -0.030000000000000027
279 277 0 -0.17000000000000004 -0.11000000000000004 -0.030000000000000027 -0.38000000000000006 -0.020000000000000018
280 278 0 -0.040000000000000036 -0.020000000000000018 -0.06000000000000005 -0.3500000000000001 -0.08000000000000007
281 279 1 -0.21000000000000008 -0.17000000000000004 0.009999999999999898 -0.45000000000000007 -0.08000000000000007
282 280 0 -0.20000000000000007 -0.07000000000000006 -0.26000000000000006 -0.3400000000000001 -0.040000000000000036
283 281 0 0.21999999999999997 0.1399999999999999 -0.24000000000000005 -0.33000000000000007 -0.030000000000000027
284 282 0 -0.010000000000000009 -0.10000000000000003 -0.030000000000000027 -0.45000000000000007 -0.040000000000000036
285 283 0 -0.11000000000000004 0.0 -0.020000000000000018 -0.24000000000000005 0.009999999999999898
286 284 0 -0.11000000000000004 0.0 -0.030000000000000027 -0.24000000000000005 0.009999999999999898
287 285 0 -0.2700000000000001 -0.13000000000000006 -0.16000000000000003 -0.41000000000000003 -0.030000000000000027
288 286 0 -0.040000000000000036 0.18999999999999995 -0.19000000000000006 -0.42000000000000004 -0.10000000000000003
289 287 0 0.1499999999999999 0.0 -0.17000000000000004 -0.29000000000000004 -0.040000000000000036
290 288 0 0.019999999999999907 0.039999999999999925 -0.13000000000000006 -0.44000000000000006 -0.010000000000000009
291 289 0 -0.020000000000000018 0.08999999999999997 -0.07000000000000006 -0.22000000000000003 -0.040000000000000036
292 290 0 0.009999999999999898 0.029999999999999916 -0.12000000000000005 -0.4 -0.040000000000000036
293 291 0 0.029999999999999916 0.019999999999999907 -0.10000000000000003 -0.37000000000000005 0.0
294 292 0 0.36 0.04999999999999993 -0.16000000000000003 -0.3400000000000001 -0.020000000000000018
295 293 0 -0.010000000000000009 0.0 -0.11000000000000004 -0.42000000000000004 -0.020000000000000018
296 294 0 0.06999999999999995 0.04999999999999993 -0.15000000000000008 -0.3400000000000001 -0.050000000000000044
297 295 0 0.019999999999999907 -0.030000000000000027 -0.18000000000000005 -0.38000000000000006 -0.040000000000000036
298 296 0 -0.20000000000000007 -0.10000000000000003 -0.13000000000000006 -0.37000000000000005 -0.08000000000000007
299 297 0 -0.24000000000000005 -0.09000000000000008 -0.010000000000000009 -0.44000000000000006 -0.040000000000000036
300 298 1 -0.22000000000000003 -0.18000000000000005 -0.11000000000000004 -0.37000000000000005 -0.050000000000000044
301 299 0 0.05999999999999994 0.019999999999999907 -0.10000000000000003 -0.43000000000000005 -0.030000000000000027
302 300 0 -0.030000000000000027 0.12 -0.14000000000000007 -0.37000000000000005 -0.030000000000000027
303 301 0 0.16999999999999993 -0.010000000000000009 -0.15000000000000008 -0.4 -0.10000000000000003
304 302 0 -0.010000000000000009 -0.10000000000000003 -0.10000000000000003 -0.25000000000000006 0.019999999999999907
305 303 0 -0.21000000000000008 0.039999999999999925 -0.09000000000000008 -0.43000000000000005 -0.040000000000000036
306 304 0 0.20999999999999996 0.24 -0.050000000000000044 -0.16000000000000003 -0.020000000000000018
307 305 0 0.20999999999999996 0.30999999999999994 -0.09000000000000008 -0.19000000000000006 -0.08000000000000007
308 306 0 -0.21000000000000008 -0.10000000000000003 -0.07000000000000006 -0.41000000000000003 -0.010000000000000009
309 307 0 -0.13000000000000006 -0.050000000000000044 -0.08000000000000007 -0.42000000000000004 -0.06000000000000005
310 308 0 0.009999999999999898 0.04999999999999993 -0.11000000000000004 -0.30000000000000004 -0.06000000000000005
311 309 0 0.06999999999999995 0.05999999999999994 -0.14000000000000007 -0.44000000000000006 -0.040000000000000036
312 310 1 -0.31000000000000005 -0.16000000000000003 -0.050000000000000044 -0.38000000000000006 -0.06000000000000005
313 311 0 0.0 0.05999999999999994 -0.030000000000000027 -0.32000000000000006 0.009999999999999898
314 312 0 0.019999999999999907 0.039999999999999925 -0.050000000000000044 -0.32000000000000006 -0.030000000000000027
315 313 0 0.1499999999999999 0.029999999999999916 -0.030000000000000027 -0.41000000000000003 -0.07000000000000006
316 314 0 -0.10000000000000003 -0.21000000000000008 -0.23000000000000004 -0.39 -0.010000000000000009
317 315 0 -0.020000000000000018 -0.010000000000000009 -0.14000000000000007 -0.3400000000000001 -0.08000000000000007
318 316 0 -0.17000000000000004 -0.12000000000000005 -0.28 -0.44000000000000006 -0.10000000000000003
319 317 1 -0.23000000000000004 -0.12000000000000005 -0.07000000000000006 -0.48000000000000004 -0.08000000000000007
320 318 1 0.25 0.2599999999999999 -0.15000000000000008 -0.20000000000000007 -0.17000000000000004
321 319 0 0.1299999999999999 0.039999999999999925 -0.050000000000000044 -0.43000000000000005 -0.040000000000000036
322 320 0 -0.10000000000000003 -0.08000000000000007 -0.12000000000000005 -0.3500000000000001 -0.010000000000000009
323 321 1 -0.21000000000000008 -0.20000000000000007 0.009999999999999898 -0.39 -0.040000000000000036
324 322 0 0.17999999999999994 0.15999999999999992 -0.09000000000000008 -0.31000000000000005 0.009999999999999898
325 323 0 -0.020000000000000018 0.009999999999999898 -0.040000000000000036 -0.37000000000000005 0.029999999999999916
326 324 0 -0.14000000000000007 -0.040000000000000036 -0.16000000000000003 -0.39 -0.06000000000000005
327 325 0 0.35 0.20999999999999996 -0.22000000000000003 -0.09000000000000008 -0.040000000000000036
328 326 0 0.25 0.33999999999999997 -0.17000000000000004 -0.15000000000000008 -0.030000000000000027
329 327 1 -0.11000000000000004 -0.16000000000000003 0.0 -0.42000000000000004 -0.020000000000000018
330 328 1 -0.09000000000000008 -0.09000000000000008 0.019999999999999907 -0.4 -0.07000000000000006
331 329 1 -0.15000000000000008 -0.17000000000000004 -0.050000000000000044 -0.040000000000000036 -0.07000000000000006
332 330 0 -0.19000000000000006 -0.22000000000000003 -0.24000000000000005 -0.3400000000000001 0.0
333 331 0 0.1299999999999999 0.039999999999999925 -0.06000000000000005 -0.25000000000000006 -0.010000000000000009
334 332 0 -0.21000000000000008 0.0 -0.20000000000000007 -0.26000000000000006 -0.030000000000000027
335 333 0 0.2799999999999999 0.09999999999999998 -0.20000000000000007 0.21999999999999997 -0.07000000000000006
336 334 0 -0.050000000000000044 0.019999999999999907 -0.020000000000000018 -0.2700000000000001 -0.030000000000000027
337 335 1 -0.19000000000000006 -0.13000000000000006 0.05999999999999994 -0.29000000000000004 -0.08000000000000007
338 336 0 -0.010000000000000009 0.09999999999999998 0.009999999999999898 -0.24000000000000005 0.009999999999999898
339 337 0 -0.08000000000000007 -0.21000000000000008 -0.14000000000000007 -0.3500000000000001 0.009999999999999898
340 338 0 0.05999999999999994 0.019999999999999907 -0.040000000000000036 -0.41000000000000003 -0.040000000000000036
341 339 1 0.0 0.029999999999999916 -0.030000000000000027 -0.4 -0.32000000000000006
342 340 0 -0.12000000000000005 -0.050000000000000044 -0.19000000000000006 -0.41000000000000003 -0.050000000000000044
343 341 1 -0.12000000000000005 -0.12000000000000005 -0.07000000000000006 -0.41000000000000003 -0.10000000000000003
344 342 1 -0.06000000000000005 -0.06000000000000005 -0.08000000000000007 -0.39 -0.09000000000000008
345 343 0 0.039999999999999925 0.039999999999999925 -0.07000000000000006 -0.26000000000000006 -0.030000000000000027
346 344 0 -0.07000000000000006 -0.10000000000000003 -0.22000000000000003 -0.3500000000000001 -0.010000000000000009
347 345 0 -0.21000000000000008 0.12 0.009999999999999898 -0.16000000000000003 -0.030000000000000027
348 346 0 0.1399999999999999 0.1299999999999999 -0.13000000000000006 -0.23000000000000004 0.019999999999999907
349 347 1 -0.33000000000000007 -0.26000000000000006 0.019999999999999907 -0.3400000000000001 -0.08000000000000007
350 348 1 -0.11000000000000004 -0.14000000000000007 -0.040000000000000036 -0.36000000000000004 -0.06000000000000005
351 349 1 -0.050000000000000044 -0.21000000000000008 -0.10000000000000003 -0.41000000000000003 -0.050000000000000044
352 350 1 -0.14000000000000007 -0.17000000000000004 -0.09000000000000008 -0.43000000000000005 -0.06000000000000005
353 351 1 -0.24000000000000005 -0.18000000000000005 -0.040000000000000036 -0.36000000000000004 -0.040000000000000036
354 352 1 0.029999999999999916 0.08999999999999997 -0.040000000000000036 -0.26000000000000006 -0.10000000000000003
355 353 0 -0.15000000000000008 -0.040000000000000036 -0.15000000000000008 -0.45000000000000007 -0.020000000000000018
356 354 1 -0.19000000000000006 -0.23000000000000004 -0.06000000000000005 -0.44000000000000006 -0.050000000000000044
357 355 0 -0.11000000000000004 0.0 -0.07000000000000006 -0.39 -0.040000000000000036
358 356 0 0.0 -0.020000000000000018 0.029999999999999916 -0.42000000000000004 -0.040000000000000036
359 357 1 -0.25000000000000006 -0.25000000000000006 -0.020000000000000018 -0.38000000000000006 -0.040000000000000036
360 358 0 -0.29000000000000004 -0.050000000000000044 -0.09000000000000008 -0.21000000000000008 -0.07000000000000006
361 359 1 -0.020000000000000018 0.0 0.009999999999999898 -0.38000000000000006 -0.11000000000000004
362 360 0 -0.39 -0.18000000000000005 -0.11000000000000004 -0.4700000000000001 -0.020000000000000018
363 361 1 -0.13000000000000006 -0.050000000000000044 -0.020000000000000018 -0.41000000000000003 -0.11000000000000004
364 362 1 0.039999999999999925 -0.16000000000000003 0.029999999999999916 -0.38000000000000006 -0.08000000000000007
365 363 0 0.35 0.1299999999999999 0.009999999999999898 -0.11000000000000004 0.0
366 364 1 -0.18000000000000005 -0.09000000000000008 -0.030000000000000027 -0.44000000000000006 -0.08000000000000007
367 365 0 0.029999999999999916 -0.13000000000000006 -0.040000000000000036 -0.37000000000000005 -0.010000000000000009
368 366 0 0.07999999999999996 -0.030000000000000027 -0.11000000000000004 -0.43000000000000005 -0.030000000000000027
369 367 1 -0.07000000000000006 -0.25000000000000006 -0.22000000000000003 -0.43000000000000005 -0.040000000000000036
370 368 0 -0.040000000000000036 -0.050000000000000044 -0.050000000000000044 -0.44000000000000006 -0.050000000000000044
371 369 0 -0.07000000000000006 -0.13000000000000006 -0.08000000000000007 -0.41000000000000003 -0.010000000000000009
372 370 0 -0.07000000000000006 -0.09000000000000008 -0.040000000000000036 -0.4 -0.030000000000000027
373 371 1 -0.08000000000000007 -0.17000000000000004 -0.07000000000000006 -0.38000000000000006 -0.050000000000000044
374 372 1 -0.12000000000000005 -0.22000000000000003 -0.010000000000000009 -0.38000000000000006 -0.040000000000000036
375 373 0 -0.13000000000000006 -0.020000000000000018 0.019999999999999907 -0.4 -0.06000000000000005
376 374 1 -0.07000000000000006 -0.14000000000000007 -0.020000000000000018 -0.39 -0.06000000000000005
377 375 0 -0.22000000000000003 0.09999999999999998 -0.050000000000000044 -0.4 -0.09000000000000008
378 376 1 -0.36000000000000004 -0.22000000000000003 -0.23000000000000004 -0.4600000000000001 -0.08000000000000007
379 377 0 0.17999999999999994 -0.030000000000000027 -0.06000000000000005 -0.48000000000000004 -0.010000000000000009
380 378 0 0.1299999999999999 -0.08000000000000007 -0.18000000000000005 -0.41000000000000003 -0.010000000000000009
381 379 0 -0.26000000000000006 -0.06000000000000005 -0.09000000000000008 -0.45000000000000007 -0.10000000000000003
382 380 0 -0.12000000000000005 -0.050000000000000044 -0.08000000000000007 -0.18000000000000005 -0.040000000000000036
383 381 1 -0.25000000000000006 -0.11000000000000004 -0.06000000000000005 -0.39 -0.07000000000000006
384 382 1 -0.010000000000000009 -0.15000000000000008 0.0 -0.3500000000000001 -0.040000000000000036
385 383 1 -0.16000000000000003 -0.22000000000000003 -0.040000000000000036 -0.39 -0.09000000000000008
386 384 0 -0.16000000000000003 -0.08000000000000007 -0.06000000000000005 -0.39 -0.020000000000000018
387 385 1 0.019999999999999907 -0.08000000000000007 0.0 -0.4600000000000001 -0.10000000000000003
388 386 1 0.019999999999999907 -0.08000000000000007 0.0 -0.44000000000000006 -0.10000000000000003
389 387 0 0.019999999999999907 -0.11000000000000004 -0.08000000000000007 -0.32000000000000006 -0.040000000000000036
390 388 1 0.019999999999999907 -0.15000000000000008 -0.050000000000000044 -0.30000000000000004 -0.050000000000000044
391 389 1 -0.15000000000000008 0.039999999999999925 -0.030000000000000027 -0.2700000000000001 -0.09000000000000008
392 390 0 0.1299999999999999 -0.06000000000000005 -0.07000000000000006 -0.14000000000000007 -0.07000000000000006
393 391 0 -0.18000000000000005 -0.07000000000000006 0.04999999999999993 -0.43000000000000005 -0.020000000000000018
394 392 0 0.039999999999999925 -0.08000000000000007 -0.12000000000000005 -0.040000000000000036 -0.020000000000000018
395 393 1 -0.09000000000000008 -0.07000000000000006 0.06999999999999995 -0.39 -0.25000000000000006
396 394 1 -0.28 -0.050000000000000044 -0.010000000000000009 -0.45000000000000007 -0.10000000000000003
397 395 0 0.0 0.009999999999999898 0.06999999999999995 -0.17000000000000004 0.029999999999999916
398 396 1 -0.3500000000000001 -0.18000000000000005 -0.07000000000000006 -0.4 -0.050000000000000044
399 397 0 -0.10000000000000003 0.009999999999999898 0.009999999999999898 -0.41000000000000003 -0.040000000000000036
400 398 0 -0.13000000000000006 -0.14000000000000007 -0.020000000000000018 -0.3400000000000001 0.009999999999999898
401 399 0 0.009999999999999898 0.029999999999999916 -0.06000000000000005 0.019999999999999907 -0.030000000000000027
402 400 1 -0.08000000000000007 -0.22000000000000003 -0.09000000000000008 -0.42000000000000004 -0.09000000000000008
403 401 1 -0.21000000000000008 -0.16000000000000003 -0.030000000000000027 -0.38000000000000006 -0.14000000000000007
404 402 1 -0.09000000000000008 -0.11000000000000004 -0.030000000000000027 0.05999999999999994 -0.10000000000000003
405 403 0 -0.030000000000000027 -0.13000000000000006 -0.09000000000000008 -0.41000000000000003 0.019999999999999907
406 404 0 -0.10000000000000003 -0.11000000000000004 0.0 -0.4 0.0
407 405 1 -0.12000000000000005 -0.14000000000000007 0.05999999999999994 -0.42000000000000004 -0.010000000000000009
408 406 1 -0.19000000000000006 -0.22000000000000003 0.019999999999999907 -0.32000000000000006 -0.12000000000000005
409 407 1 -0.19000000000000006 -0.22000000000000003 0.019999999999999907 -0.32000000000000006 -0.12000000000000005
410 408 1 -0.17000000000000004 -0.17000000000000004 -0.010000000000000009 -0.040000000000000036 -0.19000000000000006
411 409 1 -0.17000000000000004 -0.17000000000000004 -0.010000000000000009 -0.040000000000000036 -0.19000000000000006
412 410 0 -0.08000000000000007 -0.10000000000000003 -0.18000000000000005 -0.2700000000000001 -0.030000000000000027
413 411 0 -0.08000000000000007 0.009999999999999898 -0.06000000000000005 -0.4700000000000001 -0.040000000000000036
414 412 0 0.04999999999999993 0.009999999999999898 -0.11000000000000004 -0.3500000000000001 -0.06000000000000005
415 413 1 0.0 -0.12000000000000005 0.0 -0.37000000000000005 -0.020000000000000018
416 414 0 -0.050000000000000044 0.06999999999999995 -0.26000000000000006 -0.21000000000000008 -0.030000000000000027
417 415 0 -0.030000000000000027 0.12 -0.22000000000000003 -0.14000000000000007 -0.020000000000000018
418 416 1 -0.19000000000000006 -0.3400000000000001 0.07999999999999996 -0.21000000000000008 -0.09000000000000008
419 417 1 -0.050000000000000044 -0.08000000000000007 0.019999999999999907 -0.3400000000000001 -0.06000000000000005
420 418 1 -0.07000000000000006 -0.19000000000000006 0.029999999999999916 -0.39 -0.050000000000000044
421 419 1 -0.050000000000000044 -0.08000000000000007 0.019999999999999907 -0.3400000000000001 -0.06000000000000005
422 420 0 -0.030000000000000027 -0.030000000000000027 -0.030000000000000027 -0.39 -0.07000000000000006
423 421 0 -0.2700000000000001 0.12 -0.09000000000000008 -0.30000000000000004 -0.09000000000000008
424 422 0 -0.06000000000000005 -0.11000000000000004 -0.07000000000000006 -0.41000000000000003 -0.010000000000000009
425 423 1 -0.23000000000000004 -0.28 -0.25000000000000006 -0.32000000000000006 -0.030000000000000027
426 424 0 0.2899999999999999 0.2899999999999999 -0.26000000000000006 -0.25000000000000006 -0.010000000000000009
427 425 1 -0.13000000000000006 -0.17000000000000004 -0.050000000000000044 -0.28 -0.16000000000000003
428 426 0 0.04999999999999993 -0.020000000000000018 -0.07000000000000006 -0.4 -0.020000000000000018
429 427 1 -0.22000000000000003 -0.21000000000000008 0.04999999999999993 -0.37000000000000005 -0.040000000000000036
430 428 1 -0.010000000000000009 -0.030000000000000027 0.0 -0.2700000000000001 -0.08000000000000007
431 429 0 0.09999999999999998 0.05999999999999994 -0.040000000000000036 -0.39 -0.07000000000000006
432 430 0 -0.12000000000000005 -0.15000000000000008 0.019999999999999907 -0.36000000000000004 0.009999999999999898
433 431 0 -0.19000000000000006 0.05999999999999994 -0.22000000000000003 -0.31000000000000005 -0.050000000000000044
434 432 0 -0.11000000000000004 0.0 -0.050000000000000044 0.07999999999999996 -0.020000000000000018
435 433 0 -0.18000000000000005 -0.10000000000000003 -0.040000000000000036 0.18999999999999995 -0.06000000000000005
436 434 0 0.04999999999999993 -0.020000000000000018 -0.07000000000000006 -0.37000000000000005 -0.020000000000000018
437 435 0 -0.12000000000000005 -0.030000000000000027 -0.040000000000000036 -0.19000000000000006 -0.06000000000000005
438 436 0 -0.12000000000000005 -0.030000000000000027 -0.040000000000000036 -0.19000000000000006 -0.06000000000000005
439 437 1 -0.24000000000000005 -0.22000000000000003 0.04999999999999993 -0.39 -0.040000000000000036
440 438 1 -0.22000000000000003 -0.22000000000000003 0.04999999999999993 -0.38000000000000006 -0.040000000000000036
441 439 0 -0.050000000000000044 0.12 -0.07000000000000006 0.029999999999999916 -0.020000000000000018
442 440 1 -0.15000000000000008 -0.26000000000000006 -0.07000000000000006 -0.28 -0.020000000000000018
443 441 1 -0.15000000000000008 -0.13000000000000006 -0.06000000000000005 -0.28 -0.06000000000000005
444 442 0 -0.26000000000000006 -0.06000000000000005 -0.22000000000000003 -0.30000000000000004 -0.050000000000000044
445 443 0 -0.07000000000000006 -0.16000000000000003 -0.22000000000000003 -0.30000000000000004 -0.06000000000000005
446 444 0 -0.22000000000000003 -0.16000000000000003 -0.26000000000000006 -0.33000000000000007 -0.050000000000000044
447 445 0 -0.13000000000000006 -0.12000000000000005 -0.26000000000000006 -0.38000000000000006 -0.050000000000000044
448 446 0 -0.13000000000000006 -0.11000000000000004 -0.19000000000000006 -0.44000000000000006 -0.08000000000000007
449 447 0 -0.11000000000000004 0.009999999999999898 -0.26000000000000006 -0.39 -0.050000000000000044
450 448 0 -0.11000000000000004 0.009999999999999898 -0.26000000000000006 -0.39 -0.050000000000000044
451 449 0 -0.14000000000000007 -0.12000000000000005 -0.23000000000000004 -0.39 -0.020000000000000018
452 450 1 -0.040000000000000036 -0.06000000000000005 -0.030000000000000027 -0.4600000000000001 -0.08000000000000007
453 451 0 -0.030000000000000027 0.0 -0.07000000000000006 -0.10000000000000003 -0.040000000000000036
454 452 0 -0.11000000000000004 -0.020000000000000018 -0.020000000000000018 0.05999999999999994 -0.030000000000000027
455 453 1 -0.050000000000000044 -0.13000000000000006 0.06999999999999995 -0.38000000000000006 -0.040000000000000036
456 454 0 -0.050000000000000044 -0.040000000000000036 -0.08000000000000007 -0.06000000000000005 -0.050000000000000044
457 455 0 -0.010000000000000009 -0.07000000000000006 -0.06000000000000005 -0.10000000000000003 -0.040000000000000036
458 456 0 -0.06000000000000005 -0.10000000000000003 -0.040000000000000036 -0.4 -0.040000000000000036
459 457 0 -0.06000000000000005 -0.030000000000000027 -0.11000000000000004 -0.12000000000000005 -0.07000000000000006
460 458 0 -0.11000000000000004 0.029999999999999916 -0.030000000000000027 0.17999999999999994 -0.09000000000000008
461 459 0 0.009999999999999898 0.04999999999999993 -0.010000000000000009 0.10999999999999999 -0.08000000000000007
462 460 1 -0.020000000000000018 -0.11000000000000004 0.05999999999999994 -0.43000000000000005 -0.040000000000000036
463 461 0 0.10999999999999999 -0.050000000000000044 -0.030000000000000027 -0.28 -0.050000000000000044
464 462 0 -0.21000000000000008 -0.07000000000000006 -0.09000000000000008 -0.3400000000000001 -0.06000000000000005
465 463 1 -0.09000000000000008 0.06999999999999995 0.09999999999999998 -0.11000000000000004 -0.19000000000000006
466 464 1 -0.050000000000000044 -0.22000000000000003 -0.13000000000000006 -0.38000000000000006 -0.08000000000000007
467 465 1 0.0 -0.11000000000000004 0.029999999999999916 -0.42000000000000004 -0.050000000000000044
468 466 1 -0.11000000000000004 -0.18000000000000005 0.029999999999999916 -0.38000000000000006 -0.12000000000000005
469 467 0 -0.13000000000000006 -0.050000000000000044 0.039999999999999925 -0.31000000000000005 -0.010000000000000009
470 468 0 -0.09000000000000008 0.029999999999999916 -0.13000000000000006 -0.43000000000000005 0.0
471 469 0 -0.16000000000000003 -0.11000000000000004 -0.14000000000000007 -0.39 -0.020000000000000018
472 470 0 0.32999999999999996 0.25 -0.20000000000000007 0.1499999999999999 -0.010000000000000009
473 471 1 0.019999999999999907 -0.010000000000000009 -0.040000000000000036 -0.3400000000000001 -0.12000000000000005
474 472 0 0.029999999999999916 0.009999999999999898 -0.10000000000000003 -0.42000000000000004 -0.040000000000000036
475 473 0 -0.07000000000000006 -0.15000000000000008 -0.24000000000000005 -0.3500000000000001 -0.06000000000000005
476 474 0 -0.21000000000000008 -0.030000000000000027 -0.21000000000000008 -0.23000000000000004 -0.06000000000000005
477 475 1 -0.14000000000000007 -0.24000000000000005 0.04999999999999993 -0.43000000000000005 -0.42000000000000004
478 476 0 -0.06000000000000005 -0.10000000000000003 -0.14000000000000007 -0.24000000000000005 0.0
479 477 0 0.12 -0.06000000000000005 -0.13000000000000006 -0.29000000000000004 0.04999999999999993
480 478 1 -0.06000000000000005 -0.11000000000000004 -0.07000000000000006 -0.26000000000000006 -0.09000000000000008
481 479 1 -0.10000000000000003 -0.15000000000000008 -0.06000000000000005 -0.12000000000000005 -0.030000000000000027
482 480 0 -0.24000000000000005 -0.20000000000000007 -0.22000000000000003 -0.37000000000000005 -0.010000000000000009
483 481 0 -0.16000000000000003 -0.050000000000000044 -0.14000000000000007 -0.43000000000000005 -0.11000000000000004
484 482 0 0.1399999999999999 0.16999999999999993 -0.19000000000000006 -0.19000000000000006 -0.08000000000000007
485 483 0 0.25 0.19999999999999996 -0.24000000000000005 -0.19000000000000006 -0.050000000000000044
486 484 0 0.08999999999999997 0.04999999999999993 -0.17000000000000004 -0.26000000000000006 0.009999999999999898
487 485 0 -0.09000000000000008 -0.13000000000000006 -0.21000000000000008 -0.24000000000000005 -0.020000000000000018
488 486 1 -0.14000000000000007 -0.31000000000000005 0.039999999999999925 -0.42000000000000004 -0.11000000000000004
489 487 1 -0.33000000000000007 -0.22000000000000003 -0.15000000000000008 -0.28 -0.06000000000000005
490 488 0 0.2899999999999999 0.0 -0.23000000000000004 -0.18000000000000005 -0.010000000000000009
491 489 1 -0.22000000000000003 -0.25000000000000006 0.039999999999999925 -0.19000000000000006 -0.06000000000000005
492 490 0 0.029999999999999916 -0.030000000000000027 -0.09000000000000008 -0.30000000000000004 -0.030000000000000027
493 491 0 0.10999999999999999 0.06999999999999995 -0.22000000000000003 -0.15000000000000008 0.039999999999999925
494 492 0 0.1399999999999999 0.16999999999999993 -0.18000000000000005 -0.20000000000000007 -0.020000000000000018
495 493 1 -0.020000000000000018 -0.050000000000000044 -0.020000000000000018 -0.040000000000000036 -0.09000000000000008
496 494 0 -0.030000000000000027 -0.06000000000000005 -0.020000000000000018 0.0 -0.07000000000000006
497 495 0 0.2799999999999999 0.06999999999999995 -0.18000000000000005 -0.33000000000000007 -0.030000000000000027
498 496 0 0.32999999999999996 0.20999999999999996 -0.20000000000000007 -0.22000000000000003 -0.12000000000000005
499 497 1 -0.08000000000000007 -0.13000000000000006 -0.11000000000000004 -0.39 -0.08000000000000007
500 498 1 -0.20000000000000007 -0.21000000000000008 -0.09000000000000008 -0.3400000000000001 -0.12000000000000005
501 499 0 0.009999999999999898 -0.07000000000000006 -0.08000000000000007 -0.4 -0.050000000000000044
502 500 0 -0.13000000000000006 -0.040000000000000036 -0.030000000000000027 -0.040000000000000036 -0.07000000000000006
503 501 0 -0.18000000000000005 -0.07000000000000006 -0.020000000000000018 0.43999999999999995 -0.06000000000000005
504 502 1 -0.13000000000000006 -0.24000000000000005 0.0 -0.29000000000000004 -0.09000000000000008
505 503 1 0.2799999999999999 0.30999999999999994 -0.11000000000000004 -0.020000000000000018 -0.28
506 504 0 -0.29000000000000004 0.0 0.0 -0.38000000000000006 -0.040000000000000036
507 505 0 0.32999999999999996 0.2599999999999999 0.039999999999999925 -0.07000000000000006 -0.010000000000000009
508 506 0 0.29999999999999993 0.36 -0.06000000000000005 -0.19000000000000006 -0.030000000000000027
509 507 0 -0.19000000000000006 -0.010000000000000009 -0.2700000000000001 -0.24000000000000005 -0.050000000000000044
510 508 1 0.30999999999999994 0.2699999999999999 0.009999999999999898 -0.20000000000000007 -0.20000000000000007
511 509 1 -0.13000000000000006 -0.11000000000000004 -0.020000000000000018 -0.42000000000000004 -0.06000000000000005
512 510 0 -0.040000000000000036 -0.08000000000000007 -0.020000000000000018 -0.28 -0.020000000000000018
513 511 0 0.20999999999999996 0.039999999999999925 -0.14000000000000007 -0.23000000000000004 0.009999999999999898
514 512 0 0.19999999999999996 0.17999999999999994 0.0 -0.22000000000000003 -0.050000000000000044
515 513 0 0.019999999999999907 0.19999999999999996 -0.16000000000000003 -0.19000000000000006 -0.020000000000000018
516 514 0 0.3799999999999999 0.039999999999999925 -0.23000000000000004 -0.07000000000000006 -0.020000000000000018
517 515 1 -0.20000000000000007 -0.12000000000000005 0.009999999999999898 -0.38000000000000006 -0.14000000000000007
518 516 0 -0.14000000000000007 -0.050000000000000044 -0.17000000000000004 -0.3400000000000001 -0.07000000000000006
519 517 1 -0.040000000000000036 -0.08000000000000007 0.019999999999999907 -0.010000000000000009 -0.08000000000000007
520 518 1 -0.14000000000000007 -0.24000000000000005 -0.08000000000000007 -0.4 -0.010000000000000009
521 519 1 -0.13000000000000006 -0.18000000000000005 -0.050000000000000044 -0.32000000000000006 -0.10000000000000003
522 520 0 -0.08000000000000007 0.009999999999999898 -0.040000000000000036 0.04999999999999993 -0.050000000000000044
523 521 1 0.2699999999999999 -0.030000000000000027 -0.040000000000000036 -0.36000000000000004 -0.08000000000000007
524 522 1 -0.20000000000000007 -0.22000000000000003 -0.10000000000000003 -0.37000000000000005 -0.040000000000000036
525 523 0 -0.050000000000000044 -0.13000000000000006 -0.09000000000000008 -0.37000000000000005 -0.040000000000000036
526 524 0 -0.020000000000000018 -0.020000000000000018 -0.07000000000000006 -0.42000000000000004 0.0
527 525 1 -0.12000000000000005 -0.15000000000000008 -0.12000000000000005 -0.43000000000000005 -0.07000000000000006
528 526 0 -0.040000000000000036 0.05999999999999994 -0.020000000000000018 -0.37000000000000005 -0.06000000000000005
529 527 1 -0.10000000000000003 -0.16000000000000003 -0.18000000000000005 -0.38000000000000006 -0.07000000000000006
530 528 1 0.12 -0.06000000000000005 -0.010000000000000009 0.08999999999999997 -0.10000000000000003
531 529 0 -0.030000000000000027 -0.12000000000000005 -0.09000000000000008 -0.3400000000000001 -0.030000000000000027
532 530 0 -0.08000000000000007 -0.08000000000000007 -0.06000000000000005 -0.09000000000000008 -0.010000000000000009
533 531 1 -0.10000000000000003 -0.42000000000000004 -0.20000000000000007 -0.3500000000000001 -0.06000000000000005
534 532 0 -0.06000000000000005 -0.11000000000000004 -0.08000000000000007 -0.39 -0.06000000000000005
535 533 0 -0.12000000000000005 -0.030000000000000027 -0.13000000000000006 -0.39 -0.020000000000000018
536 534 0 -0.10000000000000003 -0.09000000000000008 -0.10000000000000003 -0.4 -0.050000000000000044
537 535 0 -0.040000000000000036 -0.07000000000000006 0.009999999999999898 0.009999999999999898 -0.050000000000000044
538 536 0 0.05999999999999994 0.07999999999999996 0.0 -0.36000000000000004 -0.08000000000000007
539 537 1 -0.10000000000000003 -0.24000000000000005 0.019999999999999907 -0.39 0.04999999999999993
540 538 0 0.21999999999999997 -0.08000000000000007 -0.09000000000000008 -0.26000000000000006 -0.030000000000000027
541 539 1 -0.07000000000000006 0.05999999999999994 0.08999999999999997 -0.38000000000000006 -0.10000000000000003
542 540 1 -0.06000000000000005 -0.22000000000000003 0.05999999999999994 -0.37000000000000005 0.009999999999999898
543 541 0 -0.17000000000000004 -0.19000000000000006 -0.23000000000000004 -0.33000000000000007 -0.030000000000000027
544 542 1 -0.17000000000000004 -0.19000000000000006 0.0 -0.41000000000000003 -0.06000000000000005
545 543 1 -0.23000000000000004 -0.19000000000000006 -0.020000000000000018 -0.28 -0.030000000000000027
546 544 0 -0.17000000000000004 -0.19000000000000006 -0.23000000000000004 -0.33000000000000007 -0.040000000000000036
547 545 1 -0.23000000000000004 -0.18000000000000005 -0.030000000000000027 -0.30000000000000004 -0.040000000000000036
548 546 1 -0.08000000000000007 -0.050000000000000044 0.009999999999999898 -0.32000000000000006 -0.06000000000000005
549 547 0 -0.06000000000000005 0.05999999999999994 -0.020000000000000018 0.09999999999999998 -0.07000000000000006
550 548 0 -0.09000000000000008 -0.020000000000000018 -0.020000000000000018 -0.08000000000000007 -0.030000000000000027
551 549 0 0.15999999999999992 0.019999999999999907 -0.14000000000000007 -0.28 -0.08000000000000007
552 550 0 -0.15000000000000008 -0.15000000000000008 -0.050000000000000044 -0.37000000000000005 0.009999999999999898
553 551 0 0.25 0.08999999999999997 -0.040000000000000036 -0.15000000000000008 0.009999999999999898
554 552 1 -0.06000000000000005 -0.07000000000000006 -0.040000000000000036 -0.36000000000000004 -0.13000000000000006
555 553 1 -0.38000000000000006 -0.08000000000000007 -0.10000000000000003 -0.44000000000000006 -0.56
556 554 1 -0.30000000000000004 -0.18000000000000005 -0.040000000000000036 -0.20000000000000007 -0.08000000000000007
557 555 0 -0.030000000000000027 -0.050000000000000044 -0.050000000000000044 -0.45000000000000007 -0.07000000000000006
558 556 0 0.019999999999999907 -0.07000000000000006 -0.06000000000000005 -0.15000000000000008 0.009999999999999898
559 557 0 0.05999999999999994 0.039999999999999925 -0.09000000000000008 -0.4 -0.030000000000000027
560 558 0 0.12 0.019999999999999907 -0.050000000000000044 -0.37000000000000005 -0.020000000000000018
561 559 0 -0.16000000000000003 -0.040000000000000036 -0.030000000000000027 -0.040000000000000036 -0.050000000000000044
562 560 0 -0.050000000000000044 -0.09000000000000008 -0.15000000000000008 -0.12000000000000005 -0.06000000000000005
563 561 0 0.15999999999999992 0.0 -0.16000000000000003 -0.30000000000000004 -0.050000000000000044
564 562 0 -0.07000000000000006 -0.12000000000000005 -0.11000000000000004 -0.3400000000000001 -0.050000000000000044
565 563 1 -0.24000000000000005 -0.09000000000000008 -0.010000000000000009 -0.31000000000000005 -0.07000000000000006
566 564 0 -0.10000000000000003 0.009999999999999898 -0.040000000000000036 -0.28 -0.040000000000000036
567 565 0 -0.030000000000000027 -0.08000000000000007 -0.11000000000000004 -0.12000000000000005 -0.07000000000000006
568 566 0 -0.07000000000000006 -0.08000000000000007 -0.10000000000000003 0.06999999999999995 -0.040000000000000036
569 567 0 0.1399999999999999 -0.030000000000000027 -0.14000000000000007 -0.3400000000000001 -0.050000000000000044
570 568 0 0.12 0.12 -0.07000000000000006 -0.41000000000000003 -0.030000000000000027
571 569 0 -0.09000000000000008 0.039999999999999925 -0.21000000000000008 -0.3500000000000001 -0.040000000000000036
572 570 0 -0.010000000000000009 -0.07000000000000006 -0.11000000000000004 -0.38000000000000006 -0.07000000000000006
573 571 1 -0.16000000000000003 -0.030000000000000027 0.04999999999999993 -0.3500000000000001 -0.08000000000000007
574 572 0 0.009999999999999898 -0.12000000000000005 -0.14000000000000007 -0.36000000000000004 -0.020000000000000018
575 573 1 -0.16000000000000003 -0.09000000000000008 -0.08000000000000007 -0.38000000000000006 -0.10000000000000003
576 574 0 -0.22000000000000003 -0.020000000000000018 -0.020000000000000018 -0.43000000000000005 -0.040000000000000036
577 575 0 -0.13000000000000006 0.2699999999999999 -0.010000000000000009 -0.36000000000000004 -0.09000000000000008
578 576 0 -0.010000000000000009 0.08999999999999997 -0.06000000000000005 -0.28 -0.010000000000000009
579 577 1 -0.2700000000000001 -0.10000000000000003 -0.020000000000000018 -0.29000000000000004 -0.07000000000000006
580 578 1 -0.10000000000000003 -0.14000000000000007 0.039999999999999925 -0.3500000000000001 -0.16000000000000003
581 579 1 0.24 0.25 -0.010000000000000009 -0.21000000000000008 -0.14000000000000007
582 580 0 0.22999999999999998 0.17999999999999994 -0.07000000000000006 -0.23000000000000004 -0.08000000000000007
583 581 1 -0.11000000000000004 -0.08000000000000007 0.06999999999999995 0.10999999999999999 -0.08000000000000007
584 582 0 0.09999999999999998 -0.040000000000000036 -0.040000000000000036 -0.12000000000000005 0.0
585 583 1 -0.06000000000000005 -0.07000000000000006 0.029999999999999916 -0.09000000000000008 -0.07000000000000006
586 584 0 -0.020000000000000018 -0.040000000000000036 -0.020000000000000018 -0.36000000000000004 -0.010000000000000009
587 585 1 -0.19000000000000006 -0.25000000000000006 -0.030000000000000027 -0.4 -0.030000000000000027
588 586 1 -0.13000000000000006 -0.17000000000000004 0.029999999999999916 -0.43000000000000005 -0.15000000000000008
589 587 0 -0.08000000000000007 -0.09000000000000008 -0.020000000000000018 -0.010000000000000009 -0.050000000000000044
590 588 0 0.039999999999999925 0.029999999999999916 -0.11000000000000004 -0.33000000000000007 -0.010000000000000009
591 589 0 -0.11000000000000004 0.16999999999999993 -0.09000000000000008 0.08999999999999997 -0.020000000000000018
592 590 0 0.09999999999999998 -0.020000000000000018 -0.07000000000000006 -0.4 -0.020000000000000018
593 591 1 -0.10000000000000003 -0.010000000000000009 0.04999999999999993 -0.43000000000000005 -0.09000000000000008
594 592 0 -0.14000000000000007 -0.06000000000000005 -0.030000000000000027 -0.3400000000000001 -0.06000000000000005
595 593 0 0.09999999999999998 0.09999999999999998 -0.24000000000000005 -0.020000000000000018 -0.050000000000000044
596 594 0 0.17999999999999994 0.0 -0.21000000000000008 -0.20000000000000007 -0.050000000000000044
597 595 0 0.32999999999999996 -0.040000000000000036 -0.15000000000000008 -0.30000000000000004 -0.040000000000000036
598 596 1 0.10999999999999999 -0.050000000000000044 -0.020000000000000018 -0.3500000000000001 -0.13000000000000006
599 597 0 0.019999999999999907 -0.10000000000000003 -0.10000000000000003 -0.22000000000000003 -0.06000000000000005
600 598 0 -0.16000000000000003 0.12 -0.06000000000000005 0.2599999999999999 -0.12000000000000005
601 599 0 0.029999999999999916 0.009999999999999898 -0.13000000000000006 -0.30000000000000004 -0.050000000000000044
602 600 1 -0.17000000000000004 -0.26000000000000006 0.0 -0.44000000000000006 -0.030000000000000027
603 601 0 0.039999999999999925 0.05999999999999994 -0.020000000000000018 -0.16000000000000003 -0.06000000000000005
604 602 1 -0.20000000000000007 -0.16000000000000003 -0.030000000000000027 -0.08000000000000007 -0.08000000000000007
605 603 1 -0.050000000000000044 -0.14000000000000007 0.0 -0.18000000000000005 -0.10000000000000003
606 604 0 -0.15000000000000008 -0.020000000000000018 0.019999999999999907 -0.36000000000000004 -0.040000000000000036
607 605 1 0.009999999999999898 -0.16000000000000003 0.05999999999999994 -0.26000000000000006 -0.08000000000000007
608 606 1 -0.040000000000000036 -0.06000000000000005 0.029999999999999916 -0.25000000000000006 -0.06000000000000005
609 607 0 -0.14000000000000007 -0.030000000000000027 -0.030000000000000027 0.07999999999999996 -0.09000000000000008
610 608 1 -0.06000000000000005 -0.10000000000000003 0.07999999999999996 -0.20000000000000007 -0.07000000000000006
611 609 1 0.039999999999999925 -0.050000000000000044 0.039999999999999925 -0.18000000000000005 -0.040000000000000036
612 610 1 -0.11000000000000004 -0.18000000000000005 0.07999999999999996 -0.42000000000000004 -0.020000000000000018
613 611 1 0.039999999999999925 0.009999999999999898 0.07999999999999996 -0.040000000000000036 -0.09000000000000008
614 612 1 -0.030000000000000027 -0.14000000000000007 0.019999999999999907 -0.2700000000000001 -0.06000000000000005
615 613 1 -0.15000000000000008 -0.040000000000000036 -0.030000000000000027 -0.15000000000000008 -0.17000000000000004
616 614 0 -0.11000000000000004 -0.13000000000000006 0.06999999999999995 -0.16000000000000003 0.029999999999999916
617 615 1 -0.12000000000000005 -0.12000000000000005 0.10999999999999999 -0.21000000000000008 -0.08000000000000007
618 616 1 0.019999999999999907 -0.040000000000000036 0.04999999999999993 -0.23000000000000004 -0.18000000000000005
619 617 1 0.009999999999999898 0.04999999999999993 -0.010000000000000009 -0.29000000000000004 -0.12000000000000005
620 618 1 0.009999999999999898 0.019999999999999907 0.019999999999999907 -0.21000000000000008 -0.07000000000000006
621 619 0 0.07999999999999996 0.07999999999999996 0.0 -0.3500000000000001 -0.06000000000000005
622 620 1 0.0 -0.06000000000000005 0.04999999999999993 -0.07000000000000006 -0.10000000000000003
623 621 1 0.039999999999999925 -0.10000000000000003 0.029999999999999916 -0.4 -0.07000000000000006
624 622 1 -0.20000000000000007 -0.18000000000000005 0.0 -0.12000000000000005 -0.08000000000000007
625 623 1 -0.030000000000000027 -0.040000000000000036 0.04999999999999993 -0.21000000000000008 -0.06000000000000005
626 624 1 0.05999999999999994 0.029999999999999916 -0.020000000000000018 -0.09000000000000008 -0.10000000000000003
627 625 1 -0.010000000000000009 -0.06000000000000005 0.039999999999999925 -0.25000000000000006 -0.10000000000000003
628 626 0 0.019999999999999907 -0.030000000000000027 0.009999999999999898 -0.10000000000000003 -0.050000000000000044
629 627 1 0.08999999999999997 -0.030000000000000027 -0.010000000000000009 -0.040000000000000036 -0.09000000000000008
630 628 0 -0.18000000000000005 -0.020000000000000018 -0.020000000000000018 -0.15000000000000008 -0.050000000000000044
631 629 0 0.019999999999999907 -0.030000000000000027 -0.06000000000000005 -0.030000000000000027 -0.09000000000000008
632 630 1 0.04999999999999993 -0.10000000000000003 -0.050000000000000044 -0.19000000000000006 -0.050000000000000044
633 631 0 -0.010000000000000009 0.029999999999999916 -0.09000000000000008 0.07999999999999996 -0.020000000000000018
634 632 0 -0.020000000000000018 0.07999999999999996 -0.06000000000000005 -0.43000000000000005 -0.07000000000000006
635 633 0 -0.16000000000000003 0.17999999999999994 -0.07000000000000006 -0.4 -0.050000000000000044
636 634 0 0.19999999999999996 0.19999999999999996 -0.21000000000000008 -0.29000000000000004 -0.12000000000000005
637 635 0 -0.050000000000000044 0.0 -0.050000000000000044 -0.14000000000000007 -0.030000000000000027
638 636 1 -0.13000000000000006 -0.24000000000000005 -0.06000000000000005 -0.2700000000000001 -0.06000000000000005
639 637 1 -0.07000000000000006 -0.12000000000000005 -0.11000000000000004 -0.010000000000000009 -0.08000000000000007
640 638 0 -0.24000000000000005 -0.11000000000000004 -0.12000000000000005 -0.36000000000000004 -0.010000000000000009
641 639 0 -0.050000000000000044 0.039999999999999925 -0.050000000000000044 -0.30000000000000004 -0.020000000000000018
642 640 0 -0.07000000000000006 -0.10000000000000003 -0.14000000000000007 -0.10000000000000003 -0.010000000000000009
643 641 0 -0.06000000000000005 0.0 -0.07000000000000006 0.04999999999999993 -0.06000000000000005
644 642 1 -0.050000000000000044 -0.08000000000000007 -0.050000000000000044 -0.13000000000000006 -0.07000000000000006
645 643 1 -0.040000000000000036 -0.18000000000000005 0.05999999999999994 -0.44000000000000006 -0.15000000000000008
646 644 1 -0.030000000000000027 -0.16000000000000003 0.009999999999999898 -0.44000000000000006 -0.030000000000000027
647 645 1 -0.050000000000000044 0.0 0.05999999999999994 -0.32000000000000006 -0.040000000000000036
648 646 0 0.06999999999999995 0.039999999999999925 -0.06000000000000005 -0.29000000000000004 -0.010000000000000009
649 647 1 -0.10000000000000003 -0.12000000000000005 -0.030000000000000027 -0.25000000000000006 -0.08000000000000007
650 648 0 0.019999999999999907 0.009999999999999898 -0.020000000000000018 0.1299999999999999 -0.020000000000000018
651 649 0 0.04999999999999993 0.029999999999999916 -0.09000000000000008 -0.07000000000000006 -0.020000000000000018
652 650 1 0.06999999999999995 -0.09000000000000008 0.0 -0.44000000000000006 -0.06000000000000005
653 651 1 -0.010000000000000009 -0.030000000000000027 -0.020000000000000018 -0.16000000000000003 -0.08000000000000007
654 652 1 -0.15000000000000008 -0.09000000000000008 0.019999999999999907 0.05999999999999994 -0.06000000000000005
655 653 0 -0.12000000000000005 -0.030000000000000027 -0.030000000000000027 -0.19000000000000006 -0.050000000000000044
656 654 0 0.009999999999999898 -0.16000000000000003 -0.08000000000000007 -0.32000000000000006 -0.010000000000000009
657 655 0 -0.10000000000000003 -0.10000000000000003 0.0 -0.44000000000000006 -0.010000000000000009
658 656 1 -0.09000000000000008 -0.10000000000000003 -0.010000000000000009 -0.28 -0.12000000000000005
659 657 1 -0.17000000000000004 -0.21000000000000008 -0.07000000000000006 -0.39 -0.07000000000000006
660 658 1 0.019999999999999907 -0.18000000000000005 -0.16000000000000003 -0.3500000000000001 -0.06000000000000005
661 659 1 -0.030000000000000027 -0.15000000000000008 -0.06000000000000005 -0.32000000000000006 -0.09000000000000008
662 660 1 -0.13000000000000006 -0.16000000000000003 -0.06000000000000005 -0.38000000000000006 -0.06000000000000005
663 661 1 -0.15000000000000008 0.029999999999999916 -0.10000000000000003 -0.37000000000000005 -0.20000000000000007
664 662 0 0.019999999999999907 0.0 -0.040000000000000036 -0.31000000000000005 0.009999999999999898
665 663 0 -0.050000000000000044 0.08999999999999997 -0.030000000000000027 -0.37000000000000005 -0.07000000000000006
666 664 0 0.25 0.22999999999999998 -0.24000000000000005 -0.19000000000000006 -0.15000000000000008
667 665 0 -0.12000000000000005 -0.15000000000000008 -0.2700000000000001 -0.3500000000000001 -0.07000000000000006
668 666 1 -0.07000000000000006 0.039999999999999925 -0.010000000000000009 -0.39 -0.12000000000000005
669 667 1 0.0 0.06999999999999995 -0.040000000000000036 -0.36000000000000004 -0.22000000000000003
670 668 1 -0.14000000000000007 -0.28 0.009999999999999898 -0.38000000000000006 -0.14000000000000007
671 669 0 -0.050000000000000044 -0.10000000000000003 -0.020000000000000018 -0.15000000000000008 -0.030000000000000027
672 670 0 0.039999999999999925 -0.050000000000000044 -0.040000000000000036 -0.11000000000000004 -0.06000000000000005
673 671 1 -0.19000000000000006 -0.15000000000000008 -0.11000000000000004 -0.42000000000000004 -0.09000000000000008
674 672 1 -0.19000000000000006 -0.050000000000000044 0.009999999999999898 -0.16000000000000003 -0.08000000000000007
675 673 1 -0.20000000000000007 -0.17000000000000004 -0.010000000000000009 -0.30000000000000004 -0.07000000000000006
676 674 1 -0.06000000000000005 -0.20000000000000007 -0.030000000000000027 -0.15000000000000008 -0.010000000000000009
677 675 0 0.029999999999999916 0.019999999999999907 -0.17000000000000004 -0.040000000000000036 -0.06000000000000005
678 676 0 0.21999999999999997 0.06999999999999995 -0.030000000000000027 -0.43000000000000005 -0.020000000000000018
679 677 0 -0.09000000000000008 0.029999999999999916 -0.19000000000000006 -0.25000000000000006 -0.050000000000000044
680 678 0 -0.08000000000000007 0.05999999999999994 -0.040000000000000036 -0.26000000000000006 -0.050000000000000044
681 679 0 -0.030000000000000027 0.04999999999999993 -0.050000000000000044 -0.07000000000000006 -0.020000000000000018
682 680 0 -0.08000000000000007 -0.020000000000000018 -0.030000000000000027 0.039999999999999925 -0.030000000000000027
683 681 1 -0.23000000000000004 -0.10000000000000003 -0.030000000000000027 -0.2700000000000001 -0.06000000000000005
684 682 0 -0.20000000000000007 -0.12000000000000005 -0.050000000000000044 -0.39 0.039999999999999925
685 683 1 -0.17000000000000004 -0.22000000000000003 0.12 -0.26000000000000006 -0.06000000000000005
686 684 1 -0.45000000000000007 -0.15000000000000008 0.10999999999999999 -0.43000000000000005 -0.11000000000000004
687 685 0 -0.16000000000000003 -0.030000000000000027 -0.12000000000000005 -0.38000000000000006 -0.020000000000000018
688 686 0 -0.09000000000000008 -0.06000000000000005 -0.010000000000000009 -0.37000000000000005 0.05999999999999994
689 687 0 -0.21000000000000008 -0.06000000000000005 -0.12000000000000005 -0.29000000000000004 -0.050000000000000044
690 688 1 -0.20000000000000007 -0.26000000000000006 -0.06000000000000005 -0.37000000000000005 -0.010000000000000009
691 689 0 -0.07000000000000006 -0.12000000000000005 -0.050000000000000044 -0.38000000000000006 -0.040000000000000036
692 690 1 -0.21000000000000008 -0.12000000000000005 -0.020000000000000018 -0.30000000000000004 -0.040000000000000036
693 691 1 -0.13000000000000006 -0.28 -0.030000000000000027 -0.22000000000000003 -0.010000000000000009
694 692 0 -0.23000000000000004 -0.08000000000000007 -0.010000000000000009 -0.4 -0.030000000000000027
695 693 1 -0.11000000000000004 -0.3500000000000001 -0.07000000000000006 -0.32000000000000006 -0.10000000000000003
696 694 1 -0.12000000000000005 -0.22000000000000003 0.04999999999999993 -0.43000000000000005 -0.07000000000000006
697 695 0 0.30999999999999994 -0.09000000000000008 0.039999999999999925 -0.09000000000000008 0.029999999999999916
698 696 0 -0.26000000000000006 -0.010000000000000009 0.019999999999999907 -0.4 0.04999999999999993
699 697 1 -0.2700000000000001 -0.22000000000000003 -0.010000000000000009 -0.32000000000000006 -0.050000000000000044
700 698 0 0.18999999999999995 0.10999999999999999 -0.050000000000000044 -0.2700000000000001 -0.040000000000000036
701 699 0 -0.09000000000000008 -0.09000000000000008 -0.06000000000000005 -0.41000000000000003 -0.06000000000000005