nutshell-crm 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (692) hide show
  1. data/.gitignore +21 -0
  2. data/.rspec +2 -0
  3. data/Gemfile +4 -0
  4. data/README +0 -0
  5. data/Rakefile +2 -0
  6. data/lib/nutshell-crm.rb +78 -0
  7. data/lib/nutshell-crm/version.rb +3 -0
  8. data/nutshell-crm.gemspec +28 -0
  9. data/spec/nutshell-crm_spec.rb +212 -0
  10. data/spec/spec_helper.rb +8 -0
  11. data/vendor/bundle/bin/autospec +19 -0
  12. data/vendor/bundle/bin/htmldiff +21 -0
  13. data/vendor/bundle/bin/httparty +19 -0
  14. data/vendor/bundle/bin/ldiff +21 -0
  15. data/vendor/bundle/bin/rspec +19 -0
  16. data/vendor/bundle/gems/diff-lcs-1.1.3/.gemtest +0 -0
  17. data/vendor/bundle/gems/diff-lcs-1.1.3/History.rdoc +54 -0
  18. data/vendor/bundle/gems/diff-lcs-1.1.3/License.rdoc +38 -0
  19. data/vendor/bundle/gems/diff-lcs-1.1.3/Manifest.txt +27 -0
  20. data/vendor/bundle/gems/diff-lcs-1.1.3/README.rdoc +72 -0
  21. data/vendor/bundle/gems/diff-lcs-1.1.3/Rakefile +26 -0
  22. data/vendor/bundle/gems/diff-lcs-1.1.3/bin/htmldiff +32 -0
  23. data/vendor/bundle/gems/diff-lcs-1.1.3/bin/ldiff +6 -0
  24. data/vendor/bundle/gems/diff-lcs-1.1.3/diff-lcs.gemspec +51 -0
  25. data/vendor/bundle/gems/diff-lcs-1.1.3/docs/COPYING.txt +340 -0
  26. data/vendor/bundle/gems/diff-lcs-1.1.3/docs/artistic.html +289 -0
  27. data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff-lcs.rb +5 -0
  28. data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs.rb +1105 -0
  29. data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs/array.rb +21 -0
  30. data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs/block.rb +51 -0
  31. data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs/callbacks.rb +322 -0
  32. data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs/change.rb +169 -0
  33. data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs/htmldiff.rb +151 -0
  34. data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs/hunk.rb +242 -0
  35. data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs/ldiff.rb +210 -0
  36. data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs/string.rb +19 -0
  37. data/vendor/bundle/gems/diff-lcs-1.1.3/spec/diff_spec.rb +35 -0
  38. data/vendor/bundle/gems/diff-lcs-1.1.3/spec/lcs_spec.rb +36 -0
  39. data/vendor/bundle/gems/diff-lcs-1.1.3/spec/patch_spec.rb +390 -0
  40. data/vendor/bundle/gems/diff-lcs-1.1.3/spec/sdiff_spec.rb +204 -0
  41. data/vendor/bundle/gems/diff-lcs-1.1.3/spec/spec_helper.rb +284 -0
  42. data/vendor/bundle/gems/diff-lcs-1.1.3/spec/traverse_balanced_spec.rb +286 -0
  43. data/vendor/bundle/gems/diff-lcs-1.1.3/spec/traverse_sequences_spec.rb +83 -0
  44. data/vendor/bundle/gems/httparty-0.8.1/.gitignore +9 -0
  45. data/vendor/bundle/gems/httparty-0.8.1/Gemfile +8 -0
  46. data/vendor/bundle/gems/httparty-0.8.1/History +259 -0
  47. data/vendor/bundle/gems/httparty-0.8.1/MIT-LICENSE +20 -0
  48. data/vendor/bundle/gems/httparty-0.8.1/README.rdoc +54 -0
  49. data/vendor/bundle/gems/httparty-0.8.1/Rakefile +15 -0
  50. data/vendor/bundle/gems/httparty-0.8.1/bin/httparty +108 -0
  51. data/vendor/bundle/gems/httparty-0.8.1/cucumber.yml +1 -0
  52. data/vendor/bundle/gems/httparty-0.8.1/examples/aaws.rb +32 -0
  53. data/vendor/bundle/gems/httparty-0.8.1/examples/basic.rb +32 -0
  54. data/vendor/bundle/gems/httparty-0.8.1/examples/crack.rb +19 -0
  55. data/vendor/bundle/gems/httparty-0.8.1/examples/custom_parsers.rb +67 -0
  56. data/vendor/bundle/gems/httparty-0.8.1/examples/delicious.rb +37 -0
  57. data/vendor/bundle/gems/httparty-0.8.1/examples/google.rb +16 -0
  58. data/vendor/bundle/gems/httparty-0.8.1/examples/rubyurl.rb +14 -0
  59. data/vendor/bundle/gems/httparty-0.8.1/examples/tripit_sign_in.rb +33 -0
  60. data/vendor/bundle/gems/httparty-0.8.1/examples/twitter.rb +31 -0
  61. data/vendor/bundle/gems/httparty-0.8.1/examples/whoismyrep.rb +10 -0
  62. data/vendor/bundle/gems/httparty-0.8.1/features/basic_authentication.feature +20 -0
  63. data/vendor/bundle/gems/httparty-0.8.1/features/command_line.feature +7 -0
  64. data/vendor/bundle/gems/httparty-0.8.1/features/deals_with_http_error_codes.feature +26 -0
  65. data/vendor/bundle/gems/httparty-0.8.1/features/digest_authentication.feature +20 -0
  66. data/vendor/bundle/gems/httparty-0.8.1/features/handles_compressed_responses.feature +19 -0
  67. data/vendor/bundle/gems/httparty-0.8.1/features/handles_multiple_formats.feature +34 -0
  68. data/vendor/bundle/gems/httparty-0.8.1/features/steps/env.rb +22 -0
  69. data/vendor/bundle/gems/httparty-0.8.1/features/steps/httparty_response_steps.rb +26 -0
  70. data/vendor/bundle/gems/httparty-0.8.1/features/steps/httparty_steps.rb +27 -0
  71. data/vendor/bundle/gems/httparty-0.8.1/features/steps/mongrel_helper.rb +94 -0
  72. data/vendor/bundle/gems/httparty-0.8.1/features/steps/remote_service_steps.rb +69 -0
  73. data/vendor/bundle/gems/httparty-0.8.1/features/supports_redirection.feature +22 -0
  74. data/vendor/bundle/gems/httparty-0.8.1/features/supports_timeout_option.feature +13 -0
  75. data/vendor/bundle/gems/httparty-0.8.1/httparty.gemspec +24 -0
  76. data/vendor/bundle/gems/httparty-0.8.1/lib/httparty.rb +452 -0
  77. data/vendor/bundle/gems/httparty-0.8.1/lib/httparty/cookie_hash.rb +22 -0
  78. data/vendor/bundle/gems/httparty-0.8.1/lib/httparty/core_extensions.rb +9 -0
  79. data/vendor/bundle/gems/httparty-0.8.1/lib/httparty/exceptions.rb +26 -0
  80. data/vendor/bundle/gems/httparty-0.8.1/lib/httparty/hash_conversions.rb +51 -0
  81. data/vendor/bundle/gems/httparty-0.8.1/lib/httparty/module_inheritable_attributes.rb +34 -0
  82. data/vendor/bundle/gems/httparty-0.8.1/lib/httparty/net_digest_auth.rb +71 -0
  83. data/vendor/bundle/gems/httparty-0.8.1/lib/httparty/parser.rb +141 -0
  84. data/vendor/bundle/gems/httparty-0.8.1/lib/httparty/request.rb +257 -0
  85. data/vendor/bundle/gems/httparty-0.8.1/lib/httparty/response.rb +85 -0
  86. data/vendor/bundle/gems/httparty-0.8.1/lib/httparty/version.rb +3 -0
  87. data/vendor/bundle/gems/httparty-0.8.1/spec/fixtures/delicious.xml +23 -0
  88. data/vendor/bundle/gems/httparty-0.8.1/spec/fixtures/empty.xml +0 -0
  89. data/vendor/bundle/gems/httparty-0.8.1/spec/fixtures/google.html +3 -0
  90. data/vendor/bundle/gems/httparty-0.8.1/spec/fixtures/ssl/generate.sh +29 -0
  91. data/vendor/bundle/gems/httparty-0.8.1/spec/fixtures/ssl/generated/1fe462c2.0 +16 -0
  92. data/vendor/bundle/gems/httparty-0.8.1/spec/fixtures/ssl/generated/bogushost.crt +13 -0
  93. data/vendor/bundle/gems/httparty-0.8.1/spec/fixtures/ssl/generated/ca.crt +16 -0
  94. data/vendor/bundle/gems/httparty-0.8.1/spec/fixtures/ssl/generated/ca.key +15 -0
  95. data/vendor/bundle/gems/httparty-0.8.1/spec/fixtures/ssl/generated/selfsigned.crt +14 -0
  96. data/vendor/bundle/gems/httparty-0.8.1/spec/fixtures/ssl/generated/server.crt +13 -0
  97. data/vendor/bundle/gems/httparty-0.8.1/spec/fixtures/ssl/generated/server.key +15 -0
  98. data/vendor/bundle/gems/httparty-0.8.1/spec/fixtures/ssl/openssl-exts.cnf +9 -0
  99. data/vendor/bundle/gems/httparty-0.8.1/spec/fixtures/twitter.json +1 -0
  100. data/vendor/bundle/gems/httparty-0.8.1/spec/fixtures/twitter.xml +403 -0
  101. data/vendor/bundle/gems/httparty-0.8.1/spec/fixtures/undefined_method_add_node_for_nil.xml +2 -0
  102. data/vendor/bundle/gems/httparty-0.8.1/spec/httparty/cookie_hash_spec.rb +71 -0
  103. data/vendor/bundle/gems/httparty-0.8.1/spec/httparty/net_digest_auth_spec.rb +93 -0
  104. data/vendor/bundle/gems/httparty-0.8.1/spec/httparty/parser_spec.rb +155 -0
  105. data/vendor/bundle/gems/httparty-0.8.1/spec/httparty/request_spec.rb +544 -0
  106. data/vendor/bundle/gems/httparty-0.8.1/spec/httparty/response_spec.rb +193 -0
  107. data/vendor/bundle/gems/httparty-0.8.1/spec/httparty/ssl_spec.rb +54 -0
  108. data/vendor/bundle/gems/httparty-0.8.1/spec/httparty_spec.rb +621 -0
  109. data/vendor/bundle/gems/httparty-0.8.1/spec/spec.opts +3 -0
  110. data/vendor/bundle/gems/httparty-0.8.1/spec/spec_helper.rb +22 -0
  111. data/vendor/bundle/gems/httparty-0.8.1/spec/support/ssl_test_helper.rb +25 -0
  112. data/vendor/bundle/gems/httparty-0.8.1/spec/support/ssl_test_server.rb +69 -0
  113. data/vendor/bundle/gems/httparty-0.8.1/spec/support/stub_response.rb +30 -0
  114. data/vendor/bundle/gems/httparty-0.8.1/website/css/common.css +47 -0
  115. data/vendor/bundle/gems/httparty-0.8.1/website/index.html +73 -0
  116. data/vendor/bundle/gems/json-1.6.3/.gitignore +8 -0
  117. data/vendor/bundle/gems/json-1.6.3/.travis.yml +15 -0
  118. data/vendor/bundle/gems/json-1.6.3/CHANGES +223 -0
  119. data/vendor/bundle/gems/json-1.6.3/COPYING +58 -0
  120. data/vendor/bundle/gems/json-1.6.3/COPYING-json-jruby +57 -0
  121. data/vendor/bundle/gems/json-1.6.3/GPL +340 -0
  122. data/vendor/bundle/gems/json-1.6.3/Gemfile +11 -0
  123. data/vendor/bundle/gems/json-1.6.3/README-json-jruby.markdown +33 -0
  124. data/vendor/bundle/gems/json-1.6.3/README.rdoc +358 -0
  125. data/vendor/bundle/gems/json-1.6.3/Rakefile +408 -0
  126. data/vendor/bundle/gems/json-1.6.3/TODO +1 -0
  127. data/vendor/bundle/gems/json-1.6.3/VERSION +1 -0
  128. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/.keep +0 -0
  129. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkComparison.log +52 -0
  130. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_fast-autocorrelation.dat +1000 -0
  131. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_fast.dat +1001 -0
  132. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_pretty-autocorrelation.dat +900 -0
  133. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_pretty.dat +901 -0
  134. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_safe-autocorrelation.dat +1000 -0
  135. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_safe.dat +1001 -0
  136. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt.log +261 -0
  137. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_fast-autocorrelation.dat +1000 -0
  138. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_fast.dat +1001 -0
  139. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_pretty-autocorrelation.dat +1000 -0
  140. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_pretty.dat +1001 -0
  141. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_safe-autocorrelation.dat +1000 -0
  142. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_safe.dat +1001 -0
  143. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure.log +262 -0
  144. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails#generator-autocorrelation.dat +1000 -0
  145. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails#generator.dat +1001 -0
  146. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails.log +82 -0
  147. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkComparison.log +34 -0
  148. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt#parser-autocorrelation.dat +900 -0
  149. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt#parser.dat +901 -0
  150. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt.log +81 -0
  151. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure#parser-autocorrelation.dat +1000 -0
  152. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure#parser.dat +1001 -0
  153. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure.log +82 -0
  154. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails#parser-autocorrelation.dat +1000 -0
  155. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails#parser.dat +1001 -0
  156. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails.log +82 -0
  157. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML#parser-autocorrelation.dat +1000 -0
  158. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML#parser.dat +1001 -0
  159. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML.log +82 -0
  160. data/vendor/bundle/gems/json-1.6.3/benchmarks/data/.keep +0 -0
  161. data/vendor/bundle/gems/json-1.6.3/benchmarks/generator2_benchmark.rb +222 -0
  162. data/vendor/bundle/gems/json-1.6.3/benchmarks/generator_benchmark.rb +224 -0
  163. data/vendor/bundle/gems/json-1.6.3/benchmarks/ohai.json +1216 -0
  164. data/vendor/bundle/gems/json-1.6.3/benchmarks/ohai.ruby +1 -0
  165. data/vendor/bundle/gems/json-1.6.3/benchmarks/parser2_benchmark.rb +251 -0
  166. data/vendor/bundle/gems/json-1.6.3/benchmarks/parser_benchmark.rb +259 -0
  167. data/vendor/bundle/gems/json-1.6.3/data/example.json +1 -0
  168. data/vendor/bundle/gems/json-1.6.3/data/index.html +38 -0
  169. data/vendor/bundle/gems/json-1.6.3/data/prototype.js +4184 -0
  170. data/vendor/bundle/gems/json-1.6.3/diagrams/.keep +0 -0
  171. data/vendor/bundle/gems/json-1.6.3/ext/json/ext/fbuffer/fbuffer.h +156 -0
  172. data/vendor/bundle/gems/json-1.6.3/ext/json/ext/generator/Makefile +187 -0
  173. data/vendor/bundle/gems/json-1.6.3/ext/json/ext/generator/extconf.rb +13 -0
  174. data/vendor/bundle/gems/json-1.6.3/ext/json/ext/generator/generator.bundle +0 -0
  175. data/vendor/bundle/gems/json-1.6.3/ext/json/ext/generator/generator.c +1384 -0
  176. data/vendor/bundle/gems/json-1.6.3/ext/json/ext/generator/generator.h +161 -0
  177. data/vendor/bundle/gems/json-1.6.3/ext/json/ext/generator/generator.o +0 -0
  178. data/vendor/bundle/gems/json-1.6.3/ext/json/ext/json/ext/generator.bundle +0 -0
  179. data/vendor/bundle/gems/json-1.6.3/ext/json/ext/json/ext/parser.bundle +0 -0
  180. data/vendor/bundle/gems/json-1.6.3/ext/json/ext/parser/Makefile +187 -0
  181. data/vendor/bundle/gems/json-1.6.3/ext/json/ext/parser/extconf.rb +13 -0
  182. data/vendor/bundle/gems/json-1.6.3/ext/json/ext/parser/parser.bundle +0 -0
  183. data/vendor/bundle/gems/json-1.6.3/ext/json/ext/parser/parser.c +2197 -0
  184. data/vendor/bundle/gems/json-1.6.3/ext/json/ext/parser/parser.h +77 -0
  185. data/vendor/bundle/gems/json-1.6.3/ext/json/ext/parser/parser.o +0 -0
  186. data/vendor/bundle/gems/json-1.6.3/ext/json/ext/parser/parser.rl +920 -0
  187. data/vendor/bundle/gems/json-1.6.3/install.rb +19 -0
  188. data/vendor/bundle/gems/json-1.6.3/java/lib/bytelist-1.0.6.jar +0 -0
  189. data/vendor/bundle/gems/json-1.6.3/java/lib/jcodings.jar +0 -0
  190. data/vendor/bundle/gems/json-1.6.3/java/src/json/ext/ByteListTranscoder.java +167 -0
  191. data/vendor/bundle/gems/json-1.6.3/java/src/json/ext/Generator.java +437 -0
  192. data/vendor/bundle/gems/json-1.6.3/java/src/json/ext/GeneratorMethods.java +232 -0
  193. data/vendor/bundle/gems/json-1.6.3/java/src/json/ext/GeneratorService.java +43 -0
  194. data/vendor/bundle/gems/json-1.6.3/java/src/json/ext/GeneratorState.java +522 -0
  195. data/vendor/bundle/gems/json-1.6.3/java/src/json/ext/OptionsReader.java +119 -0
  196. data/vendor/bundle/gems/json-1.6.3/java/src/json/ext/Parser.java +2589 -0
  197. data/vendor/bundle/gems/json-1.6.3/java/src/json/ext/Parser.rl +913 -0
  198. data/vendor/bundle/gems/json-1.6.3/java/src/json/ext/ParserService.java +35 -0
  199. data/vendor/bundle/gems/json-1.6.3/java/src/json/ext/RuntimeInfo.java +121 -0
  200. data/vendor/bundle/gems/json-1.6.3/java/src/json/ext/StringDecoder.java +166 -0
  201. data/vendor/bundle/gems/json-1.6.3/java/src/json/ext/StringEncoder.java +106 -0
  202. data/vendor/bundle/gems/json-1.6.3/java/src/json/ext/Utils.java +89 -0
  203. data/vendor/bundle/gems/json-1.6.3/json-java.gemspec +22 -0
  204. data/vendor/bundle/gems/json-1.6.3/json.gemspec +40 -0
  205. data/vendor/bundle/gems/json-1.6.3/json_pure.gemspec +42 -0
  206. data/vendor/bundle/gems/json-1.6.3/lib/json.rb +62 -0
  207. data/vendor/bundle/gems/json-1.6.3/lib/json/add/bigdecimal.rb +21 -0
  208. data/vendor/bundle/gems/json-1.6.3/lib/json/add/complex.rb +22 -0
  209. data/vendor/bundle/gems/json-1.6.3/lib/json/add/core.rb +11 -0
  210. data/vendor/bundle/gems/json-1.6.3/lib/json/add/date.rb +34 -0
  211. data/vendor/bundle/gems/json-1.6.3/lib/json/add/date_time.rb +50 -0
  212. data/vendor/bundle/gems/json-1.6.3/lib/json/add/exception.rb +31 -0
  213. data/vendor/bundle/gems/json-1.6.3/lib/json/add/ostruct.rb +31 -0
  214. data/vendor/bundle/gems/json-1.6.3/lib/json/add/range.rb +29 -0
  215. data/vendor/bundle/gems/json-1.6.3/lib/json/add/rational.rb +22 -0
  216. data/vendor/bundle/gems/json-1.6.3/lib/json/add/regexp.rb +30 -0
  217. data/vendor/bundle/gems/json-1.6.3/lib/json/add/struct.rb +30 -0
  218. data/vendor/bundle/gems/json-1.6.3/lib/json/add/symbol.rb +25 -0
  219. data/vendor/bundle/gems/json-1.6.3/lib/json/add/time.rb +35 -0
  220. data/vendor/bundle/gems/json-1.6.3/lib/json/common.rb +470 -0
  221. data/vendor/bundle/gems/json-1.6.3/lib/json/ext.rb +21 -0
  222. data/vendor/bundle/gems/json-1.6.3/lib/json/ext/.keep +0 -0
  223. data/vendor/bundle/gems/json-1.6.3/lib/json/pure.rb +21 -0
  224. data/vendor/bundle/gems/json-1.6.3/lib/json/pure/generator.rb +468 -0
  225. data/vendor/bundle/gems/json-1.6.3/lib/json/pure/parser.rb +359 -0
  226. data/vendor/bundle/gems/json-1.6.3/lib/json/version.rb +8 -0
  227. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail1.json +1 -0
  228. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail10.json +1 -0
  229. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail11.json +1 -0
  230. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail12.json +1 -0
  231. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail13.json +1 -0
  232. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail14.json +1 -0
  233. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail18.json +1 -0
  234. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail19.json +1 -0
  235. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail2.json +1 -0
  236. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail20.json +1 -0
  237. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail21.json +1 -0
  238. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail22.json +1 -0
  239. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail23.json +1 -0
  240. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail24.json +1 -0
  241. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail25.json +1 -0
  242. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail27.json +2 -0
  243. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail28.json +2 -0
  244. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail3.json +1 -0
  245. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail4.json +1 -0
  246. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail5.json +1 -0
  247. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail6.json +1 -0
  248. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail7.json +1 -0
  249. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail8.json +1 -0
  250. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail9.json +1 -0
  251. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/pass1.json +56 -0
  252. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/pass15.json +1 -0
  253. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/pass16.json +1 -0
  254. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/pass17.json +1 -0
  255. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/pass2.json +1 -0
  256. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/pass26.json +1 -0
  257. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/pass3.json +6 -0
  258. data/vendor/bundle/gems/json-1.6.3/tests/setup_variant.rb +11 -0
  259. data/vendor/bundle/gems/json-1.6.3/tests/test_json.rb +476 -0
  260. data/vendor/bundle/gems/json-1.6.3/tests/test_json_addition.rb +188 -0
  261. data/vendor/bundle/gems/json-1.6.3/tests/test_json_encoding.rb +65 -0
  262. data/vendor/bundle/gems/json-1.6.3/tests/test_json_fixtures.rb +35 -0
  263. data/vendor/bundle/gems/json-1.6.3/tests/test_json_generate.rb +249 -0
  264. data/vendor/bundle/gems/json-1.6.3/tests/test_json_string_matching.rb +40 -0
  265. data/vendor/bundle/gems/json-1.6.3/tests/test_json_unicode.rb +72 -0
  266. data/vendor/bundle/gems/json-1.6.3/tools/fuzz.rb +139 -0
  267. data/vendor/bundle/gems/json-1.6.3/tools/server.rb +62 -0
  268. data/vendor/bundle/gems/multi_json-1.0.4/.document +5 -0
  269. data/vendor/bundle/gems/multi_json-1.0.4/.rspec +3 -0
  270. data/vendor/bundle/gems/multi_json-1.0.4/.travis.yml +7 -0
  271. data/vendor/bundle/gems/multi_json-1.0.4/Gemfile +6 -0
  272. data/vendor/bundle/gems/multi_json-1.0.4/LICENSE.md +20 -0
  273. data/vendor/bundle/gems/multi_json-1.0.4/README.md +94 -0
  274. data/vendor/bundle/gems/multi_json-1.0.4/Rakefile +25 -0
  275. data/vendor/bundle/gems/multi_json-1.0.4/lib/multi_json.rb +85 -0
  276. data/vendor/bundle/gems/multi_json-1.0.4/lib/multi_json/engines/json_common.rb +27 -0
  277. data/vendor/bundle/gems/multi_json-1.0.4/lib/multi_json/engines/json_gem.rb +12 -0
  278. data/vendor/bundle/gems/multi_json-1.0.4/lib/multi_json/engines/json_pure.rb +12 -0
  279. data/vendor/bundle/gems/multi_json-1.0.4/lib/multi_json/engines/ok_json.rb +48 -0
  280. data/vendor/bundle/gems/multi_json-1.0.4/lib/multi_json/engines/yajl.rb +18 -0
  281. data/vendor/bundle/gems/multi_json-1.0.4/lib/multi_json/vendor/ok_json.rb +587 -0
  282. data/vendor/bundle/gems/multi_json-1.0.4/lib/multi_json/version.rb +3 -0
  283. data/vendor/bundle/gems/multi_json-1.0.4/multi_json.gemspec +22 -0
  284. data/vendor/bundle/gems/multi_json-1.0.4/spec/helper.rb +35 -0
  285. data/vendor/bundle/gems/multi_json-1.0.4/spec/multi_json_spec.rb +178 -0
  286. data/vendor/bundle/gems/multi_xml-0.4.1/.gemtest +0 -0
  287. data/vendor/bundle/gems/multi_xml-0.4.1/.gitignore +10 -0
  288. data/vendor/bundle/gems/multi_xml-0.4.1/.rspec +3 -0
  289. data/vendor/bundle/gems/multi_xml-0.4.1/.travis.yml +7 -0
  290. data/vendor/bundle/gems/multi_xml-0.4.1/.yardopts +5 -0
  291. data/vendor/bundle/gems/multi_xml-0.4.1/Gemfile +9 -0
  292. data/vendor/bundle/gems/multi_xml-0.4.1/LICENSE.md +20 -0
  293. data/vendor/bundle/gems/multi_xml-0.4.1/README.md +113 -0
  294. data/vendor/bundle/gems/multi_xml-0.4.1/Rakefile +23 -0
  295. data/vendor/bundle/gems/multi_xml-0.4.1/lib/multi_xml.rb +237 -0
  296. data/vendor/bundle/gems/multi_xml-0.4.1/lib/multi_xml/parsers/libxml.rb +30 -0
  297. data/vendor/bundle/gems/multi_xml-0.4.1/lib/multi_xml/parsers/libxml2_parser.rb +66 -0
  298. data/vendor/bundle/gems/multi_xml-0.4.1/lib/multi_xml/parsers/nokogiri.rb +32 -0
  299. data/vendor/bundle/gems/multi_xml-0.4.1/lib/multi_xml/parsers/ox.rb +97 -0
  300. data/vendor/bundle/gems/multi_xml-0.4.1/lib/multi_xml/parsers/rexml.rb +113 -0
  301. data/vendor/bundle/gems/multi_xml-0.4.1/lib/multi_xml/version.rb +3 -0
  302. data/vendor/bundle/gems/multi_xml-0.4.1/multi_xml.gemspec +24 -0
  303. data/vendor/bundle/gems/multi_xml-0.4.1/spec/helper.rb +3 -0
  304. data/vendor/bundle/gems/multi_xml-0.4.1/spec/multi_xml_spec.rb +41 -0
  305. data/vendor/bundle/gems/multi_xml-0.4.1/spec/parser_shared_example.rb +552 -0
  306. data/vendor/bundle/gems/multi_xml-0.4.1/spec/speed.rb +63 -0
  307. data/vendor/bundle/gems/rspec-2.7.0/.document +2 -0
  308. data/vendor/bundle/gems/rspec-2.7.0/.gitignore +8 -0
  309. data/vendor/bundle/gems/rspec-2.7.0/Gemfile +7 -0
  310. data/vendor/bundle/gems/rspec-2.7.0/License.txt +22 -0
  311. data/vendor/bundle/gems/rspec-2.7.0/README.markdown +47 -0
  312. data/vendor/bundle/gems/rspec-2.7.0/Rakefile +30 -0
  313. data/vendor/bundle/gems/rspec-2.7.0/lib/rspec.rb +4 -0
  314. data/vendor/bundle/gems/rspec-2.7.0/lib/rspec/version.rb +5 -0
  315. data/vendor/bundle/gems/rspec-2.7.0/rspec.gemspec +33 -0
  316. data/vendor/bundle/gems/rspec-core-2.7.1/README.md +68 -0
  317. data/vendor/bundle/gems/rspec-core-2.7.1/exe/autospec +13 -0
  318. data/vendor/bundle/gems/rspec-core-2.7.1/exe/rspec +25 -0
  319. data/vendor/bundle/gems/rspec-core-2.7.1/features/Autotest.md +38 -0
  320. data/vendor/bundle/gems/rspec-core-2.7.1/features/README.md +17 -0
  321. data/vendor/bundle/gems/rspec-core-2.7.1/features/Upgrade.md +364 -0
  322. data/vendor/bundle/gems/rspec-core-2.7.1/features/command_line/README.md +28 -0
  323. data/vendor/bundle/gems/rspec-core-2.7.1/features/command_line/configure.feature +22 -0
  324. data/vendor/bundle/gems/rspec-core-2.7.1/features/command_line/example_name_option.feature +86 -0
  325. data/vendor/bundle/gems/rspec-core-2.7.1/features/command_line/exit_status.feature +83 -0
  326. data/vendor/bundle/gems/rspec-core-2.7.1/features/command_line/format_option.feature +81 -0
  327. data/vendor/bundle/gems/rspec-core-2.7.1/features/command_line/line_number_appended_to_path.feature +140 -0
  328. data/vendor/bundle/gems/rspec-core-2.7.1/features/command_line/line_number_option.feature +58 -0
  329. data/vendor/bundle/gems/rspec-core-2.7.1/features/command_line/pattern_option.feature +31 -0
  330. data/vendor/bundle/gems/rspec-core-2.7.1/features/command_line/rake_task.feature +68 -0
  331. data/vendor/bundle/gems/rspec-core-2.7.1/features/command_line/ruby.feature +22 -0
  332. data/vendor/bundle/gems/rspec-core-2.7.1/features/command_line/tag.feature +90 -0
  333. data/vendor/bundle/gems/rspec-core-2.7.1/features/configuration/alias_example_to.feature +48 -0
  334. data/vendor/bundle/gems/rspec-core-2.7.1/features/configuration/custom_settings.feature +84 -0
  335. data/vendor/bundle/gems/rspec-core-2.7.1/features/configuration/default_path.feature +38 -0
  336. data/vendor/bundle/gems/rspec-core-2.7.1/features/configuration/fail_fast.feature +77 -0
  337. data/vendor/bundle/gems/rspec-core-2.7.1/features/configuration/read_options_from_file.feature +87 -0
  338. data/vendor/bundle/gems/rspec-core-2.7.1/features/example_groups/basic_structure.feature +55 -0
  339. data/vendor/bundle/gems/rspec-core-2.7.1/features/example_groups/shared_context.feature +74 -0
  340. data/vendor/bundle/gems/rspec-core-2.7.1/features/example_groups/shared_examples.feature +204 -0
  341. data/vendor/bundle/gems/rspec-core-2.7.1/features/expectation_framework_integration/configure_expectation_framework.feature +73 -0
  342. data/vendor/bundle/gems/rspec-core-2.7.1/features/filtering/exclusion_filters.feature +139 -0
  343. data/vendor/bundle/gems/rspec-core-2.7.1/features/filtering/if_and_unless.feature +168 -0
  344. data/vendor/bundle/gems/rspec-core-2.7.1/features/filtering/inclusion_filters.feature +105 -0
  345. data/vendor/bundle/gems/rspec-core-2.7.1/features/filtering/run_all_when_everything_filtered.feature +46 -0
  346. data/vendor/bundle/gems/rspec-core-2.7.1/features/formatters/custom_formatter.feature +36 -0
  347. data/vendor/bundle/gems/rspec-core-2.7.1/features/formatters/text_formatter.feature +46 -0
  348. data/vendor/bundle/gems/rspec-core-2.7.1/features/helper_methods/arbitrary_methods.feature +40 -0
  349. data/vendor/bundle/gems/rspec-core-2.7.1/features/helper_methods/let.feature +50 -0
  350. data/vendor/bundle/gems/rspec-core-2.7.1/features/helper_methods/modules.feature +149 -0
  351. data/vendor/bundle/gems/rspec-core-2.7.1/features/hooks/around_hooks.feature +343 -0
  352. data/vendor/bundle/gems/rspec-core-2.7.1/features/hooks/before_and_after_hooks.feature +423 -0
  353. data/vendor/bundle/gems/rspec-core-2.7.1/features/hooks/filtering.feature +234 -0
  354. data/vendor/bundle/gems/rspec-core-2.7.1/features/metadata/current_example.feature +17 -0
  355. data/vendor/bundle/gems/rspec-core-2.7.1/features/metadata/described_class.feature +17 -0
  356. data/vendor/bundle/gems/rspec-core-2.7.1/features/metadata/user_defined.feature +113 -0
  357. data/vendor/bundle/gems/rspec-core-2.7.1/features/mock_framework_integration/use_any_framework.feature +106 -0
  358. data/vendor/bundle/gems/rspec-core-2.7.1/features/mock_framework_integration/use_flexmock.feature +96 -0
  359. data/vendor/bundle/gems/rspec-core-2.7.1/features/mock_framework_integration/use_mocha.feature +97 -0
  360. data/vendor/bundle/gems/rspec-core-2.7.1/features/mock_framework_integration/use_rr.feature +98 -0
  361. data/vendor/bundle/gems/rspec-core-2.7.1/features/mock_framework_integration/use_rspec.feature +97 -0
  362. data/vendor/bundle/gems/rspec-core-2.7.1/features/pending/pending_examples.feature +229 -0
  363. data/vendor/bundle/gems/rspec-core-2.7.1/features/spec_files/arbitrary_file_suffix.feature +13 -0
  364. data/vendor/bundle/gems/rspec-core-2.7.1/features/step_definitions/additional_cli_steps.rb +30 -0
  365. data/vendor/bundle/gems/rspec-core-2.7.1/features/subject/attribute_of_subject.feature +122 -0
  366. data/vendor/bundle/gems/rspec-core-2.7.1/features/subject/explicit_subject.feature +78 -0
  367. data/vendor/bundle/gems/rspec-core-2.7.1/features/subject/implicit_receiver.feature +29 -0
  368. data/vendor/bundle/gems/rspec-core-2.7.1/features/subject/implicit_subject.feature +30 -0
  369. data/vendor/bundle/gems/rspec-core-2.7.1/features/support/env.rb +5 -0
  370. data/vendor/bundle/gems/rspec-core-2.7.1/lib/autotest/discover.rb +1 -0
  371. data/vendor/bundle/gems/rspec-core-2.7.1/lib/autotest/rspec2.rb +73 -0
  372. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/autorun.rb +2 -0
  373. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core.rb +81 -0
  374. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/backward_compatibility.rb +63 -0
  375. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/command_line.rb +32 -0
  376. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/command_line_configuration.rb +62 -0
  377. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/configuration.rb +558 -0
  378. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/configuration_options.rb +139 -0
  379. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/deprecation.rb +48 -0
  380. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/drb_command_line.rb +23 -0
  381. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/dsl.rb +11 -0
  382. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/errors.rb +13 -0
  383. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/example.rb +178 -0
  384. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/example_group.rb +348 -0
  385. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/expecting/with_rspec.rb +9 -0
  386. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/expecting/with_stdlib.rb +9 -0
  387. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/extensions.rb +3 -0
  388. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/extensions/instance_eval_with_args.rb +39 -0
  389. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/extensions/kernel.rb +9 -0
  390. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/extensions/module_eval_with_args.rb +34 -0
  391. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/formatters/base_formatter.rb +172 -0
  392. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/formatters/base_text_formatter.rb +185 -0
  393. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/formatters/documentation_formatter.rb +71 -0
  394. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/formatters/helpers.rb +24 -0
  395. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/formatters/html_formatter.rb +458 -0
  396. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/formatters/progress_formatter.rb +32 -0
  397. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/formatters/snippet_extractor.rb +58 -0
  398. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/formatters/text_mate_formatter.rb +34 -0
  399. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/hooks.rb +160 -0
  400. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/let.rb +101 -0
  401. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/load_path.rb +3 -0
  402. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/metadata.rb +229 -0
  403. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/metadata_hash_builder.rb +93 -0
  404. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/mocking/with_absolutely_nothing.rb +11 -0
  405. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/mocking/with_flexmock.rb +27 -0
  406. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/mocking/with_mocha.rb +23 -0
  407. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/mocking/with_rr.rb +27 -0
  408. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/mocking/with_rspec.rb +23 -0
  409. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/option_parser.rb +147 -0
  410. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/pending.rb +38 -0
  411. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/rake_task.rb +201 -0
  412. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/reporter.rb +78 -0
  413. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/ruby_project.rb +44 -0
  414. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/runner.rb +86 -0
  415. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/shared_context.rb +16 -0
  416. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/shared_example_group.rb +67 -0
  417. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/subject.rb +175 -0
  418. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/version.rb +7 -0
  419. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/world.rb +150 -0
  420. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/monkey.rb +1 -0
  421. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/monkey/spork/test_framework/rspec.rb +8 -0
  422. data/vendor/bundle/gems/rspec-core-2.7.1/spec/autotest/discover_spec.rb +19 -0
  423. data/vendor/bundle/gems/rspec-core-2.7.1/spec/autotest/failed_results_re_spec.rb +45 -0
  424. data/vendor/bundle/gems/rspec-core-2.7.1/spec/autotest/rspec_spec.rb +123 -0
  425. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/command_line_configuration_spec.rb +26 -0
  426. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/command_line_spec.rb +169 -0
  427. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/command_line_spec_output.txt +0 -0
  428. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/configuration_options_spec.rb +437 -0
  429. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/configuration_spec.rb +920 -0
  430. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/deprecations_spec.rb +66 -0
  431. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/drb_command_line_spec.rb +124 -0
  432. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/example_group_spec.rb +1046 -0
  433. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/example_spec.rb +289 -0
  434. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/formatters/base_formatter_spec.rb +80 -0
  435. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/formatters/base_text_formatter_spec.rb +344 -0
  436. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/formatters/documentation_formatter_spec.rb +66 -0
  437. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/formatters/helpers_spec.rb +46 -0
  438. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/formatters/html_formatted-1.8.7-jruby.html +462 -0
  439. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/formatters/html_formatted-1.8.7.html +399 -0
  440. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/formatters/html_formatted-1.9.2.html +406 -0
  441. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/formatters/html_formatted-1.9.3.html +406 -0
  442. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/formatters/html_formatter_spec.rb +81 -0
  443. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/formatters/progress_formatter_spec.rb +30 -0
  444. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/formatters/snippet_extractor_spec.rb +18 -0
  445. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/formatters/text_mate_formatted-1.8.7-jruby.html +462 -0
  446. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/formatters/text_mate_formatted-1.8.7.html +399 -0
  447. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/formatters/text_mate_formatted-1.9.2.html +406 -0
  448. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/formatters/text_mate_formatted-1.9.3.html +406 -0
  449. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/formatters/text_mate_formatter_spec.rb +84 -0
  450. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/hooks_filtering_spec.rb +227 -0
  451. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/hooks_spec.rb +143 -0
  452. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/kernel_extensions_spec.rb +9 -0
  453. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/let_spec.rb +55 -0
  454. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/metadata_spec.rb +383 -0
  455. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/option_parser_spec.rb +86 -0
  456. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/pending_example_spec.rb +187 -0
  457. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/rake_task_spec.rb +138 -0
  458. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/reporter_spec.rb +86 -0
  459. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/resources/a_bar.rb +0 -0
  460. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/resources/a_foo.rb +0 -0
  461. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/resources/a_spec.rb +1 -0
  462. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/resources/custom_example_group_runner.rb +14 -0
  463. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/resources/formatter_specs.rb +60 -0
  464. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/resources/utf8_encoded.rb +8 -0
  465. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/rspec_matchers_spec.rb +45 -0
  466. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/ruby_project_spec.rb +24 -0
  467. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/runner_spec.rb +82 -0
  468. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/shared_context_spec.rb +30 -0
  469. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/shared_example_group_spec.rb +84 -0
  470. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/subject_spec.rb +199 -0
  471. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/world_spec.rb +315 -0
  472. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core_spec.rb +31 -0
  473. data/vendor/bundle/gems/rspec-core-2.7.1/spec/spec_helper.rb +92 -0
  474. data/vendor/bundle/gems/rspec-core-2.7.1/spec/support/matchers.rb +75 -0
  475. data/vendor/bundle/gems/rspec-core-2.7.1/spec/support/shared_example_groups.rb +41 -0
  476. data/vendor/bundle/gems/rspec-core-2.7.1/spec/support/spec_files.rb +44 -0
  477. data/vendor/bundle/gems/rspec-expectations-2.7.0/README.md +24 -0
  478. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/README.markdown +49 -0
  479. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/Upgrade.md +53 -0
  480. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/built_in_matchers/README.md +73 -0
  481. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/built_in_matchers/be.feature +135 -0
  482. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/built_in_matchers/be_within.feature +43 -0
  483. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/built_in_matchers/cover.feature +45 -0
  484. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/built_in_matchers/equality.feature +145 -0
  485. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/built_in_matchers/exist.feature +43 -0
  486. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/built_in_matchers/expect_change.feature +59 -0
  487. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/built_in_matchers/expect_error.feature +138 -0
  488. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/built_in_matchers/have.feature +103 -0
  489. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/built_in_matchers/include.feature +121 -0
  490. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/built_in_matchers/match.feature +50 -0
  491. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/built_in_matchers/operators.feature +221 -0
  492. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/built_in_matchers/predicates.feature +128 -0
  493. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/built_in_matchers/respond_to.feature +78 -0
  494. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/built_in_matchers/satisfy.feature +31 -0
  495. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/built_in_matchers/throw_symbol.feature +85 -0
  496. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/built_in_matchers/types.feature +114 -0
  497. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/custom_matchers/access_running_example.feature +53 -0
  498. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/custom_matchers/define_diffable_matcher.feature +27 -0
  499. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/custom_matchers/define_matcher.feature +340 -0
  500. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/custom_matchers/define_matcher_outside_rspec.feature +38 -0
  501. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/custom_matchers/define_matcher_with_fluent_interface.feature +24 -0
  502. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/customized_message.feature +22 -0
  503. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/diffing.feature +85 -0
  504. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/implicit_docstrings.feature +52 -0
  505. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/step_definitions/additional_cli_steps.rb +22 -0
  506. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/support/env.rb +5 -0
  507. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/test_frameworks/test_unit.feature +46 -0
  508. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec-expectations.rb +1 -0
  509. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/expectations.rb +37 -0
  510. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/expectations/deprecation.rb +38 -0
  511. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/expectations/differ.rb +62 -0
  512. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/expectations/errors.rb +9 -0
  513. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/expectations/extensions.rb +3 -0
  514. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/expectations/extensions/array.rb +9 -0
  515. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/expectations/extensions/kernel.rb +26 -0
  516. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/expectations/extensions/object.rb +39 -0
  517. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/expectations/fail_with.rb +54 -0
  518. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/expectations/handler.rb +50 -0
  519. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/expectations/version.rb +8 -0
  520. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers.rb +206 -0
  521. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/be.rb +213 -0
  522. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/be_close.rb +9 -0
  523. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/be_instance_of.rb +26 -0
  524. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/be_kind_of.rb +26 -0
  525. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/be_within.rb +37 -0
  526. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/block_aliases.rb +19 -0
  527. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/change.rb +197 -0
  528. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/compatibility.rb +14 -0
  529. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/cover.rb +35 -0
  530. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/dsl.rb +22 -0
  531. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/eq.rb +46 -0
  532. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/eql.rb +41 -0
  533. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/equal.rb +48 -0
  534. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/errors.rb +5 -0
  535. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/exist.rb +26 -0
  536. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/extensions/instance_eval_with_args.rb +39 -0
  537. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/generated_descriptions.rb +36 -0
  538. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/has.rb +44 -0
  539. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/have.rb +168 -0
  540. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/include.rb +54 -0
  541. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/match.rb +21 -0
  542. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/match_array.rb +71 -0
  543. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/matcher.rb +165 -0
  544. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/method_missing.rb +12 -0
  545. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/operator_matcher.rb +87 -0
  546. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/pretty.rb +37 -0
  547. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/raise_error.rb +130 -0
  548. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/respond_to.rb +85 -0
  549. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/satisfy.rb +51 -0
  550. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/throw_symbol.rb +121 -0
  551. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/expectations/differ_spec.rb +96 -0
  552. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/expectations/extensions/kernel_spec.rb +45 -0
  553. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/expectations/fail_with_spec.rb +70 -0
  554. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/expectations/handler_spec.rb +206 -0
  555. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/be_close_spec.rb +22 -0
  556. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/be_instance_of_spec.rb +36 -0
  557. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/be_kind_of_spec.rb +33 -0
  558. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/be_spec.rb +452 -0
  559. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/be_within_spec.rb +64 -0
  560. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/change_spec.rb +522 -0
  561. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/compatibility_spec.rb +28 -0
  562. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/cover_spec.rb +65 -0
  563. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/description_generation_spec.rb +176 -0
  564. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/dsl_spec.rb +25 -0
  565. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/eq_spec.rb +38 -0
  566. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/eql_spec.rb +37 -0
  567. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/equal_spec.rb +57 -0
  568. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/exist_spec.rb +104 -0
  569. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/has_spec.rb +113 -0
  570. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/have_spec.rb +458 -0
  571. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/include_spec.rb +341 -0
  572. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/match_array_spec.rb +108 -0
  573. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/match_spec.rb +57 -0
  574. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/matcher_spec.rb +420 -0
  575. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/matchers_spec.rb +31 -0
  576. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/method_missing_spec.rb +23 -0
  577. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/operator_matcher_spec.rb +221 -0
  578. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/raise_error_spec.rb +339 -0
  579. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/respond_to_spec.rb +292 -0
  580. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/satisfy_spec.rb +40 -0
  581. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/throw_symbol_spec.rb +113 -0
  582. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/spec_helper.rb +26 -0
  583. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/support/classes.rb +56 -0
  584. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/support/matchers.rb +22 -0
  585. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/support/ruby_version.rb +10 -0
  586. data/vendor/bundle/gems/rspec-mocks-2.7.0/README.md +40 -0
  587. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/README.markdown +67 -0
  588. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/Scope.md +17 -0
  589. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/Upgrade.md +22 -0
  590. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/argument_matchers/README.md +27 -0
  591. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/argument_matchers/explicit.feature +60 -0
  592. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/argument_matchers/general_matchers.feature +85 -0
  593. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/argument_matchers/type_matchers.feature +25 -0
  594. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/message_expectations/README.md +58 -0
  595. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/message_expectations/any_instance.feature +21 -0
  596. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/message_expectations/block_local_expectations.feature.pending +55 -0
  597. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/message_expectations/expect_message.feature +94 -0
  598. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/message_expectations/receive_counts.feature +209 -0
  599. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/message_expectations/warn_when_expectation_is_set_on_nil.feature +50 -0
  600. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/method_stubs/README.md +43 -0
  601. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/method_stubs/any_instance.feature +133 -0
  602. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/method_stubs/as_null_object.feature +36 -0
  603. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/method_stubs/simple_return_value.feature +64 -0
  604. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/method_stubs/stub_chain.feature +51 -0
  605. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/method_stubs/stub_implementation.feature +26 -0
  606. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/method_stubs/to_ary.feature +47 -0
  607. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/outside_rspec/configuration.feature +82 -0
  608. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/outside_rspec/standalone.feature +32 -0
  609. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/step_definitions/additional_cli_steps.rb +4 -0
  610. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/support/env.rb +6 -0
  611. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks.rb +196 -0
  612. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/any_instance.rb +29 -0
  613. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/any_instance/chain.rb +49 -0
  614. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/any_instance/expectation_chain.rb +33 -0
  615. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/any_instance/message_chains.rb +48 -0
  616. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/any_instance/recorder.rb +168 -0
  617. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/any_instance/stub_chain.rb +35 -0
  618. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/any_instance/stub_chain_chain.rb +34 -0
  619. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/argument_expectation.rb +54 -0
  620. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/argument_matchers.rb +227 -0
  621. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/error_generator.rb +97 -0
  622. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/errors.rb +10 -0
  623. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/extensions/instance_exec.rb +31 -0
  624. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/extensions/marshal.rb +23 -0
  625. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/extensions/psych.rb +23 -0
  626. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/framework.rb +18 -0
  627. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/message_expectation.rb +357 -0
  628. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/method_double.rb +165 -0
  629. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/methods.rb +98 -0
  630. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/mock.rb +79 -0
  631. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/order_group.rb +29 -0
  632. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/proxy.rb +158 -0
  633. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/serialization.rb +28 -0
  634. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/space.rb +28 -0
  635. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/spec_methods.rb +53 -0
  636. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/standalone.rb +3 -0
  637. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/version.rb +7 -0
  638. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/spec/mocks.rb +2 -0
  639. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/and_yield_spec.rb +114 -0
  640. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/any_instance/message_chains_spec.rb +40 -0
  641. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/any_instance_spec.rb +785 -0
  642. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/any_number_of_times_spec.rb +30 -0
  643. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/argument_expectation_spec.rb +37 -0
  644. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/at_least_spec.rb +103 -0
  645. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/at_most_spec.rb +99 -0
  646. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/block_return_value_spec.rb +45 -0
  647. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/bug_report_10260_spec.rb +8 -0
  648. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/bug_report_10263_spec.rb +25 -0
  649. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/bug_report_11545_spec.rb +32 -0
  650. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/bug_report_496_spec.rb +17 -0
  651. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/bug_report_600_spec.rb +22 -0
  652. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/bug_report_7611_spec.rb +16 -0
  653. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/bug_report_8165_spec.rb +31 -0
  654. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/bug_report_830_spec.rb +21 -0
  655. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/bug_report_957_spec.rb +22 -0
  656. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/double_spec.rb +12 -0
  657. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/failing_argument_matchers_spec.rb +95 -0
  658. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/hash_including_matcher_spec.rb +90 -0
  659. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/hash_not_including_matcher_spec.rb +67 -0
  660. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/mock_ordering_spec.rb +94 -0
  661. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/mock_space_spec.rb +54 -0
  662. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/mock_spec.rb +702 -0
  663. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/multiple_return_value_spec.rb +191 -0
  664. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/nil_expectation_warning_spec.rb +62 -0
  665. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/null_object_mock_spec.rb +78 -0
  666. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/once_counts_spec.rb +53 -0
  667. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/options_hash_spec.rb +35 -0
  668. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/partial_mock_spec.rb +156 -0
  669. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/partial_mock_using_mocks_directly_spec.rb +95 -0
  670. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/passing_argument_matchers_spec.rb +142 -0
  671. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/precise_counts_spec.rb +58 -0
  672. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/record_messages_spec.rb +26 -0
  673. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/serialization_spec.rb +111 -0
  674. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/stash_spec.rb +27 -0
  675. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/stub_chain_spec.rb +149 -0
  676. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/stub_implementation_spec.rb +68 -0
  677. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/stub_spec.rb +235 -0
  678. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/stubbed_message_expectations_spec.rb +26 -0
  679. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/to_ary_spec.rb +40 -0
  680. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/twice_counts_spec.rb +67 -0
  681. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks_spec.rb +51 -0
  682. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/spec_helper.rb +52 -0
  683. data/vendor/bundle/specifications/diff-lcs-1.1.3.gemspec +35 -0
  684. data/vendor/bundle/specifications/httparty-0.8.1.gemspec +34 -0
  685. data/vendor/bundle/specifications/json-1.6.3.gemspec +39 -0
  686. data/vendor/bundle/specifications/multi_json-1.0.4.gemspec +40 -0
  687. data/vendor/bundle/specifications/multi_xml-0.4.1.gemspec +49 -0
  688. data/vendor/bundle/specifications/rspec-2.7.0.gemspec +38 -0
  689. data/vendor/bundle/specifications/rspec-core-2.7.1.gemspec +31 -0
  690. data/vendor/bundle/specifications/rspec-expectations-2.7.0.gemspec +32 -0
  691. data/vendor/bundle/specifications/rspec-mocks-2.7.0.gemspec +29 -0
  692. metadata +771 -0
@@ -0,0 +1,1001 @@
1
+ #scatter real total user system repeat
2
+ 1 0.00156402587890625 0.0 0.0 0.0 1
3
+ 2 0.00149393081665039 0.0 0.0 0.0 2
4
+ 3 0.00144386291503906 0.0 0.0 0.0 3
5
+ 4 0.0014338493347168 0.00999999999999979 0.00999999999999979 0.0 4
6
+ 5 0.00144386291503906 0.0 0.0 0.0 5
7
+ 6 0.00141716003417969 0.0 0.0 0.0 6
8
+ 7 0.00143003463745117 0.0 0.0 0.0 7
9
+ 8 0.0014190673828125 0.0 0.0 0.0 8
10
+ 9 0.00141215324401855 0.0 0.0 0.0 9
11
+ 10 0.00143003463745117 0.0 0.0 0.0 10
12
+ 11 0.00141310691833496 0.0100000000000007 0.0100000000000002 0.0 11
13
+ 12 0.0014190673828125 0.0 0.0 0.0 12
14
+ 13 0.00155305862426758 0.0 0.0 0.0 13
15
+ 14 0.00142192840576172 0.0 0.0 0.0 14
16
+ 15 0.00141000747680664 0.0 0.0 0.0 15
17
+ 16 0.00142812728881836 0.0 0.0 0.0 16
18
+ 17 0.00143098831176758 0.0 0.0 0.0 17
19
+ 18 0.00151705741882324 0.00999999999999979 0.00999999999999979 0.0 18
20
+ 19 0.00141406059265137 0.0 0.0 0.0 19
21
+ 20 0.0014197826385498 0.0 0.0 0.0 20
22
+ 21 0.00142383575439453 0.0 0.0 0.0 21
23
+ 22 0.00141191482543945 0.0 0.0 0.0 22
24
+ 23 0.00156402587890625 0.0 0.0 0.0 23
25
+ 24 0.00142812728881836 0.00999999999999979 0.00999999999999979 0.0 24
26
+ 25 0.00139307975769043 0.0 0.0 0.0 25
27
+ 26 0.00141000747680664 0.0 0.0 0.0 26
28
+ 27 0.00255894660949707 0.0 0.0 0.0 27
29
+ 28 0.00261497497558594 0.0 0.0 0.0 28
30
+ 29 0.00254607200622559 0.00999999999999979 0.00999999999999979 0.0 29
31
+ 30 0.00245094299316406 0.0 0.0 0.0 30
32
+ 31 0.00142312049865723 0.0 0.0 0.0 31
33
+ 32 0.00141000747680664 0.0 0.0 0.0 32
34
+ 33 0.00139904022216797 0.0 0.0 0.0 33
35
+ 34 0.00141096115112305 0.0 0.0 0.0 34
36
+ 35 0.00139689445495605 0.0100000000000007 0.0100000000000007 0.0 35
37
+ 36 0.00140500068664551 0.0 0.0 0.0 36
38
+ 37 0.00140786170959473 0.0 0.0 0.0 37
39
+ 38 0.00144600868225098 0.0 0.0 0.0 38
40
+ 39 0.00139689445495605 0.0 0.0 0.0 39
41
+ 40 0.00140810012817383 0.0 0.0 0.0 40
42
+ 41 0.00141406059265137 0.0 0.0 0.0 41
43
+ 42 0.00140595436096191 0.00999999999999979 0.00999999999999979 0.0 42
44
+ 43 0.00140094757080078 0.0 0.0 0.0 43
45
+ 44 0.00138092041015625 0.0 0.0 0.0 44
46
+ 45 0.00151491165161133 0.0 0.0 0.0 45
47
+ 46 0.00203394889831543 0.0 0.0 0.0 46
48
+ 47 0.00142693519592285 0.0 0.0 0.0 47
49
+ 48 0.00138998031616211 0.00999999999999979 0.00999999999999979 0.0 48
50
+ 49 0.00144696235656738 0.0 0.0 0.0 49
51
+ 50 0.00140500068664551 0.0 0.0 0.0 50
52
+ 51 0.00138998031616211 0.0 0.0 0.0 51
53
+ 52 0.00141000747680664 0.0 0.0 0.0 52
54
+ 53 0.00139188766479492 0.0 0.0 0.0 53
55
+ 54 0.00142598152160645 0.0 0.0 0.0 54
56
+ 55 0.00141406059265137 0.00999999999999979 0.00999999999999979 0.0 55
57
+ 56 0.00139594078063965 0.0 0.0 0.0 56
58
+ 57 0.00139284133911133 0.0 0.0 0.0 57
59
+ 58 0.00141692161560059 0.0 0.0 0.0 58
60
+ 59 0.00140810012817383 0.0 0.0 0.0 59
61
+ 60 0.00141215324401855 0.0 0.0 0.0 60
62
+ 61 0.00145602226257324 0.0 0.0 0.0 61
63
+ 62 0.0231201648712158 0.0300000000000002 0.0300000000000002 0.0 62
64
+ 63 0.0014808177947998 0.0 0.0 0.0 63
65
+ 64 0.00142788887023926 0.0 0.0 0.0 64
66
+ 65 0.00147199630737305 0.0 0.0 0.0 65
67
+ 66 0.00143098831176758 0.0 0.0 0.0 66
68
+ 67 0.00142908096313477 0.0 0.0 0.0 67
69
+ 68 0.00142097473144531 0.00999999999999979 0.00999999999999979 0.0 68
70
+ 69 0.00142598152160645 0.0 0.0 0.0 69
71
+ 70 0.00142812728881836 0.0 0.0 0.0 70
72
+ 71 0.00140595436096191 0.0 0.0 0.0 71
73
+ 72 0.00142288208007812 0.0 0.0 0.0 72
74
+ 73 0.00140810012817383 0.0 0.0 0.0 73
75
+ 74 0.00141692161560059 0.0 0.0 0.0 74
76
+ 75 0.00140786170959473 0.0100000000000007 0.0100000000000007 0.0 75
77
+ 76 0.00142312049865723 0.0 0.0 0.0 76
78
+ 77 0.00140213966369629 0.0 0.0 0.0 77
79
+ 78 0.00140500068664551 0.0 0.0 0.0 78
80
+ 79 0.00141096115112305 0.0 0.0 0.0 79
81
+ 80 0.00141406059265137 0.0 0.0 0.0 80
82
+ 81 0.00141310691833496 0.0 0.0 0.0 81
83
+ 82 0.00140905380249023 0.00999999999999979 0.00999999999999979 0.0 82
84
+ 83 0.00140190124511719 0.0 0.0 0.0 83
85
+ 84 0.00140881538391113 0.0 0.0 0.0 84
86
+ 85 0.00141191482543945 0.0 0.0 0.0 85
87
+ 86 0.00141406059265137 0.0 0.0 0.0 86
88
+ 87 0.00142097473144531 0.0 0.0 0.0 87
89
+ 88 0.0013890266418457 0.0 0.0 0.0 88
90
+ 89 0.00141406059265137 0.00999999999999979 0.00999999999999979 0.0 89
91
+ 90 0.00139498710632324 0.0 0.0 0.0 90
92
+ 91 0.00141286849975586 0.0 0.0 0.0 91
93
+ 92 0.00141096115112305 0.0 0.0 0.0 92
94
+ 93 0.00140190124511719 0.0 0.0 0.0 93
95
+ 94 0.00141501426696777 0.0 0.0 0.0 94
96
+ 95 0.0013880729675293 0.0 0.0 0.0 95
97
+ 96 0.00140595436096191 0.00999999999999979 0.00999999999999979 0.0 96
98
+ 97 0.00140213966369629 0.0 0.0 0.0 97
99
+ 98 0.0014040470123291 0.0 0.0 0.0 98
100
+ 99 0.00140500068664551 0.0 0.0 0.0 99
101
+ 100 0.00141501426696777 0.0 0.0 0.0 100
102
+ 101 0.00141119956970215 0.0 0.0 0.0 101
103
+ 102 0.00139808654785156 0.0 0.0 0.0 102
104
+ 103 0.00141000747680664 0.0 0.0 0.0 103
105
+ 104 0.00137805938720703 0.0 0.0 0.0 104
106
+ 105 0.00139307975769043 0.0 0.0 0.0 105
107
+ 106 0.00139594078063965 0.0 0.0 0.0 106
108
+ 107 0.00138688087463379 0.0 0.0 0.0 107
109
+ 108 0.00140810012817383 0.0 0.0 0.0 108
110
+ 109 0.00140094757080078 0.00999999999999979 0.00999999999999979 0.0 109
111
+ 110 0.00139999389648438 0.0 0.0 0.0 110
112
+ 111 0.00139808654785156 0.0 0.0 0.0 111
113
+ 112 0.00141096115112305 0.0 0.0 0.0 112
114
+ 113 0.00139212608337402 0.0 0.0 0.0 113
115
+ 114 0.00142288208007812 0.0 0.0 0.0 114
116
+ 115 0.00139188766479492 0.0 0.0 0.0 115
117
+ 116 0.00140810012817383 0.00999999999999979 0.00999999999999979 0.0 116
118
+ 117 0.00147700309753418 0.0 0.0 0.0 117
119
+ 118 0.00140810012817383 0.0 0.0 0.0 118
120
+ 119 0.0014030933380127 0.0 0.0 0.0 119
121
+ 120 0.00142097473144531 0.0 0.0 0.0 120
122
+ 121 0.00140213966369629 0.0 0.0 0.0 121
123
+ 122 0.00139689445495605 0.0 0.0 0.0 122
124
+ 123 0.0233688354492188 0.0300000000000002 0.0300000000000002 0.0 123
125
+ 124 0.0014951229095459 0.0 0.0 0.0 124
126
+ 125 0.00143909454345703 0.0 0.0 0.0 125
127
+ 126 0.00145697593688965 0.0 0.0 0.0 126
128
+ 127 0.00147509574890137 0.0 0.0 0.0 127
129
+ 128 0.00142598152160645 0.0 0.0 0.0 128
130
+ 129 0.00143003463745117 0.00999999999999979 0.00999999999999979 0.0 129
131
+ 130 0.00141477584838867 0.0 0.0 0.0 130
132
+ 131 0.00142502784729004 0.0 0.0 0.0 131
133
+ 132 0.00140786170959473 0.0 0.0 0.0 132
134
+ 133 0.00141310691833496 0.0 0.0 0.0 133
135
+ 134 0.00141000747680664 0.0 0.0 0.0 134
136
+ 135 0.00141501426696777 0.00999999999999979 0.00999999999999979 0.0 135
137
+ 136 0.00141501426696777 0.0 0.0 0.0 136
138
+ 137 0.0014190673828125 0.0 0.0 0.0 137
139
+ 138 0.00140500068664551 0.0 0.0 0.0 138
140
+ 139 0.00140595436096191 0.0 0.0 0.0 139
141
+ 140 0.00143909454345703 0.0 0.0 0.0 140
142
+ 141 0.00140094757080078 0.0 0.0 0.0 141
143
+ 142 0.00142407417297363 0.0100000000000007 0.0100000000000007 0.0 142
144
+ 143 0.00141406059265137 0.0 0.0 0.0 143
145
+ 144 0.00142002105712891 0.0 0.0 0.0 144
146
+ 145 0.00140094757080078 0.0 0.0 0.0 145
147
+ 146 0.00140690803527832 0.0 0.0 0.0 146
148
+ 147 0.0014188289642334 0.0 0.0 0.0 147
149
+ 148 0.00142002105712891 0.0 0.0 0.0 148
150
+ 149 0.00139808654785156 0.00999999999999979 0.00999999999999979 0.0 149
151
+ 150 0.00139594078063965 0.0 0.0 0.0 150
152
+ 151 0.00140285491943359 0.0 0.0 0.0 151
153
+ 152 0.0013880729675293 0.0 0.0 0.0 152
154
+ 153 0.00139498710632324 0.0 0.0 0.0 153
155
+ 154 0.0014040470123291 0.0 0.0 0.0 154
156
+ 155 0.0014040470123291 0.0 0.0 0.0 155
157
+ 156 0.00140094757080078 0.00999999999999979 0.00999999999999979 0.0 156
158
+ 157 0.0014030933380127 0.0 0.0 0.0 157
159
+ 158 0.00138711929321289 0.0 0.0 0.0 158
160
+ 159 0.00139999389648438 0.0 0.0 0.0 159
161
+ 160 0.00140595436096191 0.0 0.0 0.0 160
162
+ 161 0.00139689445495605 0.0 0.0 0.0 161
163
+ 162 0.00141000747680664 0.0 0.0 0.0 162
164
+ 163 0.00140094757080078 0.00999999999999979 0.00999999999999979 0.0 163
165
+ 164 0.00140905380249023 0.0 0.0 0.0 164
166
+ 165 0.00251889228820801 0.0 0.0 0.0 165
167
+ 166 0.00264787673950195 0.0 0.0 0.0 166
168
+ 167 0.00169110298156738 0.0 0.0 0.0 167
169
+ 168 0.00159692764282227 0.00999999999999979 0.00999999999999979 0.0 168
170
+ 169 0.00142788887023926 0.0 0.0 0.0 169
171
+ 170 0.00155997276306152 0.0 0.0 0.0 170
172
+ 171 0.00141811370849609 0.0 0.0 0.0 171
173
+ 172 0.00139784812927246 0.0 0.0 0.0 172
174
+ 173 0.00142884254455566 0.0 0.0 0.0 173
175
+ 174 0.00139999389648438 0.0 0.0 0.0 174
176
+ 175 0.00139784812927246 0.0100000000000007 0.0100000000000007 0.0 175
177
+ 176 0.00139999389648438 0.0 0.0 0.0 176
178
+ 177 0.00145101547241211 0.0 0.0 0.0 177
179
+ 178 0.00141716003417969 0.0 0.0 0.0 178
180
+ 179 0.00143289566040039 0.0 0.0 0.0 179
181
+ 180 0.00141310691833496 0.0 0.0 0.0 180
182
+ 181 0.00141406059265137 0.0 0.0 0.0 181
183
+ 182 0.00141406059265137 0.0 0.0 0.0 182
184
+ 183 0.00141310691833496 0.0 0.0 0.0 183
185
+ 184 0.00140595436096191 0.0 0.0 0.0 184
186
+ 185 0.0231029987335205 0.0199999999999996 0.0199999999999996 0.0 185
187
+ 186 0.00171899795532227 0.0 0.0 0.0 186
188
+ 187 0.00143694877624512 0.0100000000000007 0.0100000000000007 0.0 187
189
+ 188 0.00144410133361816 0.0 0.0 0.0 188
190
+ 189 0.00142693519592285 0.0 0.0 0.0 189
191
+ 190 0.00143599510192871 0.0 0.0 0.0 190
192
+ 191 0.00142097473144531 0.0 0.0 0.0 191
193
+ 192 0.00142979621887207 0.0 0.0 0.0 192
194
+ 193 0.00142502784729004 0.0 0.0 0.0 193
195
+ 194 0.00142002105712891 0.00999999999999979 0.00999999999999979 0.0 194
196
+ 195 0.00142908096313477 0.0 0.0 0.0 195
197
+ 196 0.00141191482543945 0.0 0.0 0.0 196
198
+ 197 0.00141382217407227 0.0 0.0 0.0 197
199
+ 198 0.00141191482543945 0.0 0.0 0.0 198
200
+ 199 0.00143718719482422 0.0 0.0 0.0 199
201
+ 200 0.00141096115112305 0.0 0.0 0.0 200
202
+ 201 0.00142407417297363 0.00999999999999979 0.00999999999999979 0.0 201
203
+ 202 0.00146198272705078 0.0 0.0 0.0 202
204
+ 203 0.00143194198608398 0.0 0.0 0.0 203
205
+ 204 0.00138998031616211 0.0 0.0 0.0 204
206
+ 205 0.00140595436096191 0.0 0.0 0.0 205
207
+ 206 0.00142097473144531 0.0 0.0 0.0 206
208
+ 207 0.00141787528991699 0.00999999999999979 0.00999999999999979 0.0 207
209
+ 208 0.00145101547241211 0.0 0.0 0.0 208
210
+ 209 0.00143909454345703 0.0 0.0 0.0 209
211
+ 210 0.00141215324401855 0.0 0.0 0.0 210
212
+ 211 0.00140094757080078 0.0 0.0 0.0 211
213
+ 212 0.0014030933380127 0.0 0.0 0.0 212
214
+ 213 0.00140595436096191 0.0 0.0 0.0 213
215
+ 214 0.00143194198608398 0.0100000000000007 0.0100000000000007 0.0 214
216
+ 215 0.00139999389648438 0.0 0.0 0.0 215
217
+ 216 0.00140786170959473 0.0 0.0 0.0 216
218
+ 217 0.00141501426696777 0.0 0.0 0.0 217
219
+ 218 0.00139904022216797 0.0 0.0 0.0 218
220
+ 219 0.00141310691833496 0.0 0.0 0.0 219
221
+ 220 0.00140786170959473 0.0 0.0 0.0 220
222
+ 221 0.00146889686584473 0.00999999999999979 0.00999999999999979 0.0 221
223
+ 222 0.00139880180358887 0.0 0.0 0.0 222
224
+ 223 0.00141501426696777 0.0 0.0 0.0 223
225
+ 224 0.00139808654785156 0.0 0.0 0.0 224
226
+ 225 0.00140690803527832 0.0 0.0 0.0 225
227
+ 226 0.00140500068664551 0.0 0.0 0.0 226
228
+ 227 0.00139713287353516 0.0 0.0 0.0 227
229
+ 228 0.00139498710632324 0.00999999999999979 0.00999999999999979 0.0 228
230
+ 229 0.00141000747680664 0.0 0.0 0.0 229
231
+ 230 0.00139284133911133 0.0 0.0 0.0 230
232
+ 231 0.00140690803527832 0.0 0.0 0.0 231
233
+ 232 0.0014040470123291 0.0 0.0 0.0 232
234
+ 233 0.00137710571289062 0.0 0.0 0.0 233
235
+ 234 0.00140595436096191 0.0 0.0 0.0 234
236
+ 235 0.00137901306152344 0.0 0.0 0.0 235
237
+ 236 0.00143909454345703 0.00999999999999979 0.00999999999999979 0.0 236
238
+ 237 0.00138688087463379 0.0 0.0 0.0 237
239
+ 238 0.00141811370849609 0.0 0.0 0.0 238
240
+ 239 0.00141406059265137 0.0 0.0 0.0 239
241
+ 240 0.00139284133911133 0.0 0.0 0.0 240
242
+ 241 0.0014188289642334 0.0 0.0 0.0 241
243
+ 242 0.0013878345489502 0.0 0.0 0.0 242
244
+ 243 0.00142407417297363 0.0100000000000007 0.0100000000000007 0.0 243
245
+ 244 0.00141000747680664 0.0 0.0 0.0 244
246
+ 245 0.00146222114562988 0.0 0.0 0.0 245
247
+ 246 0.0225439071655273 0.0199999999999996 0.0199999999999996 0.0 246
248
+ 247 0.00150012969970703 0.0 0.0 0.0 247
249
+ 248 0.00144600868225098 0.0 0.0 0.0 248
250
+ 249 0.00144791603088379 0.0 0.0 0.0 249
251
+ 250 0.00143003463745117 0.0 0.0 0.0 250
252
+ 251 0.00143313407897949 0.0 0.0 0.0 251
253
+ 252 0.00141406059265137 0.0 0.0 0.0 252
254
+ 253 0.00143194198608398 0.0 0.0 0.0 253
255
+ 254 0.00141596794128418 0.0 0.0 0.0 254
256
+ 255 0.00141811370849609 0.0 0.0 0.0 255
257
+ 256 0.00142002105712891 0.0100000000000007 0.0100000000000007 0.0 256
258
+ 257 0.0014190673828125 0.0 0.0 0.0 257
259
+ 258 0.00141000747680664 0.0 0.0 0.0 258
260
+ 259 0.00142097473144531 0.0 0.0 0.0 259
261
+ 260 0.00142192840576172 0.0 0.0 0.0 260
262
+ 261 0.00141096115112305 0.0 0.0 0.0 261
263
+ 262 0.00141215324401855 0.0 0.0 0.0 262
264
+ 263 0.00141501426696777 0.00999999999999979 0.00999999999999979 0.0 263
265
+ 264 0.00141096115112305 0.0 0.0 0.0 264
266
+ 265 0.00140213966369629 0.0 0.0 0.0 265
267
+ 266 0.00142192840576172 0.0 0.0 0.0 266
268
+ 267 0.0014030933380127 0.0 0.0 0.0 267
269
+ 268 0.00141596794128418 0.0 0.0 0.0 268
270
+ 269 0.00141000747680664 0.0 0.0 0.0 269
271
+ 270 0.00141406059265137 0.00999999999999979 0.00999999999999979 0.0 270
272
+ 271 0.00140810012817383 0.0 0.0 0.0 271
273
+ 272 0.00141215324401855 0.0 0.0 0.0 272
274
+ 273 0.00139999389648438 0.0 0.0 0.0 273
275
+ 274 0.00139093399047852 0.0 0.0 0.0 274
276
+ 275 0.00149083137512207 0.0 0.0 0.0 275
277
+ 276 0.00139594078063965 0.0 0.0 0.0 276
278
+ 277 0.00141191482543945 0.00999999999999979 0.00999999999999979 0.0 277
279
+ 278 0.0013887882232666 0.0 0.0 0.0 278
280
+ 279 0.00141382217407227 0.0 0.0 0.0 279
281
+ 280 0.0014030933380127 0.0 0.0 0.0 280
282
+ 281 0.00141787528991699 0.0 0.0 0.0 281
283
+ 282 0.0014030933380127 0.0 0.0 0.0 282
284
+ 283 0.00140714645385742 0.0100000000000007 0.0100000000000007 0.0 283
285
+ 284 0.00139999389648438 0.0 0.0 0.0 284
286
+ 285 0.00139904022216797 0.0 0.0 0.0 285
287
+ 286 0.00141000747680664 0.0 0.0 0.0 286
288
+ 287 0.00139498710632324 0.0 0.0 0.0 287
289
+ 288 0.00140500068664551 0.0 0.0 0.0 288
290
+ 289 0.00140810012817383 0.0 0.0 0.0 289
291
+ 290 0.00141096115112305 0.00999999999999979 0.00999999999999979 0.0 290
292
+ 291 0.0014030933380127 0.0 0.0 0.0 291
293
+ 292 0.00141692161560059 0.0 0.0 0.0 292
294
+ 293 0.00140786170959473 0.0 0.0 0.0 293
295
+ 294 0.00140810012817383 0.0 0.0 0.0 294
296
+ 295 0.00141000747680664 0.0 0.0 0.0 295
297
+ 296 0.00139212608337402 0.0 0.0 0.0 296
298
+ 297 0.00141406059265137 0.0 0.0 0.0 297
299
+ 298 0.0013890266418457 0.00999999999999979 0.00999999999999979 0.0 298
300
+ 299 0.00141096115112305 0.0 0.0 0.0 299
301
+ 300 0.00139379501342773 0.0 0.0 0.0 300
302
+ 301 0.00141501426696777 0.0 0.0 0.0 301
303
+ 302 0.00139498710632324 0.0 0.0 0.0 302
304
+ 303 0.00139594078063965 0.0 0.0 0.0 303
305
+ 304 0.00140690803527832 0.0 0.0 0.0 304
306
+ 305 0.00188708305358887 0.00999999999999979 0.00999999999999979 0.0 305
307
+ 306 0.00266003608703613 0.0 0.0 0.0 306
308
+ 307 0.00257205963134766 0.0 0.0 0.0 307
309
+ 308 0.0239479541778564 0.0300000000000002 0.0300000000000002 0.0 308
310
+ 309 0.0016789436340332 0.0 0.0 0.0 309
311
+ 310 0.00142788887023926 0.0 0.0 0.0 310
312
+ 311 0.00144720077514648 0.0 0.0 0.0 311
313
+ 312 0.00142407417297363 0.0 0.0 0.0 312
314
+ 313 0.00144100189208984 0.0 0.0 0.0 313
315
+ 314 0.00140810012817383 0.0 0.0 0.0 314
316
+ 315 0.00142502784729004 0.00999999999999979 0.00999999999999979 0.0 315
317
+ 316 0.00141501426696777 0.0 0.0 0.0 316
318
+ 317 0.00142884254455566 0.0 0.0 0.0 317
319
+ 318 0.00140810012817383 0.0 0.0 0.0 318
320
+ 319 0.00141692161560059 0.0 0.0 0.0 319
321
+ 320 0.00141096115112305 0.0 0.0 0.0 320
322
+ 321 0.00143098831176758 0.0 0.0 0.0 321
323
+ 322 0.00141501426696777 0.00999999999999979 0.00999999999999979 0.0 322
324
+ 323 0.00141501426696777 0.0 0.0 0.0 323
325
+ 324 0.00140595436096191 0.0 0.0 0.0 324
326
+ 325 0.00141692161560059 0.0 0.0 0.0 325
327
+ 326 0.00150609016418457 0.0 0.0 0.0 326
328
+ 327 0.00142478942871094 0.0 0.0 0.0 327
329
+ 328 0.00141191482543945 0.0 0.0 0.0 328
330
+ 329 0.00140190124511719 0.0100000000000007 0.0100000000000007 0.0 329
331
+ 330 0.00142121315002441 0.0 0.0 0.0 330
332
+ 331 0.00140500068664551 0.0 0.0 0.0 331
333
+ 332 0.00142288208007812 0.0 0.0 0.0 332
334
+ 333 0.00139188766479492 0.0 0.0 0.0 333
335
+ 334 0.00141811370849609 0.0 0.0 0.0 334
336
+ 335 0.00139999389648438 0.0 0.0 0.0 335
337
+ 336 0.00138592720031738 0.00999999999999979 0.00999999999999979 0.0 336
338
+ 337 0.00139522552490234 0.0 0.0 0.0 337
339
+ 338 0.00139093399047852 0.0 0.0 0.0 338
340
+ 339 0.00140500068664551 0.0 0.0 0.0 339
341
+ 340 0.00138497352600098 0.0 0.0 0.0 340
342
+ 341 0.00139999389648438 0.0 0.0 0.0 341
343
+ 342 0.00139594078063965 0.0 0.0 0.0 342
344
+ 343 0.00139617919921875 0.00999999999999979 0.00999999999999979 0.0 343
345
+ 344 0.00139784812927246 0.0 0.0 0.0 344
346
+ 345 0.00139784812927246 0.0 0.0 0.0 345
347
+ 346 0.00141716003417969 0.0 0.0 0.0 346
348
+ 347 0.00139307975769043 0.0 0.0 0.0 347
349
+ 348 0.00141191482543945 0.0 0.0 0.0 348
350
+ 349 0.00139999389648438 0.0 0.0 0.0 349
351
+ 350 0.00140380859375 0.00999999999999979 0.00999999999999979 0.0 350
352
+ 351 0.00140500068664551 0.0 0.0 0.0 351
353
+ 352 0.00149989128112793 0.0 0.0 0.0 352
354
+ 353 0.00278902053833008 0.0 0.0 0.0 353
355
+ 354 0.00261592864990234 0.0 0.0 0.0 354
356
+ 355 0.00245213508605957 0.0100000000000007 0.0100000000000007 0.0 355
357
+ 356 0.00246095657348633 0.0 0.0 0.0 356
358
+ 357 0.00265288352966309 0.0 0.0 0.0 357
359
+ 358 0.00261092185974121 0.00999999999999979 0.00999999999999979 0.0 358
360
+ 359 0.00242495536804199 0.0 0.0 0.0 359
361
+ 360 0.00170683860778809 0.0 0.0 0.0 360
362
+ 361 0.00139093399047852 0.0 0.0 0.0 361
363
+ 362 0.00142908096313477 0.0 0.0 0.0 362
364
+ 363 0.00140976905822754 0.0 0.0 0.0 363
365
+ 364 0.00142288208007812 0.00999999999999979 0.00999999999999979 0.0 364
366
+ 365 0.00140380859375 0.0 0.0 0.0 365
367
+ 366 0.00140714645385742 0.0 0.0 0.0 366
368
+ 367 0.00139594078063965 0.0 0.0 0.0 367
369
+ 368 0.00140118598937988 0.0 0.0 0.0 368
370
+ 369 0.0262439250946045 0.0300000000000002 0.0200000000000005 0.01 369
371
+ 370 0.00150489807128906 0.00999999999999979 0.00999999999999979 0.0 370
372
+ 371 0.00143313407897949 0.0 0.0 0.0 371
373
+ 372 0.00153613090515137 0.0 0.0 0.0 372
374
+ 373 0.00143313407897949 0.0 0.0 0.0 373
375
+ 374 0.00144290924072266 0.0 0.0 0.0 374
376
+ 375 0.00142097473144531 0.0 0.0 0.0 375
377
+ 376 0.00142097473144531 0.0 0.0 0.0 376
378
+ 377 0.00140810012817383 0.00999999999999979 0.00999999999999979 0.0 377
379
+ 378 0.00140690803527832 0.0 0.0 0.0 378
380
+ 379 0.0014338493347168 0.0 0.0 0.0 379
381
+ 380 0.00142192840576172 0.0 0.0 0.0 380
382
+ 381 0.00142502784729004 0.0 0.0 0.0 381
383
+ 382 0.00140595436096191 0.0 0.0 0.0 382
384
+ 383 0.00141811370849609 0.0 0.0 0.0 383
385
+ 384 0.00143003463745117 0.00999999999999979 0.00999999999999979 0.0 384
386
+ 385 0.00141596794128418 0.0 0.0 0.0 385
387
+ 386 0.00140619277954102 0.0 0.0 0.0 386
388
+ 387 0.00142288208007812 0.0 0.0 0.0 387
389
+ 388 0.00142002105712891 0.0 0.0 0.0 388
390
+ 389 0.00141596794128418 0.0 0.0 0.0 389
391
+ 390 0.00142407417297363 0.0 0.0 0.0 390
392
+ 391 0.00138282775878906 0.0100000000000007 0.0100000000000007 0.0 391
393
+ 392 0.00141501426696777 0.0 0.0 0.0 392
394
+ 393 0.00139188766479492 0.0 0.0 0.0 393
395
+ 394 0.00141382217407227 0.0 0.0 0.0 394
396
+ 395 0.00140714645385742 0.0 0.0 0.0 395
397
+ 396 0.00141000747680664 0.0 0.0 0.0 396
398
+ 397 0.00139307975769043 0.0 0.0 0.0 397
399
+ 398 0.00139307975769043 0.00999999999999979 0.00999999999999979 0.0 398
400
+ 399 0.00141000747680664 0.0 0.0 0.0 399
401
+ 400 0.00138998031616211 0.0 0.0 0.0 400
402
+ 401 0.00140213966369629 0.0 0.0 0.0 401
403
+ 402 0.00139904022216797 0.0 0.0 0.0 402
404
+ 403 0.00141191482543945 0.0 0.0 0.0 403
405
+ 404 0.00139999389648438 0.0 0.0 0.0 404
406
+ 405 0.00139188766479492 0.00999999999999979 0.00999999999999979 0.0 405
407
+ 406 0.00142502784729004 0.0 0.0 0.0 406
408
+ 407 0.00139904022216797 0.0 0.0 0.0 407
409
+ 408 0.00157594680786133 0.0 0.0 0.0 408
410
+ 409 0.00140500068664551 0.0 0.0 0.0 409
411
+ 410 0.00139784812927246 0.0 0.0 0.0 410
412
+ 411 0.00139188766479492 0.0 0.0 0.0 411
413
+ 412 0.00141215324401855 0.00999999999999979 0.00999999999999979 0.0 412
414
+ 413 0.00137901306152344 0.0 0.0 0.0 413
415
+ 414 0.0014040470123291 0.0 0.0 0.0 414
416
+ 415 0.00138497352600098 0.0 0.0 0.0 415
417
+ 416 0.00140285491943359 0.0 0.0 0.0 416
418
+ 417 0.00147199630737305 0.0 0.0 0.0 417
419
+ 418 0.00141096115112305 0.0100000000000007 0.0100000000000007 0.0 418
420
+ 419 0.0013890266418457 0.0 0.0 0.0 419
421
+ 420 0.00139093399047852 0.0 0.0 0.0 420
422
+ 421 0.00139999389648438 0.0 0.0 0.0 421
423
+ 422 0.00141406059265137 0.0 0.0 0.0 422
424
+ 423 0.00142383575439453 0.0 0.0 0.0 423
425
+ 424 0.00139904022216797 0.0 0.0 0.0 424
426
+ 425 0.00141310691833496 0.00999999999999979 0.00999999999999979 0.0 425
427
+ 426 0.0013880729675293 0.0 0.0 0.0 426
428
+ 427 0.00140094757080078 0.0 0.0 0.0 427
429
+ 428 0.00140786170959473 0.0 0.0 0.0 428
430
+ 429 0.00139880180358887 0.0 0.0 0.0 429
431
+ 430 0.00140118598937988 0.0 0.0 0.0 430
432
+ 431 0.0276179313659668 0.0299999999999994 0.0299999999999994 0.0 431
433
+ 432 0.00144100189208984 0.0 0.0 0.0 432
434
+ 433 0.00150609016418457 0.0 0.0 0.0 433
435
+ 434 0.0014500617980957 0.0 0.0 0.0 434
436
+ 435 0.00144720077514648 0.0100000000000007 0.0100000000000007 0.0 435
437
+ 436 0.00142598152160645 0.0 0.0 0.0 436
438
+ 437 0.00144004821777344 0.0 0.0 0.0 437
439
+ 438 0.00141215324401855 0.0 0.0 0.0 438
440
+ 439 0.00140690803527832 0.0 0.0 0.0 439
441
+ 440 0.00140905380249023 0.0 0.0 0.0 440
442
+ 441 0.00141191482543945 0.0 0.0 0.0 441
443
+ 442 0.00141382217407227 0.00999999999999979 0.00999999999999979 0.0 442
444
+ 443 0.00141382217407227 0.0 0.0 0.0 443
445
+ 444 0.00142979621887207 0.0 0.0 0.0 444
446
+ 445 0.00140786170959473 0.0 0.0 0.0 445
447
+ 446 0.00141787528991699 0.0 0.0 0.0 446
448
+ 447 0.00142502784729004 0.0 0.0 0.0 447
449
+ 448 0.00141716003417969 0.00999999999999979 0.00999999999999979 0.0 448
450
+ 449 0.00141692161560059 0.0 0.0 0.0 449
451
+ 450 0.00142502784729004 0.0 0.0 0.0 450
452
+ 451 0.00140690803527832 0.0 0.0 0.0 451
453
+ 452 0.00139808654785156 0.0 0.0 0.0 452
454
+ 453 0.00140094757080078 0.0 0.0 0.0 453
455
+ 454 0.00141501426696777 0.0 0.0 0.0 454
456
+ 455 0.00142598152160645 0.00999999999999979 0.00999999999999979 0.0 455
457
+ 456 0.00140595436096191 0.0 0.0 0.0 456
458
+ 457 0.00141096115112305 0.0 0.0 0.0 457
459
+ 458 0.00138306617736816 0.0 0.0 0.0 458
460
+ 459 0.00140500068664551 0.0 0.0 0.0 459
461
+ 460 0.00141096115112305 0.0 0.0 0.0 460
462
+ 461 0.0013880729675293 0.0 0.0 0.0 461
463
+ 462 0.00140094757080078 0.0100000000000007 0.0100000000000007 0.0 462
464
+ 463 0.00139594078063965 0.0 0.0 0.0 463
465
+ 464 0.00141310691833496 0.0 0.0 0.0 464
466
+ 465 0.00138282775878906 0.0 0.0 0.0 465
467
+ 466 0.00141596794128418 0.0 0.0 0.0 466
468
+ 467 0.00141692161560059 0.0 0.0 0.0 467
469
+ 468 0.00142002105712891 0.0 0.0 0.0 468
470
+ 469 0.00139999389648438 0.00999999999999979 0.00999999999999979 0.0 469
471
+ 470 0.00137901306152344 0.0 0.0 0.0 470
472
+ 471 0.00140595436096191 0.0 0.0 0.0 471
473
+ 472 0.0013880729675293 0.0 0.0 0.0 472
474
+ 473 0.00141310691833496 0.0 0.0 0.0 473
475
+ 474 0.0014040470123291 0.0 0.0 0.0 474
476
+ 475 0.00141406059265137 0.0 0.0 0.0 475
477
+ 476 0.00139713287353516 0.00999999999999979 0.00999999999999979 0.0 476
478
+ 477 0.00139307975769043 0.0 0.0 0.0 477
479
+ 478 0.00140786170959473 0.0 0.0 0.0 478
480
+ 479 0.00139784812927246 0.0 0.0 0.0 479
481
+ 480 0.00139784812927246 0.0 0.0 0.0 480
482
+ 481 0.00139999389648438 0.0 0.0 0.0 481
483
+ 482 0.00140190124511719 0.0 0.0 0.0 482
484
+ 483 0.00139594078063965 0.00999999999999979 0.00999999999999979 0.0 483
485
+ 484 0.0014188289642334 0.0 0.0 0.0 484
486
+ 485 0.00140810012817383 0.0 0.0 0.0 485
487
+ 486 0.00141596794128418 0.0 0.0 0.0 486
488
+ 487 0.0014030933380127 0.0 0.0 0.0 487
489
+ 488 0.00141596794128418 0.0 0.0 0.0 488
490
+ 489 0.00141811370849609 0.0 0.0 0.0 489
491
+ 490 0.00140094757080078 0.0100000000000007 0.0100000000000007 0.0 490
492
+ 491 0.00142717361450195 0.0 0.0 0.0 491
493
+ 492 0.00140190124511719 0.0 0.0 0.0 492
494
+ 493 0.0237669944763184 0.0199999999999996 0.0199999999999996 0.0 493
495
+ 494 0.00249719619750977 0.0 0.0 0.0 494
496
+ 495 0.00208711624145508 0.0 0.0 0.0 495
497
+ 496 0.00229597091674805 0.00999999999999979 0.00999999999999979 0.0 496
498
+ 497 0.00143194198608398 0.0 0.0 0.0 497
499
+ 498 0.00144100189208984 0.0 0.0 0.0 498
500
+ 499 0.00142002105712891 0.0 0.0 0.0 499
501
+ 500 0.00144791603088379 0.0 0.0 0.0 500
502
+ 501 0.00140190124511719 0.0 0.0 0.0 501
503
+ 502 0.00142192840576172 0.0 0.0 0.0 502
504
+ 503 0.00142502784729004 0.0100000000000007 0.0100000000000007 0.0 503
505
+ 504 0.0014350414276123 0.0 0.0 0.0 504
506
+ 505 0.00141811370849609 0.0 0.0 0.0 505
507
+ 506 0.00141811370849609 0.0 0.0 0.0 506
508
+ 507 0.00141596794128418 0.0 0.0 0.0 507
509
+ 508 0.00141501426696777 0.0 0.0 0.0 508
510
+ 509 0.00140094757080078 0.0 0.0 0.0 509
511
+ 510 0.00142502784729004 0.00999999999999979 0.00999999999999979 0.0 510
512
+ 511 0.0014350414276123 0.0 0.0 0.0 511
513
+ 512 0.00139403343200684 0.0 0.0 0.0 512
514
+ 513 0.00142598152160645 0.0 0.0 0.0 513
515
+ 514 0.00142598152160645 0.0 0.0 0.0 514
516
+ 515 0.00181007385253906 0.0 0.0 0.0 515
517
+ 516 0.00142097473144531 0.0 0.0 0.0 516
518
+ 517 0.0014030933380127 0.00999999999999979 0.00999999999999979 0.0 517
519
+ 518 0.00141310691833496 0.0 0.0 0.0 518
520
+ 519 0.00140595436096191 0.0 0.0 0.0 519
521
+ 520 0.00139999389648438 0.0 0.0 0.0 520
522
+ 521 0.00140881538391113 0.0 0.0 0.0 521
523
+ 522 0.00139498710632324 0.0 0.0 0.0 522
524
+ 523 0.00141406059265137 0.0 0.0 0.0 523
525
+ 524 0.00139307975769043 0.00999999999999979 0.00999999999999979 0.0 524
526
+ 525 0.0014040470123291 0.0 0.0 0.0 525
527
+ 526 0.00141501426696777 0.0 0.0 0.0 526
528
+ 527 0.00141716003417969 0.0 0.0 0.0 527
529
+ 528 0.00141501426696777 0.0 0.0 0.0 528
530
+ 529 0.00147104263305664 0.0 0.0 0.0 529
531
+ 530 0.00141096115112305 0.0 0.0 0.0 530
532
+ 531 0.00140213966369629 0.0100000000000007 0.0100000000000007 0.0 531
533
+ 532 0.00141406059265137 0.0 0.0 0.0 532
534
+ 533 0.00139904022216797 0.0 0.0 0.0 533
535
+ 534 0.00139403343200684 0.0 0.0 0.0 534
536
+ 535 0.00139713287353516 0.0 0.0 0.0 535
537
+ 536 0.00140786170959473 0.0 0.0 0.0 536
538
+ 537 0.00139403343200684 0.0 0.0 0.0 537
539
+ 538 0.00140714645385742 0.00999999999999979 0.00999999999999979 0.0 538
540
+ 539 0.00139093399047852 0.0 0.0 0.0 539
541
+ 540 0.00140094757080078 0.0 0.0 0.0 540
542
+ 541 0.00138711929321289 0.0 0.0 0.0 541
543
+ 542 0.00140500068664551 0.0 0.0 0.0 542
544
+ 543 0.00141406059265137 0.0 0.0 0.0 543
545
+ 544 0.0014030933380127 0.0 0.0 0.0 544
546
+ 545 0.00138497352600098 0.00999999999999979 0.00999999999999979 0.0 545
547
+ 546 0.00148582458496094 0.0 0.0 0.0 546
548
+ 547 0.00141191482543945 0.0 0.0 0.0 547
549
+ 548 0.00141119956970215 0.0 0.0 0.0 548
550
+ 549 0.00140690803527832 0.0 0.0 0.0 549
551
+ 550 0.00140881538391113 0.0 0.0 0.0 550
552
+ 551 0.00141286849975586 0.00999999999999979 0.00999999999999979 0.0 551
553
+ 552 0.00141286849975586 0.0 0.0 0.0 552
554
+ 553 0.00139021873474121 0.0 0.0 0.0 553
555
+ 554 0.0234880447387695 0.0200000000000005 0.0200000000000005 0.0 554
556
+ 555 0.00147581100463867 0.0 0.0 0.0 555
557
+ 556 0.00144290924072266 0.0 0.0 0.0 556
558
+ 557 0.00200700759887695 0.00999999999999979 0.00999999999999979 0.0 557
559
+ 558 0.00271010398864746 0.0 0.0 0.0 558
560
+ 559 0.00263786315917969 0.0 0.0 0.0 559
561
+ 560 0.00255584716796875 0.0 0.0 0.0 560
562
+ 561 0.0022728443145752 0.00999999999999979 0.00999999999999979 0.0 561
563
+ 562 0.0014340877532959 0.0 0.0 0.0 562
564
+ 563 0.00143599510192871 0.0 0.0 0.0 563
565
+ 564 0.00140905380249023 0.0 0.0 0.0 564
566
+ 565 0.00140786170959473 0.0 0.0 0.0 565
567
+ 566 0.00142693519592285 0.0 0.0 0.0 566
568
+ 567 0.00141596794128418 0.00999999999999979 0.00999999999999979 0.0 567
569
+ 568 0.00147199630737305 0.0 0.0 0.0 568
570
+ 569 0.00142502784729004 0.0 0.0 0.0 569
571
+ 570 0.00143003463745117 0.0 0.0 0.0 570
572
+ 571 0.00140595436096191 0.0 0.0 0.0 571
573
+ 572 0.00144600868225098 0.0 0.0 0.0 572
574
+ 573 0.00141096115112305 0.0 0.0 0.0 573
575
+ 574 0.00142717361450195 0.0100000000000007 0.0100000000000007 0.0 574
576
+ 575 0.0025019645690918 0.0 0.0 0.0 575
577
+ 576 0.00191497802734375 0.0 0.0 0.0 576
578
+ 577 0.00141119956970215 0.0 0.0 0.0 577
579
+ 578 0.00140690803527832 0.0 0.0 0.0 578
580
+ 579 0.00141501426696777 0.00999999999999979 0.00999999999999979 0.0 579
581
+ 580 0.00141692161560059 0.0 0.0 0.0 580
582
+ 581 0.00139212608337402 0.0 0.0 0.0 581
583
+ 582 0.00140810012817383 0.0 0.0 0.0 582
584
+ 583 0.00139307975769043 0.0 0.0 0.0 583
585
+ 584 0.00139498710632324 0.0 0.0 0.0 584
586
+ 585 0.0014030933380127 0.0 0.0 0.0 585
587
+ 586 0.0014030933380127 0.00999999999999979 0.00999999999999979 0.0 586
588
+ 587 0.00141096115112305 0.0 0.0 0.0 587
589
+ 588 0.00140500068664551 0.0 0.0 0.0 588
590
+ 589 0.00144505500793457 0.0 0.0 0.0 589
591
+ 590 0.00141191482543945 0.0 0.0 0.0 590
592
+ 591 0.00140213966369629 0.0 0.0 0.0 591
593
+ 592 0.00139594078063965 0.0 0.0 0.0 592
594
+ 593 0.00141096115112305 0.00999999999999979 0.00999999999999979 0.0 593
595
+ 594 0.00139093399047852 0.0 0.0 0.0 594
596
+ 595 0.00148797035217285 0.0 0.0 0.0 595
597
+ 596 0.00139999389648438 0.0 0.0 0.0 596
598
+ 597 0.00139689445495605 0.0 0.0 0.0 597
599
+ 598 0.00140094757080078 0.0 0.0 0.0 598
600
+ 599 0.00140786170959473 0.0 0.0 0.0 599
601
+ 600 0.00140810012817383 0.0100000000000007 0.0100000000000007 0.0 600
602
+ 601 0.00140810012817383 0.0 0.0 0.0 601
603
+ 602 0.00140500068664551 0.0 0.0 0.0 602
604
+ 603 0.00139093399047852 0.0 0.0 0.0 603
605
+ 604 0.00142192840576172 0.0 0.0 0.0 604
606
+ 605 0.00138998031616211 0.0 0.0 0.0 605
607
+ 606 0.00140213966369629 0.0 0.0 0.0 606
608
+ 607 0.00140285491943359 0.00999999999999979 0.00999999999999979 0.0 607
609
+ 608 0.00141000747680664 0.0 0.0 0.0 608
610
+ 609 0.00140190124511719 0.0 0.0 0.0 609
611
+ 610 0.00142097473144531 0.0 0.0 0.0 610
612
+ 611 0.00139689445495605 0.0 0.0 0.0 611
613
+ 612 0.00147509574890137 0.0 0.0 0.0 612
614
+ 613 0.00141000747680664 0.0 0.0 0.0 613
615
+ 614 0.00140285491943359 0.00999999999999979 0.00999999999999979 0.0 614
616
+ 615 0.00142002105712891 0.0 0.0 0.0 615
617
+ 616 0.0232539176940918 0.0200000000000005 0.0200000000000005 0.0 616
618
+ 617 0.00145983695983887 0.0 0.0 0.0 617
619
+ 618 0.00142908096313477 0.0 0.0 0.0 618
620
+ 619 0.00143790245056152 0.00999999999999979 0.00999999999999979 0.0 619
621
+ 620 0.00141000747680664 0.0 0.0 0.0 620
622
+ 621 0.00141692161560059 0.0 0.0 0.0 621
623
+ 622 0.00142216682434082 0.0 0.0 0.0 622
624
+ 623 0.00140905380249023 0.0 0.0 0.0 623
625
+ 624 0.00142598152160645 0.0 0.0 0.0 624
626
+ 625 0.00141096115112305 0.0 0.0 0.0 625
627
+ 626 0.00142097473144531 0.00999999999999979 0.00999999999999979 0.0 626
628
+ 627 0.00149297714233398 0.0 0.0 0.0 627
629
+ 628 0.0014348030090332 0.0 0.0 0.0 628
630
+ 629 0.00148200988769531 0.0 0.0 0.0 629
631
+ 630 0.0014040470123291 0.0 0.0 0.0 630
632
+ 631 0.00141596794128418 0.0 0.0 0.0 631
633
+ 632 0.00142216682434082 0.0 0.0 0.0 632
634
+ 633 0.00139999389648438 0.00999999999999979 0.00999999999999979 0.0 633
635
+ 634 0.00142693519592285 0.0 0.0 0.0 634
636
+ 635 0.00141692161560059 0.0 0.0 0.0 635
637
+ 636 0.00141501426696777 0.0 0.0 0.0 636
638
+ 637 0.00140976905822754 0.0 0.0 0.0 637
639
+ 638 0.00140500068664551 0.0 0.0 0.0 638
640
+ 639 0.00141787528991699 0.0 0.0 0.0 639
641
+ 640 0.0013880729675293 0.0100000000000007 0.0100000000000007 0.0 640
642
+ 641 0.00142812728881836 0.0 0.0 0.0 641
643
+ 642 0.0014040470123291 0.0 0.0 0.0 642
644
+ 643 0.0013880729675293 0.0 0.0 0.0 643
645
+ 644 0.00140810012817383 0.0 0.0 0.0 644
646
+ 645 0.00142192840576172 0.0 0.0 0.0 645
647
+ 646 0.00140810012817383 0.0 0.0 0.0 646
648
+ 647 0.00140190124511719 0.00999999999999979 0.00999999999999979 0.0 647
649
+ 648 0.00148701667785645 0.0 0.0 0.0 648
650
+ 649 0.0014040470123291 0.0 0.0 0.0 649
651
+ 650 0.00140094757080078 0.0 0.0 0.0 650
652
+ 651 0.00139904022216797 0.0 0.0 0.0 651
653
+ 652 0.00141811370849609 0.0 0.0 0.0 652
654
+ 653 0.00139403343200684 0.0 0.0 0.0 653
655
+ 654 0.00141191482543945 0.00999999999999979 0.00999999999999979 0.0 654
656
+ 655 0.00140500068664551 0.0 0.0 0.0 655
657
+ 656 0.00141096115112305 0.0 0.0 0.0 656
658
+ 657 0.00185894966125488 0.0 0.0 0.0 657
659
+ 658 0.00141286849975586 0.0 0.0 0.0 658
660
+ 659 0.00149917602539062 0.0 0.0 0.0 659
661
+ 660 0.00140190124511719 0.0 0.0 0.0 660
662
+ 661 0.00139188766479492 0.00999999999999979 0.00999999999999979 0.0 661
663
+ 662 0.00138711929321289 0.0 0.0 0.0 662
664
+ 663 0.00139904022216797 0.0 0.0 0.0 663
665
+ 664 0.00141596794128418 0.0 0.0 0.0 664
666
+ 665 0.00139212608337402 0.0 0.0 0.0 665
667
+ 666 0.00141191482543945 0.0 0.0 0.0 666
668
+ 667 0.00139403343200684 0.0 0.0 0.0 667
669
+ 668 0.00140905380249023 0.0100000000000007 0.0100000000000007 0.0 668
670
+ 669 0.00139307975769043 0.0 0.0 0.0 669
671
+ 670 0.00139999389648438 0.0 0.0 0.0 670
672
+ 671 0.00142002105712891 0.0 0.0 0.0 671
673
+ 672 0.00139904022216797 0.0 0.0 0.0 672
674
+ 673 0.00142097473144531 0.0 0.0 0.0 673
675
+ 674 0.00140500068664551 0.0 0.0 0.0 674
676
+ 675 0.00139594078063965 0.00999999999999979 0.00999999999999979 0.0 675
677
+ 676 0.00139284133911133 0.0 0.0 0.0 676
678
+ 677 0.0242998600006104 0.0199999999999996 0.0199999999999996 0.0 677
679
+ 678 0.00148987770080566 0.0 0.0 0.0 678
680
+ 679 0.00144290924072266 0.0 0.0 0.0 679
681
+ 680 0.00143098831176758 0.0100000000000007 0.0100000000000007 0.0 680
682
+ 681 0.00144410133361816 0.0 0.0 0.0 681
683
+ 682 0.00142598152160645 0.0 0.0 0.0 682
684
+ 683 0.00140094757080078 0.0 0.0 0.0 683
685
+ 684 0.00146293640136719 0.0 0.0 0.0 684
686
+ 685 0.00141811370849609 0.0 0.0 0.0 685
687
+ 686 0.00143098831176758 0.0 0.0 0.0 686
688
+ 687 0.00144100189208984 0.00999999999999979 0.00999999999999979 0.0 687
689
+ 688 0.00143003463745117 0.0 0.0 0.0 688
690
+ 689 0.00141406059265137 0.0 0.0 0.0 689
691
+ 690 0.00143194198608398 0.0 0.0 0.0 690
692
+ 691 0.0014040470123291 0.0 0.0 0.0 691
693
+ 692 0.00141191482543945 0.0 0.0 0.0 692
694
+ 693 0.00259590148925781 0.00999999999999979 0.00999999999999979 0.0 693
695
+ 694 0.00263714790344238 0.0 0.0 0.0 694
696
+ 695 0.00258207321166992 0.0 0.0 0.0 695
697
+ 696 0.00255298614501953 0.0 0.0 0.0 696
698
+ 697 0.00179100036621094 0.00999999999999979 0.00999999999999979 0.0 697
699
+ 698 0.00142312049865723 0.0 0.0 0.0 698
700
+ 699 0.00141215324401855 0.0 0.0 0.0 699
701
+ 700 0.00140094757080078 0.0 0.0 0.0 700
702
+ 701 0.00138998031616211 0.0 0.0 0.0 701
703
+ 702 0.00139999389648438 0.0 0.0 0.0 702
704
+ 703 0.00142312049865723 0.0 0.0 0.0 703
705
+ 704 0.00142812728881836 0.00999999999999979 0.00999999999999979 0.0 704
706
+ 705 0.00140690803527832 0.0 0.0 0.0 705
707
+ 706 0.00139999389648438 0.0 0.0 0.0 706
708
+ 707 0.00140500068664551 0.0 0.0 0.0 707
709
+ 708 0.00139498710632324 0.0 0.0 0.0 708
710
+ 709 0.00139498710632324 0.0 0.0 0.0 709
711
+ 710 0.0014030933380127 0.0 0.0 0.0 710
712
+ 711 0.00138497352600098 0.0100000000000007 0.0100000000000007 0.0 711
713
+ 712 0.00139498710632324 0.0 0.0 0.0 712
714
+ 713 0.00139904022216797 0.0 0.0 0.0 713
715
+ 714 0.00141000747680664 0.0 0.0 0.0 714
716
+ 715 0.00140118598937988 0.0 0.0 0.0 715
717
+ 716 0.00141406059265137 0.0 0.0 0.0 716
718
+ 717 0.00140094757080078 0.0 0.0 0.0 717
719
+ 718 0.00141787528991699 0.00999999999999979 0.00999999999999979 0.0 718
720
+ 719 0.00140714645385742 0.0 0.0 0.0 719
721
+ 720 0.00142097473144531 0.0 0.0 0.0 720
722
+ 721 0.0013880729675293 0.0 0.0 0.0 721
723
+ 722 0.00140094757080078 0.0 0.0 0.0 722
724
+ 723 0.0014190673828125 0.0 0.0 0.0 723
725
+ 724 0.00139117240905762 0.0 0.0 0.0 724
726
+ 725 0.00139784812927246 0.00999999999999979 0.00999999999999979 0.0 725
727
+ 726 0.00163793563842773 0.0 0.0 0.0 726
728
+ 727 0.00141406059265137 0.0 0.0 0.0 727
729
+ 728 0.00140500068664551 0.0 0.0 0.0 728
730
+ 729 0.00141692161560059 0.0 0.0 0.0 729
731
+ 730 0.00141000747680664 0.0 0.0 0.0 730
732
+ 731 0.00139594078063965 0.00999999999999979 0.00999999999999979 0.0 731
733
+ 732 0.00140595436096191 0.0 0.0 0.0 732
734
+ 733 0.00140881538391113 0.0 0.0 0.0 733
735
+ 734 0.00140500068664551 0.0 0.0 0.0 734
736
+ 735 0.00139904022216797 0.0 0.0 0.0 735
737
+ 736 0.00141787528991699 0.0 0.0 0.0 736
738
+ 737 0.00141406059265137 0.0 0.0 0.0 737
739
+ 738 0.00141000747680664 0.0100000000000007 0.0100000000000007 0.0 738
740
+ 739 0.0232431888580322 0.0199999999999996 0.0199999999999996 0.0 739
741
+ 740 0.00145602226257324 0.0 0.0 0.0 740
742
+ 741 0.00145196914672852 0.0 0.0 0.0 741
743
+ 742 0.00142693519592285 0.0 0.0 0.0 742
744
+ 743 0.00143599510192871 0.0 0.0 0.0 743
745
+ 744 0.00144100189208984 0.00999999999999979 0.00999999999999979 0.0 744
746
+ 745 0.00146389007568359 0.0 0.0 0.0 745
747
+ 746 0.00143003463745117 0.0 0.0 0.0 746
748
+ 747 0.00141501426696777 0.0 0.0 0.0 747
749
+ 748 0.00139808654785156 0.0 0.0 0.0 748
750
+ 749 0.00142097473144531 0.0 0.0 0.0 749
751
+ 750 0.00140905380249023 0.0 0.0 0.0 750
752
+ 751 0.00150108337402344 0.0100000000000007 0.0100000000000007 0.0 751
753
+ 752 0.00140714645385742 0.0 0.0 0.0 752
754
+ 753 0.00142908096313477 0.0 0.0 0.0 753
755
+ 754 0.0014040470123291 0.0 0.0 0.0 754
756
+ 755 0.00141501426696777 0.0 0.0 0.0 755
757
+ 756 0.00140094757080078 0.0 0.0 0.0 756
758
+ 757 0.00141215324401855 0.00999999999999979 0.00999999999999979 0.0 757
759
+ 758 0.00141000747680664 0.0 0.0 0.0 758
760
+ 759 0.00140714645385742 0.0 0.0 0.0 759
761
+ 760 0.00141096115112305 0.0 0.0 0.0 760
762
+ 761 0.00140213966369629 0.0 0.0 0.0 761
763
+ 762 0.0014188289642334 0.0 0.0 0.0 762
764
+ 763 0.00138497352600098 0.0 0.0 0.0 763
765
+ 764 0.00142192840576172 0.00999999999999979 0.00999999999999979 0.0 764
766
+ 765 0.00140380859375 0.0 0.0 0.0 765
767
+ 766 0.00153803825378418 0.0 0.0 0.0 766
768
+ 767 0.0013880729675293 0.0 0.0 0.0 767
769
+ 768 0.00141191482543945 0.0 0.0 0.0 768
770
+ 769 0.00139689445495605 0.0 0.0 0.0 769
771
+ 770 0.00144219398498535 0.0 0.0 0.0 770
772
+ 771 0.00145888328552246 0.00999999999999979 0.00999999999999979 0.0 771
773
+ 772 0.00142621994018555 0.0 0.0 0.0 772
774
+ 773 0.00138998031616211 0.0 0.0 0.0 773
775
+ 774 0.00141286849975586 0.0 0.0 0.0 774
776
+ 775 0.00140190124511719 0.0 0.0 0.0 775
777
+ 776 0.00139498710632324 0.0 0.0 0.0 776
778
+ 777 0.00141191482543945 0.0 0.0 0.0 777
779
+ 778 0.00138211250305176 0.0100000000000007 0.0100000000000007 0.0 778
780
+ 779 0.00141000747680664 0.0 0.0 0.0 779
781
+ 780 0.00139093399047852 0.0 0.0 0.0 780
782
+ 781 0.00139188766479492 0.0 0.0 0.0 781
783
+ 782 0.00139904022216797 0.0 0.0 0.0 782
784
+ 783 0.0013880729675293 0.0 0.0 0.0 783
785
+ 784 0.00139880180358887 0.0 0.0 0.0 784
786
+ 785 0.00137805938720703 0.00999999999999979 0.00999999999999979 0.0 785
787
+ 786 0.00141191482543945 0.0 0.0 0.0 786
788
+ 787 0.00139498710632324 0.0 0.0 0.0 787
789
+ 788 0.00141286849975586 0.0 0.0 0.0 788
790
+ 789 0.00140285491943359 0.0 0.0 0.0 789
791
+ 790 0.00140213966369629 0.0 0.0 0.0 790
792
+ 791 0.00139808654785156 0.0 0.0 0.0 791
793
+ 792 0.00141000747680664 0.00999999999999979 0.00999999999999979 0.0 792
794
+ 793 0.00142383575439453 0.0 0.0 0.0 793
795
+ 794 0.0014040470123291 0.0 0.0 0.0 794
796
+ 795 0.00141215324401855 0.0 0.0 0.0 795
797
+ 796 0.00140690803527832 0.0 0.0 0.0 796
798
+ 797 0.00139689445495605 0.0 0.0 0.0 797
799
+ 798 0.00139403343200684 0.0 0.0 0.0 798
800
+ 799 0.00141096115112305 0.00999999999999979 0.00999999999999979 0.0 799
801
+ 800 0.0231518745422363 0.0200000000000005 0.0200000000000005 0.0 800
802
+ 801 0.00148391723632812 0.0 0.0 0.0 801
803
+ 802 0.00144004821777344 0.0 0.0 0.0 802
804
+ 803 0.00144600868225098 0.0 0.0 0.0 803
805
+ 804 0.00148105621337891 0.00999999999999979 0.00999999999999979 0.0 804
806
+ 805 0.0014500617980957 0.0 0.0 0.0 805
807
+ 806 0.00141406059265137 0.0 0.0 0.0 806
808
+ 807 0.00140595436096191 0.0 0.0 0.0 807
809
+ 808 0.00142502784729004 0.0 0.0 0.0 808
810
+ 809 0.00140285491943359 0.0 0.0 0.0 809
811
+ 810 0.00142288208007812 0.0 0.0 0.0 810
812
+ 811 0.0014030933380127 0.00999999999999979 0.00999999999999979 0.0 811
813
+ 812 0.00139999389648438 0.0 0.0 0.0 812
814
+ 813 0.00141000747680664 0.0 0.0 0.0 813
815
+ 814 0.00140881538391113 0.0 0.0 0.0 814
816
+ 815 0.00143098831176758 0.0 0.0 0.0 815
817
+ 816 0.00140094757080078 0.0 0.0 0.0 816
818
+ 817 0.00143003463745117 0.0 0.0 0.0 817
819
+ 818 0.00140500068664551 0.0100000000000007 0.0100000000000007 0.0 818
820
+ 819 0.00142002105712891 0.0 0.0 0.0 819
821
+ 820 0.00141096115112305 0.0 0.0 0.0 820
822
+ 821 0.00142502784729004 0.0 0.0 0.0 821
823
+ 822 0.00141096115112305 0.0 0.0 0.0 822
824
+ 823 0.00140619277954102 0.0 0.0 0.0 823
825
+ 824 0.00139093399047852 0.0 0.0 0.0 824
826
+ 825 0.00139999389648438 0.00999999999999979 0.00999999999999979 0.0 825
827
+ 826 0.00139999389648438 0.0 0.0 0.0 826
828
+ 827 0.00140190124511719 0.0 0.0 0.0 827
829
+ 828 0.0014030933380127 0.0 0.0 0.0 828
830
+ 829 0.00139808654785156 0.0 0.0 0.0 829
831
+ 830 0.00140786170959473 0.0 0.0 0.0 830
832
+ 831 0.00171494483947754 0.0 0.0 0.0 831
833
+ 832 0.00259613990783691 0.0 0.0 0.0 832
834
+ 833 0.00256896018981934 0.0 0.0 0.0 833
835
+ 834 0.00258994102478027 0.0 0.0 0.0 834
836
+ 835 0.00195598602294922 0.00999999999999979 0.00999999999999979 0.0 835
837
+ 836 0.00141477584838867 0.0 0.0 0.0 836
838
+ 837 0.0014030933380127 0.0 0.0 0.0 837
839
+ 838 0.00140500068664551 0.0 0.0 0.0 838
840
+ 839 0.00138711929321289 0.0 0.0 0.0 839
841
+ 840 0.00139904022216797 0.0 0.0 0.0 840
842
+ 841 0.00139403343200684 0.0 0.0 0.0 841
843
+ 842 0.00141215324401855 0.00999999999999979 0.00999999999999979 0.0 842
844
+ 843 0.0014498233795166 0.0 0.0 0.0 843
845
+ 844 0.00139594078063965 0.0 0.0 0.0 844
846
+ 845 0.00139307975769043 0.0 0.0 0.0 845
847
+ 846 0.0013890266418457 0.0 0.0 0.0 846
848
+ 847 0.00141000747680664 0.0 0.0 0.0 847
849
+ 848 0.00138711929321289 0.0 0.0 0.0 848
850
+ 849 0.00221610069274902 0.0100000000000007 0.0100000000000007 0.0 849
851
+ 850 0.00145506858825684 0.0 0.0 0.0 850
852
+ 851 0.00141501426696777 0.0 0.0 0.0 851
853
+ 852 0.00145888328552246 0.0 0.0 0.0 852
854
+ 853 0.00140500068664551 0.0 0.0 0.0 853
855
+ 854 0.00139904022216797 0.0 0.0 0.0 854
856
+ 855 0.00137901306152344 0.0 0.0 0.0 855
857
+ 856 0.00144314765930176 0.00999999999999979 0.00999999999999979 0.0 856
858
+ 857 0.00139904022216797 0.0 0.0 0.0 857
859
+ 858 0.00142312049865723 0.0 0.0 0.0 858
860
+ 859 0.00139689445495605 0.0 0.0 0.0 859
861
+ 860 0.00140786170959473 0.0 0.0 0.0 860
862
+ 861 0.00139713287353516 0.0 0.0 0.0 861
863
+ 862 0.0231709480285645 0.0300000000000002 0.0300000000000002 0.0 862
864
+ 863 0.00148701667785645 0.0 0.0 0.0 863
865
+ 864 0.00143599510192871 0.0 0.0 0.0 864
866
+ 865 0.00144219398498535 0.0 0.0 0.0 865
867
+ 866 0.00142002105712891 0.0 0.0 0.0 866
868
+ 867 0.0014500617980957 0.0 0.0 0.0 867
869
+ 868 0.00142502784729004 0.00999999999999979 0.00999999999999979 0.0 868
870
+ 869 0.00141692161560059 0.0 0.0 0.0 869
871
+ 870 0.00142192840576172 0.0 0.0 0.0 870
872
+ 871 0.00142192840576172 0.0 0.0 0.0 871
873
+ 872 0.00141191482543945 0.0 0.0 0.0 872
874
+ 873 0.00143194198608398 0.0 0.0 0.0 873
875
+ 874 0.00142288208007812 0.0 0.0 0.0 874
876
+ 875 0.00142884254455566 0.00999999999999979 0.00999999999999979 0.0 875
877
+ 876 0.00160384178161621 0.0 0.0 0.0 876
878
+ 877 0.00264906883239746 0.0 0.0 0.0 877
879
+ 878 0.00261187553405762 0.0 0.0 0.0 878
880
+ 879 0.00243496894836426 0.00999999999999979 0.00999999999999979 0.0 879
881
+ 880 0.00259900093078613 0.0 0.0 0.0 880
882
+ 881 0.0026240348815918 0.0 0.0 0.0 881
883
+ 882 0.00248599052429199 0.0 0.0 0.0 882
884
+ 883 0.0024101734161377 0.0100000000000007 0.0100000000000007 0.0 883
885
+ 884 0.00142192840576172 0.0 0.0 0.0 884
886
+ 885 0.0014488697052002 0.0 0.0 0.0 885
887
+ 886 0.00140285491943359 0.0 0.0 0.0 886
888
+ 887 0.00140213966369629 0.0 0.0 0.0 887
889
+ 888 0.00141406059265137 0.0 0.0 0.0 888
890
+ 889 0.00139999389648438 0.0 0.0 0.0 889
891
+ 890 0.00140690803527832 0.00999999999999979 0.00999999999999979 0.0 890
892
+ 891 0.00139093399047852 0.0 0.0 0.0 891
893
+ 892 0.00140500068664551 0.0 0.0 0.0 892
894
+ 893 0.00140690803527832 0.0 0.0 0.0 893
895
+ 894 0.00141000747680664 0.0 0.0 0.0 894
896
+ 895 0.00140810012817383 0.0 0.0 0.0 895
897
+ 896 0.00139403343200684 0.0 0.0 0.0 896
898
+ 897 0.00140810012817383 0.00999999999999979 0.00999999999999979 0.0 897
899
+ 898 0.00140810012817383 0.0 0.0 0.0 898
900
+ 899 0.00143003463745117 0.0 0.0 0.0 899
901
+ 900 0.00141811370849609 0.0 0.0 0.0 900
902
+ 901 0.00142002105712891 0.0 0.0 0.0 901
903
+ 902 0.00138211250305176 0.0 0.0 0.0 902
904
+ 903 0.00141096115112305 0.00999999999999979 0.00999999999999979 0.0 903
905
+ 904 0.00140595436096191 0.0 0.0 0.0 904
906
+ 905 0.00140690803527832 0.0 0.0 0.0 905
907
+ 906 0.00141501426696777 0.0 0.0 0.0 906
908
+ 907 0.00139594078063965 0.0 0.0 0.0 907
909
+ 908 0.00142002105712891 0.0 0.0 0.0 908
910
+ 909 0.00139808654785156 0.0 0.0 0.0 909
911
+ 910 0.00140905380249023 0.0100000000000007 0.0100000000000007 0.0 910
912
+ 911 0.0014040470123291 0.0 0.0 0.0 911
913
+ 912 0.00139808654785156 0.0 0.0 0.0 912
914
+ 913 0.00141000747680664 0.0 0.0 0.0 913
915
+ 914 0.00140619277954102 0.0 0.0 0.0 914
916
+ 915 0.0014040470123291 0.0 0.0 0.0 915
917
+ 916 0.0014040470123291 0.0 0.0 0.0 916
918
+ 917 0.00141310691833496 0.00999999999999979 0.00999999999999979 0.0 917
919
+ 918 0.00147795677185059 0.0 0.0 0.0 918
920
+ 919 0.00141000747680664 0.0 0.0 0.0 919
921
+ 920 0.00140786170959473 0.0 0.0 0.0 920
922
+ 921 0.00141000747680664 0.0 0.0 0.0 921
923
+ 922 0.00140786170959473 0.0 0.0 0.0 922
924
+ 923 0.0234408378601074 0.0300000000000002 0.0300000000000002 0.0 923
925
+ 924 0.00142312049865723 0.0 0.0 0.0 924
926
+ 925 0.00144505500793457 0.0 0.0 0.0 925
927
+ 926 0.00144791603088379 0.0 0.0 0.0 926
928
+ 927 0.00144004821777344 0.0 0.0 0.0 927
929
+ 928 0.00142192840576172 0.0 0.0 0.0 928
930
+ 929 0.00143814086914062 0.00999999999999979 0.00999999999999979 0.0 929
931
+ 930 0.00141406059265137 0.0 0.0 0.0 930
932
+ 931 0.00141501426696777 0.0 0.0 0.0 931
933
+ 932 0.00142312049865723 0.0 0.0 0.0 932
934
+ 933 0.00141215324401855 0.0 0.0 0.0 933
935
+ 934 0.00143003463745117 0.0 0.0 0.0 934
936
+ 935 0.0014188289642334 0.0 0.0 0.0 935
937
+ 936 0.00142192840576172 0.00999999999999979 0.00999999999999979 0.0 936
938
+ 937 0.00142598152160645 0.0 0.0 0.0 937
939
+ 938 0.00143218040466309 0.0 0.0 0.0 938
940
+ 939 0.00140094757080078 0.0 0.0 0.0 939
941
+ 940 0.00141811370849609 0.0 0.0 0.0 940
942
+ 941 0.00142598152160645 0.0 0.0 0.0 941
943
+ 942 0.00143694877624512 0.0 0.0 0.0 942
944
+ 943 0.00146985054016113 0.00999999999999979 0.00999999999999979 0.0 943
945
+ 944 0.00139403343200684 0.0 0.0 0.0 944
946
+ 945 0.00141096115112305 0.0 0.0 0.0 945
947
+ 946 0.00140595436096191 0.0 0.0 0.0 946
948
+ 947 0.00140213966369629 0.0 0.0 0.0 947
949
+ 948 0.00139594078063965 0.0 0.0 0.0 948
950
+ 949 0.00140190124511719 0.0 0.0 0.0 949
951
+ 950 0.00140213966369629 0.0100000000000007 0.0100000000000007 0.0 950
952
+ 951 0.0014040470123291 0.0 0.0 0.0 951
953
+ 952 0.00139999389648438 0.0 0.0 0.0 952
954
+ 953 0.00139904022216797 0.0 0.0 0.0 953
955
+ 954 0.00139617919921875 0.0 0.0 0.0 954
956
+ 955 0.00141000747680664 0.0 0.0 0.0 955
957
+ 956 0.00141716003417969 0.0 0.0 0.0 956
958
+ 957 0.00139594078063965 0.00999999999999979 0.00999999999999979 0.0 957
959
+ 958 0.00141096115112305 0.0 0.0 0.0 958
960
+ 959 0.00139999389648438 0.0 0.0 0.0 959
961
+ 960 0.00141787528991699 0.0 0.0 0.0 960
962
+ 961 0.00139808654785156 0.0 0.0 0.0 961
963
+ 962 0.0014030933380127 0.0 0.0 0.0 962
964
+ 963 0.00140810012817383 0.0 0.0 0.0 963
965
+ 964 0.00203394889831543 0.00999999999999979 0.00999999999999979 0.0 964
966
+ 965 0.00265693664550781 0.0 0.0 0.0 965
967
+ 966 0.00261211395263672 0.0 0.0 0.0 966
968
+ 967 0.00254082679748535 0.0 0.0 0.0 967
969
+ 968 0.00202393531799316 0.00999999999999979 0.00999999999999979 0.0 968
970
+ 969 0.00142693519592285 0.0 0.0 0.0 969
971
+ 970 0.00139784812927246 0.0 0.0 0.0 970
972
+ 971 0.00140213966369629 0.0 0.0 0.0 971
973
+ 972 0.00139594078063965 0.0 0.0 0.0 972
974
+ 973 0.00141501426696777 0.0 0.0 0.0 973
975
+ 974 0.0014030933380127 0.00999999999999979 0.00999999999999979 0.0 974
976
+ 975 0.00144290924072266 0.0 0.0 0.0 975
977
+ 976 0.00140500068664551 0.0 0.0 0.0 976
978
+ 977 0.00140690803527832 0.0 0.0 0.0 977
979
+ 978 0.00142502784729004 0.0 0.0 0.0 978
980
+ 979 0.00141000747680664 0.0 0.0 0.0 979
981
+ 980 0.00141501426696777 0.0 0.0 0.0 980
982
+ 981 0.00140118598937988 0.0100000000000007 0.0100000000000007 0.0 981
983
+ 982 0.00142693519592285 0.0 0.0 0.0 982
984
+ 983 0.00141310691833496 0.0 0.0 0.0 983
985
+ 984 0.00140690803527832 0.0 0.0 0.0 984
986
+ 985 0.0233311653137207 0.0199999999999996 0.0199999999999996 0.0 985
987
+ 986 0.00148701667785645 0.00999999999999979 0.00999999999999979 0.0 986
988
+ 987 0.00144100189208984 0.0 0.0 0.0 987
989
+ 988 0.00140595436096191 0.0 0.0 0.0 988
990
+ 989 0.00144505500793457 0.0 0.0 0.0 989
991
+ 990 0.00142598152160645 0.0 0.0 0.0 990
992
+ 991 0.0014491081237793 0.0 0.0 0.0 991
993
+ 992 0.00139904022216797 0.0 0.0 0.0 992
994
+ 993 0.00142788887023926 0.0100000000000007 0.0100000000000007 0.0 993
995
+ 994 0.00141382217407227 0.0 0.0 0.0 994
996
+ 995 0.00141119956970215 0.0 0.0 0.0 995
997
+ 996 0.00139999389648438 0.0 0.0 0.0 996
998
+ 997 0.00142192840576172 0.0 0.0 0.0 997
999
+ 998 0.0014197826385498 0.0 0.0 0.0 998
1000
+ 999 0.00142288208007812 0.0 0.0 0.0 999
1001
+ 1000 0.00141811370849609 0.00999999999999979 0.00999999999999979 0.0 1000