scikit-survival 0.26.0__cp314-cp314-macosx_11_0_arm64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. scikit_survival-0.26.0.dist-info/METADATA +185 -0
  2. scikit_survival-0.26.0.dist-info/RECORD +58 -0
  3. scikit_survival-0.26.0.dist-info/WHEEL +6 -0
  4. scikit_survival-0.26.0.dist-info/licenses/COPYING +674 -0
  5. scikit_survival-0.26.0.dist-info/top_level.txt +1 -0
  6. sksurv/__init__.py +183 -0
  7. sksurv/base.py +115 -0
  8. sksurv/bintrees/__init__.py +15 -0
  9. sksurv/bintrees/_binarytrees.cpython-314-darwin.so +0 -0
  10. sksurv/column.py +204 -0
  11. sksurv/compare.py +123 -0
  12. sksurv/datasets/__init__.py +12 -0
  13. sksurv/datasets/base.py +614 -0
  14. sksurv/datasets/data/GBSG2.arff +700 -0
  15. sksurv/datasets/data/actg320.arff +1169 -0
  16. sksurv/datasets/data/bmt.arff +46 -0
  17. sksurv/datasets/data/breast_cancer_GSE7390-metastasis.arff +283 -0
  18. sksurv/datasets/data/cgvhd.arff +118 -0
  19. sksurv/datasets/data/flchain.arff +7887 -0
  20. sksurv/datasets/data/veteran.arff +148 -0
  21. sksurv/datasets/data/whas500.arff +520 -0
  22. sksurv/docstrings.py +99 -0
  23. sksurv/ensemble/__init__.py +2 -0
  24. sksurv/ensemble/_coxph_loss.cpython-314-darwin.so +0 -0
  25. sksurv/ensemble/boosting.py +1564 -0
  26. sksurv/ensemble/forest.py +902 -0
  27. sksurv/ensemble/survival_loss.py +151 -0
  28. sksurv/exceptions.py +18 -0
  29. sksurv/functions.py +114 -0
  30. sksurv/io/__init__.py +2 -0
  31. sksurv/io/arffread.py +91 -0
  32. sksurv/io/arffwrite.py +181 -0
  33. sksurv/kernels/__init__.py +1 -0
  34. sksurv/kernels/_clinical_kernel.cpython-314-darwin.so +0 -0
  35. sksurv/kernels/clinical.py +348 -0
  36. sksurv/linear_model/__init__.py +3 -0
  37. sksurv/linear_model/_coxnet.cpython-314-darwin.so +0 -0
  38. sksurv/linear_model/aft.py +208 -0
  39. sksurv/linear_model/coxnet.py +592 -0
  40. sksurv/linear_model/coxph.py +637 -0
  41. sksurv/meta/__init__.py +4 -0
  42. sksurv/meta/base.py +35 -0
  43. sksurv/meta/ensemble_selection.py +724 -0
  44. sksurv/meta/stacking.py +370 -0
  45. sksurv/metrics.py +1028 -0
  46. sksurv/nonparametric.py +911 -0
  47. sksurv/preprocessing.py +195 -0
  48. sksurv/svm/__init__.py +11 -0
  49. sksurv/svm/_minlip.cpython-314-darwin.so +0 -0
  50. sksurv/svm/_prsvm.cpython-314-darwin.so +0 -0
  51. sksurv/svm/minlip.py +695 -0
  52. sksurv/svm/naive_survival_svm.py +249 -0
  53. sksurv/svm/survival_svm.py +1236 -0
  54. sksurv/testing.py +155 -0
  55. sksurv/tree/__init__.py +1 -0
  56. sksurv/tree/_criterion.cpython-314-darwin.so +0 -0
  57. sksurv/tree/tree.py +790 -0
  58. sksurv/util.py +416 -0
@@ -0,0 +1,700 @@
1
+ % German Breast Cancer Study Group 2
2
+
3
+ @relation GBSG2
4
+ @attribute horTh {'no','yes'}
5
+ @attribute age numeric
6
+ @attribute menostat {'Pre','Post'}
7
+ @attribute tsize numeric
8
+ @attribute tgrade {'I','II','III'}
9
+ @attribute pnodes numeric
10
+ @attribute progrec numeric
11
+ @attribute estrec numeric
12
+ @attribute time numeric
13
+ @attribute cens {0,1}
14
+ @data
15
+ 'no',70,'Post',21,'II',3,48,66,1814,1
16
+ 'yes',56,'Post',12,'II',7,61,77,2018,1
17
+ 'yes',58,'Post',35,'II',9,52,271,712,1
18
+ 'yes',59,'Post',17,'II',4,60,29,1807,1
19
+ 'no',73,'Post',35,'II',1,26,65,772,1
20
+ 'no',32,'Pre',57,'III',24,0,13,448,1
21
+ 'yes',59,'Post',8,'II',2,181,0,2172,0
22
+ 'no',65,'Post',16,'II',1,192,25,2161,0
23
+ 'no',80,'Post',39,'II',30,0,59,471,1
24
+ 'no',66,'Post',18,'II',7,0,3,2014,0
25
+ 'yes',68,'Post',40,'II',9,16,20,577,1
26
+ 'yes',71,'Post',21,'II',9,0,0,184,1
27
+ 'yes',59,'Post',58,'II',1,154,101,1840,0
28
+ 'no',50,'Post',27,'III',1,16,12,1842,0
29
+ 'yes',70,'Post',22,'II',3,113,139,1821,0
30
+ 'no',54,'Post',30,'II',1,135,6,1371,1
31
+ 'no',39,'Pre',35,'I',4,79,28,707,1
32
+ 'yes',66,'Post',23,'II',1,112,225,1743,0
33
+ 'yes',69,'Post',25,'I',1,131,196,1781,0
34
+ 'no',55,'Post',65,'I',4,312,76,865,1
35
+ 'no',56,'Post',22,'II',1,28,23,1684,1
36
+ 'no',57,'Post',21,'II',2,184,294,1701,0
37
+ 'no',65,'Post',25,'III',1,0,0,1701,0
38
+ 'yes',70,'Post',15,'II',3,89,151,1693,0
39
+ 'no',65,'Post',70,'III',26,2,64,379,1
40
+ 'no',44,'Pre',23,'II',2,299,35,1105,1
41
+ 'yes',59,'Post',23,'III',3,8,0,548,1
42
+ 'no',43,'Pre',35,'II',4,37,5,1296,1
43
+ 'yes',53,'Post',58,'II',1,0,0,1483,0
44
+ 'no',32,'Pre',25,'II',2,36,10,1570,0
45
+ 'no',45,'Pre',45,'III',2,0,0,1469,0
46
+ 'no',36,'Pre',44,'III',2,6,5,1472,0
47
+ 'yes',57,'Post',35,'III',1,1490,209,1342,0
48
+ 'no',55,'Post',25,'I',2,26,53,1349,0
49
+ 'no',34,'Pre',15,'II',5,103,118,1162,1
50
+ 'yes',58,'Post',35,'II',2,38,18,1342,0
51
+ 'no',62,'Post',22,'II',12,0,8,797,1
52
+ 'no',64,'Post',25,'I',9,67,86,1232,0
53
+ 'no',53,'Post',23,'II',3,13,7,1230,0
54
+ 'no',53,'Post',13,'II',8,423,175,1205,0
55
+ 'no',65,'Post',52,'III',7,25,155,1090,0
56
+ 'no',45,'Pre',38,'II',38,160,5,1095,0
57
+ 'no',58,'Post',42,'III',1,0,0,449,1
58
+ 'yes',68,'Post',23,'II',1,27,5,972,0
59
+ 'yes',67,'Post',25,'II',1,15,55,825,0
60
+ 'no',59,'Post',25,'I',2,33,51,2438,0
61
+ 'no',65,'Post',20,'II',1,6,6,2233,0
62
+ 'yes',34,'Pre',30,'III',12,0,5,286,1
63
+ 'yes',65,'Post',18,'II',5,133,175,1861,0
64
+ 'no',61,'Post',30,'II',9,41,51,1080,1
65
+ 'yes',61,'Post',25,'II',1,21,172,1521,1
66
+ 'no',46,'Post',25,'II',1,2,0,1693,0
67
+ 'no',63,'Post',25,'II',1,86,366,1528,1
68
+ 'yes',45,'Pre',19,'II',7,19,0,169,1
69
+ 'no',46,'Pre',35,'II',7,67,44,272,1
70
+ 'no',63,'Post',40,'II',3,5,8,731,1
71
+ 'yes',53,'Pre',21,'II',9,29,9,2059,0
72
+ 'yes',43,'Post',40,'I',4,233,19,1853,0
73
+ 'no',31,'Pre',23,'II',4,20,0,1854,0
74
+ 'yes',71,'Post',15,'II',9,85,9,1645,0
75
+ 'yes',59,'Post',28,'II',18,0,7,544,1
76
+ 'no',62,'Post',15,'II',4,22,70,1666,0
77
+ 'no',54,'Post',30,'II',2,31,11,353,1
78
+ 'no',46,'Pre',25,'II',13,82,20,1791,0
79
+ 'yes',53,'Post',25,'II',2,9,1,1685,0
80
+ 'no',45,'Pre',10,'II',1,14,3,191,1
81
+ 'no',48,'Pre',30,'II',4,19,4,370,1
82
+ 'no',32,'Pre',20,'II',5,55,41,173,1
83
+ 'no',30,'Pre',12,'II',11,4,3,242,1
84
+ 'no',53,'Post',16,'III',1,1,1,420,1
85
+ 'no',42,'Pre',12,'II',6,388,30,438,1
86
+ 'no',48,'Pre',35,'II',1,41,61,1624,0
87
+ 'yes',54,'Post',30,'II',6,15,81,1036,1
88
+ 'no',56,'Post',25,'II',11,0,36,359,1
89
+ 'no',51,'Pre',25,'II',16,91,31,171,1
90
+ 'no',68,'Post',18,'II',14,0,2,959,1
91
+ 'no',46,'Pre',21,'II',3,73,13,1351,0
92
+ 'no',41,'Pre',15,'II',4,11,11,486,1
93
+ 'no',48,'Pre',16,'III',10,0,0,525,1
94
+ 'no',55,'Pre',23,'II',3,295,34,762,1
95
+ 'no',52,'Pre',36,'II',6,6,16,175,1
96
+ 'no',36,'Pre',8,'III',1,10,0,1195,0
97
+ 'no',44,'Pre',25,'III',6,5,2,338,1
98
+ 'no',47,'Post',20,'III',6,408,36,1125,0
99
+ 'yes',47,'Post',40,'III',6,187,24,916,0
100
+ 'yes',59,'Post',23,'II',1,13,20,972,0
101
+ 'no',65,'Post',10,'II',3,42,59,867,0
102
+ 'no',42,'Pre',25,'II',7,0,2,249,1
103
+ 'no',63,'Post',32,'II',16,7,132,281,1
104
+ 'no',40,'Pre',22,'II',2,13,18,758,0
105
+ 'yes',62,'Post',50,'II',11,1,2,377,1
106
+ 'no',55,'Post',40,'I',2,64,81,1976,0
107
+ 'yes',47,'Pre',45,'II',2,264,59,2539,0
108
+ 'no',63,'Post',23,'II',3,22,32,2467,0
109
+ 'no',69,'Post',20,'II',2,154,191,876,1
110
+ 'no',43,'Pre',21,'II',1,206,87,2132,0
111
+ 'no',59,'Post',24,'II',14,2,22,426,1
112
+ 'no',75,'Post',50,'II',1,170,317,554,1
113
+ 'yes',41,'Pre',40,'II',4,100,100,1246,1
114
+ 'no',47,'Pre',36,'III',2,154,99,1926,0
115
+ 'no',43,'Pre',80,'II',20,2,25,1207,1
116
+ 'no',42,'Pre',30,'III',4,65,81,1852,0
117
+ 'no',46,'Pre',35,'I',5,100,0,1174,1
118
+ 'no',65,'Post',58,'II',11,390,119,1250,0
119
+ 'no',59,'Post',30,'II',3,0,2,530,1
120
+ 'no',48,'Pre',70,'II',7,8,0,1502,0
121
+ 'no',44,'Pre',27,'II',3,525,61,1364,0
122
+ 'no',53,'Post',25,'II',13,77,131,1170,1
123
+ 'no',53,'Post',25,'II',2,54,58,1729,0
124
+ 'no',60,'Pre',23,'II',3,136,507,1642,0
125
+ 'no',64,'Post',24,'II',2,206,304,1218,1
126
+ 'no',56,'Post',8,'II',1,110,0,1358,0
127
+ 'no',66,'Post',30,'II',16,0,508,360,1
128
+ 'no',50,'Pre',30,'II',1,183,243,550,1
129
+ 'yes',63,'Post',22,'II',9,64,19,857,0
130
+ 'no',61,'Post',60,'II',51,45,38,768,0
131
+ 'no',46,'Pre',26,'I',3,33,68,858,0
132
+ 'yes',63,'Post',23,'II',3,3,2,770,0
133
+ 'no',49,'Pre',55,'II',7,0,0,679,1
134
+ 'no',33,'Pre',35,'III',1,26,0,1164,1
135
+ 'no',50,'Post',52,'II',1,0,0,350,1
136
+ 'no',45,'Pre',29,'II',1,0,0,578,1
137
+ 'no',51,'Pre',20,'II',1,0,0,1460,1
138
+ 'no',39,'Pre',30,'III',1,0,0,1434,0
139
+ 'yes',56,'Post',40,'II',3,0,3,1763,1
140
+ 'no',60,'Post',15,'II',2,84,93,889,1
141
+ 'yes',47,'Pre',35,'III',17,14,3,357,1
142
+ 'no',58,'Post',50,'II',7,77,77,547,1
143
+ 'yes',56,'Pre',21,'II',3,111,20,1722,0
144
+ 'yes',54,'Post',21,'II',1,7,139,2372,0
145
+ 'yes',56,'Post',40,'II',3,0,59,2030,1
146
+ 'no',57,'Post',26,'II',1,166,521,1002,1
147
+ 'no',53,'Post',10,'II',1,17,61,1280,1
148
+ 'no',31,'Pre',60,'II',7,542,77,338,1
149
+ 'yes',41,'Pre',80,'II',1,0,0,533,1
150
+ 'yes',66,'Post',33,'II',3,0,0,168,0
151
+ 'yes',37,'Pre',25,'II',1,235,38,1169,0
152
+ 'no',66,'Post',15,'II',1,252,185,1675,1
153
+ 'no',48,'Pre',45,'III',1,0,0,1862,0
154
+ 'no',44,'Pre',21,'II',3,1600,70,629,0
155
+ 'no',51,'Pre',50,'II',9,0,0,1167,0
156
+ 'no',57,'Post',20,'II',3,39,83,495,1
157
+ 'no',65,'Post',17,'I',1,935,200,967,0
158
+ 'yes',40,'Pre',30,'II',2,320,30,1720,0
159
+ 'yes',62,'Post',19,'II',1,35,1060,598,1
160
+ 'yes',64,'Post',30,'III',12,0,0,392,1
161
+ 'no',46,'Pre',12,'II',3,175,80,1502,0
162
+ 'yes',62,'Post',25,'II',1,35,185,229,0
163
+ 'no',44,'Pre',30,'II',7,110,20,310,0
164
+ 'no',69,'Post',27,'I',3,140,350,1296,0
165
+ 'no',48,'Pre',15,'II',6,0,110,488,0
166
+ 'no',47,'Post',12,'II',2,0,50,942,0
167
+ 'yes',64,'Post',26,'II',5,370,220,570,0
168
+ 'no',58,'Post',52,'III',5,0,0,1177,0
169
+ 'yes',65,'Post',30,'II',5,85,365,1113,0
170
+ 'no',40,'Pre',40,'II',5,50,75,288,1
171
+ 'yes',62,'Post',21,'II',2,0,0,723,0
172
+ 'no',55,'Post',20,'III',16,0,0,403,1
173
+ 'no',62,'Post',25,'III',5,0,0,1225,1
174
+ 'no',29,'Pre',12,'II',4,32,150,338,1
175
+ 'no',38,'Pre',18,'III',5,141,105,1337,1
176
+ 'no',52,'Pre',20,'I',1,78,14,1420,1
177
+ 'no',47,'Post',55,'II',18,29,87,2048,0
178
+ 'no',53,'Pre',75,'III',19,375,107,600,1
179
+ 'no',37,'Pre',15,'I',1,162,22,1765,0
180
+ 'no',63,'Post',60,'II',15,180,12,491,1
181
+ 'no',63,'Post',45,'III',7,20,93,305,1
182
+ 'no',59,'Post',22,'II',2,23,235,1582,0
183
+ 'no',48,'Pre',30,'II',15,250,45,1771,0
184
+ 'no',33,'Pre',15,'III',33,66,8,960,1
185
+ 'no',38,'Pre',57,'III',9,18,62,571,1
186
+ 'no',32,'Pre',28,'II',12,33,107,675,0
187
+ 'no',31,'Pre',28,'II',2,349,189,285,1
188
+ 'no',53,'Post',48,'II',7,254,117,1472,0
189
+ 'no',47,'Pre',30,'II',1,422,89,1279,1
190
+ 'no',40,'Pre',24,'I',3,25,11,148,0
191
+ 'yes',64,'Post',19,'II',1,19,9,1863,0
192
+ 'yes',49,'Post',56,'I',3,356,64,1933,0
193
+ 'no',53,'Post',52,'II',9,6,29,358,1
194
+ 'yes',70,'Post',18,'II',1,107,307,734,0
195
+ 'yes',61,'Post',22,'II',2,6,173,2372,1
196
+ 'no',43,'Pre',30,'II',1,22,0,2563,0
197
+ 'yes',74,'Post',20,'II',1,462,240,2372,0
198
+ 'yes',58,'Post',18,'I',2,74,67,1989,1
199
+ 'yes',49,'Pre',20,'II',6,56,98,2015,1
200
+ 'yes',61,'Post',35,'III',2,23,9,1956,0
201
+ 'no',66,'Post',40,'III',16,21,412,945,1
202
+ 'yes',66,'Post',20,'III',3,54,17,2153,0
203
+ 'no',59,'Post',23,'II',2,88,38,838,1
204
+ 'no',51,'Post',70,'III',6,28,5,113,1
205
+ 'yes',71,'Post',18,'II',2,31,9,1833,0
206
+ 'no',46,'Pre',50,'III',10,44,4,1722,0
207
+ 'no',52,'Pre',40,'III',6,32,5,241,1
208
+ 'yes',60,'Post',16,'II',1,184,51,1352,1
209
+ 'no',60,'Post',50,'II',7,65,30,1702,0
210
+ 'yes',67,'Post',27,'II',4,1118,753,1222,0
211
+ 'no',54,'Post',30,'III',3,1,0,1089,0
212
+ 'no',55,'Post',12,'II',1,63,19,1243,0
213
+ 'no',38,'Pre',20,'II',9,24,34,579,1
214
+ 'yes',52,'Post',25,'II',13,31,196,1043,1
215
+ 'no',43,'Pre',30,'II',3,45,11,2234,0
216
+ 'no',50,'Pre',22,'I',1,135,111,2297,0
217
+ 'yes',61,'Post',25,'I',2,32,144,2014,0
218
+ 'no',62,'Post',20,'II',2,7,9,518,1
219
+ 'no',46,'Pre',30,'III',1,36,33,940,0
220
+ 'no',50,'Pre',25,'III',1,20,13,766,0
221
+ 'no',52,'Post',20,'III',10,7,8,251,1
222
+ 'no',45,'Pre',20,'II',2,64,48,1959,0
223
+ 'no',52,'Post',10,'II',3,109,12,1897,0
224
+ 'no',51,'Post',120,'II',12,3,1,160,1
225
+ 'no',66,'Post',28,'II',2,488,298,970,0
226
+ 'no',50,'Pre',35,'I',1,408,44,892,0
227
+ 'yes',60,'Post',32,'I',3,104,203,753,0
228
+ 'no',61,'Post',20,'II',5,25,75,348,1
229
+ 'yes',64,'Post',45,'III',5,1,8,275,1
230
+ 'no',64,'Post',17,'I',1,227,0,1329,1
231
+ 'no',51,'Post',35,'III',1,6,1,1193,1
232
+ 'yes',63,'Post',30,'II',7,0,0,698,1
233
+ 'no',62,'Post',12,'II',7,0,0,436,1
234
+ 'yes',65,'Post',18,'III',1,0,0,552,1
235
+ 'yes',67,'Post',20,'II',1,0,0,564,1
236
+ 'no',62,'Post',30,'II',1,8,371,2239,0
237
+ 'yes',48,'Pre',25,'II',1,235,33,2237,0
238
+ 'no',67,'Post',25,'II',1,6,19,529,1
239
+ 'no',46,'Pre',11,'II',2,0,0,1820,0
240
+ 'yes',56,'Post',20,'I',1,2,334,1756,0
241
+ 'yes',72,'Post',34,'III',36,2,1091,515,1
242
+ 'yes',50,'Post',70,'II',19,10,57,272,1
243
+ 'no',58,'Post',21,'III',2,1,1,891,1
244
+ 'no',63,'Post',21,'II',1,0,378,1356,0
245
+ 'no',45,'Post',15,'II',6,1,162,1352,0
246
+ 'no',46,'Pre',21,'III',1,7,109,1077,0
247
+ 'yes',58,'Post',18,'II',3,64,418,675,1
248
+ 'yes',60,'Post',39,'III',9,0,0,855,0
249
+ 'no',53,'Post',30,'III',1,1,4,740,0
250
+ 'yes',63,'Post',21,'II',1,26,30,2551,0
251
+ 'no',60,'Post',35,'II',12,41,62,754,1
252
+ 'no',33,'Pre',25,'II',8,96,13,819,1
253
+ 'yes',63,'Post',19,'II',5,18,38,1280,1
254
+ 'no',70,'Post',16,'II',2,126,338,2388,0
255
+ 'yes',60,'Post',30,'II',2,92,18,2296,0
256
+ 'yes',54,'Post',25,'II',1,5,57,1884,0
257
+ 'yes',64,'Post',25,'III',3,56,272,1059,1
258
+ 'no',57,'Post',55,'III',6,22,186,859,0
259
+ 'yes',50,'Post',21,'I',1,82,2,1109,0
260
+ 'no',53,'Post',20,'II',1,1,1,1192,1
261
+ 'no',77,'Post',20,'III',4,94,325,1806,1
262
+ 'yes',47,'Pre',60,'II',15,5,38,500,1
263
+ 'no',41,'Pre',20,'II',4,8,38,1589,1
264
+ 'yes',47,'Pre',30,'II',5,12,11,1463,1
265
+ 'yes',63,'Post',25,'II',2,8,195,1826,0
266
+ 'no',48,'Pre',22,'II',4,26,29,1231,0
267
+ 'no',40,'Pre',15,'II',1,204,138,1117,0
268
+ 'yes',57,'Post',30,'II',8,40,40,836,1
269
+ 'no',47,'Pre',40,'II',2,33,59,1222,0
270
+ 'no',46,'Pre',22,'II',4,24,74,663,0
271
+ 'yes',58,'Post',35,'III',7,0,0,722,1
272
+ 'yes',51,'Pre',25,'II',1,167,109,322,0
273
+ 'yes',62,'Post',23,'II',2,0,14,1150,1
274
+ 'no',50,'Pre',60,'III',4,0,0,446,1
275
+ 'yes',65,'Post',30,'II',5,0,36,1855,0
276
+ 'yes',59,'Post',30,'II',8,0,0,238,1
277
+ 'no',49,'Pre',18,'II',2,0,0,1838,0
278
+ 'yes',52,'Post',25,'II',13,0,0,1826,0
279
+ 'no',45,'Pre',30,'II',1,0,0,1093,1
280
+ 'no',49,'Post',14,'II',1,0,0,2051,0
281
+ 'no',58,'Post',45,'III',4,0,0,370,1
282
+ 'no',25,'Pre',22,'II',2,250,87,861,1
283
+ 'no',50,'Pre',30,'III',6,0,0,1587,1
284
+ 'no',43,'Pre',27,'II',1,23,9,552,1
285
+ 'no',46,'Pre',12,'II',1,6,49,2353,0
286
+ 'yes',64,'Post',24,'III',5,366,201,2471,0
287
+ 'yes',63,'Post',43,'II',5,21,174,893,1
288
+ 'no',40,'Pre',35,'II',2,279,99,2093,1
289
+ 'yes',57,'Post',22,'II',4,16,5,2612,0
290
+ 'yes',58,'Post',56,'I',11,51,50,956,1
291
+ 'yes',62,'Post',25,'III',4,12,49,1637,0
292
+ 'yes',50,'Pre',42,'I',2,238,26,2456,0
293
+ 'no',49,'Post',30,'II',4,40,177,2227,0
294
+ 'no',64,'Post',24,'II',2,41,80,1601,1
295
+ 'yes',66,'Post',15,'II',2,15,42,1841,0
296
+ 'yes',37,'Pre',30,'II',4,104,107,2177,0
297
+ 'no',60,'Post',18,'III',2,12,8,2052,0
298
+ 'yes',63,'Post',23,'III',12,3,2,973,0
299
+ 'no',51,'Pre',12,'I',2,55,64,2156,0
300
+ 'yes',49,'Pre',28,'I',4,364,120,1499,0
301
+ 'yes',57,'Post',7,'II',1,1,1,2030,0
302
+ 'yes',68,'Post',14,'II',6,40,68,573,1
303
+ 'no',47,'Pre',25,'II',1,199,134,1666,0
304
+ 'no',51,'Post',13,'II',5,89,134,1979,0
305
+ 'yes',49,'Pre',19,'I',5,69,14,1786,0
306
+ 'no',63,'Post',28,'II',4,258,46,1847,0
307
+ 'yes',64,'Post',15,'II',1,340,71,2009,0
308
+ 'no',65,'Post',24,'II',1,328,115,1926,0
309
+ 'yes',63,'Post',13,'II',1,124,361,1490,0
310
+ 'no',33,'Pre',23,'III',10,2,3,233,1
311
+ 'no',44,'Pre',35,'II',6,26,4,1240,0
312
+ 'no',47,'Pre',13,'II',3,242,14,1751,0
313
+ 'no',46,'Pre',19,'I',11,56,24,1878,0
314
+ 'no',52,'Pre',26,'II',1,258,10,1171,0
315
+ 'no',62,'Post',55,'III',8,3,2,1751,0
316
+ 'yes',61,'Post',24,'II',2,28,50,1756,0
317
+ 'no',60,'Post',27,'II',6,401,159,714,1
318
+ 'yes',67,'Post',44,'II',10,431,267,1505,0
319
+ 'no',47,'Pre',78,'II',14,168,53,776,1
320
+ 'no',70,'Post',38,'III',2,24,15,1443,0
321
+ 'no',50,'Pre',11,'I',1,10,11,1317,0
322
+ 'yes',62,'Post',20,'II',1,11,6,870,0
323
+ 'no',58,'Post',30,'III',13,7,46,859,1
324
+ 'no',59,'Post',20,'II',1,2,4,223,1
325
+ 'no',45,'Pre',18,'I',1,56,40,1212,0
326
+ 'no',45,'Pre',30,'II',3,345,31,1119,0
327
+ 'no',41,'Pre',34,'II',10,25,10,740,0
328
+ 'yes',54,'Post',29,'II',10,26,284,1062,0
329
+ 'no',50,'Pre',29,'I',2,90,30,8,0
330
+ 'yes',52,'Post',20,'II',1,1,8,936,0
331
+ 'no',59,'Post',45,'II',6,739,526,740,0
332
+ 'yes',60,'Post',24,'III',7,10,10,632,1
333
+ 'yes',51,'Pre',30,'III',2,1152,38,1760,0
334
+ 'no',56,'Post',40,'III',1,0,3,1013,0
335
+ 'no',48,'Pre',20,'III',7,0,0,779,0
336
+ 'no',49,'Pre',45,'III',6,0,22,375,1
337
+ 'yes',47,'Pre',42,'II',7,164,204,1323,0
338
+ 'no',37,'Pre',50,'III',2,170,130,1233,0
339
+ 'no',54,'Pre',35,'II',2,145,16,986,0
340
+ 'no',49,'Pre',35,'II',7,3,0,650,0
341
+ 'no',54,'Post',28,'III',4,1,2,628,0
342
+ 'no',44,'Pre',29,'II',1,27,23,1866,0
343
+ 'yes',38,'Pre',18,'II',4,28,5,491,1
344
+ 'yes',51,'Pre',34,'II',3,13,12,1918,1
345
+ 'no',59,'Post',8,'II',5,1,30,72,1
346
+ 'yes',52,'Post',49,'III',6,8,5,1140,1
347
+ 'yes',64,'Post',32,'II',4,402,372,799,1
348
+ 'no',55,'Post',37,'II',1,82,234,1105,1
349
+ 'no',61,'Post',22,'II',2,179,124,548,1
350
+ 'yes',44,'Pre',28,'III',17,2,3,227,1
351
+ 'no',38,'Pre',24,'II',3,13,5,1838,0
352
+ 'yes',43,'Pre',11,'I',1,126,22,1833,0
353
+ 'no',65,'Post',36,'III',2,9,7,550,1
354
+ 'yes',59,'Post',48,'III',1,5,17,426,1
355
+ 'no',38,'Pre',31,'I',10,365,206,1834,0
356
+ 'no',47,'Pre',25,'II',3,18,42,1604,0
357
+ 'no',59,'Post',35,'II',5,5,125,772,0
358
+ 'yes',47,'Post',30,'I',9,114,26,1146,1
359
+ 'no',36,'Pre',25,'II',2,70,22,371,1
360
+ 'no',47,'Pre',24,'II',20,30,8,883,1
361
+ 'no',38,'Pre',23,'III',3,14,6,1735,0
362
+ 'yes',50,'Post',23,'II',8,98,30,554,1
363
+ 'no',44,'Pre',5,'II',10,11,10,790,1
364
+ 'no',54,'Post',22,'II',2,211,129,1340,0
365
+ 'no',52,'Pre',30,'II',12,11,20,490,1
366
+ 'no',34,'Pre',3,'III',1,14,11,1557,0
367
+ 'no',64,'Post',33,'III',3,20,14,594,1
368
+ 'yes',54,'Post',19,'III',9,9,2,828,0
369
+ 'no',65,'Post',27,'II',4,148,191,594,1
370
+ 'no',49,'Pre',24,'II',11,106,62,841,0
371
+ 'yes',70,'Post',17,'I',1,142,329,695,0
372
+ 'yes',47,'Pre',30,'I',3,195,45,2556,0
373
+ 'no',51,'Pre',20,'II',1,77,89,1753,1
374
+ 'no',63,'Post',15,'III',5,0,0,417,1
375
+ 'no',36,'Pre',30,'III',2,0,0,956,1
376
+ 'yes',63,'Post',34,'II',12,223,236,1846,0
377
+ 'no',47,'Pre',70,'II',5,796,24,1703,0
378
+ 'no',51,'Pre',21,'III',1,0,0,1720,0
379
+ 'yes',62,'Post',30,'II',1,88,544,1355,0
380
+ 'no',56,'Post',40,'III',3,0,0,1603,0
381
+ 'no',62,'Post',33,'I',5,239,76,476,1
382
+ 'yes',61,'Post',30,'II',8,472,293,1350,0
383
+ 'yes',55,'Post',15,'III',3,97,194,1341,0
384
+ 'yes',56,'Post',11,'II',1,270,369,2449,0
385
+ 'no',69,'Post',22,'II',8,282,191,2286,1
386
+ 'no',57,'Post',25,'II',3,48,65,456,1
387
+ 'no',27,'Pre',22,'II',1,56,99,536,1
388
+ 'no',38,'Pre',25,'II',1,102,11,612,1
389
+ 'no',42,'Pre',25,'III',2,11,10,2034,1
390
+ 'no',69,'Post',19,'I',3,73,386,1990,1
391
+ 'no',61,'Post',50,'II',4,10,10,2456,1
392
+ 'no',53,'Pre',13,'III',3,10,20,2205,0
393
+ 'no',50,'Pre',25,'III',1,24,85,544,1
394
+ 'no',52,'Pre',27,'II',5,0,8,336,1
395
+ 'no',47,'Pre',38,'II',2,58,10,2057,0
396
+ 'no',65,'Post',27,'II',19,23,13,575,1
397
+ 'no',48,'Pre',38,'II',3,92,41,2011,0
398
+ 'no',61,'Post',38,'II',17,46,52,537,1
399
+ 'yes',47,'Pre',12,'II',1,110,14,2217,0
400
+ 'no',46,'Post',20,'II',11,680,152,1814,1
401
+ 'yes',59,'Post',15,'II',1,30,122,890,1
402
+ 'yes',60,'Post',22,'III',1,218,442,1114,0
403
+ 'no',65,'Post',33,'II',6,11,28,974,0
404
+ 'yes',44,'Pre',28,'II',1,0,0,296,0
405
+ 'yes',45,'Pre',100,'II',6,178,77,2320,0
406
+ 'no',58,'Post',35,'I',6,130,162,795,1
407
+ 'no',51,'Post',40,'II',8,132,64,867,1
408
+ 'no',49,'Pre',15,'II',1,111,19,1703,0
409
+ 'no',43,'Pre',30,'II',2,32,16,670,1
410
+ 'no',37,'Pre',35,'II',7,53,19,981,1
411
+ 'no',51,'Pre',30,'II',2,505,270,1094,0
412
+ 'yes',48,'Pre',35,'II',1,340,32,755,1
413
+ 'no',54,'Post',21,'II',7,6,8,1388,1
414
+ 'no',64,'Post',21,'III',1,4,3,1387,1
415
+ 'no',44,'Pre',55,'III',4,8,8,535,1
416
+ 'no',67,'Post',30,'II',2,5,14,1653,0
417
+ 'no',63,'Post',24,'II',3,46,25,1904,0
418
+ 'yes',42,'Pre',28,'III',4,27,22,1868,0
419
+ 'yes',60,'Post',12,'I',2,402,90,1767,0
420
+ 'no',39,'Pre',20,'II',1,38,110,855,1
421
+ 'no',53,'Post',16,'II',1,16,120,1157,1
422
+ 'yes',38,'Pre',61,'II',8,624,569,1869,0
423
+ 'no',61,'Post',40,'I',15,185,206,1152,0
424
+ 'no',47,'Pre',15,'II',1,38,0,1401,0
425
+ 'no',52,'Post',25,'III',3,10,15,918,0
426
+ 'no',67,'Post',65,'II',8,0,0,745,1
427
+ 'yes',61,'Post',25,'II',18,595,419,1283,0
428
+ 'yes',57,'Post',15,'II',3,44,78,1481,1
429
+ 'yes',42,'Pre',9,'I',8,77,40,1807,0
430
+ 'yes',39,'Pre',20,'III',1,2,2,542,1
431
+ 'no',34,'Pre',50,'III',7,4,1,1441,0
432
+ 'yes',52,'Pre',50,'II',7,45,39,1277,0
433
+ 'yes',53,'Pre',45,'II',4,395,44,1486,0
434
+ 'no',49,'Pre',20,'I',3,151,16,273,0
435
+ 'yes',46,'Pre',23,'III',8,2,1,177,1
436
+ 'no',36,'Pre',36,'II',1,76,14,545,1
437
+ 'no',39,'Pre',28,'II',3,5,4,1185,0
438
+ 'no',46,'Pre',28,'III',16,12,8,631,0
439
+ 'no',47,'Pre',70,'II',1,51,28,995,0
440
+ 'no',46,'Pre',45,'I',9,239,58,1088,0
441
+ 'no',47,'Pre',35,'II',1,48,68,877,0
442
+ 'no',57,'Post',18,'II',6,74,124,798,0
443
+ 'yes',60,'Post',25,'II',7,116,435,2380,0
444
+ 'yes',64,'Post',36,'II',2,122,198,1679,1
445
+ 'yes',54,'Post',40,'III',4,3,2,498,1
446
+ 'no',54,'Post',27,'II',5,138,23,2138,0
447
+ 'no',46,'Pre',35,'II',6,405,27,2175,0
448
+ 'no',49,'Pre',17,'II',2,324,94,2271,0
449
+ 'no',50,'Pre',18,'III',1,1,4,17,0
450
+ 'yes',55,'Post',15,'II',3,16,14,964,1
451
+ 'yes',45,'Pre',23,'II',4,1,4,540,1
452
+ 'no',51,'Post',30,'III',10,15,103,747,1
453
+ 'no',43,'Pre',25,'II',11,1,1,650,1
454
+ 'yes',59,'Post',30,'II',13,7,81,410,1
455
+ 'no',59,'Post',27,'III',20,9,2,624,1
456
+ 'no',47,'Pre',28,'III',7,16,92,1560,0
457
+ 'no',48,'Pre',35,'III',10,2,222,455,1
458
+ 'no',47,'Pre',16,'II',2,128,18,1629,0
459
+ 'no',49,'Post',21,'II',5,80,152,1730,0
460
+ 'yes',65,'Post',25,'III',2,17,14,1483,0
461
+ 'no',60,'Post',21,'II',1,58,701,687,1
462
+ 'no',52,'Post',35,'III',1,8,5,308,1
463
+ 'no',48,'Post',22,'II',4,14,0,563,1
464
+ 'yes',62,'Post',20,'II',1,100,100,46,0
465
+ 'no',46,'Post',20,'II',2,32,29,2144,0
466
+ 'no',59,'Post',21,'II',4,0,75,344,1
467
+ 'yes',69,'Post',21,'III',1,51,749,945,0
468
+ 'yes',68,'Post',45,'I',3,31,145,1905,0
469
+ 'yes',74,'Post',35,'II',11,10,472,855,1
470
+ 'no',45,'Pre',50,'I',2,132,200,2370,0
471
+ 'no',43,'Pre',55,'II',1,23,45,853,0
472
+ 'no',44,'Pre',28,'III',4,350,127,692,0
473
+ 'yes',44,'Pre',24,'III',5,187,62,475,1
474
+ 'yes',72,'Post',17,'II',1,229,533,2195,0
475
+ 'yes',80,'Post',7,'II',7,2380,972,758,0
476
+ 'yes',49,'Pre',100,'II',35,84,24,648,1
477
+ 'no',57,'Post',12,'I',1,84,24,761,0
478
+ 'no',60,'Post',32,'III',8,162,315,596,0
479
+ 'no',76,'Post',37,'III',24,11,0,195,1
480
+ 'yes',57,'Post',35,'II',4,18,0,473,1
481
+ 'yes',75,'Post',16,'I',1,250,533,747,0
482
+ 'yes',62,'Post',22,'II',1,263,34,2659,0
483
+ 'yes',46,'Pre',60,'II',19,2,16,1977,1
484
+ 'yes',53,'Post',17,'II',1,25,30,2401,0
485
+ 'no',43,'Pre',20,'II',3,980,45,1499,0
486
+ 'no',51,'Post',32,'III',10,0,0,1856,0
487
+ 'no',41,'Pre',30,'III',11,6,5,595,1
488
+ 'no',63,'Post',45,'III',2,530,328,2148,0
489
+ 'yes',41,'Pre',20,'III',3,13,1,2126,0
490
+ 'yes',74,'Post',30,'III',12,432,246,1975,1
491
+ 'yes',57,'Post',30,'II',1,17,83,1641,1
492
+ 'yes',44,'Pre',20,'II',6,150,67,1717,0
493
+ 'yes',48,'Pre',24,'II',1,211,187,1858,0
494
+ 'no',47,'Pre',15,'III',1,139,36,2049,0
495
+ 'yes',70,'Post',25,'II',4,34,273,1502,1
496
+ 'no',49,'Pre',14,'II',1,160,12,1922,0
497
+ 'yes',49,'Post',24,'II',2,120,117,1818,0
498
+ 'yes',58,'Post',35,'II',11,2,76,1100,0
499
+ 'no',59,'Post',30,'II',1,87,8,1499,0
500
+ 'no',60,'Post',35,'II',2,5,4,359,1
501
+ 'yes',63,'Post',30,'I',5,144,221,1645,0
502
+ 'no',44,'Pre',15,'II',1,175,88,1356,0
503
+ 'yes',79,'Post',23,'I',1,60,80,1632,0
504
+ 'no',47,'Pre',25,'I',1,38,44,967,0
505
+ 'yes',61,'Post',30,'II',1,24,38,1091,0
506
+ 'yes',64,'Post',35,'II',3,47,64,918,1
507
+ 'yes',51,'Pre',21,'II',1,3,2,557,1
508
+ 'no',44,'Pre',22,'II',2,107,94,1219,1
509
+ 'yes',60,'Post',25,'I',3,78,363,2170,0
510
+ 'yes',55,'Post',50,'II',1,14,203,729,1
511
+ 'no',70,'Post',80,'III',8,0,0,1449,1
512
+ 'no',65,'Post',20,'I',2,912,606,991,1
513
+ 'no',53,'Pre',20,'II',2,89,36,481,1
514
+ 'yes',54,'Post',25,'III',3,1,83,1655,0
515
+ 'no',65,'Post',25,'II',2,86,135,857,1
516
+ 'yes',62,'Post',30,'II',2,5,104,369,1
517
+ 'yes',48,'Pre',30,'I',3,133,129,1627,0
518
+ 'yes',48,'Post',35,'I',2,845,105,1578,0
519
+ 'no',42,'Pre',40,'II',10,130,51,732,1
520
+ 'no',48,'Pre',30,'II',16,29,43,460,1
521
+ 'no',66,'Post',25,'I',2,22,121,1208,0
522
+ 'yes',63,'Post',25,'II',13,26,348,730,1
523
+ 'no',64,'Post',35,'I',4,858,15,722,0
524
+ 'yes',68,'Post',35,'II',2,3,99,717,0
525
+ 'no',44,'Pre',40,'II',4,364,159,651,0
526
+ 'no',43,'Pre',27,'II',2,91,117,637,0
527
+ 'no',67,'Post',35,'II',3,19,38,615,0
528
+ 'yes',37,'Pre',20,'II',9,0,0,42,0
529
+ 'no',54,'Post',23,'III',10,13,6,307,1
530
+ 'no',52,'Post',17,'II',4,558,522,983,1
531
+ 'no',43,'Pre',80,'III',11,9,1,120,1
532
+ 'no',56,'Post',31,'II',1,45,286,1525,1
533
+ 'no',42,'Post',21,'I',4,147,95,1680,0
534
+ 'no',56,'Post',16,'II',10,4,2,1730,1
535
+ 'no',61,'Post',36,'II',6,107,158,805,1
536
+ 'no',67,'Post',17,'II',4,390,386,2388,0
537
+ 'yes',63,'Post',21,'I',2,16,241,559,1
538
+ 'yes',66,'Post',20,'II',9,1,11,1977,0
539
+ 'no',37,'Pre',25,'III',1,13,1,476,1
540
+ 'yes',71,'Post',16,'II',1,98,306,1514,0
541
+ 'no',43,'Pre',28,'I',1,437,33,1617,0
542
+ 'no',64,'Post',22,'III',1,8,11,1094,1
543
+ 'yes',64,'Post',27,'II',3,186,139,784,1
544
+ 'no',46,'Pre',32,'II',5,9,13,181,1
545
+ 'no',45,'Pre',50,'II',7,20,23,415,1
546
+ 'yes',67,'Post',24,'II',4,96,90,1120,1
547
+ 'no',37,'Pre',25,'III',8,9,0,316,1
548
+ 'no',65,'Post',22,'I',6,386,31,637,1
549
+ 'no',21,'Pre',15,'II',3,24,25,247,1
550
+ 'yes',54,'Post',21,'II',7,25,88,888,0
551
+ 'no',46,'Pre',45,'II',8,2,4,622,1
552
+ 'yes',63,'Post',18,'II',1,48,18,806,0
553
+ 'yes',46,'Post',31,'III',1,6,3,1163,0
554
+ 'no',58,'Post',31,'II',2,240,394,1721,0
555
+ 'no',48,'Pre',15,'II',2,166,128,741,0
556
+ 'no',41,'Pre',23,'III',2,26,4,372,1
557
+ 'no',32,'Pre',17,'III',1,19,8,1331,0
558
+ 'yes',66,'Post',42,'III',11,412,339,394,1
559
+ 'no',64,'Post',14,'II',1,199,604,652,0
560
+ 'no',50,'Pre',13,'III',5,8,32,657,0
561
+ 'no',47,'Pre',23,'III',2,18,9,567,0
562
+ 'yes',60,'Post',15,'I',7,14,8,429,0
563
+ 'no',49,'Pre',23,'II',2,98,31,566,0
564
+ 'yes',57,'Post',60,'III',18,11,13,15,0
565
+ 'no',57,'Post',50,'III',13,22,47,98,1
566
+ 'yes',67,'Post',15,'I',1,208,257,368,0
567
+ 'yes',58,'Post',25,'I',1,241,28,432,0
568
+ 'no',61,'Post',25,'II',2,406,174,319,0
569
+ 'no',65,'Post',22,'II',8,4,2,65,0
570
+ 'no',44,'Pre',70,'II',19,28,31,16,0
571
+ 'no',61,'Post',18,'III',4,8,10,29,0
572
+ 'no',62,'Post',22,'II',7,76,153,18,0
573
+ 'no',51,'Pre',50,'II',5,360,57,17,0
574
+ 'yes',47,'Post',23,'III',5,0,0,308,1
575
+ 'no',44,'Pre',15,'II',1,0,0,1965,0
576
+ 'yes',61,'Post',35,'III',16,10,13,548,1
577
+ 'no',48,'Pre',21,'III',8,0,0,293,1
578
+ 'yes',51,'Pre',16,'II',5,167,15,2017,0
579
+ 'no',66,'Post',22,'II',4,11,22,1093,0
580
+ 'no',45,'Pre',14,'III',1,5,43,792,0
581
+ 'no',66,'Post',21,'II',1,9,898,586,1
582
+ 'yes',69,'Post',40,'III',1,3,9,1434,0
583
+ 'no',49,'Pre',20,'II',7,63,27,67,0
584
+ 'no',62,'Post',12,'II',5,142,91,623,0
585
+ 'yes',33,'Pre',19,'II',2,0,0,2128,0
586
+ 'no',46,'Pre',30,'II',2,26,223,1965,0
587
+ 'no',47,'Pre',20,'II',1,48,26,2161,0
588
+ 'yes',35,'Pre',35,'II',4,0,0,1183,1
589
+ 'no',34,'Pre',40,'III',1,0,37,1108,1
590
+ 'no',38,'Pre',24,'I',1,138,82,2065,0
591
+ 'no',54,'Post',27,'III',1,27,792,1598,0
592
+ 'no',31,'Pre',55,'II',3,28,89,491,1
593
+ 'no',41,'Pre',25,'II',5,6,9,1366,1
594
+ 'no',43,'Pre',55,'II',1,4,124,424,0
595
+ 'yes',52,'Post',35,'II',21,11,57,859,1
596
+ 'yes',65,'Post',25,'III',18,0,0,180,1
597
+ 'no',47,'Post',45,'II',2,345,42,1625,0
598
+ 'no',65,'Post',10,'I',2,213,209,1938,0
599
+ 'yes',53,'Post',37,'II',5,345,47,1343,1
600
+ 'no',45,'Pre',15,'II',3,28,27,646,1
601
+ 'no',53,'Pre',19,'III',1,74,534,2192,0
602
+ 'yes',50,'Post',25,'II',3,0,496,502,1
603
+ 'no',54,'Post',50,'III',6,7,0,1675,0
604
+ 'yes',64,'Post',40,'II',23,16,22,1363,1
605
+ 'no',29,'Pre',15,'III',12,18,40,420,1
606
+ 'no',48,'Pre',60,'I',4,312,20,982,1
607
+ 'no',40,'Pre',30,'III',3,2,16,1459,0
608
+ 'no',65,'Post',35,'II',1,7,74,1192,0
609
+ 'no',50,'Post',40,'II',1,80,21,1264,0
610
+ 'no',55,'Post',34,'II',6,109,477,1095,0
611
+ 'yes',51,'Post',42,'II',7,58,75,1078,0
612
+ 'yes',59,'Post',12,'III',1,1,3,737,0
613
+ 'yes',51,'Post',4,'I',4,638,232,461,0
614
+ 'no',35,'Pre',22,'II',13,16,25,465,1
615
+ 'no',48,'Pre',52,'II',11,0,0,842,1
616
+ 'no',48,'Post',40,'II',1,10,72,918,0
617
+ 'yes',62,'Post',39,'II',4,73,235,374,1
618
+ 'no',47,'Pre',40,'II',1,44,11,1089,0
619
+ 'no',51,'Post',19,'II',2,92,245,1527,0
620
+ 'no',42,'Pre',40,'II',10,256,0,285,1
621
+ 'no',63,'Post',27,'II',1,0,0,1306,1
622
+ 'yes',62,'Post',20,'II',7,0,0,797,1
623
+ 'no',57,'Post',15,'II',1,91,125,1441,0
624
+ 'no',25,'Pre',29,'II',3,0,0,343,1
625
+ 'yes',35,'Pre',30,'III',4,49,288,936,0
626
+ 'no',51,'Pre',30,'II',1,119,44,195,0
627
+ 'no',51,'Post',25,'II',2,0,80,503,1
628
+ 'yes',47,'Pre',30,'II',10,0,0,827,1
629
+ 'yes',34,'Pre',30,'II',2,210,49,1427,0
630
+ 'no',68,'Post',30,'II',1,20,312,854,0
631
+ 'yes',64,'Post',30,'III',12,550,263,177,1
632
+ 'no',42,'Pre',55,'III',7,20,20,281,1
633
+ 'no',37,'Pre',35,'III',1,242,67,205,1
634
+ 'yes',65,'Post',45,'II',17,27,32,751,0
635
+ 'no',62,'Post',27,'II',13,197,79,629,1
636
+ 'no',36,'Pre',24,'III',2,0,0,526,0
637
+ 'no',49,'Pre',22,'III',3,0,0,463,0
638
+ 'no',45,'Post',30,'I',2,197,49,529,0
639
+ 'no',38,'Pre',22,'II',10,48,78,623,0
640
+ 'no',55,'Post',40,'II',13,0,0,546,0
641
+ 'yes',57,'Post',17,'II',3,502,145,213,0
642
+ 'no',47,'Pre',40,'II',1,0,90,276,0
643
+ 'yes',51,'Post',22,'II',4,250,81,2010,0
644
+ 'yes',45,'Pre',13,'III',4,21,27,2009,0
645
+ 'no',41,'Pre',10,'I',2,241,214,1984,0
646
+ 'no',39,'Pre',32,'II',9,1,8,1981,0
647
+ 'no',53,'Post',26,'III',8,1,1,624,1
648
+ 'no',59,'Post',35,'II',4,1,1,742,1
649
+ 'yes',53,'Post',10,'II',2,217,20,1818,0
650
+ 'yes',60,'Post',100,'II',10,102,88,1493,1
651
+ 'no',50,'Pre',29,'I',2,323,60,1432,0
652
+ 'no',51,'Pre',18,'I',1,94,60,801,1
653
+ 'no',51,'Pre',25,'II',2,20,11,1182,0
654
+ 'no',43,'Pre',18,'II',1,10,41,71,0
655
+ 'yes',55,'Post',20,'I',4,10,128,114,0
656
+ 'yes',52,'Post',20,'II',3,0,15,63,0
657
+ 'yes',57,'Post',32,'II',2,43,287,1722,0
658
+ 'yes',46,'Pre',18,'II',1,120,628,1692,0
659
+ 'no',45,'Pre',25,'III',1,0,4,177,0
660
+ 'no',43,'Pre',32,'II',1,171,43,57,0
661
+ 'yes',64,'Post',26,'II',2,1356,1144,1152,0
662
+ 'no',62,'Post',35,'II',1,2,70,733,0
663
+ 'yes',37,'Pre',22,'I',3,23,64,1459,1
664
+ 'no',64,'Post',21,'II',3,403,253,2237,0
665
+ 'no',45,'Pre',60,'II',3,74,212,933,0
666
+ 'no',48,'Pre',18,'I',1,137,73,2056,0
667
+ 'yes',50,'Post',50,'II',6,1,2,1729,0
668
+ 'yes',32,'Pre',20,'II',6,8,3,2024,0
669
+ 'no',49,'Pre',19,'II',2,388,137,2039,1
670
+ 'yes',33,'Pre',28,'III',1,1,1,2027,0
671
+ 'yes',58,'Post',35,'II',1,6,11,2007,0
672
+ 'no',57,'Post',25,'II',1,26,299,1253,1
673
+ 'no',45,'Pre',35,'II',2,26,36,1789,0
674
+ 'no',66,'Post',30,'I',5,100,288,1707,0
675
+ 'no',52,'Pre',37,'II',3,66,104,1714,0
676
+ 'yes',49,'Pre',25,'II',3,152,25,1717,0
677
+ 'no',49,'Post',22,'II',1,14,41,329,1
678
+ 'no',48,'Post',45,'I',1,312,236,1624,0
679
+ 'yes',62,'Post',60,'II',1,56,17,1600,0
680
+ 'no',60,'Post',35,'II',3,115,300,385,1
681
+ 'no',45,'Pre',10,'II',1,82,8,1475,0
682
+ 'no',60,'Post',37,'I',1,296,35,1435,0
683
+ 'no',42,'Pre',60,'II',15,7,5,541,0
684
+ 'yes',57,'Post',36,'III',1,170,192,1329,0
685
+ 'yes',53,'Post',27,'III',12,44,42,1357,0
686
+ 'no',56,'Post',55,'III',3,46,31,1343,0
687
+ 'no',46,'Pre',23,'II',2,120,41,748,1
688
+ 'no',49,'Post',30,'II',2,254,353,1090,1
689
+ 'yes',56,'Post',32,'II',2,53,174,1219,0
690
+ 'no',59,'Post',24,'II',1,860,413,553,0
691
+ 'yes',56,'Post',42,'I',5,113,700,662,1
692
+ 'no',46,'Pre',32,'II',1,108,52,969,0
693
+ 'yes',61,'Post',27,'II',5,141,346,974,0
694
+ 'no',40,'Pre',40,'II',6,227,10,866,1
695
+ 'yes',60,'Post',40,'II',6,8,11,504,1
696
+ 'no',49,'Pre',30,'III',3,1,84,721,0
697
+ 'yes',53,'Post',25,'III',17,0,0,186,0
698
+ 'no',51,'Pre',25,'III',5,43,0,769,1
699
+ 'no',52,'Post',23,'II',3,15,34,727,1
700
+ 'no',55,'Post',23,'II',9,116,15,1701,1