nimbus 0.10 → 1.0

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.
@@ -11,7 +11,8 @@ module Nimbus
11
11
 
12
12
  # Initialize a Nimbus::Application object.
13
13
  # Check and load the configuration options.
14
- def initialize
14
+ def initialize(c = nil)
15
+ @config = c unless c.nil?
15
16
  nimbus_exception_handling do
16
17
  config.load
17
18
  @forest = nil
@@ -29,7 +29,8 @@ module Nimbus
29
29
  :output_training_file,
30
30
  :output_testing_file,
31
31
  :output_tree_errors_file,
32
- :output_snp_importances_file
32
+ :output_snp_importances_file,
33
+ :silent
33
34
  )
34
35
 
35
36
  DEFAULTS = {
@@ -50,7 +51,9 @@ module Nimbus
50
51
  :output_training_file => 'training_file_predictions.txt',
51
52
  :output_testing_file => 'testing_file_predictions.txt',
52
53
  :output_tree_errors_file => 'generalization_errors.txt',
53
- :output_snp_importances_file => 'snp_importances.txt'
54
+ :output_snp_importances_file => 'snp_importances.txt',
55
+
56
+ :silent => false
54
57
  }
55
58
 
56
59
  # Initialize a Nimbus::Configuration object.
@@ -72,6 +75,8 @@ module Nimbus
72
75
  @output_testing_file = File.expand_path(DEFAULTS[:output_testing_file], Dir.pwd)
73
76
  @output_tree_errors_file = File.expand_path(DEFAULTS[:output_tree_errors_file], Dir.pwd)
74
77
  @output_snp_importances_file = File.expand_path(DEFAULTS[:output_snp_importances_file], Dir.pwd)
78
+
79
+ @silent = ENV['nimbus_test'] == 'running_nimbus_tests' ? true : DEFAULTS[:silent]
75
80
  end
76
81
 
77
82
  # Accessor method for the tree-related subset of options.
@@ -95,18 +100,21 @@ module Nimbus
95
100
  #
96
101
  def load(config_file = DEFAULTS[:config_file])
97
102
  user_config_params = {}
103
+ dirname = Dir.pwd
98
104
  if File.exists?(File.expand_path(config_file, Dir.pwd))
99
105
  begin
100
- user_config_params = YAML.load(File.open(File.expand_path config_file, Dir.pwd))
106
+ config_file_path = File.expand_path config_file, Dir.pwd
107
+ user_config_params = YAML.load(File.open(config_file_path))
108
+ dirname = File.dirname config_file_path
101
109
  rescue ArgumentError => e
102
110
  raise Nimbus::WrongFormatFileError, "It was not posible to parse the config file (#{config_file}): \r\n#{e.message} "
103
111
  end
104
112
  end
105
113
 
106
114
  if user_config_params['input']
107
- @training_file = File.expand_path(user_config_params['input']['training'], Dir.pwd) if user_config_params['input']['training']
108
- @testing_file = File.expand_path(user_config_params['input']['testing' ], Dir.pwd) if user_config_params['input']['testing']
109
- @forest_file = File.expand_path(user_config_params['input']['forest' ], Dir.pwd) if user_config_params['input']['forest']
115
+ @training_file = File.expand_path(user_config_params['input']['training'], dirname) if user_config_params['input']['training']
116
+ @testing_file = File.expand_path(user_config_params['input']['testing' ], dirname) if user_config_params['input']['testing']
117
+ @forest_file = File.expand_path(user_config_params['input']['forest' ], dirname) if user_config_params['input']['forest']
110
118
  else
111
119
  @training_file = File.expand_path(DEFAULTS[:training_file], Dir.pwd) if File.exists? File.expand_path(DEFAULTS[:training_file], Dir.pwd)
112
120
  @testing_file = File.expand_path(DEFAULTS[:testing_file ], Dir.pwd) if File.exists? File.expand_path(DEFAULTS[:testing_file ], Dir.pwd)
@@ -190,6 +198,7 @@ module Nimbus
190
198
  #
191
199
  # It could include errors on the configuration input data, training related info and/or testing related info.
192
200
  def log_configuration
201
+ return if @silent
193
202
  if !@do_training && !@do_testing
194
203
  Nimbus.message "*" * 50
195
204
  Nimbus.message "* Nimbus could not find any input file: "
@@ -96,7 +96,7 @@ module Nimbus
96
96
  #
97
97
  # This method computes importance estimations for every SNPs used in the tree (for any other SNP it would be 0).
98
98
  def estimate_importances(oob_ids)
99
- return nil if (@generalization_error.nil? && generalization_error_from_oob(oob_ids))
99
+ return nil if (@generalization_error.nil? && generalization_error_from_oob(oob_ids).nil?)
100
100
  oob_individuals_count = oob_ids.size
101
101
  @importances = {}
102
102
  @used_snps.uniq.each do |current_snp|
@@ -0,0 +1,92 @@
1
+ # encoding: UTF-8
2
+ require File.dirname(__FILE__) + '/spec_helper'
3
+
4
+ describe Nimbus::Configuration do
5
+
6
+ it "loads configuration options from config file" do
7
+ config = Nimbus::Configuration.new
8
+ config.load fixture_file('regression_config.yml')
9
+
10
+ config.training_file.should == fixture_file('regression_training.data')
11
+ config.testing_file.should == fixture_file('regression_testing.data')
12
+ config.forest_file.should == fixture_file('regression_random_forest.yml')
13
+
14
+ config.forest_size.should == 3
15
+ config.tree_SNP_sample_size.should == 60
16
+ config.tree_SNP_total_count.should == 200
17
+ config.tree_node_min_size.should == 5
18
+ end
19
+
20
+ it 'tree method return tree-related subset of options' do
21
+ config = Nimbus::Configuration.new
22
+ tree_options = config.tree
23
+
24
+ tree_options[:snp_sample_size].should_not be_nil
25
+ tree_options[:snp_total_count].should_not be_nil
26
+ tree_options[:tree_node_min_size].should_not be_nil
27
+ end
28
+
29
+ it "creates a training set object from training data file" do
30
+ config = Nimbus::Configuration.new
31
+ config.load fixture_file('regression_config.yml')
32
+ config.training_set.should be_nil
33
+ config.load_training_data
34
+ config.training_set.should be_kind_of Nimbus::TrainingSet
35
+ config.training_set.all_ids.sort.should == (1..800).to_a
36
+
37
+ File.open(fixture_file('regression_training.data')) {|file|
38
+ feno1, id1, *snp_list_1 = file.readline.split
39
+ feno2, id2, *snp_list_2 = file.readline.split
40
+ feno3, id3, *snp_list_3 = file.readline.split
41
+
42
+ i1 = Nimbus::Individual.new(id1.to_i, feno1.to_f, snp_list_1.map{|snp| snp.to_i})
43
+ i2 = Nimbus::Individual.new(id2.to_i, feno2.to_f, snp_list_2.map{|snp| snp.to_i})
44
+ i3 = Nimbus::Individual.new(id3.to_i, feno3.to_f, snp_list_3.map{|snp| snp.to_i})
45
+
46
+ config.training_set.individuals[id1.to_i].id.should == i1.id
47
+ config.training_set.individuals[id2.to_i].fenotype.should == i2.fenotype
48
+ config.training_set.individuals[id3.to_i].snp_list.should == i3.snp_list
49
+
50
+ config.training_set.ids_fenotypes[id1.to_i] = feno1.to_f
51
+ config.training_set.ids_fenotypes[id2.to_i] = feno2.to_f
52
+ config.training_set.ids_fenotypes[id3.to_i] = feno3.to_f
53
+ }
54
+ end
55
+
56
+ it "reads testing data and yields one individual at a time" do
57
+ config = Nimbus::Configuration.new
58
+ config.load fixture_file('regression_config.yml')
59
+
60
+ test_individuals = []
61
+ File.open(fixture_file('regression_testing.data')) {|file|
62
+ file.each do |line|
63
+ data_id, *snp_list = line.strip.split
64
+ test_individuals << Nimbus::Individual.new(data_id.to_i, nil, snp_list.map{|snp| snp.to_i})
65
+ end
66
+ }
67
+ test_individuals.size.should == 200
68
+ config.read_testing_data{|individual|
69
+ test_individual = test_individuals.shift
70
+ individual.id.should_not be_nil
71
+ individual.id.should == test_individual.id
72
+ individual.snp_list.should_not be_empty
73
+ individual.snp_list.should == test_individual.snp_list
74
+ }
75
+ end
76
+
77
+ it "creates a forest object loading data from a yaml file" do
78
+ config = Nimbus::Configuration.new
79
+ config.load fixture_file('regression_config.yml')
80
+
81
+ trees = YAML.load(File.open fixture_file('regression_random_forest.yml'))
82
+ trees.first.keys.first.should == 189
83
+ trees.size.should == 3
84
+
85
+ forest = config.load_forest
86
+ forest.should be_kind_of Nimbus::Forest
87
+ forest.trees[0].should == trees.first
88
+ forest.trees[1].should == trees[1]
89
+ forest.trees.last.should == trees[2]
90
+ end
91
+
92
+ end
@@ -0,0 +1,12 @@
1
+ #Input files
2
+ input:
3
+ training: regression_training.data
4
+ testing: regression_testing.data
5
+ forest: regression_random_forest.yml
6
+
7
+ #Forest parameters
8
+ forest:
9
+ forest_size: 3 #how many trees
10
+ SNP_sample_size_mtry: 60 #mtry
11
+ SNP_total_count: 200
12
+ node_min_size: 5
@@ -0,0 +1,1741 @@
1
+ ---
2
+ - 189:
3
+ - 128:
4
+ - 200:
5
+ - 68:
6
+ - 0.25043
7
+ - -0.64345
8
+ - 114:
9
+ - 1.1365
10
+ - -0.6905
11
+ - 35:
12
+ - 1.0524
13
+ - 0.6453
14
+ - 0.3673
15
+ - 28:
16
+ - 47:
17
+ - 103:
18
+ - -0.8972
19
+ - 72:
20
+ - 71:
21
+ - 0.4467
22
+ - -0.0896
23
+ - 0.3019
24
+ - 0.8685
25
+ - 2.3857
26
+ - 59:
27
+ - 72:
28
+ - -0.6412
29
+ - 5:
30
+ - 0.5002
31
+ - -0.0038
32
+ - -0.1692
33
+ - 0.4957
34
+ - 111:
35
+ - 79:
36
+ - -0.4553
37
+ - 0.1148
38
+ - -0.1294
39
+ - 21:
40
+ - 0.899
41
+ - 0.1975
42
+ - -0.1479
43
+ - 1.9244
44
+ - 22:
45
+ - -1.40925
46
+ - -0.7244
47
+ - -1.0618
48
+ - 138:
49
+ - 0.1801
50
+ - 106:
51
+ - -1.2966
52
+ - -1.3989
53
+ - -0.8265
54
+ - 6:
55
+ - -1.6845
56
+ - -0.9282
57
+ - -1.0771
58
+ - -0.21412
59
+ - 190:
60
+ - 104:
61
+ - 11:
62
+ - -1.6078
63
+ - -1.5183
64
+ - -1.3139
65
+ - -0.8963
66
+ - -0.2031
67
+ - -0.15053
68
+ - -2.1193
69
+ - 4:
70
+ - 0.14043
71
+ - -0.0497
72
+ - 0.2355
73
+ - 57:
74
+ - 166:
75
+ - 177:
76
+ - 4:
77
+ - -0.43298
78
+ - -0.5903
79
+ - -0.197
80
+ - 0.056
81
+ - -1.1728
82
+ - 5:
83
+ - 0.6761
84
+ - 0.5639
85
+ - 0.8254
86
+ - 0.02026
87
+ - 144:
88
+ - 162:
89
+ - 30:
90
+ - 151:
91
+ - 8:
92
+ - -1.8092
93
+ - -1.73088
94
+ - -1.6134
95
+ - -1.4957
96
+ - -0.8442
97
+ - -1.7639
98
+ - -0.9849
99
+ - 0.2363
100
+ - -0.3543
101
+ - 164:
102
+ - -0.25725
103
+ - 115:
104
+ - -0.93387
105
+ - -0.6403
106
+ - -0.4377
107
+ - 0.4362
108
+ - 105:
109
+ - -1.1398
110
+ - -0.7449
111
+ - 8:
112
+ - 0.10502
113
+ - 0.1142
114
+ - 0.0989
115
+ - 166:
116
+ - 70:
117
+ - -0.9956
118
+ - 118:
119
+ - 1.0088
120
+ - 11:
121
+ - 0.1681
122
+ - -0.3927
123
+ - -0.6712
124
+ - -1.17182
125
+ - 102:
126
+ - 50:
127
+ - 144:
128
+ - 5:
129
+ - -1.4327
130
+ - -1.3872
131
+ - -1.4919
132
+ - -1.6467
133
+ - -0.9586
134
+ - 24:
135
+ - -0.7527
136
+ - -0.93215
137
+ - -0.13
138
+ - -1.23734
139
+ - 44:
140
+ - -2.2138
141
+ - 1:
142
+ - -1.7955
143
+ - -1.6142
144
+ - -1.65046
145
+ - -1.1376
146
+ - -0.20053
147
+ - 1:
148
+ - 6:
149
+ - -0.4202
150
+ - -0.2499
151
+ - -0.39182
152
+ - 0.2077
153
+ - -1.999
154
+ - 1.5955
155
+ - 160:
156
+ - 113:
157
+ - -0.4432
158
+ - 0.7696
159
+ - 0.53017
160
+ - 1.2387
161
+ - 1.6965
162
+ - -0.42986
163
+ - 4:
164
+ - 14:
165
+ - -0.4419
166
+ - -0.25043
167
+ - -1.00415
168
+ - 138:
169
+ - 62:
170
+ - -1.6357
171
+ - 24:
172
+ - 0.714
173
+ - -0.1497
174
+ - 0.1709
175
+ - 146:
176
+ - -2.06
177
+ - -0.57765
178
+ - -0.9854
179
+ - 1:
180
+ - 12:
181
+ - 197:
182
+ - 79:
183
+ - 0.8411
184
+ - 1.0458
185
+ - 0.6082
186
+ - 1.1496
187
+ - 0.4965
188
+ - 197:
189
+ - 6:
190
+ - 0.0875
191
+ - 20:
192
+ - -0.5939
193
+ - -0.31765
194
+ - -0.2169
195
+ - -0.1583
196
+ - 176:
197
+ - 5:
198
+ - 0.6444
199
+ - 0.4535
200
+ - 0.4656
201
+ - 0.9161
202
+ - 1.2925
203
+ - 0.29291
204
+ - 0.37
205
+ - 45:
206
+ - -0.1616
207
+ - 32:
208
+ - 0.8314
209
+ - 0.7697
210
+ - 0.81083
211
+ - -0.3069
212
+ - 179:
213
+ - -1.0536
214
+ - -0.31965
215
+ - 0.6558
216
+ - 101:
217
+ - 2.2543
218
+ - 77:
219
+ - 30:
220
+ - -0.64587
221
+ - -0.215
222
+ - -0.0009
223
+ - 2:
224
+ - 0.3025
225
+ - 0.6336
226
+ - 0.436
227
+ - -0.109
228
+ - 200:
229
+ - 2.0761
230
+ - 0.06937
231
+ - 1.0781
232
+ - 38:
233
+ - 121:
234
+ - 127:
235
+ - 67:
236
+ - -1.5266
237
+ - -0.9082
238
+ - 0.3845
239
+ - 123:
240
+ - 0.60302
241
+ - 15:
242
+ - 1.8856
243
+ - 1.5901
244
+ - 2.0826
245
+ - 136:
246
+ - -1.1045
247
+ - 6:
248
+ - -0.25917
249
+ - 21:
250
+ - 0.66935
251
+ - 1.01277
252
+ - 0.0738
253
+ - 1.6913
254
+ - 0.2084
255
+ - 12:
256
+ - 116:
257
+ - 1.4544
258
+ - 140:
259
+ - 150:
260
+ - 125:
261
+ - 0.4213
262
+ - 0.6557
263
+ - 0.2883
264
+ - 72:
265
+ - -0.1641
266
+ - 0.1513
267
+ - -0.1483
268
+ - 0.159
269
+ - 57:
270
+ - -0.0007
271
+ - -0.21453
272
+ - -0.5292
273
+ - 0.05416
274
+ - 45:
275
+ - 0.1159
276
+ - -0.8826
277
+ - -0.602
278
+ - 62:
279
+ - -1.44793
280
+ - 15:
281
+ - -0.0941
282
+ - -0.18293
283
+ - -0.99307
284
+ - 14:
285
+ - -1.1134
286
+ - 0.66375
287
+ - -0.0308
288
+ - 1.9549
289
+ - 176:
290
+ - 24:
291
+ - 177:
292
+ - 1.337
293
+ - 32:
294
+ - -0.8982
295
+ - 94:
296
+ - 0.0597
297
+ - 0.1726
298
+ - -0.12913
299
+ - -1.1778
300
+ - 0.06981
301
+ - 12:
302
+ - 31:
303
+ - -0.0536
304
+ - -0.60603
305
+ - -1.2055
306
+ - 42:
307
+ - -2.4482
308
+ - -1.2733
309
+ - -1.9862
310
+ - -1.11808
311
+ - 46:
312
+ - 0.2016
313
+ - -0.6075
314
+ - 0.4073
315
+ - 1:
316
+ - 39:
317
+ - 20:
318
+ - 0.44237
319
+ - 0.7268
320
+ - 1.4243
321
+ - -0.00437
322
+ - 1.0928
323
+ - 20:
324
+ - 2.3107
325
+ - 0.9168
326
+ - 1.1599
327
+ - -1.0446
328
+ - 0.03911
329
+ - 2.0701
330
+ - 195:
331
+ - 14:
332
+ - -2.6041
333
+ - -0.2409
334
+ - -1.52273
335
+ - 127:
336
+ - 1.1536
337
+ - 179:
338
+ - 95:
339
+ - 0.0585
340
+ - 0.7764
341
+ - -1.1214
342
+ - 73:
343
+ - -1.3004
344
+ - 59:
345
+ - -0.2676
346
+ - -0.3746
347
+ - 0.0873
348
+ - -0.5177
349
+ - 0.96163
350
+ - 79:
351
+ - 196:
352
+ - -1.19993
353
+ - -0.41948
354
+ - 0.2251
355
+ - 197:
356
+ - 57:
357
+ - -0.9404
358
+ - -0.2351
359
+ - 0.5985
360
+ - 22:
361
+ - 113:
362
+ - -0.5475
363
+ - -0.8467
364
+ - 2:
365
+ - -1.1651
366
+ - -1.1285
367
+ - -1.15046
368
+ - -0.48765
369
+ - -1.9056
370
+ - 8:
371
+ - -1.69668
372
+ - -1.6576
373
+ - -1.7553
374
+ - 0.20753
375
+ - 149:
376
+ - 165:
377
+ - -0.41722
378
+ - 51:
379
+ - 0.2279
380
+ - -1.26447
381
+ - 73:
382
+ - -0.5071
383
+ - -1.22545
384
+ - -0.9569
385
+ - 55:
386
+ - 63:
387
+ - 0.2014
388
+ - -0.1964
389
+ - 0.77843
390
+ - 43:
391
+ - -0.2762
392
+ - -0.4785
393
+ - -0.289
394
+ - -0.1012
395
+ - 93:
396
+ - 105:
397
+ - 1.7531
398
+ - 6:
399
+ - -0.4834
400
+ - 0.83605
401
+ - 0.1886
402
+ - 1.41808
403
+ - 21:
404
+ - 0.5594
405
+ - 32:
406
+ - 118:
407
+ - -0.0753
408
+ - -0.1084
409
+ - 0.2446
410
+ - 31:
411
+ - -0.4732
412
+ - -0.3333
413
+ - -0.6738
414
+ - -1.5471
415
+ - 1.4088
416
+ - -0.74487
417
+ - 113:
418
+ - 0.5642
419
+ - 0.1257
420
+ - 1.403
421
+ - 124:
422
+ - 104:
423
+ - 185:
424
+ - 1.543
425
+ - 0.4934
426
+ - 0.2413
427
+ - 9:
428
+ - -0.1738
429
+ - 0.0694
430
+ - -0.7466
431
+ - -1.079
432
+ - 5:
433
+ - -1.0033
434
+ - -1.7456
435
+ - -1.44868
436
+ - -0.38857
437
+ - 46:
438
+ - 155:
439
+ - 4:
440
+ - 0.44824
441
+ - 100:
442
+ - -0.5351
443
+ - 42:
444
+ - 3:
445
+ - 1.0335
446
+ - 1.1804
447
+ - 1.10695
448
+ - 25:
449
+ - 1.6923
450
+ - 0.8311
451
+ - 1.1192
452
+ - 193:
453
+ - 0.1309
454
+ - 0.5243
455
+ - 0.807
456
+ - 0.4001
457
+ - 121:
458
+ - 110:
459
+ - 27:
460
+ - 0.311
461
+ - 31:
462
+ - -0.469
463
+ - -0.4521
464
+ - -0.1551
465
+ - -0.5713
466
+ - 0.42385
467
+ - -0.10829
468
+ - 0.7512
469
+ - -0.3465
470
+ - 59:
471
+ - 0.58535
472
+ - 2.3738
473
+ - 1.6826
474
+ - 0.5225
475
+ - 111:
476
+ - 29:
477
+ - 6:
478
+ - 0.3494
479
+ - -0.9008
480
+ - -0.5438
481
+ - 178:
482
+ - 62:
483
+ - -0.363
484
+ - -0.8045
485
+ - -1.21453
486
+ - 49:
487
+ - -0.2209
488
+ - -0.0444
489
+ - 0.3417
490
+ - 59:
491
+ - -0.4913
492
+ - -0.6222
493
+ - 0.0156
494
+ - 97:
495
+ - 121:
496
+ - 56:
497
+ - 0.5707
498
+ - 0.2611
499
+ - -0.51765
500
+ - 1:
501
+ - 2.17733
502
+ - 1.3835
503
+ - 1.8354
504
+ - 0.4234
505
+ - 141:
506
+ - -0.2314
507
+ - -1.23797
508
+ - 101:
509
+ - 0.9204
510
+ - 8:
511
+ - -0.3144
512
+ - 2:
513
+ - 0.1064
514
+ - 0.1262
515
+ - 0.0767
516
+ - 0.3827
517
+ - -0.3492
518
+ - 34:
519
+ - 0.3108
520
+ - 0.9914
521
+ - -0.5725
522
+ - 42:
523
+ - 23:
524
+ - 1.5193
525
+ - 0.6589
526
+ - 0.28035
527
+ - 63:
528
+ - 1.7749
529
+ - 80:
530
+ - 14:
531
+ - -0.0426
532
+ - 0.1931
533
+ - 0.07525
534
+ - 0.41
535
+ - 0.72553
536
+ - 148:
537
+ - -0.13605
538
+ - 1.09667
539
+ - 1.7598
540
+ - 195:
541
+ - -1.1814
542
+ - 51:
543
+ - -0.5012
544
+ - -1.2187
545
+ - 127:
546
+ - -0.3165
547
+ - 14:
548
+ - -0.4555
549
+ - -0.55857
550
+ - -0.4624
551
+ - 0.0804
552
+ - 67:
553
+ - 0.805
554
+ - 1.0381
555
+ - -0.0881
556
+ - 69:
557
+ - 175:
558
+ - 1.4357
559
+ - 1.15308
560
+ - 0.8015
561
+ - 0.28345
562
+ - 0.19685
563
+ - 75:
564
+ - 8:
565
+ - 1.2231
566
+ - 0.0962
567
+ - 2.1783
568
+ - 125:
569
+ - 52:
570
+ - 29:
571
+ - -1.069
572
+ - 0.9383
573
+ - 1.296
574
+ - 21:
575
+ - 2.0103
576
+ - 1.7117
577
+ - 2.1744
578
+ - 12:
579
+ - 1.3106
580
+ - 0.2346
581
+ - 1.0745
582
+ - 6:
583
+ - 0.6033
584
+ - 0.28433
585
+ - 0.41192
586
+ - 3.14133
587
+ - 178:
588
+ - -0.27005
589
+ - 35:
590
+ - -0.564
591
+ - 14:
592
+ - 0.6184
593
+ - 0.3473
594
+ - 0.0978
595
+ - 2:
596
+ - -0.4488
597
+ - -0.2092
598
+ - -0.35296
599
+ - 116:
600
+ - 0.6991
601
+ - 0.44913
602
+ - 1.44957
603
+ - 191:
604
+ - 111:
605
+ - 151:
606
+ - 14:
607
+ - 115:
608
+ - -0.6966
609
+ - -1.4554
610
+ - -2.6041
611
+ - 189:
612
+ - 57:
613
+ - -1.21065
614
+ - 11:
615
+ - -0.8747
616
+ - -0.1294
617
+ - -0.42805
618
+ - 148:
619
+ - -1.2211
620
+ - -0.84775
621
+ - -1.6142
622
+ - 163:
623
+ - 56:
624
+ - -0.32993
625
+ - 2:
626
+ - -0.487
627
+ - -0.6578
628
+ - -0.3746
629
+ - 0.00367
630
+ - 0.69107
631
+ - 0.6762
632
+ - 105:
633
+ - 0.0032
634
+ - -0.8791
635
+ - 1.01245
636
+ - 65:
637
+ - 127:
638
+ - -1.2495
639
+ - 117:
640
+ - 8:
641
+ - 0.0843
642
+ - 0.2759
643
+ - -0.9849
644
+ - 15:
645
+ - -1.5466
646
+ - -0.47845
647
+ - -0.8326
648
+ - 11:
649
+ - 0.2124
650
+ - 0.9046
651
+ - 52:
652
+ - -0.2676
653
+ - -0.1692
654
+ - 0.2135
655
+ - 140:
656
+ - 45:
657
+ - -1.1238
658
+ - -0.2757
659
+ - 0.55068
660
+ - 24:
661
+ - 2:
662
+ - 0.67146
663
+ - 0.5985
664
+ - 0.7809
665
+ - -0.1551
666
+ - 0.36605
667
+ - -1.5471
668
+ - 149:
669
+ - -0.39703
670
+ - 1.51377
671
+ - 49:
672
+ - 0.9291
673
+ - 0.6515
674
+ - 2.0103
675
+ - 1.0928
676
+ - 189:
677
+ - 177:
678
+ - 8:
679
+ - 0.2566
680
+ - 81:
681
+ - -1.595
682
+ - -1.734
683
+ - -1.4606
684
+ - -0.5036
685
+ - 44:
686
+ - -2.276
687
+ - 49:
688
+ - 24:
689
+ - -0.984
690
+ - -0.9571
691
+ - -0.6905
692
+ - 2:
693
+ - -1.3405
694
+ - -1.3993
695
+ - -1.3307
696
+ - 0.2363
697
+ - 15:
698
+ - -1.8041
699
+ - -1.0726
700
+ - -2.1193
701
+ - 0.4554
702
+ - 93:
703
+ - 196:
704
+ - 143:
705
+ - -0.9391
706
+ - 1.1212
707
+ - 5:
708
+ - 0.2078
709
+ - -0.1898
710
+ - -0.05727
711
+ - 127:
712
+ - -0.4311
713
+ - 116:
714
+ - 0.0892
715
+ - 11:
716
+ - -0.03584
717
+ - -0.0348
718
+ - -0.0361
719
+ - -0.20157
720
+ - 94:
721
+ - -1.7456
722
+ - -0.98393
723
+ - -1.13083
724
+ - 56:
725
+ - -1.2253
726
+ - -2.3286
727
+ - -1.55395
728
+ - 44:
729
+ - -0.80835
730
+ - 58:
731
+ - -0.0572
732
+ - 0.4736
733
+ - 144:
734
+ - -0.5266
735
+ - -0.39145
736
+ - -0.2762
737
+ - 79:
738
+ - -0.05385
739
+ - 0.77283
740
+ - 0.3845
741
+ - 130:
742
+ - -0.7492
743
+ - 0.28543
744
+ - -0.3069
745
+ - 118:
746
+ - 1.2211
747
+ - 83:
748
+ - 97:
749
+ - -1.069
750
+ - -0.6693
751
+ - 0.1917
752
+ - 0.3183
753
+ - 1.2942
754
+ - 154:
755
+ - -0.37008
756
+ - 120:
757
+ - -0.5378
758
+ - -0.5725
759
+ - -0.4913
760
+ - -0.9695
761
+ - 39:
762
+ - 149:
763
+ - 196:
764
+ - 0.4483
765
+ - 0.3169
766
+ - -0.04747
767
+ - 102:
768
+ - 0.4705
769
+ - 1.63423
770
+ - 1.4088
771
+ - 0.73595
772
+ - 33:
773
+ - 115:
774
+ - -0.1476
775
+ - -0.49145
776
+ - -0.11233
777
+ - 20:
778
+ - -0.197
779
+ - -0.9042
780
+ - -0.8336
781
+ - -1.3989
782
+ - -1.4327
783
+ - 173:
784
+ - -1.16243
785
+ - 52:
786
+ - 20:
787
+ - 43:
788
+ - -1.1322
789
+ - -0.669
790
+ - -1.28177
791
+ - 27:
792
+ - -1.5725
793
+ - -1.4156
794
+ - -1.3371
795
+ - 0.1893
796
+ - 142:
797
+ - 0.83525
798
+ - 188:
799
+ - 174:
800
+ - -0.0256
801
+ - 0.18273
802
+ - -0.0792
803
+ - 12:
804
+ - -1.17683
805
+ - -0.42222
806
+ - -0.6874
807
+ - 0.7526
808
+ - 188:
809
+ - 0.7199
810
+ - 56:
811
+ - 0.3025
812
+ - 2:
813
+ - -0.1214
814
+ - -0.0376
815
+ - -0.289
816
+ - -0.29707
817
+ - 0.1561
818
+ - 1:
819
+ - 27:
820
+ - -0.559
821
+ - 5:
822
+ - 0.40015
823
+ - 0.1331
824
+ - 0.72075
825
+ - 0.6181
826
+ - 175:
827
+ - -0.48345
828
+ - 0.2547
829
+ - -0.3629
830
+ - -2.4482
831
+ - 139:
832
+ - -0.70235
833
+ - 145:
834
+ - 140:
835
+ - 33:
836
+ - -0.44845
837
+ - 1.0263
838
+ - -0.7799
839
+ - 167:
840
+ - 1.2102
841
+ - 110:
842
+ - 1.267
843
+ - 0.53095
844
+ - 0.2623
845
+ - 0.1975
846
+ - -1.5266
847
+ - 5:
848
+ - 1:
849
+ - 2.0761
850
+ - 1.6923
851
+ - 1.543
852
+ - 150:
853
+ - 0.80643
854
+ - 0.42995
855
+ - 1.2211
856
+ - 1.2606
857
+ - 60:
858
+ - 0.0619
859
+ - 1.2754
860
+ - -1.1814
861
+ - 71:
862
+ - 147:
863
+ - 1.21755
864
+ - 2:
865
+ - 0.40655
866
+ - 0.713
867
+ - -0.55013
868
+ - 79:
869
+ - 0.0093
870
+ - 42:
871
+ - -0.3666
872
+ - -0.201
873
+ - -0.4624
874
+ - -1.8612
875
+ - 189:
876
+ - 43:
877
+ - 20:
878
+ - -1.2712
879
+ - -1.1358
880
+ - -0.8972
881
+ - -0.2722
882
+ - 57:
883
+ - -0.5903
884
+ - -0.2877
885
+ - 0.0535
886
+ - 120:
887
+ - 146:
888
+ - 0.8411
889
+ - 0.3925
890
+ - 0.61513
891
+ - 8:
892
+ - -1.0076
893
+ - 11:
894
+ - -0.4419
895
+ - -0.3145
896
+ - -0.5071
897
+ - -0.10813
898
+ - -0.07823
899
+ - 125:
900
+ - 8:
901
+ - 1.1693
902
+ - 0.8131
903
+ - 0.3948
904
+ - 0.042
905
+ - 0.5413
906
+ - 165:
907
+ - -0.49337
908
+ - 21:
909
+ - 0.547
910
+ - 1.6965
911
+ - 42:
912
+ - 0.1151
913
+ - 0.3287
914
+ - -0.09397
915
+ - 149:
916
+ - 0.024
917
+ - 118:
918
+ - 0.83443
919
+ - 1.11413
920
+ - 0.62465
921
+ - 136:
922
+ - 1.9322
923
+ - 1.013
924
+ - 1.2924
925
+ - 17:
926
+ - 0.4357
927
+ - 189:
928
+ - 0.2546
929
+ - 0.59343
930
+ - 1.75988
931
+ - 69:
932
+ - 102:
933
+ - 71:
934
+ - 0.7696
935
+ - 6:
936
+ - 1.0388
937
+ - 1.076
938
+ - 1.014
939
+ - 0.5859
940
+ - 177:
941
+ - -0.6075
942
+ - 0.42638
943
+ - -0.2418
944
+ - 0.6661
945
+ - 42:
946
+ - -0.15022
947
+ - 117:
948
+ - 28:
949
+ - -0.23305
950
+ - 0.0784
951
+ - -0.3755
952
+ - 0.39673
953
+ - 0.2016
954
+ - 2:
955
+ - -1.3872
956
+ - -1.3903
957
+ - -0.7244
958
+ - 0.5803
959
+ - 22:
960
+ - 46:
961
+ - 138:
962
+ - 8:
963
+ - -0.8809
964
+ - 1.2785
965
+ - -0.1151
966
+ - 45:
967
+ - 1.0245
968
+ - -0.1373
969
+ - -1.11477
970
+ - 105:
971
+ - 2.2543
972
+ - 4:
973
+ - 0.98496
974
+ - 1.1192
975
+ - 0.7836
976
+ - 100:
977
+ - 0.62495
978
+ - 0.50553
979
+ - 0.8036
980
+ - 60:
981
+ - 175:
982
+ - 90:
983
+ - -0.8377
984
+ - 0.5209
985
+ - 53:
986
+ - -0.0753
987
+ - 0.028
988
+ - -0.334
989
+ - 194:
990
+ - -0.9871
991
+ - -1.1285
992
+ - -0.60585
993
+ - 0.8254
994
+ - 102:
995
+ - 105:
996
+ - 0.4525
997
+ - -0.8239
998
+ - 0.16435
999
+ - 148:
1000
+ - 55:
1001
+ - 0.6618
1002
+ - 1.2029
1003
+ - 0.7653
1004
+ - 32:
1005
+ - 0.8685
1006
+ - 0.2533
1007
+ - -0.5238
1008
+ - -0.0499
1009
+ - -0.5475
1010
+ - 50:
1011
+ - -0.59698
1012
+ - 1:
1013
+ - -1.7955
1014
+ - -1.2187
1015
+ - -1.33406
1016
+ - 0.6444
1017
+ - 111:
1018
+ - 113:
1019
+ - 0.2284
1020
+ - 21:
1021
+ - 0.649
1022
+ - 0.1537
1023
+ - 0.3808
1024
+ - 21:
1025
+ - 0.2897
1026
+ - -0.8276
1027
+ - -0.6575
1028
+ - 90:
1029
+ - 2.0701
1030
+ - 94:
1031
+ - 1.0034
1032
+ - 0.6184
1033
+ - 1.0104
1034
+ - 5:
1035
+ - 0.2138
1036
+ - 0.4423
1037
+ - 1.3014
1038
+ - 0.4928
1039
+ - 189:
1040
+ - 99:
1041
+ - 111:
1042
+ - 11:
1043
+ - 0.1148
1044
+ - -1.4957
1045
+ - -0.7271
1046
+ - 100:
1047
+ - -0.94133
1048
+ - -0.70495
1049
+ - -0.78643
1050
+ - 1.2387
1051
+ - 1.0494
1052
+ - -2.0954
1053
+ - 163:
1054
+ - 56:
1055
+ - 107:
1056
+ - 2.3103
1057
+ - 5:
1058
+ - 1.5635
1059
+ - 1.5901
1060
+ - 1.57414
1061
+ - 1.24455
1062
+ - 111:
1063
+ - -0.09558
1064
+ - 1.2722
1065
+ - 1.3209
1066
+ - 44:
1067
+ - -0.4414
1068
+ - 0.5642
1069
+ - 0.1544
1070
+ - 5:
1071
+ - -1.29965
1072
+ - -0.43453
1073
+ - 55:
1074
+ - 0.2279
1075
+ - -0.109
1076
+ - 0.45055
1077
+ - 1.6858
1078
+ - 178:
1079
+ - 59:
1080
+ - 1.06565
1081
+ - -0.2611
1082
+ - -1.06593
1083
+ - 56:
1084
+ - 49:
1085
+ - 0.4264
1086
+ - 0.6598
1087
+ - 1.1023
1088
+ - 179:
1089
+ - 0.2818
1090
+ - 0.46937
1091
+ - 13:
1092
+ - 0.8587
1093
+ - 0.8311
1094
+ - 0.85318
1095
+ - 142:
1096
+ - -0.1866
1097
+ - -0.53415
1098
+ - 0.311
1099
+ - 1.44507
1100
+ - 52:
1101
+ - 199:
1102
+ - -0.04577
1103
+ - 4:
1104
+ - -1.91878
1105
+ - -1.8653
1106
+ - -1.999
1107
+ - -1.5742
1108
+ - 138:
1109
+ - -1.2999
1110
+ - 154:
1111
+ - 0.3387
1112
+ - 0.4862
1113
+ - 0.3417
1114
+ - 21:
1115
+ - 1.3427
1116
+ - 0.5583
1117
+ - 0.6032
1118
+ - 121:
1119
+ - -0.49235
1120
+ - -1.64618
1121
+ - 1.7531
1122
+ - 133:
1123
+ - 179:
1124
+ - -0.2489
1125
+ - -0.90613
1126
+ - 1.1903
1127
+ - 39:
1128
+ - 190:
1129
+ - 2.3154
1130
+ - 111:
1131
+ - 0.9363
1132
+ - 0.8703
1133
+ - 0.6594
1134
+ - 1.4332
1135
+ - 77:
1136
+ - 6:
1137
+ - 0.5834
1138
+ - 0.5141
1139
+ - 0.1626
1140
+ - 0.32603
1141
+ - 33:
1142
+ - 14:
1143
+ - 1.2701
1144
+ - 1.3171
1145
+ - 1.2231
1146
+ - 1.5774
1147
+ - 0.5728
1148
+ - -1.1633
1149
+ - 177:
1150
+ - -0.996
1151
+ - 198:
1152
+ - -0.3713
1153
+ - 30:
1154
+ - 0.7307
1155
+ - 0.9315
1156
+ - 1.2925
1157
+ - 0.2084
1158
+ - -2.1692
1159
+ - 189:
1160
+ - 111:
1161
+ - 83:
1162
+ - 108:
1163
+ - 142:
1164
+ - -0.5118
1165
+ - 11:
1166
+ - -0.4202
1167
+ - -1.59443
1168
+ - 43:
1169
+ - -0.3691
1170
+ - -0.9066
1171
+ - -1.0034
1172
+ - 77:
1173
+ - 88:
1174
+ - -0.1294
1175
+ - 0.4304
1176
+ - -0.25775
1177
+ - 94:
1178
+ - -0.0497
1179
+ - 15:
1180
+ - -0.6828
1181
+ - -0.6712
1182
+ - -0.7292
1183
+ - -1.4372
1184
+ - 8:
1185
+ - 0.2124
1186
+ - 0.0175
1187
+ - 0.1194
1188
+ - 181:
1189
+ - 150:
1190
+ - -1.7022
1191
+ - 43:
1192
+ - 1:
1193
+ - -1.785
1194
+ - -1.7247
1195
+ - -1.6845
1196
+ - 13:
1197
+ - -1.484
1198
+ - -1.6078
1199
+ - -1.58304
1200
+ - -1.9349
1201
+ - 6:
1202
+ - -1.1478
1203
+ - -1.13602
1204
+ - -1.0889
1205
+ - 55:
1206
+ - -0.8747
1207
+ - 3:
1208
+ - -0.8265
1209
+ - -0.7271
1210
+ - -0.7768
1211
+ - -1.4957
1212
+ - 0.2363
1213
+ - -0.9412
1214
+ - 150:
1215
+ - 43:
1216
+ - 193:
1217
+ - 0.4967
1218
+ - -0.4266
1219
+ - -0.197
1220
+ - -0.8515
1221
+ - 73:
1222
+ - 0.187
1223
+ - 0.8685
1224
+ - 0.7809
1225
+ - 176:
1226
+ - 15:
1227
+ - -1.2211
1228
+ - -1.595
1229
+ - -1.3307
1230
+ - 8:
1231
+ - -0.8336
1232
+ - -0.9571
1233
+ - -0.3245
1234
+ - -0.9626
1235
+ - -0.6871
1236
+ - 0.1681
1237
+ - 185:
1238
+ - 128:
1239
+ - 3:
1240
+ - 100:
1241
+ - 0.76953
1242
+ - 127:
1243
+ - -0.4634
1244
+ - -0.17133
1245
+ - 5:
1246
+ - 0.04948
1247
+ - 0.1801
1248
+ - -0.0376
1249
+ - -0.3958
1250
+ - 144:
1251
+ - 43:
1252
+ - -1.2999
1253
+ - -1.0771
1254
+ - -1.2966
1255
+ - -0.1479
1256
+ - -0.5442
1257
+ - -0.8033
1258
+ - 1.6965
1259
+ - -0.18429
1260
+ - 55:
1261
+ - 59:
1262
+ - 0.3673
1263
+ - -0.5493
1264
+ - 0.1142
1265
+ - 94:
1266
+ - -1.98657
1267
+ - -1.1398
1268
+ - 88:
1269
+ - -1.0618
1270
+ - -0.7475
1271
+ - -0.3925
1272
+ - 188:
1273
+ - 1.1684
1274
+ - 21:
1275
+ - 0.4467
1276
+ - -0.90595
1277
+ - -0.04763
1278
+ - -0.3927
1279
+ - 139:
1280
+ - 2.456
1281
+ - 0.13215
1282
+ - 143:
1283
+ - -1.1728
1284
+ - 60:
1285
+ - -0.357
1286
+ - 0.1589
1287
+ - 0.3207
1288
+ - 5:
1289
+ - 0.9536
1290
+ - 1.0944
1291
+ - 0.7424
1292
+ - 124:
1293
+ - 194:
1294
+ - -0.98023
1295
+ - 121:
1296
+ - -0.43167
1297
+ - 45:
1298
+ - 0.48125
1299
+ - 0.7696
1300
+ - -0.0539
1301
+ - 0.4892
1302
+ - 0.0275
1303
+ - 1.69583
1304
+ - 0.16186
1305
+ - 195:
1306
+ - 15:
1307
+ - 49:
1308
+ - -0.6675
1309
+ - -0.5226
1310
+ - 0.3986
1311
+ - 50:
1312
+ - 52:
1313
+ - -2.6041
1314
+ - 33:
1315
+ - -1.7023
1316
+ - -1.27753
1317
+ - -1.07045
1318
+ - 0.2547
1319
+ - 8:
1320
+ - -0.926
1321
+ - -0.5269
1322
+ - 0.0238
1323
+ - 2.3103
1324
+ - 87:
1325
+ - 101:
1326
+ - 0.2084
1327
+ - 0.76633
1328
+ - 2.0761
1329
+ - -1.077
1330
+ - 1.0723
1331
+ - 190:
1332
+ - 6:
1333
+ - 84:
1334
+ - -3.4042
1335
+ - 180:
1336
+ - -1.29577
1337
+ - -0.6459
1338
+ - 0.3246
1339
+ - 55:
1340
+ - -0.6966
1341
+ - 0.28997
1342
+ - 4:
1343
+ - -1.11104
1344
+ - -1.0637
1345
+ - -1.3004
1346
+ - 52:
1347
+ - 24:
1348
+ - 1.2603
1349
+ - 1.4544
1350
+ - 0.0693
1351
+ - 40:
1352
+ - -0.421
1353
+ - -1.35887
1354
+ - 88:
1355
+ - 0.38935
1356
+ - -0.12733
1357
+ - 90:
1358
+ - -0.8707
1359
+ - -0.3598
1360
+ - -0.45593
1361
+ - -1.65707
1362
+ - 140:
1363
+ - 26:
1364
+ - 0.7472
1365
+ - 0.38078
1366
+ - 1.0395
1367
+ - 31:
1368
+ - -0.3746
1369
+ - -1.0491
1370
+ - -0.1876
1371
+ - 0.7764
1372
+ - 199:
1373
+ - 55:
1374
+ - 29:
1375
+ - -0.8276
1376
+ - -2.06
1377
+ - -0.97153
1378
+ - 78:
1379
+ - 57:
1380
+ - -0.5177
1381
+ - -0.21575
1382
+ - 0.4013
1383
+ - 139:
1384
+ - -0.9854
1385
+ - 0.9168
1386
+ - 145:
1387
+ - 2:
1388
+ - -1.2521
1389
+ - -1.2055
1390
+ - -1.24278
1391
+ - -0.4448
1392
+ - -1.9056
1393
+ - -1.7553
1394
+ - 176:
1395
+ - 71:
1396
+ - -0.6874
1397
+ - 144:
1398
+ - 21:
1399
+ - -0.23718
1400
+ - -0.2757
1401
+ - -0.2115
1402
+ - 0.2969
1403
+ - -0.0308
1404
+ - -1.1311
1405
+ - 21:
1406
+ - 1.26165
1407
+ - -0.0862
1408
+ - 0.45585
1409
+ - 0.04283
1410
+ - 27:
1411
+ - 0.9509
1412
+ - 49:
1413
+ - -0.0309
1414
+ - 52:
1415
+ - 0.7416
1416
+ - 0.6245
1417
+ - 0.5834
1418
+ - 11:
1419
+ - 0.1608
1420
+ - 0.14805
1421
+ - 0.0843
1422
+ - 115:
1423
+ - 1.5635
1424
+ - -0.9235
1425
+ - 16:
1426
+ - 142:
1427
+ - -0.3204
1428
+ - -0.4085
1429
+ - -0.1616
1430
+ - 0.4965
1431
+ - -0.16884
1432
+ - 1.62535
1433
+ - 149:
1434
+ - 59:
1435
+ - -0.418
1436
+ - 0.2495
1437
+ - -0.7799
1438
+ - 15:
1439
+ - 1.9043
1440
+ - 1.4332
1441
+ - 1.74727
1442
+ - 0.9291
1443
+ - 46:
1444
+ - 168:
1445
+ - -0.5266
1446
+ - 187:
1447
+ - -0.9391
1448
+ - 87:
1449
+ - 32:
1450
+ - -1.1578
1451
+ - -1.3194
1452
+ - -1.56403
1453
+ - -0.47375
1454
+ - -0.2715
1455
+ - 111:
1456
+ - -0.1156
1457
+ - -0.3356
1458
+ - 0.4317
1459
+ - 196:
1460
+ - 38:
1461
+ - 0.85623
1462
+ - 5:
1463
+ - 1.3846
1464
+ - 0.9899
1465
+ - 1.403
1466
+ - -0.7133
1467
+ - 180:
1468
+ - 95:
1469
+ - -1.22545
1470
+ - 53:
1471
+ - -0.5597
1472
+ - -0.47585
1473
+ - -0.1616
1474
+ - 0.2016
1475
+ - 81:
1476
+ - -0.6738
1477
+ - 0.7836
1478
+ - 104:
1479
+ - 0.2634
1480
+ - 0.6941
1481
+ - -0.13543
1482
+ - -0.12185
1483
+ - 0.2506
1484
+ - 98:
1485
+ - 43:
1486
+ - 62:
1487
+ - 2.0826
1488
+ - 0.69493
1489
+ - 52:
1490
+ - 1.2288
1491
+ - 6:
1492
+ - 1.3888
1493
+ - 1.1506
1494
+ - 1.9276
1495
+ - 104:
1496
+ - 0.6229
1497
+ - -0.0079
1498
+ - 0.6452
1499
+ - 60:
1500
+ - 170:
1501
+ - 1.6858
1502
+ - 0.87533
1503
+ - 191:
1504
+ - 1:
1505
+ - 0.1886
1506
+ - 0.1151
1507
+ - 0.1592
1508
+ - -0.0753
1509
+ - 0.5141
1510
+ - 175:
1511
+ - 5:
1512
+ - 0.7589
1513
+ - 2:
1514
+ - 0.8191
1515
+ - 0.5642
1516
+ - 0.73413
1517
+ - -0.1825
1518
+ - 125:
1519
+ - 0.4357
1520
+ - 1.5318
1521
+ - 1.804
1522
+ - -0.0536
1523
+ - 11:
1524
+ - -0.8071
1525
+ - -1.6357
1526
+ - 0.0738
1527
+ - 26:
1528
+ - -1.78735
1529
+ - 11:
1530
+ - 0.541
1531
+ - 0.2993
1532
+ - -0.47263
1533
+ - 73:
1534
+ - 6:
1535
+ - 0.6374
1536
+ - 1.1981
1537
+ - 0.86168
1538
+ - 0.2809
1539
+ - -0.39618
1540
+ - 63:
1541
+ - -0.2403
1542
+ - -0.42603
1543
+ - 11:
1544
+ - -1.5266
1545
+ - -0.4978
1546
+ - -1.0047
1547
+ - 0.939
1548
+ - 157:
1549
+ - 47:
1550
+ - 41:
1551
+ - 1.05177
1552
+ - 1.8475
1553
+ - 56:
1554
+ - 1.5901
1555
+ - 24:
1556
+ - 0.6082
1557
+ - 59:
1558
+ - 0.8411
1559
+ - 0.9161
1560
+ - 0.7287
1561
+ - 0.3808
1562
+ - 0.9826
1563
+ - 127:
1564
+ - 0.1257
1565
+ - -0.3755
1566
+ - -0.16923
1567
+ - 1:
1568
+ - -0.0572
1569
+ - 0.7697
1570
+ - 0.63188
1571
+ - 197:
1572
+ - -0.94868
1573
+ - 93:
1574
+ - -0.1898
1575
+ - 0.4736
1576
+ - -0.0673
1577
+ - -0.4277
1578
+ - 1.35065
1579
+ - 125:
1580
+ - 63:
1581
+ - 43:
1582
+ - 101:
1583
+ - 1.2231
1584
+ - 197:
1585
+ - 1.0335
1586
+ - 1.1192
1587
+ - 0.63465
1588
+ - 1.7749
1589
+ - 73:
1590
+ - 49:
1591
+ - 0.453
1592
+ - 1.4973
1593
+ - 2.0103
1594
+ - 55:
1595
+ - 1.3106
1596
+ - 0.8311
1597
+ - 1.0921
1598
+ - -0.6648
1599
+ - 27:
1600
+ - 0.6589
1601
+ - -0.0409
1602
+ - -0.5351
1603
+ - 5:
1604
+ - 34:
1605
+ - 126:
1606
+ - 0.3857
1607
+ - -0.363
1608
+ - 1.4921
1609
+ - 147:
1610
+ - 0.5583
1611
+ - 52:
1612
+ - 0.4423
1613
+ - 0.2784
1614
+ - 0.2346
1615
+ - -0.1249
1616
+ - -1.1814
1617
+ - 87:
1618
+ - 136:
1619
+ - 0.31198
1620
+ - 11:
1621
+ - -0.3017
1622
+ - -0.6279
1623
+ - -1.119
1624
+ - 1.2437
1625
+ - 57:
1626
+ - -0.32683
1627
+ - -0.7258
1628
+ - 17:
1629
+ - -1.07692
1630
+ - -1.2187
1631
+ - -0.9824
1632
+ - -0.1509
1633
+ - 26:
1634
+ - -0.31285
1635
+ - 14:
1636
+ - 1.2606
1637
+ - 1.1734
1638
+ - 1.7117
1639
+ - 1.8354
1640
+ - 98:
1641
+ - 90:
1642
+ - 150:
1643
+ - 0.0619
1644
+ - 0.19
1645
+ - 0.75135
1646
+ - 66:
1647
+ - 0.16505
1648
+ - -0.47435
1649
+ - 0.3484
1650
+ - 127:
1651
+ - -2.1489
1652
+ - -0.06385
1653
+ - 8:
1654
+ - -0.5438
1655
+ - -1.1776
1656
+ - 0.1126
1657
+ - 28:
1658
+ - 43:
1659
+ - 1.135
1660
+ - 1.2978
1661
+ - 1.3081
1662
+ - 1.6007
1663
+ - 0.3427
1664
+ - -0.4521
1665
+ - 25:
1666
+ - 147:
1667
+ - 165:
1668
+ - -0.14707
1669
+ - 176:
1670
+ - -0.6222
1671
+ - 5:
1672
+ - -0.3656
1673
+ - -0.3465
1674
+ - -0.5164
1675
+ - -1.5466
1676
+ - 139:
1677
+ - -0.2209
1678
+ - 1.2211
1679
+ - 34:
1680
+ - 0.3374
1681
+ - 0.29897
1682
+ - -0.0426
1683
+ - 178:
1684
+ - 160:
1685
+ - 1.4648
1686
+ - 94:
1687
+ - 1.2754
1688
+ - 1.2924
1689
+ - 1.1804
1690
+ - 0.8703
1691
+ - 179:
1692
+ - 0.281
1693
+ - 57:
1694
+ - 17:
1695
+ - 0.73378
1696
+ - 0.6577
1697
+ - 1.0381
1698
+ - 1.2527
1699
+ - 14:
1700
+ - 0.5243
1701
+ - 0.4264
1702
+ - 1.2049
1703
+ - -0.5853
1704
+ - 55:
1705
+ - 0.3481
1706
+ - -0.27415
1707
+ - 0.2783
1708
+ - 5:
1709
+ - -0.0394
1710
+ - 0.9726
1711
+ - 0.76383
1712
+ - 77:
1713
+ - 140:
1714
+ - 187:
1715
+ - 0.6956
1716
+ - 1.3883
1717
+ - 1.60897
1718
+ - -0.9807
1719
+ - 0.3983
1720
+ - 102:
1721
+ - 1.0034
1722
+ - 32:
1723
+ - -0.1734
1724
+ - 0.19405
1725
+ - -0.6513
1726
+ - -0.5148
1727
+ - 2.3336
1728
+ - -1.7929
1729
+ - 158:
1730
+ - 1:
1731
+ - 0.6181
1732
+ - 0.0156
1733
+ - -0.2611
1734
+ - 55:
1735
+ - 0.9914
1736
+ - 0.03863
1737
+ - 43:
1738
+ - 2.1783
1739
+ - 2.349
1740
+ - 2.0992
1741
+ - 3.5375