rpipe 0.0.1
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.
- data/.document +5 -0
- data/.gitignore +23 -0
- data/LICENSE +20 -0
- data/README +0 -0
- data/README.rdoc +33 -0
- data/Rakefile +78 -0
- data/VERSION +1 -0
- data/bin/create_driver.rb +79 -0
- data/bin/rpipe +131 -0
- data/bin/swallow_batch_run.rb +21 -0
- data/lib/core_additions.rb +5 -0
- data/lib/custom_methods/JohnsonMerit220Visit1Preproc.m +26 -0
- data/lib/custom_methods/JohnsonMerit220Visit1Preproc.rb +43 -0
- data/lib/custom_methods/JohnsonMerit220Visit1Preproc_job.m +80 -0
- data/lib/custom_methods/JohnsonMerit220Visit1Stats.m +74 -0
- data/lib/custom_methods/JohnsonMerit220Visit1Stats.rb +63 -0
- data/lib/custom_methods/JohnsonMerit220Visit1Stats_job.m +63 -0
- data/lib/custom_methods/JohnsonTbiLongitudinalSnodPreproc.m +26 -0
- data/lib/custom_methods/JohnsonTbiLongitudinalSnodPreproc.rb +41 -0
- data/lib/custom_methods/JohnsonTbiLongitudinalSnodPreproc_job.m +69 -0
- data/lib/custom_methods/JohnsonTbiLongitudinalSnodStats.m +76 -0
- data/lib/custom_methods/JohnsonTbiLongitudinalSnodStats.rb +67 -0
- data/lib/custom_methods/JohnsonTbiLongitudinalSnodStats_job.m +59 -0
- data/lib/custom_methods/ReconWithHello.rb +7 -0
- data/lib/default_logger.rb +13 -0
- data/lib/default_methods/default_preproc.rb +76 -0
- data/lib/default_methods/default_recon.rb +80 -0
- data/lib/default_methods/default_stats.rb +94 -0
- data/lib/default_methods/recon/physionoise_helper.rb +69 -0
- data/lib/default_methods/recon/raw_sequence.rb +109 -0
- data/lib/generators/job_generator.rb +36 -0
- data/lib/generators/preproc_job_generator.rb +31 -0
- data/lib/generators/recon_job_generator.rb +76 -0
- data/lib/generators/stats_job_generator.rb +70 -0
- data/lib/generators/workflow_generator.rb +128 -0
- data/lib/global_additions.rb +18 -0
- data/lib/logfile.rb +310 -0
- data/lib/matlab_helpers/CreateFunctionalVolumeStruct.m +6 -0
- data/lib/matlab_helpers/import_csv.m +32 -0
- data/lib/matlab_helpers/matlab_queue.rb +37 -0
- data/lib/matlab_helpers/prepare_onsets_xls.m +30 -0
- data/lib/rpipe.rb +254 -0
- data/rpipe.gemspec +177 -0
- data/spec/generators/preproc_job_generator_spec.rb +27 -0
- data/spec/generators/recon_job_generator_spec.rb +33 -0
- data/spec/generators/stats_job_generator_spec.rb +50 -0
- data/spec/generators/workflow_generator_spec.rb +97 -0
- data/spec/helper_spec.rb +40 -0
- data/spec/integration/johnson.merit220.visit1_spec.rb +47 -0
- data/spec/integration/johnson.tbi.longitudinal.snod_spec.rb +48 -0
- data/spec/logfile_spec.rb +96 -0
- data/spec/matlab_queue_spec.rb +40 -0
- data/spec/merit220_stats_spec.rb +81 -0
- data/spec/physio_spec.rb +98 -0
- data/test/drivers/merit220_workflow_sample.yml +15 -0
- data/test/drivers/mrt00000.yml +65 -0
- data/test/drivers/mrt00015.yml +62 -0
- data/test/drivers/mrt00015_hello.yml +41 -0
- data/test/drivers/mrt00015_withphys.yml +81 -0
- data/test/drivers/tbi000.yml +129 -0
- data/test/drivers/tbi000_separatevisits.yml +137 -0
- data/test/drivers/tmp.yml +58 -0
- data/test/fixtures/faces3_recognitionA.mat +0 -0
- data/test/fixtures/faces3_recognitionA.txt +86 -0
- data/test/fixtures/faces3_recognitionA_equal.csv +25 -0
- data/test/fixtures/faces3_recognitionA_unequal.csv +21 -0
- data/test/fixtures/faces3_recognitionB_incmisses.txt +86 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_CPd3R_40.txt +13360 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_CPd3_40.txt +13360 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_CPttl_40.txt +13360 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_CRTd3R_40.txt +13360 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_CRTd3_40.txt +13360 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_CRTttl_40.txt +13360 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_HalfTR_CRTd3R_40.txt +334 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_HalfTR_CRTd3_40.txt +334 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_HalfTR_CRTttl_40.txt +334 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_HalfTR_RRT_40.txt +334 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_HalfTR_RVT_40.txt +334 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_HalfTR_card_spline_40.txt +334 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_HalfTR_resp_spline_40.txt +334 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_RRT_40.txt +9106 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_RVT_40.txt +9106 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_TR_CRTd3R_40.txt +167 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_TR_CRTd3_40.txt +167 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_TR_CRTttl_40.txt +167 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_TR_RRT_40.txt +167 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_TR_RVT_40.txt +167 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_TR_card_spline_40.txt +167 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_TR_resp_spline_40.txt +167 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_card_spline_40.txt +13360 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_resp_spline_40.txt +9106 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_resp_spline_downsampled_40.txt +9106 -0
- data/test/fixtures/ruport_summary.yml +123 -0
- data/test/fixtures/valid_scans.yaml +35 -0
- data/test/helper.rb +10 -0
- data/test/test_dynamic_method_inclusion.rb +10 -0
- data/test/test_includes.rb +11 -0
- data/test/test_integrative_johnson.merit220.visit1.rb +31 -0
- data/test/test_preproc.rb +11 -0
- data/test/test_recon.rb +11 -0
- data/test/test_rpipe.rb +19 -0
- data/vendor/output_catcher.rb +93 -0
- data/vendor/trollop.rb +781 -0
- metadata +260 -0
@@ -0,0 +1,334 @@
|
|
1
|
+
0.000000
|
2
|
+
559.788685
|
3
|
+
1283.514955
|
4
|
+
1451.976891
|
5
|
+
1359.165095
|
6
|
+
1244.232476
|
7
|
+
1046.765183
|
8
|
+
880.487844
|
9
|
+
700.737547
|
10
|
+
536.521387
|
11
|
+
392.789311
|
12
|
+
396.466815
|
13
|
+
400.608369
|
14
|
+
422.801530
|
15
|
+
434.942507
|
16
|
+
455.704646
|
17
|
+
447.503232
|
18
|
+
440.824622
|
19
|
+
393.626843
|
20
|
+
305.101840
|
21
|
+
215.989661
|
22
|
+
141.143537
|
23
|
+
90.425760
|
24
|
+
95.092804
|
25
|
+
98.022736
|
26
|
+
99.494726
|
27
|
+
96.520627
|
28
|
+
122.874641
|
29
|
+
154.781282
|
30
|
+
185.748560
|
31
|
+
274.982137
|
32
|
+
302.762052
|
33
|
+
325.483615
|
34
|
+
300.445835
|
35
|
+
224.996151
|
36
|
+
439.487573
|
37
|
+
767.339281
|
38
|
+
986.280022
|
39
|
+
937.879185
|
40
|
+
839.470197
|
41
|
+
765.734544
|
42
|
+
752.466132
|
43
|
+
727.126532
|
44
|
+
706.482997
|
45
|
+
620.943393
|
46
|
+
520.763606
|
47
|
+
427.821543
|
48
|
+
385.887470
|
49
|
+
380.192407
|
50
|
+
426.301452
|
51
|
+
486.547435
|
52
|
+
533.676298
|
53
|
+
552.370478
|
54
|
+
566.525922
|
55
|
+
567.294819
|
56
|
+
556.705365
|
57
|
+
543.987215
|
58
|
+
526.059093
|
59
|
+
497.643374
|
60
|
+
468.799154
|
61
|
+
439.984441
|
62
|
+
413.797260
|
63
|
+
375.712516
|
64
|
+
315.295340
|
65
|
+
259.778148
|
66
|
+
267.520359
|
67
|
+
329.450463
|
68
|
+
407.176073
|
69
|
+
509.776181
|
70
|
+
564.243003
|
71
|
+
538.230646
|
72
|
+
503.111085
|
73
|
+
405.372521
|
74
|
+
294.998146
|
75
|
+
212.147437
|
76
|
+
208.872613
|
77
|
+
483.591659
|
78
|
+
843.915387
|
79
|
+
1021.161505
|
80
|
+
857.731496
|
81
|
+
650.484398
|
82
|
+
485.717696
|
83
|
+
403.578687
|
84
|
+
353.755328
|
85
|
+
378.776101
|
86
|
+
422.928446
|
87
|
+
483.937688
|
88
|
+
509.226991
|
89
|
+
502.975972
|
90
|
+
496.574796
|
91
|
+
481.194802
|
92
|
+
470.267631
|
93
|
+
460.326814
|
94
|
+
451.497380
|
95
|
+
429.576653
|
96
|
+
397.823372
|
97
|
+
369.141490
|
98
|
+
339.271623
|
99
|
+
306.492043
|
100
|
+
270.219729
|
101
|
+
233.358538
|
102
|
+
209.812874
|
103
|
+
208.782757
|
104
|
+
201.865009
|
105
|
+
251.002109
|
106
|
+
294.166727
|
107
|
+
267.544706
|
108
|
+
224.251970
|
109
|
+
184.776430
|
110
|
+
114.987926
|
111
|
+
188.375133
|
112
|
+
338.788554
|
113
|
+
456.151050
|
114
|
+
452.568706
|
115
|
+
373.228656
|
116
|
+
317.465088
|
117
|
+
291.415818
|
118
|
+
275.912521
|
119
|
+
256.044345
|
120
|
+
239.864302
|
121
|
+
228.791392
|
122
|
+
228.570645
|
123
|
+
230.931525
|
124
|
+
248.657453
|
125
|
+
258.424806
|
126
|
+
270.760247
|
127
|
+
270.465561
|
128
|
+
267.578701
|
129
|
+
261.303903
|
130
|
+
258.478386
|
131
|
+
238.852040
|
132
|
+
201.486873
|
133
|
+
167.528158
|
134
|
+
134.815936
|
135
|
+
130.467639
|
136
|
+
136.893983
|
137
|
+
165.831235
|
138
|
+
207.538835
|
139
|
+
242.065796
|
140
|
+
255.970370
|
141
|
+
264.362326
|
142
|
+
270.927952
|
143
|
+
271.393724
|
144
|
+
270.539314
|
145
|
+
270.485988
|
146
|
+
284.544564
|
147
|
+
301.273922
|
148
|
+
308.461271
|
149
|
+
277.280963
|
150
|
+
244.840478
|
151
|
+
212.177184
|
152
|
+
220.775127
|
153
|
+
273.009413
|
154
|
+
378.632761
|
155
|
+
485.621235
|
156
|
+
560.670600
|
157
|
+
574.350199
|
158
|
+
576.322489
|
159
|
+
561.309855
|
160
|
+
497.186818
|
161
|
+
446.288981
|
162
|
+
425.735362
|
163
|
+
418.675573
|
164
|
+
446.662420
|
165
|
+
482.145301
|
166
|
+
509.556223
|
167
|
+
542.888897
|
168
|
+
536.217057
|
169
|
+
487.044444
|
170
|
+
444.289845
|
171
|
+
382.870267
|
172
|
+
290.426555
|
173
|
+
244.055135
|
174
|
+
276.158587
|
175
|
+
287.899342
|
176
|
+
295.375262
|
177
|
+
301.894265
|
178
|
+
247.938928
|
179
|
+
167.463716
|
180
|
+
115.359347
|
181
|
+
75.398103
|
182
|
+
36.459646
|
183
|
+
7.443094
|
184
|
+
5.860294
|
185
|
+
121.937305
|
186
|
+
336.361379
|
187
|
+
441.193410
|
188
|
+
349.554563
|
189
|
+
255.023639
|
190
|
+
172.005025
|
191
|
+
108.218425
|
192
|
+
161.775484
|
193
|
+
473.346913
|
194
|
+
749.345199
|
195
|
+
917.663304
|
196
|
+
778.083548
|
197
|
+
553.291076
|
198
|
+
394.103976
|
199
|
+
356.112634
|
200
|
+
376.229121
|
201
|
+
412.601300
|
202
|
+
458.453601
|
203
|
+
445.410121
|
204
|
+
402.371020
|
205
|
+
364.199130
|
206
|
+
335.770424
|
207
|
+
316.956960
|
208
|
+
300.274797
|
209
|
+
304.066418
|
210
|
+
307.836439
|
211
|
+
302.866186
|
212
|
+
292.321544
|
213
|
+
283.913880
|
214
|
+
276.022783
|
215
|
+
273.263233
|
216
|
+
268.031863
|
217
|
+
265.947861
|
218
|
+
262.077344
|
219
|
+
260.677590
|
220
|
+
253.778718
|
221
|
+
242.239582
|
222
|
+
229.043241
|
223
|
+
217.881760
|
224
|
+
198.120933
|
225
|
+
177.310030
|
226
|
+
155.696127
|
227
|
+
138.331580
|
228
|
+
137.452849
|
229
|
+
142.693665
|
230
|
+
176.105692
|
231
|
+
228.911178
|
232
|
+
274.169506
|
233
|
+
329.051198
|
234
|
+
327.325756
|
235
|
+
230.756883
|
236
|
+
144.889573
|
237
|
+
51.051200
|
238
|
+
33.008506
|
239
|
+
180.533533
|
240
|
+
312.907322
|
241
|
+
385.395904
|
242
|
+
388.447445
|
243
|
+
301.899525
|
244
|
+
226.224828
|
245
|
+
244.931546
|
246
|
+
332.698461
|
247
|
+
426.140107
|
248
|
+
532.309405
|
249
|
+
573.625810
|
250
|
+
549.262066
|
251
|
+
536.171604
|
252
|
+
497.647193
|
253
|
+
447.077761
|
254
|
+
392.297741
|
255
|
+
360.979284
|
256
|
+
357.482957
|
257
|
+
355.674863
|
258
|
+
345.987168
|
259
|
+
332.115092
|
260
|
+
315.043232
|
261
|
+
308.095344
|
262
|
+
302.109768
|
263
|
+
286.707756
|
264
|
+
224.907814
|
265
|
+
173.821129
|
266
|
+
93.375375
|
267
|
+
150.607902
|
268
|
+
404.029513
|
269
|
+
596.872344
|
270
|
+
750.541935
|
271
|
+
657.225674
|
272
|
+
472.679914
|
273
|
+
340.592873
|
274
|
+
244.456329
|
275
|
+
202.650306
|
276
|
+
225.172827
|
277
|
+
251.494709
|
278
|
+
290.720100
|
279
|
+
347.975611
|
280
|
+
300.573238
|
281
|
+
234.016319
|
282
|
+
158.288251
|
283
|
+
135.626244
|
284
|
+
470.060319
|
285
|
+
813.064136
|
286
|
+
851.912191
|
287
|
+
693.347040
|
288
|
+
613.973950
|
289
|
+
598.920269
|
290
|
+
537.964356
|
291
|
+
447.280953
|
292
|
+
366.637869
|
293
|
+
294.756166
|
294
|
+
231.506710
|
295
|
+
244.230088
|
296
|
+
304.198098
|
297
|
+
352.921405
|
298
|
+
405.116507
|
299
|
+
436.516338
|
300
|
+
434.461096
|
301
|
+
428.970731
|
302
|
+
434.201742
|
303
|
+
430.022825
|
304
|
+
361.265915
|
305
|
+
294.445737
|
306
|
+
269.571054
|
307
|
+
230.384544
|
308
|
+
194.024938
|
309
|
+
157.336538
|
310
|
+
138.759401
|
311
|
+
204.333098
|
312
|
+
368.674827
|
313
|
+
456.341463
|
314
|
+
446.596395
|
315
|
+
440.428515
|
316
|
+
418.748013
|
317
|
+
369.103528
|
318
|
+
291.245477
|
319
|
+
230.843746
|
320
|
+
158.271434
|
321
|
+
133.611755
|
322
|
+
158.943289
|
323
|
+
191.255109
|
324
|
+
231.081213
|
325
|
+
277.249236
|
326
|
+
298.826430
|
327
|
+
309.181504
|
328
|
+
313.084403
|
329
|
+
297.899674
|
330
|
+
261.411938
|
331
|
+
239.682702
|
332
|
+
206.414273
|
333
|
+
243.478733
|
334
|
+
165.483301
|
@@ -0,0 +1,334 @@
|
|
1
|
+
566.676281
|
2
|
+
590.863478
|
3
|
+
1425.383107
|
4
|
+
160.267443
|
5
|
+
1199.227734
|
6
|
+
902.952582
|
7
|
+
692.184307
|
8
|
+
1379.533258
|
9
|
+
144.085841
|
10
|
+
1425.663525
|
11
|
+
443.882056
|
12
|
+
1059.512127
|
13
|
+
1210.362393
|
14
|
+
446.207423
|
15
|
+
1686.616486
|
16
|
+
214.758870
|
17
|
+
1243.919517
|
18
|
+
933.862665
|
19
|
+
500.193282
|
20
|
+
1572.047195
|
21
|
+
192.275400
|
22
|
+
1264.705461
|
23
|
+
901.008556
|
24
|
+
551.040332
|
25
|
+
1620.574878
|
26
|
+
300.324212
|
27
|
+
1597.965913
|
28
|
+
240.184373
|
29
|
+
1411.418152
|
30
|
+
447.142033
|
31
|
+
1215.834791
|
32
|
+
570.283331
|
33
|
+
949.257226
|
34
|
+
1229.373300
|
35
|
+
552.592695
|
36
|
+
1535.604194
|
37
|
+
200.235351
|
38
|
+
1604.011346
|
39
|
+
434.066375
|
40
|
+
980.536769
|
41
|
+
1567.489716
|
42
|
+
311.936399
|
43
|
+
1480.167147
|
44
|
+
186.645248
|
45
|
+
1218.072507
|
46
|
+
803.840610
|
47
|
+
654.210655
|
48
|
+
1250.584843
|
49
|
+
255.814755
|
50
|
+
1637.488140
|
51
|
+
165.714510
|
52
|
+
1333.823862
|
53
|
+
948.819705
|
54
|
+
589.583409
|
55
|
+
1477.429023
|
56
|
+
262.053217
|
57
|
+
1372.993496
|
58
|
+
519.395157
|
59
|
+
854.809990
|
60
|
+
1289.502502
|
61
|
+
220.514298
|
62
|
+
1681.087949
|
63
|
+
448.252622
|
64
|
+
1192.402227
|
65
|
+
1093.498009
|
66
|
+
380.054637
|
67
|
+
1434.238049
|
68
|
+
258.342137
|
69
|
+
1464.524930
|
70
|
+
337.611902
|
71
|
+
1088.832511
|
72
|
+
1109.673229
|
73
|
+
642.589585
|
74
|
+
1487.378732
|
75
|
+
291.208445
|
76
|
+
1669.395250
|
77
|
+
222.715550
|
78
|
+
1524.631252
|
79
|
+
316.251581
|
80
|
+
1407.292874
|
81
|
+
389.032464
|
82
|
+
1218.132166
|
83
|
+
567.634790
|
84
|
+
1012.276770
|
85
|
+
855.026189
|
86
|
+
796.686339
|
87
|
+
1288.199816
|
88
|
+
366.499506
|
89
|
+
1654.408551
|
90
|
+
102.459309
|
91
|
+
1555.393307
|
92
|
+
243.729401
|
93
|
+
1256.702565
|
94
|
+
716.856406
|
95
|
+
836.487911
|
96
|
+
1165.152304
|
97
|
+
526.893374
|
98
|
+
1646.972379
|
99
|
+
259.144054
|
100
|
+
1470.536898
|
101
|
+
287.514597
|
102
|
+
1488.433448
|
103
|
+
474.173585
|
104
|
+
1148.415737
|
105
|
+
774.091934
|
106
|
+
779.449302
|
107
|
+
1253.737729
|
108
|
+
301.099500
|
109
|
+
1656.923892
|
110
|
+
61.823639
|
111
|
+
1472.043587
|
112
|
+
330.085597
|
113
|
+
1408.780283
|
114
|
+
621.129699
|
115
|
+
1057.355728
|
116
|
+
1016.853774
|
117
|
+
682.151418
|
118
|
+
1263.486542
|
119
|
+
458.502105
|
120
|
+
1577.727294
|
121
|
+
0.000000
|
122
|
+
1713.906358
|
123
|
+
382.334686
|
124
|
+
1491.925286
|
125
|
+
536.301425
|
126
|
+
1069.183944
|
127
|
+
867.925511
|
128
|
+
607.448576
|
129
|
+
1247.404897
|
130
|
+
413.893056
|
131
|
+
1484.867208
|
132
|
+
226.443784
|
133
|
+
1588.596042
|
134
|
+
456.822428
|
135
|
+
1229.104204
|
136
|
+
948.969365
|
137
|
+
498.893668
|
138
|
+
1557.587902
|
139
|
+
192.815149
|
140
|
+
1473.406517
|
141
|
+
371.571603
|
142
|
+
1131.570702
|
143
|
+
1094.654423
|
144
|
+
493.842898
|
145
|
+
1526.574124
|
146
|
+
243.607032
|
147
|
+
1650.953162
|
148
|
+
352.990284
|
149
|
+
1480.938978
|
150
|
+
463.344241
|
151
|
+
1173.325994
|
152
|
+
846.031546
|
153
|
+
644.509483
|
154
|
+
1344.912176
|
155
|
+
149.722431
|
156
|
+
1631.539959
|
157
|
+
321.342976
|
158
|
+
1096.749890
|
159
|
+
1101.041401
|
160
|
+
459.875433
|
161
|
+
1523.342357
|
162
|
+
26.850854
|
163
|
+
1480.606349
|
164
|
+
759.117037
|
165
|
+
913.072343
|
166
|
+
1079.971895
|
167
|
+
389.081906
|
168
|
+
1776.247609
|
169
|
+
263.636013
|
170
|
+
1712.046324
|
171
|
+
217.825095
|
172
|
+
1206.281000
|
173
|
+
729.716097
|
174
|
+
587.280634
|
175
|
+
1579.646231
|
176
|
+
62.289734
|
177
|
+
1740.143771
|
178
|
+
306.148489
|
179
|
+
1102.921872
|
180
|
+
1003.809249
|
181
|
+
505.218310
|
182
|
+
1573.103118
|
183
|
+
43.072015
|
184
|
+
1717.815182
|
185
|
+
494.708196
|
186
|
+
964.726113
|
187
|
+
1373.861314
|
188
|
+
81.461006
|
189
|
+
1675.593421
|
190
|
+
221.642634
|
191
|
+
1409.988499
|
192
|
+
681.482449
|
193
|
+
802.584876
|
194
|
+
1160.993371
|
195
|
+
359.387471
|
196
|
+
1665.012517
|
197
|
+
132.601139
|
198
|
+
1731.871661
|
199
|
+
470.164273
|
200
|
+
949.407334
|
201
|
+
1158.775383
|
202
|
+
283.850800
|
203
|
+
1670.569778
|
204
|
+
156.026757
|
205
|
+
1386.995688
|
206
|
+
746.089562
|
207
|
+
730.254507
|
208
|
+
1537.775994
|
209
|
+
183.386002
|
210
|
+
1616.822978
|
211
|
+
183.728240
|
212
|
+
1355.434612
|
213
|
+
623.088969
|
214
|
+
1110.536313
|
215
|
+
1385.102795
|
216
|
+
294.392507
|
217
|
+
1570.461915
|
218
|
+
141.000855
|
219
|
+
1099.875917
|
220
|
+
969.127995
|
221
|
+
242.460038
|
222
|
+
1713.736883
|
223
|
+
206.045453
|
224
|
+
1183.639571
|
225
|
+
982.188365
|
226
|
+
500.874651
|
227
|
+
1575.921675
|
228
|
+
189.669726
|
229
|
+
1759.749936
|
230
|
+
636.536913
|
231
|
+
664.850737
|
232
|
+
1392.951345
|
233
|
+
128.776255
|
234
|
+
1507.821952
|
235
|
+
307.313752
|
236
|
+
1201.418678
|
237
|
+
1051.331528
|
238
|
+
562.538479
|
239
|
+
1576.107587
|
240
|
+
150.347008
|
241
|
+
1475.768950
|
242
|
+
723.582877
|
243
|
+
667.944122
|
244
|
+
1441.323874
|
245
|
+
159.815613
|
246
|
+
1519.830760
|
247
|
+
501.752393
|
248
|
+
770.276719
|
249
|
+
1394.024118
|
250
|
+
189.502756
|
251
|
+
1634.781140
|
252
|
+
236.359425
|
253
|
+
1393.103395
|
254
|
+
1232.268061
|
255
|
+
923.980770
|
256
|
+
1354.579522
|
257
|
+
37.697918
|
258
|
+
1327.608581
|
259
|
+
351.441753
|
260
|
+
870.686879
|
261
|
+
1198.394279
|
262
|
+
119.796724
|
263
|
+
1669.919027
|
264
|
+
502.435813
|
265
|
+
829.168533
|
266
|
+
1374.211938
|
267
|
+
69.743924
|
268
|
+
1739.634414
|
269
|
+
348.423089
|
270
|
+
1302.789267
|
271
|
+
919.560648
|
272
|
+
610.917230
|
273
|
+
1423.334488
|
274
|
+
223.936841
|
275
|
+
1865.514533
|
276
|
+
118.878060
|
277
|
+
1579.762032
|
278
|
+
379.612928
|
279
|
+
1076.646791
|
280
|
+
1265.036255
|
281
|
+
205.989369
|
282
|
+
1545.871586
|
283
|
+
43.349782
|
284
|
+
1327.906789
|
285
|
+
840.688329
|
286
|
+
451.946696
|
287
|
+
1747.605211
|
288
|
+
170.821461
|
289
|
+
1753.126094
|
290
|
+
1082.636602
|
291
|
+
256.571577
|
292
|
+
1546.423345
|
293
|
+
115.545936
|
294
|
+
831.003401
|
295
|
+
717.810445
|
296
|
+
352.655055
|
297
|
+
1609.049210
|
298
|
+
584.711604
|
299
|
+
1369.724973
|
300
|
+
1057.943414
|
301
|
+
507.031462
|
302
|
+
1785.238324
|
303
|
+
325.263067
|
304
|
+
1316.635872
|
305
|
+
181.833216
|
306
|
+
1108.482839
|
307
|
+
1444.377735
|
308
|
+
351.168339
|
309
|
+
1644.084882
|
310
|
+
51.088008
|
311
|
+
1488.382089
|
312
|
+
768.184714
|
313
|
+
473.302093
|
314
|
+
1625.312924
|
315
|
+
373.845742
|
316
|
+
1171.007564
|
317
|
+
1060.512440
|
318
|
+
400.592946
|
319
|
+
1620.831912
|
320
|
+
305.160248
|
321
|
+
1219.412290
|
322
|
+
1111.366966
|
323
|
+
320.161127
|
324
|
+
1535.931875
|
325
|
+
498.334907
|
326
|
+
790.768047
|
327
|
+
1480.076492
|
328
|
+
271.729675
|
329
|
+
1505.190277
|
330
|
+
551.466267
|
331
|
+
724.152547
|
332
|
+
1388.209869
|
333
|
+
300.721562
|
334
|
+
1471.043326
|