Build modified streamline images

The official image from streamline does not currently work for the arm64
platform. As a temporary measure, the source code and docker build scripts
have been lifted from the official images and are used to build locally.

Some additional modifications are made to reduce overall image size, these
are documented in docker/README.md
This commit is contained in:
2024-03-10 16:17:50 -07:00
parent 2ffc3c408a
commit a424394109
13506 changed files with 1860172 additions and 6 deletions
+8
View File
@@ -0,0 +1,8 @@
message_board
messageboard
resources
images
insurance_members
hospital_resources
csv_imports
users
Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

@@ -0,0 +1,55 @@
import json
import socket
import requests
HOST = "192.168.1.215" # Standard loopback interface address (localhost)
PORT = 5100 # Port to listen on (non-privileged ports are > 1023)
bytes_to_decode = b''
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
s.bind((HOST, PORT))
s.listen()
conn, addr = s.accept()
with conn:
# print(f"Connected by {addr}")
while True:
data = conn.recv(1024)
if data:
bytes_to_decode += data
if 'END_RESULT' in data.decode():
results_dict = {}
decoded_data = bytes_to_decode.decode()
data_lists = [line.split(";") for line in decoded_data.split("\r\n")]
data_list = []
for row in data_lists:
if row[0] in ['SID', 'PID', 'ID']:
results_dict[row[0]] = row[1]
elif row[0] in ['WBC', 'LYMP', 'MONP', 'NEUP', 'EOSP', 'BASP', 'IMMP', 'ALYP', 'LYM', 'RDW-SD',
'MON', 'NEU', 'EOS', 'BAS', 'IMM', 'ALY', 'RBC', 'HGB', 'HCT', 'MCV', 'MCH',
'MCHC', 'RDW-CV', 'PLCR', 'PDW', 'PCT', 'MPV', 'PLT']:
try:
flag = row[3]
except:
flag = ''
try:
result = row[1]
except:
result = ''
data_list.append([row[0], result, flag])
results_dict["results"] = json.dumps(data_list)
requests.post('http://192.168.1.215/lab_machines/receive_results_mispa', data=results_dict)
bytes_to_decode = b''
@@ -0,0 +1,25 @@
from subprocess import check_output, Popen, PIPE, STDOUT
import os
file_path = "/var/www/streamline/public/uploads/lab_machine_scripts/kisiizi/main.py"
try:
# get the pid of the last process running with python3
pid_list = check_output(["pidof", "python3"]).split()
# iterate over the list of related pids
for pid in pid_list:
decoded_pid = pid.decode("utf-8")
file_path_from_pid = check_output(["ps", "-o", "cmd", decoded_pid]).split()[2].decode("utf-8")
if file_path_from_pid == file_path:
# kill the process with this path
delete_pid = check_output(["kill", "-9", decoded_pid])
break
# start a new process
os.system("nohup python3 " + file_path + " >/dev/null 2>&1 & ")
print(1)
except Exception as e:
print(e)
Binary file not shown.

After

Width:  |  Height:  |  Size: 536 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 903 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 911 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 193 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 101 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 101 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

@@ -0,0 +1,108 @@
120,0,12.4,13.5,16.6,19.1
121,0,12.4,13.5,16.7,19.2
122,0,12.4,13.5,16.7,19.3
123,0,12.5,13.6,16.8,19.3
124,0,12.5,13.6,16.8,19.4
125,0,12.5,13.6,16.9,19.5
126,0,12.5,13.7,16.9,19.5
127,0,12.6,13.7,17,19.6
128,0,12.6,13.7,17,19.7
129,0,12.6,13.8,17.1,19.7
130,0,12.7,13.8,17.1,19.8
131,0,12.7,13.8,17.2,19.9
132,0,12.7,13.9,17.2,20
133,0,12.8,13.9,17.3,20
134,0,12.8,14,17.4,20.1
135,0,12.8,14,17.4,20.2
136,0,12.9,14,17.5,20.3
137,0,12.9,14.1,17.5,20.3
138,0,12.9,14.1,17.6,20.4
139,0,13,14.2,17.7,20.5
140,0,13,14.2,17.7,20.6
141,0,13,14.3,17.8,20.7
142,0,13.1,14.3,17.9,20.7
143,0,13.1,14.3,17.9,20.8
144,0,13.2,14.4,18,20.9
145,0,13.2,14.4,18.1,21
146,0,13.2,14.5,18.1,21.1
147,0,13.3,14.5,18.2,21.2
148,0,13.3,14.6,18.3,21.2
149,0,13.3,14.6,18.3,21.3
150,0,13.4,14.7,18.4,21.4
151,0,13.4,14.7,18.5,21.5
152,0,13.5,14.8,18.5,21.6
153,0,13.5,14.8,18.6,21.7
154,0,13.5,14.8,18.7,21.7
155,0,13.6,14.9,18.7,21.8
156,0,13.6,14.9,18.8,21.9
157,0,13.6,15,18.9,22
158,0,13.7,15,18.9,22.1
159,0,13.7,15.1,19,22.1
160,0,13.8,15.1,19.1,22.2
161,0,13.8,15.2,19.1,22.3
162,0,13.8,15.2,19.2,22.4
163,0,13.9,15.2,19.3,22.5
164,0,13.9,15.3,19.3,22.5
165,0,13.9,15.3,19.4,22.6
166,0,14,15.4,19.4,22.7
167,0,14,15.4,19.5,22.8
168,0,14,15.4,19.6,22.8
169,0,14.1,15.5,19.6,22.9
170,0,14.1,15.5,19.7,23
171,0,14.1,15.6,19.7,23
172,0,14.1,15.6,19.8,23.1
173,0,14.2,15.6,19.9,23.2
174,0,14.2,15.7,19.9,23.2
175,0,14.2,15.7,20,23.3
176,0,14.3,15.7,20,23.4
177,0,14.3,15.8,20.1,23.4
178,0,14.3,15.8,20.1,23.5
179,0,14.3,15.8,20.2,23.6
180,0,14.4,15.9,20.2,23.6
181,0,14.4,15.9,20.3,23.7
182,0,14.4,15.9,20.3,23.7
183,0,14.4,16,20.4,23.8
184,0,14.5,16,20.4,23.8
185,0,14.5,16,20.4,23.9
186,0,14.5,16,20.5,23.9
187,0,14.5,16.1,20.5,24
188,0,14.5,16.1,20.6,24
189,0,14.5,16.1,20.6,24.1
190,0,14.6,16.1,20.6,24.1
191,0,14.6,16.2,20.7,24.2
192,0,14.6,16.2,20.7,24.2
193,0,14.6,16.2,20.7,24.2
194,0,14.6,16.2,20.8,24.3
195,0,14.6,16.2,20.8,24.3
196,0,14.6,16.2,20.8,24.4
197,0,14.6,16.3,20.9,24.4
198,0,14.7,16.3,20.9,24.4
199,0,14.7,16.3,20.9,24.5
200,0,14.7,16.3,20.9,24.5
201,0,14.7,16.3,21,24.5
202,0,14.7,16.3,21,24.5
203,0,14.7,16.3,21,24.6
204,0,14.7,16.4,21,24.6
205,0,14.7,16.4,21.1,24.6
206,0,14.7,16.4,21.1,24.7
207,0,14.7,16.4,21.1,24.7
208,0,14.7,16.4,21.1,24.7
209,0,14.7,16.4,21.1,24.7
210,0,14.7,16.4,21.2,24.7
211,0,14.7,16.4,21.2,24.8
212,0,14.7,16.4,21.2,24.8
213,0,14.7,16.4,21.2,24.8
214,0,14.7,16.4,21.2,24.8
215,0,14.7,16.4,21.2,24.9
216,0,14.7,16.4,21.3,24.9
217,0,14.7,16.5,21.3,24.9
218,0,14.7,16.5,21.3,24.9
219,0,14.7,16.5,21.3,24.9
220,0,14.7,16.5,21.3,24.9
221,0,14.7,16.5,21.3,25
222,0,14.7,16.5,21.3,25
223,0,14.7,16.5,21.4,25
224,0,14.7,16.5,21.4,25
225,0,14.7,16.5,21.4,25
226,0,14.7,16.5,21.4,25
227,0,14.7,16.5,21.4,25.1
1 120 0 12.4 13.5 16.6 19.1
2 121 0 12.4 13.5 16.7 19.2
3 122 0 12.4 13.5 16.7 19.3
4 123 0 12.5 13.6 16.8 19.3
5 124 0 12.5 13.6 16.8 19.4
6 125 0 12.5 13.6 16.9 19.5
7 126 0 12.5 13.7 16.9 19.5
8 127 0 12.6 13.7 17 19.6
9 128 0 12.6 13.7 17 19.7
10 129 0 12.6 13.8 17.1 19.7
11 130 0 12.7 13.8 17.1 19.8
12 131 0 12.7 13.8 17.2 19.9
13 132 0 12.7 13.9 17.2 20
14 133 0 12.8 13.9 17.3 20
15 134 0 12.8 14 17.4 20.1
16 135 0 12.8 14 17.4 20.2
17 136 0 12.9 14 17.5 20.3
18 137 0 12.9 14.1 17.5 20.3
19 138 0 12.9 14.1 17.6 20.4
20 139 0 13 14.2 17.7 20.5
21 140 0 13 14.2 17.7 20.6
22 141 0 13 14.3 17.8 20.7
23 142 0 13.1 14.3 17.9 20.7
24 143 0 13.1 14.3 17.9 20.8
25 144 0 13.2 14.4 18 20.9
26 145 0 13.2 14.4 18.1 21
27 146 0 13.2 14.5 18.1 21.1
28 147 0 13.3 14.5 18.2 21.2
29 148 0 13.3 14.6 18.3 21.2
30 149 0 13.3 14.6 18.3 21.3
31 150 0 13.4 14.7 18.4 21.4
32 151 0 13.4 14.7 18.5 21.5
33 152 0 13.5 14.8 18.5 21.6
34 153 0 13.5 14.8 18.6 21.7
35 154 0 13.5 14.8 18.7 21.7
36 155 0 13.6 14.9 18.7 21.8
37 156 0 13.6 14.9 18.8 21.9
38 157 0 13.6 15 18.9 22
39 158 0 13.7 15 18.9 22.1
40 159 0 13.7 15.1 19 22.1
41 160 0 13.8 15.1 19.1 22.2
42 161 0 13.8 15.2 19.1 22.3
43 162 0 13.8 15.2 19.2 22.4
44 163 0 13.9 15.2 19.3 22.5
45 164 0 13.9 15.3 19.3 22.5
46 165 0 13.9 15.3 19.4 22.6
47 166 0 14 15.4 19.4 22.7
48 167 0 14 15.4 19.5 22.8
49 168 0 14 15.4 19.6 22.8
50 169 0 14.1 15.5 19.6 22.9
51 170 0 14.1 15.5 19.7 23
52 171 0 14.1 15.6 19.7 23
53 172 0 14.1 15.6 19.8 23.1
54 173 0 14.2 15.6 19.9 23.2
55 174 0 14.2 15.7 19.9 23.2
56 175 0 14.2 15.7 20 23.3
57 176 0 14.3 15.7 20 23.4
58 177 0 14.3 15.8 20.1 23.4
59 178 0 14.3 15.8 20.1 23.5
60 179 0 14.3 15.8 20.2 23.6
61 180 0 14.4 15.9 20.2 23.6
62 181 0 14.4 15.9 20.3 23.7
63 182 0 14.4 15.9 20.3 23.7
64 183 0 14.4 16 20.4 23.8
65 184 0 14.5 16 20.4 23.8
66 185 0 14.5 16 20.4 23.9
67 186 0 14.5 16 20.5 23.9
68 187 0 14.5 16.1 20.5 24
69 188 0 14.5 16.1 20.6 24
70 189 0 14.5 16.1 20.6 24.1
71 190 0 14.6 16.1 20.6 24.1
72 191 0 14.6 16.2 20.7 24.2
73 192 0 14.6 16.2 20.7 24.2
74 193 0 14.6 16.2 20.7 24.2
75 194 0 14.6 16.2 20.8 24.3
76 195 0 14.6 16.2 20.8 24.3
77 196 0 14.6 16.2 20.8 24.4
78 197 0 14.6 16.3 20.9 24.4
79 198 0 14.7 16.3 20.9 24.4
80 199 0 14.7 16.3 20.9 24.5
81 200 0 14.7 16.3 20.9 24.5
82 201 0 14.7 16.3 21 24.5
83 202 0 14.7 16.3 21 24.5
84 203 0 14.7 16.3 21 24.6
85 204 0 14.7 16.4 21 24.6
86 205 0 14.7 16.4 21.1 24.6
87 206 0 14.7 16.4 21.1 24.7
88 207 0 14.7 16.4 21.1 24.7
89 208 0 14.7 16.4 21.1 24.7
90 209 0 14.7 16.4 21.1 24.7
91 210 0 14.7 16.4 21.2 24.7
92 211 0 14.7 16.4 21.2 24.8
93 212 0 14.7 16.4 21.2 24.8
94 213 0 14.7 16.4 21.2 24.8
95 214 0 14.7 16.4 21.2 24.8
96 215 0 14.7 16.4 21.2 24.9
97 216 0 14.7 16.4 21.3 24.9
98 217 0 14.7 16.5 21.3 24.9
99 218 0 14.7 16.5 21.3 24.9
100 219 0 14.7 16.5 21.3 24.9
101 220 0 14.7 16.5 21.3 24.9
102 221 0 14.7 16.5 21.3 25
103 222 0 14.7 16.5 21.3 25
104 223 0 14.7 16.5 21.4 25
105 224 0 14.7 16.5 21.4 25
106 225 0 14.7 16.5 21.4 25
107 226 0 14.7 16.5 21.4 25
108 227 0 14.7 16.5 21.4 25.1
@@ -0,0 +1,60 @@
60,0,11.6,12.7,15.3,15.5
61,0,11.8,12.7,15.2,15.4
62,0,11.8,12.7,15.2,15.4
63,0,11.8,12.7,15.2,15.4
64,0,11.8,12.7,15.2,15.4
65,0,11.7,12.7,15.2,15.4
66,0,11.7,12.7,15.2,15.4
67,0,11.7,12.7,15.2,15.4
68,0,11.7,12.7,15.3,15.5
69,0,11.7,12.7,15.3,15.5
70,0,11.7,12.7,15.3,15.5
71,0,11.7,12.7,15.3,15.5
72,0,11.7,12.7,15.3,15.5
73,0,11.7,12.7,15.3,15.5
74,0,11.7,12.7,15.3,15.5
75,0,11.7,12.7,15.3,15.5
76,0,11.7,12.7,15.3,15.5
77,0,11.7,12.7,15.3,15.5
78,0,11.7,12.7,15.3,15.5
79,0,11.7,12.7,15.3,15.5
80,0,11.7,12.7,15.3,15.5
81,0,11.7,12.7,15.4,15.6
82,0,11.7,12.7,15.4,15.6
83,0,11.7,12.7,15.4,15.6
84,0,11.8,12.7,15.4,15.6
85,0,11.8,12.7,15.4,15.6
86,0,11.8,12.8,15.4,15.6
87,0,11.8,12.8,15.5,15.7
88,0,11.8,12.8,15.5,15.7
89,0,11.8,12.8,15.5,15.7
90,0,11.8,12.8,15.5,15.7
91,0,11.8,12.8,15.5,15.7
92,0,11.8,12.8,15.6,15.8
93,0,11.8,12.8,15.6,15.8
94,0,11.9,12.9,15.6,15.8
95,0,11.9,12.9,15.7,15.9
96,0,11.9,12.9,15.7,15.9
97,0,11.9,12.9,15.7,15.9
98,0,11.9,12.9,15.7,15.9
99,0,11.9,12.9,15.8,16
100,0,11.9,13,15.8,16
101,0,12,13,15.8,16
102,0,12,13,15.9,16.1
103,0,12,13,15.9,16.1
104,0,12,13,15.9,16.1
105,0,12,13.1,16,16.2
106,0,12.1,13.1,16,16.2
107,0,12.1,13.1,16.1,16.3
108,0,12.1,13.1,16.1,16.3
109,0,12.1,13.2,16.1,16.3
110,0,12.1,13.2,16.2,16.4
111,0,12.2,13.2,16.2,16.4
112,0,12.2,13.2,16.3,16.5
113,0,12.2,13.3,16.3,16.5
114,0,12.2,13.3,16.3,16.5
115,0,12.3,13.3,16.4,16.6
116,0,12.3,13.4,16.4,16.6
117,0,12.3,13.4,16.5,16.7
118,0,12.3,13.4,16.5,16.7
119,0,12.4,13.4,16.6,16.8
1 60 0 11.6 12.7 15.3 15.5
2 61 0 11.8 12.7 15.2 15.4
3 62 0 11.8 12.7 15.2 15.4
4 63 0 11.8 12.7 15.2 15.4
5 64 0 11.8 12.7 15.2 15.4
6 65 0 11.7 12.7 15.2 15.4
7 66 0 11.7 12.7 15.2 15.4
8 67 0 11.7 12.7 15.2 15.4
9 68 0 11.7 12.7 15.3 15.5
10 69 0 11.7 12.7 15.3 15.5
11 70 0 11.7 12.7 15.3 15.5
12 71 0 11.7 12.7 15.3 15.5
13 72 0 11.7 12.7 15.3 15.5
14 73 0 11.7 12.7 15.3 15.5
15 74 0 11.7 12.7 15.3 15.5
16 75 0 11.7 12.7 15.3 15.5
17 76 0 11.7 12.7 15.3 15.5
18 77 0 11.7 12.7 15.3 15.5
19 78 0 11.7 12.7 15.3 15.5
20 79 0 11.7 12.7 15.3 15.5
21 80 0 11.7 12.7 15.3 15.5
22 81 0 11.7 12.7 15.4 15.6
23 82 0 11.7 12.7 15.4 15.6
24 83 0 11.7 12.7 15.4 15.6
25 84 0 11.8 12.7 15.4 15.6
26 85 0 11.8 12.7 15.4 15.6
27 86 0 11.8 12.8 15.4 15.6
28 87 0 11.8 12.8 15.5 15.7
29 88 0 11.8 12.8 15.5 15.7
30 89 0 11.8 12.8 15.5 15.7
31 90 0 11.8 12.8 15.5 15.7
32 91 0 11.8 12.8 15.5 15.7
33 92 0 11.8 12.8 15.6 15.8
34 93 0 11.8 12.8 15.6 15.8
35 94 0 11.9 12.9 15.6 15.8
36 95 0 11.9 12.9 15.7 15.9
37 96 0 11.9 12.9 15.7 15.9
38 97 0 11.9 12.9 15.7 15.9
39 98 0 11.9 12.9 15.7 15.9
40 99 0 11.9 12.9 15.8 16
41 100 0 11.9 13 15.8 16
42 101 0 12 13 15.8 16
43 102 0 12 13 15.9 16.1
44 103 0 12 13 15.9 16.1
45 104 0 12 13 15.9 16.1
46 105 0 12 13.1 16 16.2
47 106 0 12.1 13.1 16 16.2
48 107 0 12.1 13.1 16.1 16.3
49 108 0 12.1 13.1 16.1 16.3
50 109 0 12.1 13.2 16.1 16.3
51 110 0 12.1 13.2 16.2 16.4
52 111 0 12.2 13.2 16.2 16.4
53 112 0 12.2 13.2 16.3 16.5
54 113 0 12.2 13.3 16.3 16.5
55 114 0 12.2 13.3 16.3 16.5
56 115 0 12.3 13.3 16.4 16.6
57 116 0 12.3 13.4 16.4 16.6
58 117 0 12.3 13.4 16.5 16.7
59 118 0 12.3 13.4 16.5 16.7
60 119 0 12.4 13.4 16.6 16.8
@@ -0,0 +1,131 @@
55,0,3.5,3.8,5,5.51
55.5,0,3.6,3.9,5.1,5.71
56,0,3.7,4,5.3,5.81
56.5,0,3.8,4.1,5.4,6.01
57,0,3.9,4.3,5.6,6.11
57.5,0,4,4.4,5.7,6.31
58,0,4.1,4.5,5.9,6.51
58.5,0,4.2,4.6,6,6.61
59,0,4.3,4.7,6.2,6.81
59.5,0,4.4,4.8,6.3,6.91
60,0,4.5,4.9,6.4,7.11
60.5,0,4.6,5,6.6,7.31
61,0,4.7,5.1,6.7,7.41
61.5,0,4.8,5.2,6.9,7.61
62,0,4.9,5.3,7,7.71
62.5,0,5,5.4,7.1,7.81
63,0,5.1,5.5,7.3,8.01
63.5,0,5.2,5.6,7.4,8.11
64,0,5.3,5.7,7.5,8.31
64.5,0,5.4,5.8,7.6,8.41
65,0,5.5,5.9,7.8,8.61
65.5,0,5.5,6,7.9,8.71
66,0,5.6,6.1,8,8.81
66.5,0,5.7,6.2,8.1,9.01
67,0,5.8,6.3,8.3,9.11
67.5,0,5.9,6.4,8.4,9.21
68,0,6,6.5,8.5,9.41
68.5,0,6.1,6.6,8.6,9.51
69,0,6.1,6.7,8.7,9.61
69.5,0,6.2,6.8,8.8,9.71
70,0,6.3,6.9,9,9.91
70.5,0,6.4,6.9,9.1,10.01
71,0,6.5,7,9.2,10.11
71.5,0,6.5,7.1,9.3,10.21
72,0,6.6,7.2,9.4,10.31
72.5,0,6.7,7.3,9.5,10.51
73,0,6.8,7.4,9.6,10.61
73.5,0,6.9,7.4,9.7,10.71
74,0,6.9,7.5,9.8,10.81
74.5,0,7,7.6,9.9,10.91
75,0,7.1,7.7,10,11.01
75.5,0,7.1,7.8,10.1,11.11
76,0,7.2,7.8,10.2,11.21
76.5,0,7.3,7.9,10.3,11.41
77,0,7.4,8,10.4,11.51
77.5,0,7.4,8.1,10.5,11.61
78,0,7.5,8.2,10.6,11.71
78.5,0,7.6,8.2,10.7,11.81
79,0,7.7,8.3,10.8,11.91
79.5,0,7.7,8.4,10.9,12.01
80,0,7.8,8.5,11,12.11
80.5,0,7.9,8.6,11.2,12.31
81,0,8.1,8.8,11.4,12.6
81.5,0,8.2,8.9,11.6,12.7
82,0,8.3,9,11.7,12.8
82.5,0,8.4,9.1,11.8,13
83,0,8.5,9.2,11.9,13.1
83.5,0,8.5,9.3,12.1,13.3
84,0,8.6,9.4,12.2,13.4
84.5,0,8.7,9.5,12.3,13.5
85,0,8.8,9.6,12.5,13.7
85.5,0,8.9,9.7,12.6,13.8
86,0,9,9.8,12.7,14
86.5,0,9.1,9.9,12.9,14.2
87,0,9.2,10,13,14.3
87.5,0,9.3,10.1,13.2,14.5
88,0,9.4,10.2,13.3,14.6
88.5,0,9.5,10.3,13.4,14.8
89,0,9.6,10.4,13.6,14.9
89.5,0,9.7,10.5,13.7,15.1
90,0,9.8,10.6,13.8,15.2
90.5,0,9.9,10.7,14,15.4
91,0,10,10.9,14.1,15.5
91.5,0,10.1,11,14.3,15.7
92,0,10.2,11.1,14.4,15.8
92.5,0,10.3,11.2,14.5,16
93,0,10.4,11.3,14.7,16.1
93.5,0,10.5,11.4,14.8,16.3
94,0,10.6,11.5,14.9,16.4
94.5,0,10.7,11.6,15.1,16.6
95,0,10.8,11.7,15.2,16.7
95.5,0,10.8,11.8,15.4,16.9
96,0,10.9,11.9,15.5,17
96.5,0,11,12,15.6,17.2
97,0,11.1,12.1,15.8,17.4
97.5,0,11.2,12.2,15.9,17.5
98,0,11.3,12.3,16.1,17.7
98.5,0,11.4,12.4,16.2,17.9
99,0,11.5,12.5,16.4,18
99.5,0,11.6,12.7,16.5,18.2
100,0,11.7,12.8,16.7,18.4
100.5,0,11.9,12.9,16.9,18.6
101,0,12,13,17,18.7
101.5,0,12.1,13.1,17.2,18.9
102,0,12.2,13.3,17.4,19.1
102.5,0,12.3,13.4,17.5,19.3
103,0,12.4,13.5,17.7,19.5
103.5,0,12.5,13.6,17.9,19.7
104,0,12.6,13.8,18.1,19.9
104.5,0,12.8,13.9,18.2,20.1
105,0,12.9,14,18.4,20.3
105.5,0,13,14.2,18.6,20.5
106,0,13.1,14.3,18.8,20.8
106.5,0,13.3,14.5,19,21
107,0,13.4,14.6,19.2,21.2
107.5,0,13.5,14.7,19.4,21.4
108,0,13.7,14.9,19.6,21.7
108.5,0,13.8,15,19.8,21.9
109,0,13.9,15.2,20,22.1
109.5,0,14.1,15.4,20.3,22.4
110,0,14.2,15.5,20.5,22.6
110.5,0,14.4,15.7,20.7,22.9
111,0,14.5,15.8,20.9,23.1
111.5,0,14.7,16,21.2,23.4
112,0,14.8,16.2,21.4,23.6
112.5,0,15,16.3,21.6,23.9
113,0,15.1,16.5,21.8,24.2
113.5,0,15.3,16.7,22.1,24.4
114,0,15.4,16.8,22.3,24.7
114.5,0,15.6,17,22.6,25
115,0,15.7,17.2,22.8,25.2
115.5,0,15.9,17.3,23,25.5
116,0,16,17.5,23.3,25.8
116.5,0,16.2,17.7,23.5,26.1
117,0,16.3,17.8,23.8,26.3
117.5,0,16.5,18,24,26.6
118,0,16.6,18.2,24.2,26.9
118.5,0,16.8,18.4,24.5,27.2
119,0,16.9,18.5,24.7,27.4
119.5,0,17.1,18.7,25,27.7
120,0,17.3,18.9,25.2,28
1 55 0 3.5 3.8 5 5.51
2 55.5 0 3.6 3.9 5.1 5.71
3 56 0 3.7 4 5.3 5.81
4 56.5 0 3.8 4.1 5.4 6.01
5 57 0 3.9 4.3 5.6 6.11
6 57.5 0 4 4.4 5.7 6.31
7 58 0 4.1 4.5 5.9 6.51
8 58.5 0 4.2 4.6 6 6.61
9 59 0 4.3 4.7 6.2 6.81
10 59.5 0 4.4 4.8 6.3 6.91
11 60 0 4.5 4.9 6.4 7.11
12 60.5 0 4.6 5 6.6 7.31
13 61 0 4.7 5.1 6.7 7.41
14 61.5 0 4.8 5.2 6.9 7.61
15 62 0 4.9 5.3 7 7.71
16 62.5 0 5 5.4 7.1 7.81
17 63 0 5.1 5.5 7.3 8.01
18 63.5 0 5.2 5.6 7.4 8.11
19 64 0 5.3 5.7 7.5 8.31
20 64.5 0 5.4 5.8 7.6 8.41
21 65 0 5.5 5.9 7.8 8.61
22 65.5 0 5.5 6 7.9 8.71
23 66 0 5.6 6.1 8 8.81
24 66.5 0 5.7 6.2 8.1 9.01
25 67 0 5.8 6.3 8.3 9.11
26 67.5 0 5.9 6.4 8.4 9.21
27 68 0 6 6.5 8.5 9.41
28 68.5 0 6.1 6.6 8.6 9.51
29 69 0 6.1 6.7 8.7 9.61
30 69.5 0 6.2 6.8 8.8 9.71
31 70 0 6.3 6.9 9 9.91
32 70.5 0 6.4 6.9 9.1 10.01
33 71 0 6.5 7 9.2 10.11
34 71.5 0 6.5 7.1 9.3 10.21
35 72 0 6.6 7.2 9.4 10.31
36 72.5 0 6.7 7.3 9.5 10.51
37 73 0 6.8 7.4 9.6 10.61
38 73.5 0 6.9 7.4 9.7 10.71
39 74 0 6.9 7.5 9.8 10.81
40 74.5 0 7 7.6 9.9 10.91
41 75 0 7.1 7.7 10 11.01
42 75.5 0 7.1 7.8 10.1 11.11
43 76 0 7.2 7.8 10.2 11.21
44 76.5 0 7.3 7.9 10.3 11.41
45 77 0 7.4 8 10.4 11.51
46 77.5 0 7.4 8.1 10.5 11.61
47 78 0 7.5 8.2 10.6 11.71
48 78.5 0 7.6 8.2 10.7 11.81
49 79 0 7.7 8.3 10.8 11.91
50 79.5 0 7.7 8.4 10.9 12.01
51 80 0 7.8 8.5 11 12.11
52 80.5 0 7.9 8.6 11.2 12.31
53 81 0 8.1 8.8 11.4 12.6
54 81.5 0 8.2 8.9 11.6 12.7
55 82 0 8.3 9 11.7 12.8
56 82.5 0 8.4 9.1 11.8 13
57 83 0 8.5 9.2 11.9 13.1
58 83.5 0 8.5 9.3 12.1 13.3
59 84 0 8.6 9.4 12.2 13.4
60 84.5 0 8.7 9.5 12.3 13.5
61 85 0 8.8 9.6 12.5 13.7
62 85.5 0 8.9 9.7 12.6 13.8
63 86 0 9 9.8 12.7 14
64 86.5 0 9.1 9.9 12.9 14.2
65 87 0 9.2 10 13 14.3
66 87.5 0 9.3 10.1 13.2 14.5
67 88 0 9.4 10.2 13.3 14.6
68 88.5 0 9.5 10.3 13.4 14.8
69 89 0 9.6 10.4 13.6 14.9
70 89.5 0 9.7 10.5 13.7 15.1
71 90 0 9.8 10.6 13.8 15.2
72 90.5 0 9.9 10.7 14 15.4
73 91 0 10 10.9 14.1 15.5
74 91.5 0 10.1 11 14.3 15.7
75 92 0 10.2 11.1 14.4 15.8
76 92.5 0 10.3 11.2 14.5 16
77 93 0 10.4 11.3 14.7 16.1
78 93.5 0 10.5 11.4 14.8 16.3
79 94 0 10.6 11.5 14.9 16.4
80 94.5 0 10.7 11.6 15.1 16.6
81 95 0 10.8 11.7 15.2 16.7
82 95.5 0 10.8 11.8 15.4 16.9
83 96 0 10.9 11.9 15.5 17
84 96.5 0 11 12 15.6 17.2
85 97 0 11.1 12.1 15.8 17.4
86 97.5 0 11.2 12.2 15.9 17.5
87 98 0 11.3 12.3 16.1 17.7
88 98.5 0 11.4 12.4 16.2 17.9
89 99 0 11.5 12.5 16.4 18
90 99.5 0 11.6 12.7 16.5 18.2
91 100 0 11.7 12.8 16.7 18.4
92 100.5 0 11.9 12.9 16.9 18.6
93 101 0 12 13 17 18.7
94 101.5 0 12.1 13.1 17.2 18.9
95 102 0 12.2 13.3 17.4 19.1
96 102.5 0 12.3 13.4 17.5 19.3
97 103 0 12.4 13.5 17.7 19.5
98 103.5 0 12.5 13.6 17.9 19.7
99 104 0 12.6 13.8 18.1 19.9
100 104.5 0 12.8 13.9 18.2 20.1
101 105 0 12.9 14 18.4 20.3
102 105.5 0 13 14.2 18.6 20.5
103 106 0 13.1 14.3 18.8 20.8
104 106.5 0 13.3 14.5 19 21
105 107 0 13.4 14.6 19.2 21.2
106 107.5 0 13.5 14.7 19.4 21.4
107 108 0 13.7 14.9 19.6 21.7
108 108.5 0 13.8 15 19.8 21.9
109 109 0 13.9 15.2 20 22.1
110 109.5 0 14.1 15.4 20.3 22.4
111 110 0 14.2 15.5 20.5 22.6
112 110.5 0 14.4 15.7 20.7 22.9
113 111 0 14.5 15.8 20.9 23.1
114 111.5 0 14.7 16 21.2 23.4
115 112 0 14.8 16.2 21.4 23.6
116 112.5 0 15 16.3 21.6 23.9
117 113 0 15.1 16.5 21.8 24.2
118 113.5 0 15.3 16.7 22.1 24.4
119 114 0 15.4 16.8 22.3 24.7
120 114.5 0 15.6 17 22.6 25
121 115 0 15.7 17.2 22.8 25.2
122 115.5 0 15.9 17.3 23 25.5
123 116 0 16 17.5 23.3 25.8
124 116.5 0 16.2 17.7 23.5 26.1
125 117 0 16.3 17.8 23.8 26.3
126 117.5 0 16.5 18 24 26.6
127 118 0 16.6 18.2 24.2 26.9
128 118.5 0 16.8 18.4 24.5 27.2
129 119 0 16.9 18.5 24.7 27.4
130 119.5 0 17.1 18.7 25 27.7
131 120 0 17.3 18.9 25.2 28
@@ -0,0 +1,108 @@
120,0,12.8,13.7,16.4,18.6
121,0,12.8,13.8,16.5,18.6
122,0,12.8,13.8,16.5,18.7
123,0,12.8,13.8,16.6,18.7
124,0,12.9,13.8,16.6,18.8
125,0,12.9,13.9,16.6,18.9
126,0,12.9,13.9,16.7,18.9
127,0,12.9,13.9,16.7,19
128,0,13,13.9,16.8,19
129,0,13,14,16.8,19.1
130,0,13,14,16.9,19.1
131,0,13,14,16.9,19.2
132,0,13.1,14.1,16.9,19.3
133,0,13.1,14.1,17,19.3
134,0,13.1,14.1,17,19.4
135,0,13.1,14.1,17.1,19.4
136,0,13.2,14.2,17.1,19.5
137,0,13.2,14.2,17.2,19.6
138,0,13.2,14.2,17.2,19.6
139,0,13.2,14.3,17.3,19.7
140,0,13.3,14.3,17.3,19.8
141,0,13.3,14.3,17.4,19.8
142,0,13.3,14.4,17.4,19.9
143,0,13.4,14.4,17.5,20
144,0,13.4,14.5,17.5,20
145,0,13.4,14.5,17.6,20.1
146,0,13.5,14.5,17.6,20.2
147,0,13.5,14.6,17.7,20.3
148,0,13.5,14.6,17.8,20.3
149,0,13.6,14.6,17.8,20.4
150,0,13.6,14.7,17.9,20.5
151,0,13.6,14.7,17.9,20.5
152,0,13.7,14.8,18,20.6
153,0,13.7,14.8,18,20.7
154,0,13.7,14.8,18.1,20.8
155,0,13.8,14.9,18.2,20.9
156,0,13.8,14.9,18.2,20.9
157,0,13.8,15,18.3,21
158,0,13.9,15,18.4,21.1
159,0,13.9,15.1,18.4,21.2
160,0,14,15.1,18.5,21.2
161,0,14,15.2,18.6,21.3
162,0,14,15.2,18.6,21.4
163,0,14.1,15.2,18.7,21.5
164,0,14.1,15.3,18.7,21.6
165,0,14.1,15.3,18.8,21.6
166,0,14.2,15.4,18.9,21.7
167,0,14.2,15.4,18.9,21.8
168,0,14.3,15.5,19,21.9
169,0,14.3,15.5,19.1,21.9
170,0,14.3,15.6,19.1,22
171,0,14.4,15.6,19.2,22.1
172,0,14.4,15.7,19.3,22.2
173,0,14.5,15.7,19.3,22.3
174,0,14.5,15.7,19.4,22.3
175,0,14.5,15.8,19.5,22.4
176,0,14.6,15.8,19.5,22.5
177,0,14.6,15.9,19.6,22.6
178,0,14.6,15.9,19.6,22.6
179,0,14.7,16,19.7,22.7
180,0,14.7,16,19.8,22.8
181,0,14.7,16.1,19.8,22.9
182,0,14.8,16.1,19.9,22.9
183,0,14.8,16.1,20,23
184,0,14.8,16.2,20,23.1
185,0,14.9,16.2,20.1,23.1
186,0,14.9,16.3,20.1,23.2
187,0,15,16.3,20.2,23.3
188,0,15,16.3,20.3,23.4
189,0,15,16.4,20.3,23.4
190,0,15,16.4,20.4,23.5
191,0,15.1,16.5,20.4,23.6
192,0,15.1,16.5,20.5,23.6
193,0,15.1,16.5,20.6,23.7
194,0,15.2,16.6,20.6,23.8
195,0,15.2,16.6,20.7,23.8
196,0,15.2,16.7,20.7,23.9
197,0,15.3,16.7,20.8,23.9
198,0,15.3,16.7,20.8,24
199,0,15.3,16.8,20.9,24.1
200,0,15.3,16.8,20.9,24.1
201,0,15.4,16.8,21,24.2
202,0,15.4,16.9,21,24.3
203,0,15.4,16.9,21.1,24.3
204,0,15.4,16.9,21.1,24.4
205,0,15.5,17,21.2,24.4
206,0,15.5,17,21.2,24.5
207,0,15.5,17,21.3,24.5
208,0,15.5,17.1,21.3,24.6
209,0,15.6,17.1,21.4,24.6
210,0,15.6,17.1,21.4,24.7
211,0,15.6,17.1,21.5,24.8
212,0,15.6,17.2,21.5,24.8
213,0,15.6,17.2,21.6,24.9
214,0,15.7,17.2,21.6,24.9
215,0,15.7,17.3,21.7,25
216,0,15.7,17.3,21.7,25
217,0,15.7,17.3,21.8,25.1
218,0,15.7,17.3,21.8,25.1
219,0,15.7,17.4,21.8,25.2
220,0,15.8,17.4,21.9,25.2
221,0,15.8,17.4,21.9,25.2
222,0,15.8,17.4,22,25.3
223,0,15.8,17.5,22,25.3
224,0,15.8,17.5,22,25.4
225,0,15.8,17.5,22.1,25.4
226,0,15.8,17.5,22.1,25.5
227,0,15.8,17.5,22.2,25.5
1 120 0 12.8 13.7 16.4 18.6
2 121 0 12.8 13.8 16.5 18.6
3 122 0 12.8 13.8 16.5 18.7
4 123 0 12.8 13.8 16.6 18.7
5 124 0 12.9 13.8 16.6 18.8
6 125 0 12.9 13.9 16.6 18.9
7 126 0 12.9 13.9 16.7 18.9
8 127 0 12.9 13.9 16.7 19
9 128 0 13 13.9 16.8 19
10 129 0 13 14 16.8 19.1
11 130 0 13 14 16.9 19.1
12 131 0 13 14 16.9 19.2
13 132 0 13.1 14.1 16.9 19.3
14 133 0 13.1 14.1 17 19.3
15 134 0 13.1 14.1 17 19.4
16 135 0 13.1 14.1 17.1 19.4
17 136 0 13.2 14.2 17.1 19.5
18 137 0 13.2 14.2 17.2 19.6
19 138 0 13.2 14.2 17.2 19.6
20 139 0 13.2 14.3 17.3 19.7
21 140 0 13.3 14.3 17.3 19.8
22 141 0 13.3 14.3 17.4 19.8
23 142 0 13.3 14.4 17.4 19.9
24 143 0 13.4 14.4 17.5 20
25 144 0 13.4 14.5 17.5 20
26 145 0 13.4 14.5 17.6 20.1
27 146 0 13.5 14.5 17.6 20.2
28 147 0 13.5 14.6 17.7 20.3
29 148 0 13.5 14.6 17.8 20.3
30 149 0 13.6 14.6 17.8 20.4
31 150 0 13.6 14.7 17.9 20.5
32 151 0 13.6 14.7 17.9 20.5
33 152 0 13.7 14.8 18 20.6
34 153 0 13.7 14.8 18 20.7
35 154 0 13.7 14.8 18.1 20.8
36 155 0 13.8 14.9 18.2 20.9
37 156 0 13.8 14.9 18.2 20.9
38 157 0 13.8 15 18.3 21
39 158 0 13.9 15 18.4 21.1
40 159 0 13.9 15.1 18.4 21.2
41 160 0 14 15.1 18.5 21.2
42 161 0 14 15.2 18.6 21.3
43 162 0 14 15.2 18.6 21.4
44 163 0 14.1 15.2 18.7 21.5
45 164 0 14.1 15.3 18.7 21.6
46 165 0 14.1 15.3 18.8 21.6
47 166 0 14.2 15.4 18.9 21.7
48 167 0 14.2 15.4 18.9 21.8
49 168 0 14.3 15.5 19 21.9
50 169 0 14.3 15.5 19.1 21.9
51 170 0 14.3 15.6 19.1 22
52 171 0 14.4 15.6 19.2 22.1
53 172 0 14.4 15.7 19.3 22.2
54 173 0 14.5 15.7 19.3 22.3
55 174 0 14.5 15.7 19.4 22.3
56 175 0 14.5 15.8 19.5 22.4
57 176 0 14.6 15.8 19.5 22.5
58 177 0 14.6 15.9 19.6 22.6
59 178 0 14.6 15.9 19.6 22.6
60 179 0 14.7 16 19.7 22.7
61 180 0 14.7 16 19.8 22.8
62 181 0 14.7 16.1 19.8 22.9
63 182 0 14.8 16.1 19.9 22.9
64 183 0 14.8 16.1 20 23
65 184 0 14.8 16.2 20 23.1
66 185 0 14.9 16.2 20.1 23.1
67 186 0 14.9 16.3 20.1 23.2
68 187 0 15 16.3 20.2 23.3
69 188 0 15 16.3 20.3 23.4
70 189 0 15 16.4 20.3 23.4
71 190 0 15 16.4 20.4 23.5
72 191 0 15.1 16.5 20.4 23.6
73 192 0 15.1 16.5 20.5 23.6
74 193 0 15.1 16.5 20.6 23.7
75 194 0 15.2 16.6 20.6 23.8
76 195 0 15.2 16.6 20.7 23.8
77 196 0 15.2 16.7 20.7 23.9
78 197 0 15.3 16.7 20.8 23.9
79 198 0 15.3 16.7 20.8 24
80 199 0 15.3 16.8 20.9 24.1
81 200 0 15.3 16.8 20.9 24.1
82 201 0 15.4 16.8 21 24.2
83 202 0 15.4 16.9 21 24.3
84 203 0 15.4 16.9 21.1 24.3
85 204 0 15.4 16.9 21.1 24.4
86 205 0 15.5 17 21.2 24.4
87 206 0 15.5 17 21.2 24.5
88 207 0 15.5 17 21.3 24.5
89 208 0 15.5 17.1 21.3 24.6
90 209 0 15.6 17.1 21.4 24.6
91 210 0 15.6 17.1 21.4 24.7
92 211 0 15.6 17.1 21.5 24.8
93 212 0 15.6 17.2 21.5 24.8
94 213 0 15.6 17.2 21.6 24.9
95 214 0 15.7 17.2 21.6 24.9
96 215 0 15.7 17.3 21.7 25
97 216 0 15.7 17.3 21.7 25
98 217 0 15.7 17.3 21.8 25.1
99 218 0 15.7 17.3 21.8 25.1
100 219 0 15.7 17.4 21.8 25.2
101 220 0 15.8 17.4 21.9 25.2
102 221 0 15.8 17.4 21.9 25.2
103 222 0 15.8 17.4 22 25.3
104 223 0 15.8 17.5 22 25.3
105 224 0 15.8 17.5 22 25.4
106 225 0 15.8 17.5 22.1 25.4
107 226 0 15.8 17.5 22.1 25.5
108 227 0 15.8 17.5 22.2 25.5
@@ -0,0 +1,60 @@
60,0,12,12.9,15.2,16.7
61,0,12.1,13,15.3,16.7
62,0,12.1,13,15.3,16.7
63,0,12.1,13,15.3,16.8
64,0,12.1,13,15.3,16.8
65,0,12.1,13,15.3,16.8
66,0,12.1,13,15.3,16.8
67,0,12.1,13,15.3,16.8
68,0,12.1,13,15.3,16.8
69,0,12.1,13,15.3,16.8
70,0,12.1,13,15.3,16.8
71,0,12.1,13,15.3,16.8
72,0,12.1,13,15.3,16.9
73,0,12.1,13,15.3,16.9
74,0,12.2,13.1,15.3,16.9
75,0,12.2,13.1,15.3,16.9
76,0,12.2,13.1,15.4,16.9
77,0,12.2,13.1,15.4,17
78,0,12.2,13.1,15.4,17
79,0,12.2,13.1,15.4,17
80,0,12.2,13.1,15.4,17
81,0,12.2,13.1,15.4,17.1
82,0,12.2,13.1,15.4,17.1
83,0,12.2,13.1,15.5,17.1
84,0,12.3,13.1,15.5,17.1
85,0,12.3,13.2,15.5,17.2
86,0,12.3,13.2,15.5,17.2
87,0,12.3,13.2,15.5,17.2
88,0,12.3,13.2,15.6,17.3
89,0,12.3,13.2,15.6,17.3
90,0,12.3,13.2,15.6,17.3
91,0,12.3,13.2,15.6,17.4
92,0,12.3,13.2,15.6,17.4
93,0,12.4,13.3,15.7,17.4
94,0,12.4,13.3,15.7,17.5
95,0,12.4,13.3,15.7,17.5
96,0,12.4,13.3,15.7,17.5
97,0,12.4,13.3,15.8,17.6
98,0,12.4,13.3,15.8,17.6
99,0,12.4,13.3,15.8,17.6
100,0,12.4,13.4,15.8,17.7
101,0,12.5,13.4,15.9,17.7
102,0,12.5,13.4,15.9,17.8
103,0,12.5,13.4,15.9,17.8
104,0,12.5,13.4,15.9,17.8
105,0,12.5,13.4,16,17.9
106,0,12.5,13.5,16,17.9
107,0,12.5,13.5,16,18
108,0,12.6,13.5,16,18
109,0,12.6,13.5,16.1,18.1
110,0,12.6,13.5,16.1,18.1
111,0,12.6,13.5,16.1,18.1
112,0,12.6,13.6,16.2,18.2
113,0,12.6,13.6,16.2,18.2
114,0,12.7,13.6,16.2,18.3
115,0,12.7,13.6,16.3,18.3
116,0,12.7,13.6,16.3,18.4
117,0,12.7,13.7,16.3,18.4
118,0,12.7,13.7,16.4,18.5
119,0,12.8,13.7,16.4,18.5
1 60 0 12 12.9 15.2 16.7
2 61 0 12.1 13 15.3 16.7
3 62 0 12.1 13 15.3 16.7
4 63 0 12.1 13 15.3 16.8
5 64 0 12.1 13 15.3 16.8
6 65 0 12.1 13 15.3 16.8
7 66 0 12.1 13 15.3 16.8
8 67 0 12.1 13 15.3 16.8
9 68 0 12.1 13 15.3 16.8
10 69 0 12.1 13 15.3 16.8
11 70 0 12.1 13 15.3 16.8
12 71 0 12.1 13 15.3 16.8
13 72 0 12.1 13 15.3 16.9
14 73 0 12.1 13 15.3 16.9
15 74 0 12.2 13.1 15.3 16.9
16 75 0 12.2 13.1 15.3 16.9
17 76 0 12.2 13.1 15.4 16.9
18 77 0 12.2 13.1 15.4 17
19 78 0 12.2 13.1 15.4 17
20 79 0 12.2 13.1 15.4 17
21 80 0 12.2 13.1 15.4 17
22 81 0 12.2 13.1 15.4 17.1
23 82 0 12.2 13.1 15.4 17.1
24 83 0 12.2 13.1 15.5 17.1
25 84 0 12.3 13.1 15.5 17.1
26 85 0 12.3 13.2 15.5 17.2
27 86 0 12.3 13.2 15.5 17.2
28 87 0 12.3 13.2 15.5 17.2
29 88 0 12.3 13.2 15.6 17.3
30 89 0 12.3 13.2 15.6 17.3
31 90 0 12.3 13.2 15.6 17.3
32 91 0 12.3 13.2 15.6 17.4
33 92 0 12.3 13.2 15.6 17.4
34 93 0 12.4 13.3 15.7 17.4
35 94 0 12.4 13.3 15.7 17.5
36 95 0 12.4 13.3 15.7 17.5
37 96 0 12.4 13.3 15.7 17.5
38 97 0 12.4 13.3 15.8 17.6
39 98 0 12.4 13.3 15.8 17.6
40 99 0 12.4 13.3 15.8 17.6
41 100 0 12.4 13.4 15.8 17.7
42 101 0 12.5 13.4 15.9 17.7
43 102 0 12.5 13.4 15.9 17.8
44 103 0 12.5 13.4 15.9 17.8
45 104 0 12.5 13.4 15.9 17.8
46 105 0 12.5 13.4 16 17.9
47 106 0 12.5 13.5 16 17.9
48 107 0 12.5 13.5 16 18
49 108 0 12.6 13.5 16 18
50 109 0 12.6 13.5 16.1 18.1
51 110 0 12.6 13.5 16.1 18.1
52 111 0 12.6 13.5 16.1 18.1
53 112 0 12.6 13.6 16.2 18.2
54 113 0 12.6 13.6 16.2 18.2
55 114 0 12.7 13.6 16.2 18.3
56 115 0 12.7 13.6 16.3 18.3
57 116 0 12.7 13.6 16.3 18.4
58 117 0 12.7 13.7 16.3 18.4
59 118 0 12.7 13.7 16.4 18.5
60 119 0 12.8 13.7 16.4 18.5
@@ -0,0 +1,130 @@
55.5,0,3.7,4,5.1,5.7
56,0,3.8,4.1,5.3,5.9
56.5,0,3.9,4.2,5.4,6
57,0,4,4.3,5.6,6.2
57.5,0,4.1,4.5,5.7,6.4
58,0,4.3,4.6,5.9,6.5
58.5,0,4.4,4.7,6.1,6.7
59,0,4.5,4.8,6.2,6.9
59.5,0,4.6,5,6.4,7.1
60,0,4.7,5.1,6.5,7.2
60.5,0,4.8,5.2,6.7,7.4
61,0,4.9,5.3,6.8,7.5
61.5,0,5,5.4,7,7.7
62,0,5.1,5.6,7.1,7.8
62.5,0,5.2,5.7,7.2,8
63,0,5.3,5.8,7.4,8.1
63.5,0,5.4,5.9,7.5,8.3
64,0,5.5,6,7.6,8.4
64.5,0,5.6,6.1,7.8,8.6
65,0,5.7,6.2,7.9,8.7
65.5,0,5.8,6.3,8,8.8
66,0,5.9,6.4,8.2,9
66.5,0,6,6.5,8.3,9.1
67,0,6.1,6.6,8.4,9.3
67.5,0,6.2,6.7,8.5,9.4
68,0,6.3,6.8,8.7,9.5
68.5,0,6.4,6.9,8.8,9.7
69,0,6.5,7,8.9,9.8
69.5,0,6.6,7.1,9,9.9
70,0,6.6,7.2,9.2,10.1
70.5,0,6.7,7.3,9.3,10.2
71,0,6.8,7.4,9.4,10.3
71.5,0,6.9,7.5,9.5,10.5
72,0,7,7.6,9.6,10.6
72.5,0,7.1,7.6,9.8,10.7
73,0,7.2,7.7,9.9,10.9
73.5,0,7.2,7.8,10,11
74,0,7.3,7.9,10.1,11.1
74.5,0,7.4,8,10.2,11.3
75,0,7.5,8.1,10.3,11.4
75.5,0,7.6,8.2,10.4,11.5
76,0,7.6,8.3,10.6,11.6
76.5,0,7.7,8.3,10.7,11.7
77,0,7.8,8.4,10.8,11.8
77.5,0,7.9,8.5,10.9,12
78,0,7.9,8.6,11,12.1
78.5,0,8,8.7,11.1,12.2
79,0,8.1,8.7,11.2,12.3
79.5,0,8.2,8.8,11.3,12.4
80,0,8.2,8.9,11.4,12.5
80.5,0,8.3,9,11.5,12.6
81,0,8.4,9.1,11.6,12.7
81.5,0,8.5,9.1,11.7,12.8
82,0,8.5,9.2,11.8,12.9
82.5,0,8.6,9.3,11.9,13.1
83,0,8.7,9.4,12,13.2
83.5,0,8.8,9.5,12.1,13.3
84,0,8.9,9.6,12.2,13.4
84.5,0,9,9.7,12.4,13.6
85,0,9.1,9.8,12.5,13.7
85.5,0,9.2,9.9,12.6,13.8
86,0,9.3,10,12.8,14
86.5,0,9.4,10.1,12.9,14.1
87,0,9.5,10.2,13,14.3
87.5,0,9.6,10.4,13.2,14.4
88,0,9.7,10.5,13.3,14.6
88.5,0,9.8,10.6,13.4,14.7
89,0,9.9,10.7,13.5,14.8
89.5,0,10,10.8,13.7,15
90,0,10.1,10.9,13.8,15.1
90.5,0,10.2,11,13.9,15.2
91,0,10.3,11.1,14.1,15.4
91.5,0,10.4,11.2,14.2,15.5
92,0,10.5,11.3,14.3,15.7
92.5,0,10.6,11.4,14.4,15.8
93,0,10.7,11.5,14.6,15.9
93.5,0,10.7,11.6,14.7,16.1
94,0,10.8,11.7,14.8,16.2
94.5,0,10.9,11.8,14.9,16.4
95,0,11,11.9,15.1,16.5
95.5,0,11.1,12,15.2,16.6
96,0,11.2,12.1,15.3,16.8
96.5,0,11.3,12.2,15.5,16.9
97,0,11.4,12.3,15.6,17.1
97.5,0,11.5,12.4,15.7,17.2
98,0,11.6,12.5,15.9,17.4
98.5,0,11.7,12.6,16,17.6
99,0,11.8,12.7,16.2,17.7
99.5,0,11.9,12.8,16.3,17.9
100,0,12,12.9,16.5,18.1
100.5,0,12.1,13,16.6,18.2
101,0,12.2,13.2,16.8,18.4
101.5,0,12.3,13.3,16.9,18.6
102,0,12.4,13.4,17.1,18.8
102.5,0,12.5,13.5,17.3,18.9
103,0,12.6,13.6,17.4,19.1
103.5,0,12.7,13.7,17.6,19.3
104,0,12.8,13.9,17.8,19.5
104.5,0,12.9,14,17.9,19.7
105,0,13,14.1,18.1,19.9
105.5,0,13.2,14.2,18.3,20.1
106,0,13.3,14.4,18.5,20.3
106.5,0,13.4,14.5,18.6,20.5
107,0,13.5,14.6,18.8,20.7
107.5,0,13.6,14.7,19,20.9
108,0,13.7,14.9,19.2,21.1
108.5,0,13.8,15,19.4,21.3
109,0,14,15.1,19.6,21.5
109.5,0,14.1,15.3,19.8,21.8
110,0,14.2,15.4,20,22
110.5,0,14.5,15.8,20.4,22.5
111,0,14.6,15.9,20.7,22.8
111.5,0,14.8,16,20.9,23
112,0,14.9,16.2,21.1,23.2
112.5,0,15,16.3,21.3,23.5
113,0,15.2,16.5,21.5,23.7
113.5,0,15.3,16.6,21.7,24
114,0,15.4,16.8,21.9,24.2
114.5,0,15.6,16.9,22.1,24.5
115,0,15.7,17.1,22.4,24.7
115.5,0,15.8,17.2,22.6,25
116,0,16,17.4,22.8,25.2
116.5,0,16.1,17.5,23,25.5
117,0,16.2,17.7,23.3,25.7
117.5,0,16.4,17.9,23.5,26
118,0,16.5,18,23.7,26.2
118.5,0,16.7,18.2,23.9,26.5
119,0,16.8,18.3,24.1,26.7
119.5,0,16.9,18.5,24.4,27
120,0,17.1,18.6,24.6,27.3
1 55.5 0 3.7 4 5.1 5.7
2 56 0 3.8 4.1 5.3 5.9
3 56.5 0 3.9 4.2 5.4 6
4 57 0 4 4.3 5.6 6.2
5 57.5 0 4.1 4.5 5.7 6.4
6 58 0 4.3 4.6 5.9 6.5
7 58.5 0 4.4 4.7 6.1 6.7
8 59 0 4.5 4.8 6.2 6.9
9 59.5 0 4.6 5 6.4 7.1
10 60 0 4.7 5.1 6.5 7.2
11 60.5 0 4.8 5.2 6.7 7.4
12 61 0 4.9 5.3 6.8 7.5
13 61.5 0 5 5.4 7 7.7
14 62 0 5.1 5.6 7.1 7.8
15 62.5 0 5.2 5.7 7.2 8
16 63 0 5.3 5.8 7.4 8.1
17 63.5 0 5.4 5.9 7.5 8.3
18 64 0 5.5 6 7.6 8.4
19 64.5 0 5.6 6.1 7.8 8.6
20 65 0 5.7 6.2 7.9 8.7
21 65.5 0 5.8 6.3 8 8.8
22 66 0 5.9 6.4 8.2 9
23 66.5 0 6 6.5 8.3 9.1
24 67 0 6.1 6.6 8.4 9.3
25 67.5 0 6.2 6.7 8.5 9.4
26 68 0 6.3 6.8 8.7 9.5
27 68.5 0 6.4 6.9 8.8 9.7
28 69 0 6.5 7 8.9 9.8
29 69.5 0 6.6 7.1 9 9.9
30 70 0 6.6 7.2 9.2 10.1
31 70.5 0 6.7 7.3 9.3 10.2
32 71 0 6.8 7.4 9.4 10.3
33 71.5 0 6.9 7.5 9.5 10.5
34 72 0 7 7.6 9.6 10.6
35 72.5 0 7.1 7.6 9.8 10.7
36 73 0 7.2 7.7 9.9 10.9
37 73.5 0 7.2 7.8 10 11
38 74 0 7.3 7.9 10.1 11.1
39 74.5 0 7.4 8 10.2 11.3
40 75 0 7.5 8.1 10.3 11.4
41 75.5 0 7.6 8.2 10.4 11.5
42 76 0 7.6 8.3 10.6 11.6
43 76.5 0 7.7 8.3 10.7 11.7
44 77 0 7.8 8.4 10.8 11.8
45 77.5 0 7.9 8.5 10.9 12
46 78 0 7.9 8.6 11 12.1
47 78.5 0 8 8.7 11.1 12.2
48 79 0 8.1 8.7 11.2 12.3
49 79.5 0 8.2 8.8 11.3 12.4
50 80 0 8.2 8.9 11.4 12.5
51 80.5 0 8.3 9 11.5 12.6
52 81 0 8.4 9.1 11.6 12.7
53 81.5 0 8.5 9.1 11.7 12.8
54 82 0 8.5 9.2 11.8 12.9
55 82.5 0 8.6 9.3 11.9 13.1
56 83 0 8.7 9.4 12 13.2
57 83.5 0 8.8 9.5 12.1 13.3
58 84 0 8.9 9.6 12.2 13.4
59 84.5 0 9 9.7 12.4 13.6
60 85 0 9.1 9.8 12.5 13.7
61 85.5 0 9.2 9.9 12.6 13.8
62 86 0 9.3 10 12.8 14
63 86.5 0 9.4 10.1 12.9 14.1
64 87 0 9.5 10.2 13 14.3
65 87.5 0 9.6 10.4 13.2 14.4
66 88 0 9.7 10.5 13.3 14.6
67 88.5 0 9.8 10.6 13.4 14.7
68 89 0 9.9 10.7 13.5 14.8
69 89.5 0 10 10.8 13.7 15
70 90 0 10.1 10.9 13.8 15.1
71 90.5 0 10.2 11 13.9 15.2
72 91 0 10.3 11.1 14.1 15.4
73 91.5 0 10.4 11.2 14.2 15.5
74 92 0 10.5 11.3 14.3 15.7
75 92.5 0 10.6 11.4 14.4 15.8
76 93 0 10.7 11.5 14.6 15.9
77 93.5 0 10.7 11.6 14.7 16.1
78 94 0 10.8 11.7 14.8 16.2
79 94.5 0 10.9 11.8 14.9 16.4
80 95 0 11 11.9 15.1 16.5
81 95.5 0 11.1 12 15.2 16.6
82 96 0 11.2 12.1 15.3 16.8
83 96.5 0 11.3 12.2 15.5 16.9
84 97 0 11.4 12.3 15.6 17.1
85 97.5 0 11.5 12.4 15.7 17.2
86 98 0 11.6 12.5 15.9 17.4
87 98.5 0 11.7 12.6 16 17.6
88 99 0 11.8 12.7 16.2 17.7
89 99.5 0 11.9 12.8 16.3 17.9
90 100 0 12 12.9 16.5 18.1
91 100.5 0 12.1 13 16.6 18.2
92 101 0 12.2 13.2 16.8 18.4
93 101.5 0 12.3 13.3 16.9 18.6
94 102 0 12.4 13.4 17.1 18.8
95 102.5 0 12.5 13.5 17.3 18.9
96 103 0 12.6 13.6 17.4 19.1
97 103.5 0 12.7 13.7 17.6 19.3
98 104 0 12.8 13.9 17.8 19.5
99 104.5 0 12.9 14 17.9 19.7
100 105 0 13 14.1 18.1 19.9
101 105.5 0 13.2 14.2 18.3 20.1
102 106 0 13.3 14.4 18.5 20.3
103 106.5 0 13.4 14.5 18.6 20.5
104 107 0 13.5 14.6 18.8 20.7
105 107.5 0 13.6 14.7 19 20.9
106 108 0 13.7 14.9 19.2 21.1
107 108.5 0 13.8 15 19.4 21.3
108 109 0 14 15.1 19.6 21.5
109 109.5 0 14.1 15.3 19.8 21.8
110 110 0 14.2 15.4 20 22
111 110.5 0 14.5 15.8 20.4 22.5
112 111 0 14.6 15.9 20.7 22.8
113 111.5 0 14.8 16 20.9 23
114 112 0 14.9 16.2 21.1 23.2
115 112.5 0 15 16.3 21.3 23.5
116 113 0 15.2 16.5 21.5 23.7
117 113.5 0 15.3 16.6 21.7 24
118 114 0 15.4 16.8 21.9 24.2
119 114.5 0 15.6 16.9 22.1 24.5
120 115 0 15.7 17.1 22.4 24.7
121 115.5 0 15.8 17.2 22.6 25
122 116 0 16 17.4 22.8 25.2
123 116.5 0 16.1 17.5 23 25.5
124 117 0 16.2 17.7 23.3 25.7
125 117.5 0 16.4 17.9 23.5 26
126 118 0 16.5 18 23.7 26.2
127 118.5 0 16.7 18.2 23.9 26.5
128 119 0 16.8 18.3 24.1 26.7
129 119.5 0 16.9 18.5 24.4 27
130 120 0 17.1 18.6 24.6 27.3
Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 101 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 475 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 322 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 535 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 243 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 851 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 310 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 422 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 526 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 116 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 338 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 884 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB