daru 0.1.5 → 0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.github/ISSUE_TEMPLATE.md +18 -0
- data/.gitignore +1 -0
- data/.rubocop.yml +21 -7
- data/.travis.yml +10 -5
- data/CONTRIBUTING.md +15 -10
- data/History.md +124 -2
- data/README.md +37 -9
- data/ReleasePolicy.md +20 -0
- data/benchmarks/db_loading.rb +34 -0
- data/benchmarks/statistics.rb +6 -6
- data/benchmarks/where_clause.rb +1 -1
- data/benchmarks/where_vs_filter.rb +1 -1
- data/daru.gemspec +17 -41
- data/lib/daru.rb +10 -13
- data/lib/daru/accessors/gsl_wrapper.rb +1 -1
- data/lib/daru/accessors/nmatrix_wrapper.rb +2 -0
- data/lib/daru/category.rb +29 -15
- data/lib/daru/configuration.rb +34 -0
- data/lib/daru/core/group_by.rb +158 -77
- data/lib/daru/core/merge.rb +12 -3
- data/lib/daru/core/query.rb +20 -4
- data/lib/daru/dataframe.rb +692 -118
- data/lib/daru/date_time/index.rb +14 -11
- data/lib/daru/date_time/offsets.rb +9 -1
- data/lib/daru/extensions/which_dsl.rb +55 -0
- data/lib/daru/formatters/table.rb +3 -5
- data/lib/daru/index/categorical_index.rb +4 -4
- data/lib/daru/index/index.rb +131 -42
- data/lib/daru/index/multi_index.rb +118 -10
- data/lib/daru/io/csv/converters.rb +21 -0
- data/lib/daru/io/io.rb +105 -33
- data/lib/daru/io/sql_data_source.rb +10 -0
- data/lib/daru/iruby/templates/dataframe.html.erb +4 -51
- data/lib/daru/iruby/templates/dataframe_mi.html.erb +3 -56
- data/lib/daru/iruby/templates/dataframe_mi_tbody.html.erb +35 -0
- data/lib/daru/iruby/templates/dataframe_mi_thead.html.erb +21 -0
- data/lib/daru/iruby/templates/dataframe_tbody.html.erb +28 -0
- data/lib/daru/iruby/templates/dataframe_thead.html.erb +21 -0
- data/lib/daru/iruby/templates/vector.html.erb +3 -25
- data/lib/daru/iruby/templates/vector_mi.html.erb +3 -34
- data/lib/daru/iruby/templates/vector_mi_tbody.html.erb +26 -0
- data/lib/daru/iruby/templates/vector_mi_thead.html.erb +8 -0
- data/lib/daru/iruby/templates/vector_tbody.html.erb +17 -0
- data/lib/daru/iruby/templates/vector_thead.html.erb +8 -0
- data/lib/daru/maths/arithmetic/vector.rb +38 -2
- data/lib/daru/maths/statistics/dataframe.rb +28 -30
- data/lib/daru/maths/statistics/vector.rb +295 -41
- data/lib/daru/plotting/gruff/dataframe.rb +13 -15
- data/lib/daru/plotting/nyaplot/category.rb +1 -1
- data/lib/daru/plotting/nyaplot/dataframe.rb +15 -4
- data/lib/daru/plotting/nyaplot/vector.rb +1 -2
- data/lib/daru/vector.rb +308 -96
- data/lib/daru/version.rb +1 -1
- data/profile/vector_new.rb +9 -0
- data/spec/accessors/gsl_wrapper_spec.rb +38 -35
- data/spec/accessors/nmatrix_wrapper_spec.rb +25 -22
- data/spec/category_spec.rb +24 -20
- data/spec/core/group_by_spec.rb +238 -4
- data/spec/core/merge_spec.rb +1 -1
- data/spec/core/query_spec.rb +65 -50
- data/spec/daru_spec.rb +22 -0
- data/spec/dataframe_spec.rb +473 -16
- data/spec/date_time/date_time_index_helper_spec.rb +72 -0
- data/spec/date_time/index_spec.rb +34 -16
- data/spec/date_time/offsets_spec.rb +14 -0
- data/spec/extensions/rserve_spec.rb +1 -1
- data/spec/extensions/which_dsl_spec.rb +38 -0
- data/spec/fixtures/boolean_converter_test.csv +5 -0
- data/spec/fixtures/duplicates.csv +32 -0
- data/spec/fixtures/eciresults.html +394 -0
- data/spec/fixtures/empty_rows_test.csv +17 -0
- data/spec/fixtures/macau.html +3691 -0
- data/spec/fixtures/macd_data.csv +150 -0
- data/spec/fixtures/matrix_test.csv +55 -55
- data/spec/fixtures/moneycontrol.html +6812 -0
- data/spec/fixtures/string_converter_test.csv +5 -0
- data/spec/fixtures/test_xls.xls +0 -0
- data/spec/fixtures/test_xls_2.xls +0 -0
- data/spec/fixtures/url_test.txt~ +0 -0
- data/spec/fixtures/valid_markup.html +62 -0
- data/spec/fixtures/wiki_climate.html +1243 -0
- data/spec/fixtures/wiki_table_info.html +631 -0
- data/spec/formatters/table_formatter_spec.rb +29 -0
- data/spec/index/categorical_index_spec.rb +33 -33
- data/spec/index/index_spec.rb +160 -41
- data/spec/index/multi_index_spec.rb +143 -33
- data/spec/io/io_spec.rb +246 -2
- data/spec/io/sql_data_source_spec.rb +31 -41
- data/spec/iruby/dataframe_spec.rb +17 -19
- data/spec/iruby/vector_spec.rb +26 -28
- data/spec/maths/arithmetic/dataframe_spec.rb +1 -1
- data/spec/maths/arithmetic/vector_spec.rb +18 -0
- data/spec/maths/statistics/vector_spec.rb +153 -15
- data/spec/plotting/gruff/category_spec.rb +3 -3
- data/spec/plotting/gruff/dataframe_spec.rb +14 -4
- data/spec/plotting/gruff/vector_spec.rb +9 -9
- data/spec/plotting/nyaplot/category_spec.rb +5 -9
- data/spec/plotting/nyaplot/dataframe_spec.rb +95 -47
- data/spec/plotting/nyaplot/vector_spec.rb +5 -11
- data/spec/shared/vector_display_spec.rb +12 -14
- data/spec/spec_helper.rb +30 -7
- data/spec/support/matchers.rb +5 -0
- data/spec/vector_spec.rb +306 -72
- metadata +96 -55
- data/spec/fixtures/stock_data.csv +0 -500
metadata
CHANGED
@@ -1,43 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: daru
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: '0.3'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sameer Deshmukh
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-05-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
-
name:
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - ">="
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: '0'
|
20
|
-
type: :runtime
|
21
|
-
prerelease: false
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
23
|
-
requirements:
|
24
|
-
- - ">="
|
25
|
-
- !ruby/object:Gem::Version
|
26
|
-
version: '0'
|
27
|
-
- !ruby/object:Gem::Dependency
|
28
|
-
name: reportbuilder
|
14
|
+
name: packable
|
29
15
|
requirement: !ruby/object:Gem::Requirement
|
30
16
|
requirements:
|
31
17
|
- - "~>"
|
32
18
|
- !ruby/object:Gem::Version
|
33
|
-
version:
|
34
|
-
type: :
|
19
|
+
version: 1.3.13
|
20
|
+
type: :runtime
|
35
21
|
prerelease: false
|
36
22
|
version_requirements: !ruby/object:Gem::Requirement
|
37
23
|
requirements:
|
38
24
|
- - "~>"
|
39
25
|
- !ruby/object:Gem::Version
|
40
|
-
version:
|
26
|
+
version: 1.3.13
|
41
27
|
- !ruby/object:Gem::Dependency
|
42
28
|
name: spreadsheet
|
43
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -56,14 +42,14 @@ dependencies:
|
|
56
42
|
name: bundler
|
57
43
|
requirement: !ruby/object:Gem::Requirement
|
58
44
|
requirements:
|
59
|
-
- - "
|
45
|
+
- - ">="
|
60
46
|
- !ruby/object:Gem::Version
|
61
47
|
version: '1.10'
|
62
48
|
type: :development
|
63
49
|
prerelease: false
|
64
50
|
version_requirements: !ruby/object:Gem::Requirement
|
65
51
|
requirements:
|
66
|
-
- - "
|
52
|
+
- - ">="
|
67
53
|
- !ruby/object:Gem::Version
|
68
54
|
version: '1.10'
|
69
55
|
- !ruby/object:Gem::Dependency
|
@@ -72,14 +58,14 @@ dependencies:
|
|
72
58
|
requirements:
|
73
59
|
- - "~>"
|
74
60
|
- !ruby/object:Gem::Version
|
75
|
-
version: '
|
61
|
+
version: '13.0'
|
76
62
|
type: :development
|
77
63
|
prerelease: false
|
78
64
|
version_requirements: !ruby/object:Gem::Requirement
|
79
65
|
requirements:
|
80
66
|
- - "~>"
|
81
67
|
- !ruby/object:Gem::Version
|
82
|
-
version: '
|
68
|
+
version: '13.0'
|
83
69
|
- !ruby/object:Gem::Dependency
|
84
70
|
name: pry
|
85
71
|
requirement: !ruby/object:Gem::Requirement
|
@@ -254,16 +240,16 @@ dependencies:
|
|
254
240
|
requirements:
|
255
241
|
- - "~>"
|
256
242
|
- !ruby/object:Gem::Version
|
257
|
-
version: '
|
243
|
+
version: '6.0'
|
258
244
|
type: :development
|
259
245
|
prerelease: false
|
260
246
|
version_requirements: !ruby/object:Gem::Requirement
|
261
247
|
requirements:
|
262
248
|
- - "~>"
|
263
249
|
- !ruby/object:Gem::Version
|
264
|
-
version: '
|
250
|
+
version: '6.0'
|
265
251
|
- !ruby/object:Gem::Dependency
|
266
|
-
name:
|
252
|
+
name: mechanize
|
267
253
|
requirement: !ruby/object:Gem::Requirement
|
268
254
|
requirements:
|
269
255
|
- - ">="
|
@@ -277,19 +263,33 @@ dependencies:
|
|
277
263
|
- !ruby/object:Gem::Version
|
278
264
|
version: '0'
|
279
265
|
- !ruby/object:Gem::Dependency
|
280
|
-
name:
|
266
|
+
name: sqlite3
|
281
267
|
requirement: !ruby/object:Gem::Requirement
|
282
268
|
requirements:
|
283
269
|
- - ">="
|
284
270
|
- !ruby/object:Gem::Version
|
285
|
-
version: 0
|
271
|
+
version: '0'
|
286
272
|
type: :development
|
287
273
|
prerelease: false
|
288
274
|
version_requirements: !ruby/object:Gem::Requirement
|
289
275
|
requirements:
|
290
276
|
- - ">="
|
291
277
|
- !ruby/object:Gem::Version
|
292
|
-
version: 0
|
278
|
+
version: '0'
|
279
|
+
- !ruby/object:Gem::Dependency
|
280
|
+
name: rubocop
|
281
|
+
requirement: !ruby/object:Gem::Requirement
|
282
|
+
requirements:
|
283
|
+
- - "~>"
|
284
|
+
- !ruby/object:Gem::Version
|
285
|
+
version: 0.49.0
|
286
|
+
type: :development
|
287
|
+
prerelease: false
|
288
|
+
version_requirements: !ruby/object:Gem::Requirement
|
289
|
+
requirements:
|
290
|
+
- - "~>"
|
291
|
+
- !ruby/object:Gem::Version
|
292
|
+
version: 0.49.0
|
293
293
|
- !ruby/object:Gem::Dependency
|
294
294
|
name: ruby-prof
|
295
295
|
requirement: !ruby/object:Gem::Requirement
|
@@ -332,6 +332,20 @@ dependencies:
|
|
332
332
|
- - ">="
|
333
333
|
- !ruby/object:Gem::Version
|
334
334
|
version: '0'
|
335
|
+
- !ruby/object:Gem::Dependency
|
336
|
+
name: webmock
|
337
|
+
requirement: !ruby/object:Gem::Requirement
|
338
|
+
requirements:
|
339
|
+
- - ">="
|
340
|
+
- !ruby/object:Gem::Version
|
341
|
+
version: '0'
|
342
|
+
type: :development
|
343
|
+
prerelease: false
|
344
|
+
version_requirements: !ruby/object:Gem::Requirement
|
345
|
+
requirements:
|
346
|
+
- - ">="
|
347
|
+
- !ruby/object:Gem::Version
|
348
|
+
version: '0'
|
335
349
|
- !ruby/object:Gem::Dependency
|
336
350
|
name: nokogiri
|
337
351
|
requirement: !ruby/object:Gem::Requirement
|
@@ -373,6 +387,7 @@ executables: []
|
|
373
387
|
extensions: []
|
374
388
|
extra_rdoc_files: []
|
375
389
|
files:
|
390
|
+
- ".github/ISSUE_TEMPLATE.md"
|
376
391
|
- ".gitignore"
|
377
392
|
- ".rspec"
|
378
393
|
- ".rspec_formatter.rb"
|
@@ -385,9 +400,11 @@ files:
|
|
385
400
|
- LICENSE
|
386
401
|
- README.md
|
387
402
|
- Rakefile
|
403
|
+
- ReleasePolicy.md
|
388
404
|
- benchmarks/TradeoffData.csv
|
389
405
|
- benchmarks/csv_reading.rb
|
390
406
|
- benchmarks/dataframe_creation.rb
|
407
|
+
- benchmarks/db_loading.rb
|
391
408
|
- benchmarks/duplicating.rb
|
392
409
|
- benchmarks/group_by.rb
|
393
410
|
- benchmarks/joining.rb
|
@@ -420,6 +437,7 @@ files:
|
|
420
437
|
- lib/daru/accessors/mdarray_wrapper.rb
|
421
438
|
- lib/daru/accessors/nmatrix_wrapper.rb
|
422
439
|
- lib/daru/category.rb
|
440
|
+
- lib/daru/configuration.rb
|
423
441
|
- lib/daru/core/group_by.rb
|
424
442
|
- lib/daru/core/merge.rb
|
425
443
|
- lib/daru/core/query.rb
|
@@ -428,19 +446,29 @@ files:
|
|
428
446
|
- lib/daru/date_time/offsets.rb
|
429
447
|
- lib/daru/exceptions.rb
|
430
448
|
- lib/daru/extensions/rserve.rb
|
449
|
+
- lib/daru/extensions/which_dsl.rb
|
431
450
|
- lib/daru/formatters/table.rb
|
432
451
|
- lib/daru/helpers/array.rb
|
433
452
|
- lib/daru/index/categorical_index.rb
|
434
453
|
- lib/daru/index/index.rb
|
435
454
|
- lib/daru/index/multi_index.rb
|
455
|
+
- lib/daru/io/csv/converters.rb
|
436
456
|
- lib/daru/io/io.rb
|
437
457
|
- lib/daru/io/sql_data_source.rb
|
438
458
|
- lib/daru/iruby/helpers.rb
|
439
459
|
- lib/daru/iruby/templates/dataframe.html.erb
|
440
460
|
- lib/daru/iruby/templates/dataframe_mi.html.erb
|
461
|
+
- lib/daru/iruby/templates/dataframe_mi_tbody.html.erb
|
462
|
+
- lib/daru/iruby/templates/dataframe_mi_thead.html.erb
|
463
|
+
- lib/daru/iruby/templates/dataframe_tbody.html.erb
|
464
|
+
- lib/daru/iruby/templates/dataframe_thead.html.erb
|
441
465
|
- lib/daru/iruby/templates/multi_index.html.erb
|
442
466
|
- lib/daru/iruby/templates/vector.html.erb
|
443
467
|
- lib/daru/iruby/templates/vector_mi.html.erb
|
468
|
+
- lib/daru/iruby/templates/vector_mi_tbody.html.erb
|
469
|
+
- lib/daru/iruby/templates/vector_mi_thead.html.erb
|
470
|
+
- lib/daru/iruby/templates/vector_tbody.html.erb
|
471
|
+
- lib/daru/iruby/templates/vector_thead.html.erb
|
444
472
|
- lib/daru/maths/arithmetic/dataframe.rb
|
445
473
|
- lib/daru/maths/arithmetic/vector.rb
|
446
474
|
- lib/daru/maths/statistics/dataframe.rb
|
@@ -462,6 +490,7 @@ files:
|
|
462
490
|
- profile/joining.rb
|
463
491
|
- profile/sorting.rb
|
464
492
|
- profile/vector_each_with_index.rb
|
493
|
+
- profile/vector_new.rb
|
465
494
|
- spec/accessors/array_wrapper_spec.rb
|
466
495
|
- spec/accessors/gsl_wrapper_spec.rb
|
467
496
|
- spec/accessors/nmatrix_wrapper_spec.rb
|
@@ -469,22 +498,37 @@ files:
|
|
469
498
|
- spec/core/group_by_spec.rb
|
470
499
|
- spec/core/merge_spec.rb
|
471
500
|
- spec/core/query_spec.rb
|
501
|
+
- spec/daru_spec.rb
|
472
502
|
- spec/dataframe_spec.rb
|
473
503
|
- spec/date_time/data_spec.rb
|
504
|
+
- spec/date_time/date_time_index_helper_spec.rb
|
474
505
|
- spec/date_time/index_spec.rb
|
475
506
|
- spec/date_time/offsets_spec.rb
|
476
507
|
- spec/extensions/rserve_spec.rb
|
508
|
+
- spec/extensions/which_dsl_spec.rb
|
477
509
|
- spec/fixtures/bank2.dat
|
510
|
+
- spec/fixtures/boolean_converter_test.csv
|
478
511
|
- spec/fixtures/countries.json
|
512
|
+
- spec/fixtures/duplicates.csv
|
513
|
+
- spec/fixtures/eciresults.html
|
479
514
|
- spec/fixtures/empties.dat
|
515
|
+
- spec/fixtures/empty_rows_test.csv
|
516
|
+
- spec/fixtures/macau.html
|
517
|
+
- spec/fixtures/macd_data.csv
|
480
518
|
- spec/fixtures/matrix_test.csv
|
519
|
+
- spec/fixtures/moneycontrol.html
|
481
520
|
- spec/fixtures/music_data.tsv
|
482
521
|
- spec/fixtures/repeated_fields.csv
|
483
522
|
- spec/fixtures/sales-funnel.csv
|
484
523
|
- spec/fixtures/scientific_notation.csv
|
485
|
-
- spec/fixtures/
|
524
|
+
- spec/fixtures/string_converter_test.csv
|
486
525
|
- spec/fixtures/strings.dat
|
487
526
|
- spec/fixtures/test_xls.xls
|
527
|
+
- spec/fixtures/test_xls_2.xls
|
528
|
+
- spec/fixtures/url_test.txt~
|
529
|
+
- spec/fixtures/valid_markup.html
|
530
|
+
- spec/fixtures/wiki_climate.html
|
531
|
+
- spec/fixtures/wiki_table_info.html
|
488
532
|
- spec/formatters/table_formatter_spec.rb
|
489
533
|
- spec/helpers_spec.rb
|
490
534
|
- spec/index/categorical_index_spec.rb
|
@@ -510,31 +554,13 @@ files:
|
|
510
554
|
- spec/shared/vector_display_spec.rb
|
511
555
|
- spec/spec_helper.rb
|
512
556
|
- spec/support/database_helper.rb
|
557
|
+
- spec/support/matchers.rb
|
513
558
|
- spec/vector_spec.rb
|
514
|
-
homepage: http://github.com/
|
559
|
+
homepage: http://github.com/SciRuby/daru
|
515
560
|
licenses:
|
516
561
|
- BSD-2
|
517
562
|
metadata: {}
|
518
|
-
post_install_message:
|
519
|
-
*************************************************************************
|
520
|
-
Thank you for installing daru!
|
521
|
-
|
522
|
-
oOOOOOo
|
523
|
-
,| oO
|
524
|
-
//| |
|
525
|
-
\\| |
|
526
|
-
`| |
|
527
|
-
`-----`
|
528
|
-
|
529
|
-
|
530
|
-
Hope you love daru! For enhanced interactivity and better visualizations,
|
531
|
-
consider using gnuplotrb and nyaplot with iruby. For statistics use the
|
532
|
-
statsample family.
|
533
|
-
|
534
|
-
Read the README for interesting use cases and examples.
|
535
|
-
|
536
|
-
Cheers!
|
537
|
-
*************************************************************************
|
563
|
+
post_install_message:
|
538
564
|
rdoc_options: []
|
539
565
|
require_paths:
|
540
566
|
- lib
|
@@ -549,8 +575,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
549
575
|
- !ruby/object:Gem::Version
|
550
576
|
version: '0'
|
551
577
|
requirements: []
|
552
|
-
|
553
|
-
rubygems_version: 2.6.8
|
578
|
+
rubygems_version: 3.1.2
|
554
579
|
signing_key:
|
555
580
|
specification_version: 4
|
556
581
|
summary: Data Analysis in RUby
|
@@ -562,22 +587,37 @@ test_files:
|
|
562
587
|
- spec/core/group_by_spec.rb
|
563
588
|
- spec/core/merge_spec.rb
|
564
589
|
- spec/core/query_spec.rb
|
590
|
+
- spec/daru_spec.rb
|
565
591
|
- spec/dataframe_spec.rb
|
566
592
|
- spec/date_time/data_spec.rb
|
593
|
+
- spec/date_time/date_time_index_helper_spec.rb
|
567
594
|
- spec/date_time/index_spec.rb
|
568
595
|
- spec/date_time/offsets_spec.rb
|
569
596
|
- spec/extensions/rserve_spec.rb
|
597
|
+
- spec/extensions/which_dsl_spec.rb
|
570
598
|
- spec/fixtures/bank2.dat
|
599
|
+
- spec/fixtures/boolean_converter_test.csv
|
571
600
|
- spec/fixtures/countries.json
|
601
|
+
- spec/fixtures/duplicates.csv
|
602
|
+
- spec/fixtures/eciresults.html
|
572
603
|
- spec/fixtures/empties.dat
|
604
|
+
- spec/fixtures/empty_rows_test.csv
|
605
|
+
- spec/fixtures/macau.html
|
606
|
+
- spec/fixtures/macd_data.csv
|
573
607
|
- spec/fixtures/matrix_test.csv
|
608
|
+
- spec/fixtures/moneycontrol.html
|
574
609
|
- spec/fixtures/music_data.tsv
|
575
610
|
- spec/fixtures/repeated_fields.csv
|
576
611
|
- spec/fixtures/sales-funnel.csv
|
577
612
|
- spec/fixtures/scientific_notation.csv
|
578
|
-
- spec/fixtures/
|
613
|
+
- spec/fixtures/string_converter_test.csv
|
579
614
|
- spec/fixtures/strings.dat
|
580
615
|
- spec/fixtures/test_xls.xls
|
616
|
+
- spec/fixtures/test_xls_2.xls
|
617
|
+
- spec/fixtures/url_test.txt~
|
618
|
+
- spec/fixtures/valid_markup.html
|
619
|
+
- spec/fixtures/wiki_climate.html
|
620
|
+
- spec/fixtures/wiki_table_info.html
|
581
621
|
- spec/formatters/table_formatter_spec.rb
|
582
622
|
- spec/helpers_spec.rb
|
583
623
|
- spec/index/categorical_index_spec.rb
|
@@ -603,4 +643,5 @@ test_files:
|
|
603
643
|
- spec/shared/vector_display_spec.rb
|
604
644
|
- spec/spec_helper.rb
|
605
645
|
- spec/support/database_helper.rb
|
646
|
+
- spec/support/matchers.rb
|
606
647
|
- spec/vector_spec.rb
|
@@ -1,500 +0,0 @@
|
|
1
|
-
17.66
|
2
|
-
17.65
|
3
|
-
17.68
|
4
|
-
17.66
|
5
|
-
17.68
|
6
|
-
17.67
|
7
|
-
17.68
|
8
|
-
17.68
|
9
|
-
17.67
|
10
|
-
17.67
|
11
|
-
17.68
|
12
|
-
17.71
|
13
|
-
17.74
|
14
|
-
17.72
|
15
|
-
17.73
|
16
|
-
17.76
|
17
|
-
17.74
|
18
|
-
17.69
|
19
|
-
17.69
|
20
|
-
17.67
|
21
|
-
17.66
|
22
|
-
17.67
|
23
|
-
17.69
|
24
|
-
17.69
|
25
|
-
17.68
|
26
|
-
17.65
|
27
|
-
17.65
|
28
|
-
17.64
|
29
|
-
17.63
|
30
|
-
17.64
|
31
|
-
17.67
|
32
|
-
17.68
|
33
|
-
17.7
|
34
|
-
17.68
|
35
|
-
17.69
|
36
|
-
17.69
|
37
|
-
17.72
|
38
|
-
17.71
|
39
|
-
17.71
|
40
|
-
17.71
|
41
|
-
17.69
|
42
|
-
17.69
|
43
|
-
17.71
|
44
|
-
17.72
|
45
|
-
17.71
|
46
|
-
17.68
|
47
|
-
17.68
|
48
|
-
17.68
|
49
|
-
17.69
|
50
|
-
17.68
|
51
|
-
17.68
|
52
|
-
17.69
|
53
|
-
17.67
|
54
|
-
17.69
|
55
|
-
17.71
|
56
|
-
17.7
|
57
|
-
17.7
|
58
|
-
17.71
|
59
|
-
17.73
|
60
|
-
17.74
|
61
|
-
17.74
|
62
|
-
17.74
|
63
|
-
17.76
|
64
|
-
17.77
|
65
|
-
17.55
|
66
|
-
17.55
|
67
|
-
17.5
|
68
|
-
17.46
|
69
|
-
17.49
|
70
|
-
17.54
|
71
|
-
17.51
|
72
|
-
17.54
|
73
|
-
17.57
|
74
|
-
17.54
|
75
|
-
17.52
|
76
|
-
17.53
|
77
|
-
17.56
|
78
|
-
17.55
|
79
|
-
17.55
|
80
|
-
17.54
|
81
|
-
17.55
|
82
|
-
17.55
|
83
|
-
17.55
|
84
|
-
17.54
|
85
|
-
17.52
|
86
|
-
17.53
|
87
|
-
17.51
|
88
|
-
17.52
|
89
|
-
17.5
|
90
|
-
17.5
|
91
|
-
17.5
|
92
|
-
17.49
|
93
|
-
17.46
|
94
|
-
17.47
|
95
|
-
17.48
|
96
|
-
17.45
|
97
|
-
17.41
|
98
|
-
17.39
|
99
|
-
17.38
|
100
|
-
17.43
|
101
|
-
17.44
|
102
|
-
17.43
|
103
|
-
17.43
|
104
|
-
17.46
|
105
|
-
17.46
|
106
|
-
17.47
|
107
|
-
17.47
|
108
|
-
17.45
|
109
|
-
17.48
|
110
|
-
17.49
|
111
|
-
17.5
|
112
|
-
17.49
|
113
|
-
17.48
|
114
|
-
17.49
|
115
|
-
17.47
|
116
|
-
17.47
|
117
|
-
17.44
|
118
|
-
17.44
|
119
|
-
17.43
|
120
|
-
17.45
|
121
|
-
17.42
|
122
|
-
17.43
|
123
|
-
17.43
|
124
|
-
17.44
|
125
|
-
17.44
|
126
|
-
17.43
|
127
|
-
17.41
|
128
|
-
17.41
|
129
|
-
17.38
|
130
|
-
17.38
|
131
|
-
17.37
|
132
|
-
17.37
|
133
|
-
17.37
|
134
|
-
17.3
|
135
|
-
17.28
|
136
|
-
17.27
|
137
|
-
17.19
|
138
|
-
16.41
|
139
|
-
16.44
|
140
|
-
16.48
|
141
|
-
16.53
|
142
|
-
16.51
|
143
|
-
16.57
|
144
|
-
16.54
|
145
|
-
16.59
|
146
|
-
16.64
|
147
|
-
16.6
|
148
|
-
16.65
|
149
|
-
16.69
|
150
|
-
16.69
|
151
|
-
16.68
|
152
|
-
16.64
|
153
|
-
16.65
|
154
|
-
16.66
|
155
|
-
16.64
|
156
|
-
16.61
|
157
|
-
16.65
|
158
|
-
16.67
|
159
|
-
16.66
|
160
|
-
16.65
|
161
|
-
16.61
|
162
|
-
16.59
|
163
|
-
16.57
|
164
|
-
16.55
|
165
|
-
16.55
|
166
|
-
16.57
|
167
|
-
16.54
|
168
|
-
16.6
|
169
|
-
16.62
|
170
|
-
16.6
|
171
|
-
16.59
|
172
|
-
16.61
|
173
|
-
16.66
|
174
|
-
16.69
|
175
|
-
16.67
|
176
|
-
16.65
|
177
|
-
16.66
|
178
|
-
16.65
|
179
|
-
16.65
|
180
|
-
16.68
|
181
|
-
16.68
|
182
|
-
16.67
|
183
|
-
16.64
|
184
|
-
16.73
|
185
|
-
16.76
|
186
|
-
16.75
|
187
|
-
16.79
|
188
|
-
16.8
|
189
|
-
16.77
|
190
|
-
16.74
|
191
|
-
16.76
|
192
|
-
16.83
|
193
|
-
16.84
|
194
|
-
16.82
|
195
|
-
16.89
|
196
|
-
16.93
|
197
|
-
16.94
|
198
|
-
16.9
|
199
|
-
16.92
|
200
|
-
16.88
|
201
|
-
16.85
|
202
|
-
16.87
|
203
|
-
16.8
|
204
|
-
16.79
|
205
|
-
16.85
|
206
|
-
16.85
|
207
|
-
16.8
|
208
|
-
16.82
|
209
|
-
16.85
|
210
|
-
16.9
|
211
|
-
16.86
|
212
|
-
16.79
|
213
|
-
16.75
|
214
|
-
16.78
|
215
|
-
17.06
|
216
|
-
17.05
|
217
|
-
17.04
|
218
|
-
17.02
|
219
|
-
17.01
|
220
|
-
17.02
|
221
|
-
17.05
|
222
|
-
17.07
|
223
|
-
17.08
|
224
|
-
17.09
|
225
|
-
17.1
|
226
|
-
17.11
|
227
|
-
17.09
|
228
|
-
17.1
|
229
|
-
17.1
|
230
|
-
17.12
|
231
|
-
17.17
|
232
|
-
17.16
|
233
|
-
17.17
|
234
|
-
17.18
|
235
|
-
17.18
|
236
|
-
17.18
|
237
|
-
17.17
|
238
|
-
17.15
|
239
|
-
17.14
|
240
|
-
17.13
|
241
|
-
17.14
|
242
|
-
17.13
|
243
|
-
17.12
|
244
|
-
17.12
|
245
|
-
17.09
|
246
|
-
17.09
|
247
|
-
17.11
|
248
|
-
17.06
|
249
|
-
17.07
|
250
|
-
17.06
|
251
|
-
17.07
|
252
|
-
17.06
|
253
|
-
17.09
|
254
|
-
17.05
|
255
|
-
17.04
|
256
|
-
17.04
|
257
|
-
16.99
|
258
|
-
17
|
259
|
-
17.03
|
260
|
-
17
|
261
|
-
16.97
|
262
|
-
16.96
|
263
|
-
16.98
|
264
|
-
16.98
|
265
|
-
16.98
|
266
|
-
17.03
|
267
|
-
17
|
268
|
-
17
|
269
|
-
17
|
270
|
-
17.02
|
271
|
-
17
|
272
|
-
17.02
|
273
|
-
17.01
|
274
|
-
17.02
|
275
|
-
17.03
|
276
|
-
17.03
|
277
|
-
17.01
|
278
|
-
17.03
|
279
|
-
17.03
|
280
|
-
17.03
|
281
|
-
17.01
|
282
|
-
17.03
|
283
|
-
17.05
|
284
|
-
17.05
|
285
|
-
17.08
|
286
|
-
17.04
|
287
|
-
17.01
|
288
|
-
17.03
|
289
|
-
17.02
|
290
|
-
17.03
|
291
|
-
17.04
|
292
|
-
17.05
|
293
|
-
17.37
|
294
|
-
17.35
|
295
|
-
17.34
|
296
|
-
17.32
|
297
|
-
17.29
|
298
|
-
17.29
|
299
|
-
17.22
|
300
|
-
17.26
|
301
|
-
17.3
|
302
|
-
17.34
|
303
|
-
17.33
|
304
|
-
17.39
|
305
|
-
17.4
|
306
|
-
17.39
|
307
|
-
17.48
|
308
|
-
17.5
|
309
|
-
17.47
|
310
|
-
17.43
|
311
|
-
17.4
|
312
|
-
17.42
|
313
|
-
17.46
|
314
|
-
17.48
|
315
|
-
17.48
|
316
|
-
17.46
|
317
|
-
17.46
|
318
|
-
17.45
|
319
|
-
17.43
|
320
|
-
17.44
|
321
|
-
17.48
|
322
|
-
17.43
|
323
|
-
17.45
|
324
|
-
17.47
|
325
|
-
17.46
|
326
|
-
17.46
|
327
|
-
17.48
|
328
|
-
17.48
|
329
|
-
17.48
|
330
|
-
17.46
|
331
|
-
17.5
|
332
|
-
17.55
|
333
|
-
17.58
|
334
|
-
17.57
|
335
|
-
17.56
|
336
|
-
17.59
|
337
|
-
17.61
|
338
|
-
17.62
|
339
|
-
17.63
|
340
|
-
17.62
|
341
|
-
17.61
|
342
|
-
17.61
|
343
|
-
17.62
|
344
|
-
17.64
|
345
|
-
17.65
|
346
|
-
17.61
|
347
|
-
17.62
|
348
|
-
17.66
|
349
|
-
17.65
|
350
|
-
17.64
|
351
|
-
17.63
|
352
|
-
17.64
|
353
|
-
17.64
|
354
|
-
17.64
|
355
|
-
17.63
|
356
|
-
17.61
|
357
|
-
17.61
|
358
|
-
17.62
|
359
|
-
17.63
|
360
|
-
17.64
|
361
|
-
17.65
|
362
|
-
17.66
|
363
|
-
17.68
|
364
|
-
17.69
|
365
|
-
17.69
|
366
|
-
17.69
|
367
|
-
17.66
|
368
|
-
17.69
|
369
|
-
17.69
|
370
|
-
17.62
|
371
|
-
17.68
|
372
|
-
17.64
|
373
|
-
17.65
|
374
|
-
17.61
|
375
|
-
17.52
|
376
|
-
17.56
|
377
|
-
17.55
|
378
|
-
17.55
|
379
|
-
17.48
|
380
|
-
17.45
|
381
|
-
17.46
|
382
|
-
17.46
|
383
|
-
17.44
|
384
|
-
17.47
|
385
|
-
17.5
|
386
|
-
17.49
|
387
|
-
17.5
|
388
|
-
17.53
|
389
|
-
17.53
|
390
|
-
17.54
|
391
|
-
17.51
|
392
|
-
17.51
|
393
|
-
17.53
|
394
|
-
17.53
|
395
|
-
17.53
|
396
|
-
17.55
|
397
|
-
17.55
|
398
|
-
17.54
|
399
|
-
17.56
|
400
|
-
17.59
|
401
|
-
17.57
|
402
|
-
17.58
|
403
|
-
17.58
|
404
|
-
17.57
|
405
|
-
17.59
|
406
|
-
17.57
|
407
|
-
17.55
|
408
|
-
17.51
|
409
|
-
17.51
|
410
|
-
17.52
|
411
|
-
17.52
|
412
|
-
17.53
|
413
|
-
17.55
|
414
|
-
17.59
|
415
|
-
17.61
|
416
|
-
17.61
|
417
|
-
17.6
|
418
|
-
17.6
|
419
|
-
17.62
|
420
|
-
17.65
|
421
|
-
17.62
|
422
|
-
17.6
|
423
|
-
17.6
|
424
|
-
17.62
|
425
|
-
17.61
|
426
|
-
17.62
|
427
|
-
17.63
|
428
|
-
17.64
|
429
|
-
17.65
|
430
|
-
17.61
|
431
|
-
17.62
|
432
|
-
17.64
|
433
|
-
17.63
|
434
|
-
17.62
|
435
|
-
17.6
|
436
|
-
17.57
|
437
|
-
17.57
|
438
|
-
17.6
|
439
|
-
17.59
|
440
|
-
17.6
|
441
|
-
17.61
|
442
|
-
17.61
|
443
|
-
17.63
|
444
|
-
17.63
|
445
|
-
17.59
|
446
|
-
17.58
|
447
|
-
17.76
|
448
|
-
17.79
|
449
|
-
17.76
|
450
|
-
17.73
|
451
|
-
17.74
|
452
|
-
17.73
|
453
|
-
17.67
|
454
|
-
17.66
|
455
|
-
17.66
|
456
|
-
17.64
|
457
|
-
17.63
|
458
|
-
17.62
|
459
|
-
17.61
|
460
|
-
17.6
|
461
|
-
17.61
|
462
|
-
17.61
|
463
|
-
17.6
|
464
|
-
17.6
|
465
|
-
17.64
|
466
|
-
17.65
|
467
|
-
17.65
|
468
|
-
17.63
|
469
|
-
17.61
|
470
|
-
17.6
|
471
|
-
17.63
|
472
|
-
17.63
|
473
|
-
17.62
|
474
|
-
17.63
|
475
|
-
17.64
|
476
|
-
17.62
|
477
|
-
17.63
|
478
|
-
17.65
|
479
|
-
17.64
|
480
|
-
17.6
|
481
|
-
17.59
|
482
|
-
17.59
|
483
|
-
17.58
|
484
|
-
17.58
|
485
|
-
17.6
|
486
|
-
17.6
|
487
|
-
17.6
|
488
|
-
17.6
|
489
|
-
17.6
|
490
|
-
17.58
|
491
|
-
17.59
|
492
|
-
17.6
|
493
|
-
17.6
|
494
|
-
17.6
|
495
|
-
17.59
|
496
|
-
17.59
|
497
|
-
17.58
|
498
|
-
17.58
|
499
|
-
17.65
|
500
|
-
17.65
|