json 1.1.5-x86-linux

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of json might be problematic. Click here for more details.

Files changed (117) hide show
  1. data/CHANGES +106 -0
  2. data/GPL +340 -0
  3. data/README +78 -0
  4. data/RUBY +58 -0
  5. data/Rakefile +268 -0
  6. data/TODO +1 -0
  7. data/VERSION +1 -0
  8. data/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkComparison.log +52 -0
  9. data/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_fast-autocorrelation.dat +1000 -0
  10. data/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_fast.dat +1001 -0
  11. data/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_pretty-autocorrelation.dat +900 -0
  12. data/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_pretty.dat +901 -0
  13. data/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_safe-autocorrelation.dat +1000 -0
  14. data/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_safe.dat +1001 -0
  15. data/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt.log +261 -0
  16. data/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_fast-autocorrelation.dat +1000 -0
  17. data/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_fast.dat +1001 -0
  18. data/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_pretty-autocorrelation.dat +1000 -0
  19. data/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_pretty.dat +1001 -0
  20. data/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_safe-autocorrelation.dat +1000 -0
  21. data/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_safe.dat +1001 -0
  22. data/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure.log +262 -0
  23. data/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails#generator-autocorrelation.dat +1000 -0
  24. data/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails#generator.dat +1001 -0
  25. data/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails.log +82 -0
  26. data/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkComparison.log +34 -0
  27. data/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt#parser-autocorrelation.dat +900 -0
  28. data/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt#parser.dat +901 -0
  29. data/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt.log +81 -0
  30. data/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure#parser-autocorrelation.dat +1000 -0
  31. data/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure#parser.dat +1001 -0
  32. data/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure.log +82 -0
  33. data/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails#parser-autocorrelation.dat +1000 -0
  34. data/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails#parser.dat +1001 -0
  35. data/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails.log +82 -0
  36. data/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML#parser-autocorrelation.dat +1000 -0
  37. data/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML#parser.dat +1001 -0
  38. data/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML.log +82 -0
  39. data/benchmarks/generator_benchmark.rb +165 -0
  40. data/benchmarks/parser_benchmark.rb +197 -0
  41. data/bin/edit_json.rb +9 -0
  42. data/bin/prettify_json.rb +75 -0
  43. data/data/example.json +1 -0
  44. data/data/index.html +38 -0
  45. data/data/prototype.js +4184 -0
  46. data/doc-templates/main.txt +283 -0
  47. data/ext/json/ext/generator/extconf.rb +11 -0
  48. data/ext/json/ext/generator/generator.c +919 -0
  49. data/ext/json/ext/generator/unicode.c +182 -0
  50. data/ext/json/ext/generator/unicode.h +53 -0
  51. data/ext/json/ext/parser/extconf.rb +11 -0
  52. data/ext/json/ext/parser/parser.c +1829 -0
  53. data/ext/json/ext/parser/parser.rl +686 -0
  54. data/ext/json/ext/parser/unicode.c +154 -0
  55. data/ext/json/ext/parser/unicode.h +58 -0
  56. data/install.rb +26 -0
  57. data/lib/json.rb +10 -0
  58. data/lib/json/Array.xpm +21 -0
  59. data/lib/json/FalseClass.xpm +21 -0
  60. data/lib/json/Hash.xpm +21 -0
  61. data/lib/json/Key.xpm +73 -0
  62. data/lib/json/NilClass.xpm +21 -0
  63. data/lib/json/Numeric.xpm +28 -0
  64. data/lib/json/String.xpm +96 -0
  65. data/lib/json/TrueClass.xpm +21 -0
  66. data/lib/json/add/core.rb +135 -0
  67. data/lib/json/add/rails.rb +58 -0
  68. data/lib/json/common.rb +354 -0
  69. data/lib/json/editor.rb +1371 -0
  70. data/lib/json/ext.rb +15 -0
  71. data/lib/json/ext/generator.so +0 -0
  72. data/lib/json/ext/parser.so +0 -0
  73. data/lib/json/json.xpm +1499 -0
  74. data/lib/json/pure.rb +77 -0
  75. data/lib/json/pure/generator.rb +430 -0
  76. data/lib/json/pure/parser.rb +267 -0
  77. data/lib/json/version.rb +8 -0
  78. data/tests/fixtures/fail1.json +1 -0
  79. data/tests/fixtures/fail10.json +1 -0
  80. data/tests/fixtures/fail11.json +1 -0
  81. data/tests/fixtures/fail12.json +1 -0
  82. data/tests/fixtures/fail13.json +1 -0
  83. data/tests/fixtures/fail14.json +1 -0
  84. data/tests/fixtures/fail18.json +1 -0
  85. data/tests/fixtures/fail19.json +1 -0
  86. data/tests/fixtures/fail2.json +1 -0
  87. data/tests/fixtures/fail20.json +1 -0
  88. data/tests/fixtures/fail21.json +1 -0
  89. data/tests/fixtures/fail22.json +1 -0
  90. data/tests/fixtures/fail23.json +1 -0
  91. data/tests/fixtures/fail24.json +1 -0
  92. data/tests/fixtures/fail25.json +1 -0
  93. data/tests/fixtures/fail27.json +2 -0
  94. data/tests/fixtures/fail28.json +2 -0
  95. data/tests/fixtures/fail3.json +1 -0
  96. data/tests/fixtures/fail4.json +1 -0
  97. data/tests/fixtures/fail5.json +1 -0
  98. data/tests/fixtures/fail6.json +1 -0
  99. data/tests/fixtures/fail7.json +1 -0
  100. data/tests/fixtures/fail8.json +1 -0
  101. data/tests/fixtures/fail9.json +1 -0
  102. data/tests/fixtures/pass1.json +56 -0
  103. data/tests/fixtures/pass15.json +1 -0
  104. data/tests/fixtures/pass16.json +1 -0
  105. data/tests/fixtures/pass17.json +1 -0
  106. data/tests/fixtures/pass2.json +1 -0
  107. data/tests/fixtures/pass26.json +1 -0
  108. data/tests/fixtures/pass3.json +6 -0
  109. data/tests/test_json.rb +312 -0
  110. data/tests/test_json_addition.rb +164 -0
  111. data/tests/test_json_fixtures.rb +34 -0
  112. data/tests/test_json_generate.rb +106 -0
  113. data/tests/test_json_rails.rb +146 -0
  114. data/tests/test_json_unicode.rb +62 -0
  115. data/tools/fuzz.rb +139 -0
  116. data/tools/server.rb +61 -0
  117. metadata +200 -0
@@ -0,0 +1,262 @@
1
+ ========================== 2009-04-01T16:50:52 CEST ===========================
2
+ Benchmarking on ruby 1.8.6 (2008-08-11 patchlevel 287) [i686-linux].
3
+ Running 'GeneratorBenchmarkPure' for 1000 iterations/method (compare_time=real)
4
+ ===============================================================================
5
+
6
+ This first run is only for warmup.
7
+ GeneratorBenchmarkPure#generator_pretty:
8
+ real total user system
9
+ sum 27.356301069 27.380000000 27.370000000 0.010000000
10
+ min 0.022372007 0.020000000 0.020000000 0.000000000
11
+ std- 0.018178834 0.017248947 0.017256376 -0.000306228
12
+ mean 0.027356301 0.027380000 0.027370000 0.000010000
13
+ std+ 0.036533768 0.037511053 0.037483624 0.000326228
14
+ max 0.059602976 0.060000000 0.060000000 0.010000000
15
+ std 0.009177467 0.010131053 0.010113624 0.000316228
16
+ std% 33.547909026 37.001655096 36.951493429 3162.277660168
17
+ harm 0.025499974 0.024719842 0.024716787 nan
18
+ geo 0.026258699 0.025883656 0.025877881 0.000000000
19
+ q1 0.023006916 0.020000000 0.020000000 0.000000000
20
+ med 0.023234129 0.020000000 0.020000000 0.000000000
21
+ q3 0.024879038 0.030000000 0.030000000 0.000000000
22
+ 1000 36.55465 0.027356301
23
+ calls calls/sec secs/call
24
+
25
+ 0.05774 -|
26
+ 0.05402 -|*
27
+ 0.05030 -|****
28
+ 0.04657 -|***
29
+ 0.04285 -|
30
+ 0.03913 -|
31
+ 0.03540 -|
32
+ 0.03168 -|*
33
+ 0.02796 -|***
34
+ 0.02423 -|**************************************************
35
+
36
+ Outliers detected with box plot algo (median=0.02323, iqr=0.00187, factor=3.00):
37
+ high=72 very_high=150
38
+
39
+ Ljung-Box statistics: q=3705.61130 (alpha=0.05, df=50).
40
+ 1.00000 >= 0.95000 => Autocorrelation was detected.
41
+
42
+ GeneratorBenchmarkPure#generator_pretty:
43
+ real total user system
44
+ sum 27.569372892 27.540000000 27.530000000 0.010000000
45
+ min 0.022536039 0.020000000 0.020000000 0.000000000
46
+ std- 0.018335894 0.017329581 0.017326902 -0.000306228
47
+ mean 0.027569373 0.027540000 0.027530000 0.000010000
48
+ std+ 0.036802852 0.037750419 0.037733098 0.000326228
49
+ max 0.056230068 0.060000000 0.060000000 0.010000000
50
+ std 0.009233479 0.010210419 0.010203098 0.000316228
51
+ std% 33.491797772 37.074868658 37.061742557 3162.277660168
52
+ harm 0.025675439 0.024841635 0.024836493 nan
53
+ geo 0.026453993 0.026024721 0.026017235 0.000000000
54
+ q1 0.023056030 0.020000000 0.020000000 0.000000000
55
+ med 0.023363113 0.020000000 0.020000000 0.000000000
56
+ q3 0.025253892 0.030000000 0.030000000 0.000000000
57
+ 1000 36.27213 0.027569373
58
+ calls calls/sec secs/call
59
+
60
+ 0.05455 -|*
61
+ 0.05118 -|**
62
+ 0.04781 -|******
63
+ 0.04444 -|
64
+ 0.04107 -|
65
+ 0.03770 -|
66
+ 0.03433 -|
67
+ 0.03096 -|*
68
+ 0.02759 -|*****
69
+ 0.02422 -|**************************************************
70
+
71
+ Outliers detected with box plot algo (median=0.02336, iqr=0.00220, factor=3.00):
72
+ high=67 very_high=148
73
+
74
+ Ljung-Box statistics: q=3212.48820 (alpha=0.05, df=50).
75
+ 1.00000 >= 0.95000 => Autocorrelation was detected.
76
+
77
+ No initial data truncated.
78
+ => System may have been in a steady state from the beginning.
79
+ -------------------------------------------------------------------------------
80
+
81
+ This first run is only for warmup.
82
+ GeneratorBenchmarkPure#generator_safe:
83
+ real total user system
84
+ sum 26.869803667 26.870000000 26.870000000 0.000000000
85
+ min 0.022134781 0.020000000 0.020000000 0.000000000
86
+ std- 0.017763505 0.016750439 0.016750439 0.000000000
87
+ mean 0.026869804 0.026870000 0.026870000 0.000000000
88
+ std+ 0.035976103 0.036989561 0.036989561 0.000000000
89
+ max 0.054952860 0.060000000 0.060000000 0.000000000
90
+ std 0.009106299 0.010119561 0.010119561 0.000000000
91
+ std% 33.890455748 37.661185483 37.661185483 nan
92
+ harm 0.024986876 0.024236549 0.024236549 nan
93
+ geo 0.025759291 0.025373850 0.025373850 0.000000000
94
+ q1 0.022480011 0.020000000 0.020000000 0.000000000
95
+ med 0.022669554 0.020000000 0.020000000 0.000000000
96
+ q3 0.024562180 0.030000000 0.030000000 0.000000000
97
+ 1000 37.21650 0.026869804
98
+ calls calls/sec secs/call
99
+
100
+ 0.05331 -|*
101
+ 0.05003 -|**
102
+ 0.04675 -|*******
103
+ 0.04347 -|
104
+ 0.04018 -|
105
+ 0.03690 -|
106
+ 0.03362 -|
107
+ 0.03034 -|*
108
+ 0.02706 -|****
109
+ 0.02378 -|**************************************************
110
+
111
+ Outliers detected with box plot algo (median=0.02267, iqr=0.00208, factor=3.00):
112
+ high=77 very_high=149
113
+
114
+ Ljung-Box statistics: q=3100.69443 (alpha=0.05, df=50).
115
+ 1.00000 >= 0.95000 => Autocorrelation was detected.
116
+
117
+ GeneratorBenchmarkPure#generator_safe:
118
+ real total user system
119
+ sum 27.079979420 27.040000000 27.030000000 0.010000000
120
+ min 0.022160053 0.020000000 0.020000000 0.000000000
121
+ std- 0.017839790 0.016756803 0.016774061 -0.000306228
122
+ mean 0.027079979 0.027040000 0.027030000 0.000010000
123
+ std+ 0.036320169 0.037323197 0.037285939 0.000326228
124
+ max 0.056457043 0.060000000 0.060000000 0.010000000
125
+ std 0.009240189 0.010283197 0.010255939 0.000316228
126
+ std% 34.121847738 38.029575352 37.942800504 3162.277660168
127
+ harm 0.025134510 0.024331887 0.024329914 nan
128
+ geo 0.025935574 0.025501913 0.025497264 0.000000000
129
+ q1 0.022511005 0.020000000 0.020000000 0.000000000
130
+ med 0.022763968 0.020000000 0.020000000 0.000000000
131
+ q3 0.024686873 0.030000000 0.030000000 0.000000000
132
+ 1000 36.92765 0.027079979
133
+ calls calls/sec secs/call
134
+
135
+ 0.05474 -|
136
+ 0.05131 -|*
137
+ 0.04788 -|********
138
+ 0.04445 -|
139
+ 0.04102 -|
140
+ 0.03759 -|
141
+ 0.03416 -|
142
+ 0.03073 -|*
143
+ 0.02730 -|***
144
+ 0.02387 -|**************************************************
145
+
146
+ Outliers detected with box plot algo (median=0.02276, iqr=0.00218, factor=3.00):
147
+ high=53 very_high=158
148
+
149
+ Ljung-Box statistics: q=3263.81737 (alpha=0.05, df=50).
150
+ 1.00000 >= 0.95000 => Autocorrelation was detected.
151
+
152
+ No initial data truncated.
153
+ => System may have been in a steady state from the beginning.
154
+ -------------------------------------------------------------------------------
155
+
156
+ This first run is only for warmup.
157
+ GeneratorBenchmarkPure#generator_fast:
158
+ real total user system
159
+ sum 19.930217266 19.900000000 19.900000000 0.000000000
160
+ min 0.015556812 0.010000000 0.010000000 0.000000000
161
+ std- 0.010984683 0.009865525 0.009865525 0.000000000
162
+ mean 0.019930217 0.019900000 0.019900000 0.000000000
163
+ std+ 0.028875752 0.029934475 0.029934475 0.000000000
164
+ max 0.048508883 0.050000000 0.050000000 0.000000000
165
+ std 0.008945535 0.010034475 0.010034475 0.000000000
166
+ std% 44.884280314 50.424498030 50.424498030 nan
167
+ harm 0.017806422 0.016056519 0.016056519 nan
168
+ geo 0.018618502 0.017792091 0.017792091 0.000000000
169
+ q1 0.015833676 0.010000000 0.010000000 0.000000000
170
+ med 0.016059995 0.020000000 0.020000000 0.000000000
171
+ q3 0.016686678 0.020000000 0.020000000 0.000000000
172
+ 1000 50.17507 0.019930217
173
+ calls calls/sec secs/call
174
+
175
+ 0.04686 -|
176
+ 0.04357 -|**
177
+ 0.04027 -|******
178
+ 0.03698 -|
179
+ 0.03368 -|
180
+ 0.03039 -|
181
+ 0.02709 -|
182
+ 0.02379 -|*
183
+ 0.02050 -|**
184
+ 0.01720 -|**************************************************
185
+
186
+ Outliers detected with box plot algo (median=0.01606, iqr=0.00085, factor=3.00):
187
+ high=46 very_high=180
188
+
189
+ Ljung-Box statistics: q=3486.59836 (alpha=0.05, df=50).
190
+ 1.00000 >= 0.95000 => Autocorrelation was detected.
191
+
192
+ GeneratorBenchmarkPure#generator_fast:
193
+ real total user system
194
+ sum 20.008520842 19.960000000 19.950000000 0.010000000
195
+ min 0.015434027 0.010000000 0.010000000 0.000000000
196
+ std- 0.010882230 0.009581845 0.009596030 -0.000306228
197
+ mean 0.020008521 0.019960000 0.019950000 0.000010000
198
+ std+ 0.029134812 0.030338155 0.030303970 0.000326228
199
+ max 0.047976971 0.050000000 0.050000000 0.010000000
200
+ std 0.009126291 0.010378155 0.010353970 0.000316228
201
+ std% 45.612021047 51.994765712 51.899601404 3162.277660168
202
+ harm 0.017787111 0.015944725 0.015943454 nan
203
+ geo 0.018637889 0.017737808 0.017733851 0.000000000
204
+ q1 0.015746295 0.010000000 0.010000000 0.000000000
205
+ med 0.015944481 0.020000000 0.020000000 0.000000000
206
+ q3 0.016811609 0.020000000 0.020000000 0.000000000
207
+ 1000 49.97871 0.020008521
208
+ calls calls/sec secs/call
209
+
210
+ 0.04635 -|*
211
+ 0.04310 -|**
212
+ 0.03984 -|*******
213
+ 0.03659 -|
214
+ 0.03333 -|
215
+ 0.03008 -|
216
+ 0.02682 -|
217
+ 0.02357 -|
218
+ 0.02032 -|***
219
+ 0.01706 -|**************************************************
220
+
221
+ Outliers detected with box plot algo (median=0.01594, iqr=0.00107, factor=3.00):
222
+ high=64 very_high=166
223
+
224
+ Ljung-Box statistics: q=2965.93220 (alpha=0.05, df=50).
225
+ 1.00000 >= 0.95000 => Autocorrelation was detected.
226
+
227
+ No initial data truncated.
228
+ => System may have been in a steady state from the beginning.
229
+ ========================== 2009-04-01T16:53:33 CEST ===========================
230
+
231
+ Comparing times (call_time_mean):
232
+ 1 GeneratorBenchmarkPure#generator_fast 1000 repeats:
233
+ 49.978706968 ( real) -> 1.378x
234
+ 0.020008521
235
+ 2 GeneratorBenchmarkPure#generator_safe 1000 repeats:
236
+ 36.927649925 ( real) -> 1.018x 3 (>=3859)
237
+ 0.027079979
238
+ 3 GeneratorBenchmarkPure#generator_pretty 1000 repeats:
239
+ 36.272134441 ( real) -> 1.000x 2 (>=3859)
240
+ 0.027569373
241
+ calls/sec ( time) -> speed covers
242
+ secs/call
243
+
244
+ Comparing times (call_time_median):
245
+ 1 GeneratorBenchmarkPure#generator_fast 1000 repeats:
246
+ 62.717626652 ( real) -> 1.465x
247
+ 0.015944481
248
+ 2 GeneratorBenchmarkPure#generator_safe 1000 repeats:
249
+ 43.929073409 ( real) -> 1.026x 3 (>=3859)
250
+ 0.022763968
251
+ 3 GeneratorBenchmarkPure#generator_pretty 1000 repeats:
252
+ 42.802514491 ( real) -> 1.000x 2 (>=3859)
253
+ 0.023363113
254
+ calls/sec ( time) -> speed covers
255
+ secs/call
256
+ ===============================================================================
257
+ Writing measurement data file '/data/scm/json/benchmarks/data/GeneratorBenchmarkPure#generator_pretty.dat'.
258
+ Writing autocorrelation plot file '/data/scm/json/benchmarks/data/GeneratorBenchmarkPure#generator_pretty-autocorrelation.dat'.
259
+ Writing measurement data file '/data/scm/json/benchmarks/data/GeneratorBenchmarkPure#generator_safe.dat'.
260
+ Writing autocorrelation plot file '/data/scm/json/benchmarks/data/GeneratorBenchmarkPure#generator_safe-autocorrelation.dat'.
261
+ Writing measurement data file '/data/scm/json/benchmarks/data/GeneratorBenchmarkPure#generator_fast.dat'.
262
+ Writing autocorrelation plot file '/data/scm/json/benchmarks/data/GeneratorBenchmarkPure#generator_fast-autocorrelation.dat'.
@@ -0,0 +1,1000 @@
1
+ #lag autocorrelation
2
+ 1 1.0
3
+ 2 -0.0465724627546347
4
+ 3 -0.0538491011993629
5
+ 4 -0.0538837516678858
6
+ 5 -0.0581087152880847
7
+ 6 -0.0572986418232159
8
+ 7 -0.0599999756465123
9
+ 8 -0.068646253651936
10
+ 9 -0.0748373181827194
11
+ 10 -0.0762302382502274
12
+ 11 -0.0698190157504385
13
+ 12 -0.0638026172211339
14
+ 13 -0.056269249634719
15
+ 14 -0.0567327382445349
16
+ 15 -0.0596771394790282
17
+ 16 -0.054002423139168
18
+ 17 -0.0490317335722634
19
+ 18 0.461538736857567
20
+ 19 0.45915885478734
21
+ 20 -0.0465031134094806
22
+ 21 -0.0522729893812941
23
+ 22 -0.0556508820670087
24
+ 23 -0.0550082280116714
25
+ 24 -0.0545719306525113
26
+ 25 -0.0657168876641937
27
+ 26 -0.0693857874047984
28
+ 27 -0.0792986072802413
29
+ 28 -0.0733338236920328
30
+ 29 -0.0654333815670565
31
+ 30 -0.0571917436864775
32
+ 31 -0.0526717459233624
33
+ 32 -0.0557521787108153
34
+ 33 -0.0549975758505058
35
+ 34 -0.0517415749303995
36
+ 35 0.0235297603781655
37
+ 36 0.804189593789118
38
+ 37 0.0278204967070628
39
+ 38 -0.050024141489799
40
+ 39 -0.0518095926145569
41
+ 40 -0.0452419084747306
42
+ 41 -0.0508505065460828
43
+ 42 -0.0630761219578647
44
+ 43 -0.062815338541251
45
+ 44 -0.0772705590073707
46
+ 45 -0.0729125138410514
47
+ 46 -0.0718320579999123
48
+ 47 -0.0607354760752678
49
+ 48 -0.0537362276786008
50
+ 49 -0.0486777895346357
51
+ 50 -0.0554247873222313
52
+ 51 -0.0511645855928409
53
+ 52 -0.0466004298363093
54
+ 53 0.459873350367521
55
+ 54 0.424472275070108
56
+ 55 -0.0487047547824375
57
+ 56 -0.0545283173980978
58
+ 57 -0.0480870048405532
59
+ 58 -0.0558758950923908
60
+ 59 -0.0508952051704444
61
+ 60 -0.0620003778190341
62
+ 61 -0.0676424010473159
63
+ 62 -0.0753766989500048
64
+ 63 -0.0695341618321725
65
+ 64 -0.0663751431467297
66
+ 65 -0.0563170232338965
67
+ 66 -0.053655761264179
68
+ 67 -0.0530055660822738
69
+ 68 -0.0517420323264873
70
+ 69 -0.0456703115975304
71
+ 70 0.103335608865948
72
+ 71 0.639961232446673
73
+ 72 0.0835611643585718
74
+ 73 -0.0505874487567197
75
+ 74 -0.0544864827038179
76
+ 75 -0.05268470170316
77
+ 76 -0.0471381749128569
78
+ 77 -0.0587367141040808
79
+ 78 -0.0594188669128526
80
+ 79 -0.0650917021991912
81
+ 80 -0.068525580194848
82
+ 81 -0.0720464392408628
83
+ 82 -0.0530371585210882
84
+ 83 -0.0594974405056426
85
+ 84 -0.0468462249568105
86
+ 85 -0.0556729861678099
87
+ 86 -0.0486685569511801
88
+ 87 -0.0231831809211586
89
+ 88 0.412151261252192
90
+ 89 0.427286596751845
91
+ 90 -0.0468484487476343
92
+ 91 -0.0513065750413643
93
+ 92 -0.0506460103589642
94
+ 93 -0.0523040710285122
95
+ 94 -0.0553864194240335
96
+ 95 -0.0624298273708398
97
+ 96 -0.0629408163122051
98
+ 97 -0.0704192947779158
99
+ 98 -0.0661863417422444
100
+ 99 -0.0616198727092325
101
+ 100 -0.0549440862832691
102
+ 101 -0.0493100463446785
103
+ 102 -0.0513058903561152
104
+ 103 -0.0546567629566328
105
+ 104 -0.0447767089062448
106
+ 105 0.155994950171604
107
+ 106 0.499983838989633
108
+ 107 0.146752854694195
109
+ 108 -0.0499527760238258
110
+ 109 -0.0481994338837686
111
+ 110 -0.0507971256336303
112
+ 111 -0.053242725247733
113
+ 112 -0.0556340421399292
114
+ 113 -0.0659043126583437
115
+ 114 -0.0664898553672703
116
+ 115 -0.0623446272778118
117
+ 116 -0.0661076782182718
118
+ 117 -0.0496402401287781
119
+ 118 -0.0494603231236963
120
+ 119 -0.04785210230028
121
+ 120 -0.0549514395062738
122
+ 121 -0.0457893865901791
123
+ 122 0.0107718727916323
124
+ 123 0.354591871972286
125
+ 124 0.378214524188427
126
+ 125 -0.00576473785992366
127
+ 126 -0.0475263414095933
128
+ 127 -0.0467032507959455
129
+ 128 -0.0492439340398371
130
+ 129 -0.0553725291795042
131
+ 130 -0.0588373348224932
132
+ 131 -0.0653802923166691
133
+ 132 -0.065420878560692
134
+ 133 -0.0664825458346486
135
+ 134 -0.0585794787867471
136
+ 135 -0.0526654847715212
137
+ 136 -0.0458834268571694
138
+ 137 -0.0488834733479998
139
+ 138 -0.0484626462105708
140
+ 139 -0.0459832096817391
141
+ 140 0.217115969208045
142
+ 141 0.366645152379531
143
+ 142 0.180037374351014
144
+ 143 -0.0470069302868867
145
+ 144 -0.0448016085636167
146
+ 145 -0.0480964372087658
147
+ 146 -0.047581587974722
148
+ 147 -0.0542737921731714
149
+ 148 -0.0616712591015281
150
+ 149 -0.0645264998964167
151
+ 150 -0.0660893063296893
152
+ 151 -0.0626040533901412
153
+ 152 -0.0563401748225009
154
+ 153 -0.0489872324179382
155
+ 154 -0.0416660137613489
156
+ 155 -0.0474153625982119
157
+ 156 -0.0429322203344692
158
+ 157 0.0758981518142605
159
+ 158 0.280022168317631
160
+ 159 0.322388389335567
161
+ 160 0.029741268314489
162
+ 161 -0.0477650431020993
163
+ 162 -0.0450492975581489
164
+ 163 -0.0437136320420844
165
+ 164 -0.0525847472537078
166
+ 165 -0.0545773291954165
167
+ 166 -0.0605617971026816
168
+ 167 -0.0604174493574271
169
+ 168 -0.0668887082049361
170
+ 169 -0.0569988719330788
171
+ 170 -0.0531317736158737
172
+ 171 -0.0453847330038626
173
+ 172 -0.0478811645968217
174
+ 173 -0.0490973206952072
175
+ 174 -0.0208865958962374
176
+ 175 0.219799921570466
177
+ 176 0.281455499801039
178
+ 177 0.217413022569843
179
+ 178 -0.0472411753883375
180
+ 179 -0.0420519413404592
181
+ 180 -0.0503599257085886
182
+ 181 -0.0460149167014056
183
+ 182 -0.0525935089624673
184
+ 183 -0.058565014679309
185
+ 184 -0.0597480380605469
186
+ 185 -0.0594067588886417
187
+ 186 -0.0596129671442577
188
+ 187 -0.0532084985745771
189
+ 188 -0.0488672523172161
190
+ 189 -0.0467425993035773
191
+ 190 -0.047469398929737
192
+ 191 -0.0478812995202321
193
+ 192 0.113496325641223
194
+ 193 0.235261527843186
195
+ 194 0.274288512637064
196
+ 195 0.0686558749507578
197
+ 196 -0.0421890074761181
198
+ 197 -0.0462774420288975
199
+ 198 -0.0436343780463106
200
+ 199 -0.0526745158526506
201
+ 200 -0.0530085997416379
202
+ 201 -0.0595766365030657
203
+ 202 -0.0527520859095327
204
+ 203 -0.0617844575573737
205
+ 204 -0.0533732516707478
206
+ 205 -0.0475406344908671
207
+ 206 -0.0448557657939025
208
+ 207 -0.0491813452587493
209
+ 208 -0.0465215540303466
210
+ 209 0.0129885978681198
211
+ 210 0.18048531357979
212
+ 211 0.232613590605931
213
+ 212 0.216739579303611
214
+ 213 -0.0198642765598399
215
+ 214 -0.0414628173858397
216
+ 215 -0.0446070145491157
217
+ 216 -0.0466847454519845
218
+ 217 -0.0516226742873491
219
+ 218 -0.0545361970917439
220
+ 219 -0.0613148091516843
221
+ 220 -0.055072960413915
222
+ 221 -0.0570761596774525
223
+ 222 -0.0495753919838192
224
+ 223 -0.044640513821499
225
+ 224 -0.0405018327822807
226
+ 225 -0.0466702636420172
227
+ 226 -0.0430523088898141
228
+ 227 0.125260003795363
229
+ 228 0.191674753632075
230
+ 229 0.237532651857125
231
+ 230 0.0874635279713366
232
+ 231 -0.0384027504022232
233
+ 232 -0.0385130011851906
234
+ 233 -0.0369193020542282
235
+ 234 -0.0515458512947041
236
+ 235 -0.050306447453753
237
+ 236 -0.0581741159838659
238
+ 237 -0.052999201910556
239
+ 238 -0.0589658237786291
240
+ 239 -0.0514526377102802
241
+ 240 -0.0466869399159385
242
+ 241 -0.0380841759966984
243
+ 242 -0.0453267873931886
244
+ 243 -0.0425000608264673
245
+ 244 0.0366267109959152
246
+ 245 0.160369979130273
247
+ 246 0.196676462412679
248
+ 247 0.196963399648668
249
+ 248 -0.00269284361330376
250
+ 249 -0.0432567847711532
251
+ 250 -0.038260742578146
252
+ 251 -0.0448624744088596
253
+ 252 -0.0455503391926038
254
+ 253 -0.0532191861758754
255
+ 254 -0.0548508398385335
256
+ 255 -0.0555442566058335
257
+ 256 -0.0526918597919155
258
+ 257 -0.0496453707825256
259
+ 258 -0.0463836479193388
260
+ 259 -0.0379199031664589
261
+ 260 -0.043979755952542
262
+ 261 -0.0385836044654481
263
+ 262 0.148383243382033
264
+ 263 0.160888203514488
265
+ 264 0.201083269668142
266
+ 265 0.101463931607865
267
+ 266 -0.0389240581250844
268
+ 267 -0.043318710806698
269
+ 268 -0.0360099743646708
270
+ 269 -0.0479594556724686
271
+ 270 -0.0461272027080179
272
+ 271 -0.0510551768794275
273
+ 272 -0.0463026057033333
274
+ 273 -0.0586300566668458
275
+ 274 -0.0481537987530518
276
+ 275 -0.0467240944281063
277
+ 276 -0.0388278648519038
278
+ 277 -0.0438740084909164
279
+ 278 -0.0404201849366918
280
+ 279 0.0573087818198142
281
+ 280 0.149625568374594
282
+ 281 0.165251996461555
283
+ 282 0.180497909191808
284
+ 283 0.0141274252706337
285
+ 284 -0.0433910523077124
286
+ 285 -0.0353327138881179
287
+ 286 -0.04407012419326
288
+ 287 -0.0472875341495554
289
+ 288 -0.0500154039913527
290
+ 289 -0.0489059070454218
291
+ 290 -0.0523175481803876
292
+ 291 -0.0483438070974799
293
+ 292 -0.0465391341735897
294
+ 293 -0.0443706893358358
295
+ 294 -0.0383212232736209
296
+ 295 -0.0439923509231612
297
+ 296 -0.0179530530333497
298
+ 297 0.126953953852207
299
+ 298 0.148073497780274
300
+ 299 0.169463284775491
301
+ 300 0.12460981401008
302
+ 301 -0.0384433337210392
303
+ 302 -0.037574676038055
304
+ 303 -0.0373312294892246
305
+ 304 -0.0476939816787347
306
+ 305 -0.0485476034606885
307
+ 306 -0.053203479537681
308
+ 307 -0.0432695529453645
309
+ 308 -0.0531581165281506
310
+ 309 -0.0433332891054256
311
+ 310 -0.0406621361812071
312
+ 311 -0.0336785273069936
313
+ 312 -0.0450892345419585
314
+ 313 -0.0372803722726718
315
+ 314 0.0747413637301572
316
+ 315 0.12838403521187
317
+ 316 0.131273451158583
318
+ 317 0.165634916670676
319
+ 318 0.0393574762093495
320
+ 319 -0.0400219462092557
321
+ 320 -0.0321130988518114
322
+ 321 -0.0426329631110547
323
+ 322 -0.0472021330054887
324
+ 323 -0.0510884361963381
325
+ 324 -0.0451526836510229
326
+ 325 -0.0497432174259365
327
+ 326 -0.0494924567626408
328
+ 327 -0.0426445357005891
329
+ 328 -0.0399977780929692
330
+ 329 -0.035075954620801
331
+ 330 -0.0398937379838232
332
+ 331 0.00141601747607724
333
+ 332 0.111237045799794
334
+ 333 0.129781753698161
335
+ 334 0.148823429538605
336
+ 335 0.111428704849097
337
+ 336 -0.0189114212837953
338
+ 337 -0.0358144500870447
339
+ 338 -0.0338893528609611
340
+ 339 -0.04156202524001
341
+ 340 -0.0476279047622513
342
+ 341 -0.0479240001912479
343
+ 342 -0.0448192129885784
344
+ 343 -0.0520619488376005
345
+ 344 -0.045398294011681
346
+ 345 -0.0425448160252897
347
+ 346 -0.0301879715513119
348
+ 347 -0.039119844953792
349
+ 348 -0.0318445060292795
350
+ 349 0.0775128927560733
351
+ 350 0.133696030929458
352
+ 351 0.0934040962894178
353
+ 352 0.165037006342042
354
+ 353 0.0370713206399436
355
+ 354 -0.0370489719027206
356
+ 355 -0.0298304751416159
357
+ 356 -0.0387994185030151
358
+ 357 -0.0425739727567155
359
+ 358 -0.0469026409069165
360
+ 359 -0.0418293150822566
361
+ 360 -0.0473273219131854
362
+ 361 -0.049308019642061
363
+ 362 -0.0433284886806794
364
+ 363 -0.0369972157525989
365
+ 364 -0.0345525347288445
366
+ 365 -0.0400585889725531
367
+ 366 0.006656467274749
368
+ 367 0.11319538432443
369
+ 368 0.114967420474613
370
+ 369 0.133840368292221
371
+ 370 0.11280046677219
372
+ 371 -0.0184103961539414
373
+ 372 -0.0339399206362434
374
+ 373 -0.0341590200213704
375
+ 374 -0.0389400741910205
376
+ 375 -0.0448588461724111
377
+ 376 -0.0447120964840124
378
+ 377 -0.0401284599190171
379
+ 378 -0.0470280445927007
380
+ 379 -0.0439972690249817
381
+ 380 -0.0392994644400358
382
+ 381 -0.0331443114964012
383
+ 382 -0.0396320099995872
384
+ 383 -0.0357237280973228
385
+ 384 0.0769794799672965
386
+ 385 0.121101405134608
387
+ 386 0.100303300798787
388
+ 387 0.149213747230628
389
+ 388 0.0412712734968881
390
+ 389 -0.034428474543572
391
+ 390 -0.0309853686271892
392
+ 391 -0.037127802798713
393
+ 392 -0.0410862385400477
394
+ 393 -0.0446683655260938
395
+ 394 -0.0377779019366912
396
+ 395 -0.0432145550363202
397
+ 396 -0.0438865867392626
398
+ 397 -0.0397741719725851
399
+ 398 -0.0337532454079572
400
+ 399 -0.0345799482263535
401
+ 400 -0.0387855235790556
402
+ 401 0.0042952586621399
403
+ 402 0.114260797874283
404
+ 403 0.0962185400570627
405
+ 404 0.116302086694965
406
+ 405 0.116848660126361
407
+ 406 -0.0132599069767382
408
+ 407 -0.0326838372412273
409
+ 408 -0.031676894325753
410
+ 409 -0.0359544345578842
411
+ 410 -0.0430939231188687
412
+ 411 -0.0427909313399572
413
+ 412 -0.0392589148284163
414
+ 413 -0.0430139521930403
415
+ 414 -0.0405058980200932
416
+ 415 -0.0359005384516355
417
+ 416 -0.0297289315488662
418
+ 417 -0.0346787823837342
419
+ 418 -0.0332184590996983
420
+ 419 0.0771309823574169
421
+ 420 0.0954831808563938
422
+ 421 0.0986580814637101
423
+ 422 0.132204221810988
424
+ 423 0.0432995539287995
425
+ 424 -0.0282150289086581
426
+ 425 -0.0254088298731916
427
+ 426 -0.035952142901876
428
+ 427 -0.037552626088304
429
+ 428 -0.0405520090843967
430
+ 429 -0.0395737434856001
431
+ 430 -0.0415264891793749
432
+ 431 -0.0396875191674724
433
+ 432 -0.0384740880698292
434
+ 433 -0.0302213018176337
435
+ 434 -0.0302192627628463
436
+ 435 -0.0348307323662469
437
+ 436 0.00857082219058242
438
+ 437 0.113991981123305
439
+ 438 0.0810743348982558
440
+ 439 0.0970584251304922
441
+ 440 0.115026168034471
442
+ 441 -0.0130244881629081
443
+ 442 -0.0292031219799078
444
+ 443 -0.0308836212065116
445
+ 444 -0.0320575360367349
446
+ 445 -0.0393235092139189
447
+ 446 -0.0404817406521166
448
+ 447 -0.0375499698943704
449
+ 448 -0.0391450519157927
450
+ 449 -0.0397015347530508
451
+ 450 -0.0341587808934071
452
+ 451 -0.0310633384201306
453
+ 452 -0.0298881734250907
454
+ 453 -0.0295664081324632
455
+ 454 0.0805186281243404
456
+ 455 0.0833481690834954
457
+ 456 0.100864427083124
458
+ 457 0.111048128125141
459
+ 458 0.0464738054146592
460
+ 459 -0.0349995254836163
461
+ 460 -0.0255159736923953
462
+ 461 -0.0328764364137298
463
+ 462 -0.0338236112511505
464
+ 463 -0.0346782988250705
465
+ 464 -0.0340726935148046
466
+ 465 -0.0404234701095829
467
+ 466 -0.0356824878052483
468
+ 467 -0.0365578629303766
469
+ 468 -0.0324733709193554
470
+ 469 -0.0289648187856306
471
+ 470 -0.0320583632447268
472
+ 471 0.0109080362038411
473
+ 472 0.11757782076319
474
+ 473 0.0695324086716044
475
+ 474 0.079135520981604
476
+ 475 0.117166513712611
477
+ 476 -0.0107597842046391
478
+ 477 -0.0317910056255559
479
+ 478 -0.027713154753877
480
+ 479 -0.0328896799629515
481
+ 480 -0.0351148398263727
482
+ 481 -0.0367274328131775
483
+ 482 -0.0364350706943765
484
+ 483 -0.0352358798451258
485
+ 484 -0.0349817805140066
486
+ 485 -0.0341765926002117
487
+ 486 -0.0295770684618762
488
+ 487 -0.0265724708520466
489
+ 488 -0.0307810244464994
490
+ 489 0.0809894603579388
491
+ 490 0.0657550565427912
492
+ 491 0.106121880875152
493
+ 492 0.0974533505603275
494
+ 493 0.048238583810636
495
+ 494 -0.0288751879183889
496
+ 495 -0.0278787597095273
497
+ 496 -0.0337889205336922
498
+ 497 -0.0310688626579132
499
+ 498 -0.0384449649057626
500
+ 499 -0.0323682085966455
501
+ 500 -0.0361594385992874
502
+ 501 -0.0307937097313911
503
+ 502 -0.0313341566221988
504
+ 503 -0.0279856067641256
505
+ 504 -0.0289346840813807
506
+ 505 -0.0274872799690336
507
+ 506 0.00966555565940951
508
+ 507 0.0987720472362742
509
+ 508 0.0693890261403234
510
+ 509 0.0836756922797179
511
+ 510 0.10281770126579
512
+ 511 -0.00727787007831376
513
+ 512 -0.0258225019587932
514
+ 513 -0.0298502698700326
515
+ 514 -0.0306103473329238
516
+ 515 -0.0340826155989302
517
+ 516 -0.0355383371718098
518
+ 517 -0.0332157070791453
519
+ 518 -0.0354738192624273
520
+ 519 -0.0294010470848171
521
+ 520 -0.0310021513905682
522
+ 521 -0.0278235052216282
523
+ 522 -0.0239204460552095
524
+ 523 -0.0270969544256545
525
+ 524 0.0813764246127106
526
+ 525 0.0493102023473518
527
+ 526 0.104517332044244
528
+ 527 0.0811860139474904
529
+ 528 0.0510442031887192
530
+ 529 -0.0263637770970907
531
+ 530 -0.024755257304
532
+ 531 -0.0293388219300537
533
+ 532 -0.030007512828798
534
+ 533 -0.0323871465584352
535
+ 534 -0.0326780116025662
536
+ 535 -0.0374203204825225
537
+ 536 -0.0287231615177231
538
+ 537 -0.0332054768516264
539
+ 538 -0.0263051872864467
540
+ 539 -0.0243639277620771
541
+ 540 -0.023684344033898
542
+ 541 0.0142647324079813
543
+ 542 0.08574245660666
544
+ 543 0.0666795058595027
545
+ 544 0.0869761334698767
546
+ 545 0.0822018389405922
547
+ 546 -0.00295335814304317
548
+ 547 -0.0235452895911804
549
+ 548 -0.0281420988182953
550
+ 549 -0.0274120947938358
551
+ 550 -0.030158448744077
552
+ 551 -0.0295591560556766
553
+ 552 -0.0349368577359752
554
+ 553 -0.0326892340430509
555
+ 554 -0.0288806796544796
556
+ 555 -0.0295906146661126
557
+ 556 -0.0255785772166513
558
+ 557 -0.0247509384838002
559
+ 558 -0.0232231373627232
560
+ 559 0.0658724153140723
561
+ 560 0.0712698072158692
562
+ 561 0.0881661970571259
563
+ 562 0.0663434329796159
564
+ 563 0.0504442196817487
565
+ 564 -0.0220475381031792
566
+ 565 -0.0264520763210997
567
+ 566 -0.0262681630778278
568
+ 567 -0.0288120090469048
569
+ 568 -0.0292045667237407
570
+ 569 -0.0288062681932496
571
+ 570 -0.0330307486178301
572
+ 571 -0.0276514157813042
573
+ 572 -0.0268575483268837
574
+ 573 -0.0286764091398958
575
+ 574 -0.0281163961143271
576
+ 575 -0.0228693014048811
577
+ 576 0.0137045823052654
578
+ 577 0.0708633033596918
579
+ 578 0.0727744765379734
580
+ 579 0.0901470435080371
581
+ 580 0.0668755655920324
582
+ 581 -0.000653685262202251
583
+ 582 -0.0226994101946291
584
+ 583 -0.0270858316982201
585
+ 584 -0.0262718617327352
586
+ 585 -0.0265543856920115
587
+ 586 -0.0263771846461291
588
+ 587 -0.0319210552186977
589
+ 588 -0.029228183377507
590
+ 589 -0.0253777881177648
591
+ 590 -0.023809668956424
592
+ 591 -0.0280707574473553
593
+ 592 -0.0236140212549248
594
+ 593 -0.0228812657345804
595
+ 594 0.0486286781379677
596
+ 595 0.0898094414635747
597
+ 596 0.0508172134123107
598
+ 597 0.0901627351364118
599
+ 598 0.035844991775818
600
+ 599 -0.0203954379453198
601
+ 600 -0.0236862766959248
602
+ 601 -0.0247764225976876
603
+ 602 -0.0268581954253402
604
+ 603 -0.024001323229557
605
+ 604 -0.0303209729182735
606
+ 605 -0.0282931887611187
607
+ 606 -0.0292448557436288
608
+ 607 -0.0204578421032432
609
+ 608 -0.0248481591188926
610
+ 609 -0.0243082585401647
611
+ 610 -0.0203058655309834
612
+ 611 0.0139804741022989
613
+ 612 0.0505962449646704
614
+ 613 0.0690065939226321
615
+ 614 0.0907008020619833
616
+ 615 0.0519895469381193
617
+ 616 0.00206395484186643
618
+ 617 -0.0179281261622168
619
+ 618 -0.0227541776038619
620
+ 619 -0.0257149623750039
621
+ 620 -0.0221474812173537
622
+ 621 -0.0258958495203968
623
+ 622 -0.0291821476071184
624
+ 623 -0.0275173183668531
625
+ 624 -0.0219475947671766
626
+ 625 -0.0205864860149524
627
+ 626 -0.025198699283959
628
+ 627 -0.0196801475213126
629
+ 628 -0.0202813022751003
630
+ 629 0.0348753757737052
631
+ 630 0.0886744284826022
632
+ 631 0.0510351034421101
633
+ 632 0.0895415054055807
634
+ 633 0.0164865165554748
635
+ 634 -0.015820890351599
636
+ 635 -0.0235475303149806
637
+ 636 -0.0213487610196947
638
+ 637 -0.0223199871320358
639
+ 638 -0.0232883343131998
640
+ 639 -0.0272670686256873
641
+ 640 -0.0272994728260666
642
+ 641 -0.0251308147365066
643
+ 642 -0.0178939045831991
644
+ 643 -0.0228455395566411
645
+ 644 -0.0221674583093893
646
+ 645 -0.0181323711670327
647
+ 646 -0.000452057490636536
648
+ 647 0.0730003371658734
649
+ 648 0.0526039790662623
650
+ 649 0.0893120555725861
651
+ 650 0.0370376391850216
652
+ 651 -0.00089235639136826
653
+ 652 -0.0187548356986865
654
+ 653 -0.0202476722666913
655
+ 654 -0.0234402686094643
656
+ 655 -0.0176944079943485
657
+ 656 -0.0217419932421246
658
+ 657 -0.0252856528727102
659
+ 658 -0.0266563306764344
660
+ 659 -0.0179448089254929
661
+ 660 -0.0195530157887301
662
+ 661 -0.0242694989687706
663
+ 662 -0.0190898174037584
664
+ 663 -0.0162971087662526
665
+ 664 0.0190291931578508
666
+ 665 0.0920040569420149
667
+ 666 0.0547776230200262
668
+ 667 0.092519718174194
669
+ 668 -0.00323187468810452
670
+ 669 -0.0159810677640527
671
+ 670 -0.0185314129082898
672
+ 671 -0.0214996968543122
673
+ 672 -0.0209394743431591
674
+ 673 -0.0193460621057047
675
+ 674 -0.0257496298508357
676
+ 675 -0.0234878155623851
677
+ 676 -0.0215154679548733
678
+ 677 -0.0168154166505892
679
+ 678 -0.019623012738795
680
+ 679 -0.0222731795719489
681
+ 680 -0.0150548901993986
682
+ 681 -0.0172527061580013
683
+ 682 0.0747183966470148
684
+ 683 0.0721393781132992
685
+ 684 0.0565213941535672
686
+ 685 0.0565389116679803
687
+ 686 -0.0148388383909541
688
+ 687 -0.0189549593111703
689
+ 688 -0.0194161863407717
690
+ 689 -0.0197915076545455
691
+ 690 -0.0204244077381793
692
+ 691 -0.0218016316407433
693
+ 692 -0.0214645015602913
694
+ 693 -0.0238079641007921
695
+ 694 -0.0139629684168808
696
+ 695 -0.0156538895936235
697
+ 696 -0.021079456852115
698
+ 697 -0.0181418459552329
699
+ 698 -0.0145711876585601
700
+ 699 0.021215272535226
701
+ 700 0.0739558887973388
702
+ 701 0.0544658986157784
703
+ 702 0.0807341348823958
704
+ 703 -0.000188368345643536
705
+ 704 -0.0129199941327641
706
+ 705 -0.0180368997395347
707
+ 706 -0.0177692127800531
708
+ 707 -0.0204829544190261
709
+ 708 -0.0186632967600099
710
+ 709 -0.0204496056760325
711
+ 710 -0.023317274857146
712
+ 711 -0.0203774310283799
713
+ 712 -0.0136747501938559
714
+ 713 -0.0178116490297146
715
+ 714 -0.0189587954269383
716
+ 715 -0.0118858609089409
717
+ 716 -0.0172514569604997
718
+ 717 0.060802565704854
719
+ 718 0.0729937005677284
720
+ 719 0.0561951789698019
721
+ 720 0.042100568116198
722
+ 721 -0.0145015528092692
723
+ 722 -0.015700955312727
724
+ 723 -0.0167874521751816
725
+ 724 -0.0157176826421741
726
+ 725 -0.01783312467466
727
+ 726 -0.0220309477451877
728
+ 727 -0.0206302592507727
729
+ 728 -0.0200916933627863
730
+ 729 -0.0188778418069578
731
+ 730 -0.0113708982542668
732
+ 731 -0.0176778219523296
733
+ 732 -0.014843868366855
734
+ 733 -0.0112296460883651
735
+ 734 0.0256322345958098
736
+ 735 0.0560052205819785
737
+ 736 0.0568640232132456
738
+ 737 0.0611881586473825
739
+ 738 0.00379039852134298
740
+ 739 -0.0104730174558681
741
+ 740 -0.0164262606347393
742
+ 741 -0.0144022889870097
743
+ 742 -0.0168139620706729
744
+ 743 -0.0162615811333726
745
+ 744 -0.0196477371337629
746
+ 745 -0.0198824745918442
747
+ 746 -0.0192330305226495
748
+ 747 -0.012843462564526
749
+ 748 -0.0132891104080353
750
+ 749 -0.0181808023489715
751
+ 750 -0.0130545167379928
752
+ 751 -0.0113910229689613
753
+ 752 0.041990539641635
754
+ 753 0.0763855238906953
755
+ 754 0.0594251709620633
756
+ 755 0.0243609283015674
757
+ 756 -0.011509575108219
758
+ 757 -0.0130005756539877
759
+ 758 -0.0150890385548497
760
+ 759 -0.0139673203815592
761
+ 760 -0.0157156335728081
762
+ 761 -0.0186682466883542
763
+ 762 -0.0185554927618856
764
+ 763 -0.0162755018147282
765
+ 764 -0.0154200664197001
766
+ 765 -0.0134500863696249
767
+ 766 -0.014171081512106
768
+ 767 -0.0144636296247257
769
+ 768 -0.0126931065239486
770
+ 769 0.00886491087382969
771
+ 770 0.0582642578199214
772
+ 771 0.0786546867228701
773
+ 772 0.0272306482046141
774
+ 773 0.00822579495183492
775
+ 774 -0.011517390916366
776
+ 775 -0.0139592957633573
777
+ 776 -0.0129421565517047
778
+ 777 -0.0134986559471086
779
+ 778 -0.0136304589585504
780
+ 779 -0.0173438393070116
781
+ 780 -0.016064531677406
782
+ 781 -0.0152510664062614
783
+ 782 -0.0101822066131621
784
+ 783 -0.0130099394643087
785
+ 784 -0.0150897101751983
786
+ 785 -0.0121547232260943
787
+ 786 -0.0117824571975702
788
+ 787 0.0242515574526126
789
+ 788 0.0773173900249155
790
+ 789 0.061635146281499
791
+ 790 0.00959030625397352
792
+ 791 -0.0090693872805306
793
+ 792 -0.0112081729509553
794
+ 793 -0.0138649594742307
795
+ 794 -0.010084978733244
796
+ 795 -0.0132143360704552
797
+ 796 -0.01496302977637
798
+ 797 -0.0164140720480332
799
+ 798 -0.0137826264017484
800
+ 799 -0.0128738607141167
801
+ 800 -0.0108179181287105
802
+ 801 -0.0114389768189071
803
+ 802 -0.0115710434341599
804
+ 803 -0.00965025893918617
805
+ 804 -0.0135132422793313
806
+ 805 0.0617365766920115
807
+ 806 0.0779699523399871
808
+ 807 0.0247967756220761
809
+ 808 -0.0065090662747984
810
+ 809 -0.00857892822230665
811
+ 810 -0.0101662607994292
812
+ 811 -0.0108507653686812
813
+ 812 -0.00958246558520002
814
+ 813 -0.0144516907622999
815
+ 814 -0.0150147299589262
816
+ 815 -0.0135220759135818
817
+ 816 -0.0115211008118439
818
+ 817 -0.0104021106108387
819
+ 818 -0.00780776429502702
820
+ 819 -0.011404849912357
821
+ 820 -0.00951333011434902
822
+ 821 -0.00938572506372878
823
+ 822 0.0266216133025957
824
+ 823 0.0610181017554806
825
+ 824 0.0438869371591075
826
+ 825 0.00859504869317741
827
+ 826 -0.00699743519150731
828
+ 827 -0.00929600314682341
829
+ 828 -0.0111911531783819
830
+ 829 -0.00823625897932562
831
+ 830 -0.0100913686286367
832
+ 831 -0.0125756643002852
833
+ 832 -0.0152602353555104
834
+ 833 -0.00953260529007071
835
+ 834 -0.0100594605441607
836
+ 835 -0.00871459443751229
837
+ 836 -0.00938155933764076
838
+ 837 -0.00918618283897082
839
+ 838 -0.00755980106901216
840
+ 839 -0.0107245855066125
841
+ 840 0.0458486876264972
842
+ 841 0.0824090055093124
843
+ 842 0.00574421553061521
844
+ 843 -0.00725667517287379
845
+ 844 -0.00867494223043522
846
+ 845 -0.00829285117321785
847
+ 846 -0.00957414187855957
848
+ 847 -0.00659032223177494
849
+ 848 -0.0106624401215929
850
+ 849 -0.0122427759092887
851
+ 850 -0.0104622099267244
852
+ 851 -0.00799623147718296
853
+ 852 -0.0104382420530796
854
+ 853 -0.0075668223790859
855
+ 854 -0.00621892353946098
856
+ 855 -0.00836920759535837
857
+ 856 -0.00630014552985234
858
+ 857 0.0113479974095218
859
+ 858 0.0628686123242055
860
+ 859 0.0463260384468626
861
+ 860 -0.00865830449867469
862
+ 861 -0.00632533057369849
863
+ 862 -0.00620405394762857
864
+ 863 -0.00876475527943431
865
+ 864 -0.00910265771371557
866
+ 865 -0.00714690863853632
867
+ 866 -0.0103958026182488
868
+ 867 -0.0121633888743942
869
+ 868 -0.00676196610841381
870
+ 869 -0.00714452896204837
871
+ 870 -0.00679873891573572
872
+ 871 -0.00845680011347619
873
+ 872 -0.00625057507944579
874
+ 873 -0.00606839813409962
875
+ 874 -0.00725859558269772
876
+ 875 0.0281965759233777
877
+ 876 0.0670260741629087
878
+ 877 0.00963490036467712
879
+ 878 -0.00456245837151462
880
+ 879 -0.00755131292428571
881
+ 880 -0.00586747799683473
882
+ 881 -0.00783299131040265
883
+ 882 -0.00744370954110726
884
+ 883 -0.00915087240687255
885
+ 884 -0.00957213417268418
886
+ 885 -0.00832361596391925
887
+ 886 -0.0050340090260566
888
+ 887 -0.00755295159414475
889
+ 888 -0.00495117481094215
890
+ 889 -0.00424086001593403
891
+ 890 -0.00515343444584415
892
+ 891 -0.00744099299381077
893
+ 892 -0.00696188041633924
894
+ 893 0.0670358828192865
895
+ 894 0.0306555670430617
896
+ 895 -0.00700188318283173
897
+ 896 -0.00439483158228684
898
+ 897 -0.00440309654475794
899
+ 898 -0.00580106920715627
900
+ 899 -0.00743386431878525
901
+ 900 -0.00615300126683845
902
+ 901 -0.00852083652339179
903
+ 902 -0.00801483743475307
904
+ 903 -0.0074130347068713
905
+ 904 -0.00363565987760851
906
+ 905 -0.007955033309064
907
+ 906 -0.00193305784421065
908
+ 907 -0.0041800577189778
909
+ 908 -0.00353565656672481
910
+ 909 -0.0058551774732522
911
+ 910 0.0302595657677451
912
+ 911 0.0314102314562899
913
+ 912 0.013212750015713
914
+ 913 -0.00316630844923298
915
+ 914 -0.00520479906156008
916
+ 915 -0.00420739410816969
917
+ 916 -0.00564901350096342
918
+ 917 -0.00531128324885506
919
+ 918 -0.00606089198821065
920
+ 919 -0.00772996050306375
921
+ 920 -0.00676594704104744
922
+ 921 -0.00533751850001158
923
+ 922 -0.0058222391965106
924
+ 923 -0.00590469211682123
925
+ 924 -0.00139624368550244
926
+ 925 -0.00225770557975624
927
+ 926 -0.00430278519099915
928
+ 927 -0.00497994091066768
929
+ 928 0.0521745063047641
930
+ 929 0.0125007611461825
931
+ 930 -0.00335983528594071
932
+ 931 -0.00200633784627574
933
+ 932 -0.00192061226814783
934
+ 933 -0.00414996522579167
935
+ 934 -0.00453925170940819
936
+ 935 -0.00441610859184833
937
+ 936 -0.00487531850001996
938
+ 937 -0.00511365916811154
939
+ 938 -0.00549890284279737
940
+ 939 -0.00379682253936933
941
+ 940 -0.00404757676266654
942
+ 941 -0.00349312951783624
943
+ 942 -0.00159942004178191
944
+ 943 -0.00176952812644145
945
+ 944 -0.00366444935410891
946
+ 945 0.0162283566898874
947
+ 946 0.0320898583297591
948
+ 947 -0.00388380045409207
949
+ 948 -0.0018243911045478
950
+ 949 -0.00115125308892718
951
+ 950 -0.00149365801922153
952
+ 951 -0.00294988667592288
953
+ 952 -0.00329687293305934
954
+ 953 -0.00371267430404071
955
+ 954 -0.00407396263409427
956
+ 955 -0.00384065535263086
957
+ 956 -0.00283959971098493
958
+ 957 -0.00342824033321658
959
+ 958 -0.00321142688896053
960
+ 959 -0.00222112060678468
961
+ 960 -0.0020328615528584
962
+ 961 -0.00145605698519582
963
+ 962 -0.00287857829852364
964
+ 963 0.0183610738417914
965
+ 964 0.0154027556420478
966
+ 965 -0.00179489314871512
967
+ 966 -0.00129790436843852
968
+ 967 -0.000853980926230406
969
+ 968 -0.000666619047494671
970
+ 969 -0.00118456473308688
971
+ 970 -0.00182173221293997
972
+ 971 -0.00223763548036304
973
+ 972 -0.00250045159359336
974
+ 973 -0.00244783545512189
975
+ 974 -0.00233355012767793
976
+ 975 -0.00148662334882801
977
+ 976 -0.00109910993153004
978
+ 977 -0.00197535475727005
979
+ 978 -0.00150005492632689
980
+ 979 -0.000669782105543667
981
+ 980 -0.00133477373003284
982
+ 981 0.0173273972011934
983
+ 982 -0.00112526521664063
984
+ 983 -0.000841739351965462
985
+ 984 0.000565203827743629
986
+ 985 -0.000459312244397425
987
+ 986 -0.000418262528083788
988
+ 987 -0.000498463341452234
989
+ 988 -0.000616296957122406
990
+ 989 -0.000679296268851578
991
+ 990 -0.00084778145306077
992
+ 991 -0.000978798423497668
993
+ 992 -0.000894990113732281
994
+ 993 -0.000701461719327138
995
+ 994 -0.000511781130867642
996
+ 995 -0.000286708792038961
997
+ 996 -0.000395118651726646
998
+ 997 -0.000921290818811666
999
+ 998 -0.000781372909192289
1000
+ 999 9.80848043031114e-05