babel-schmooze-sprockets 0.1.0.alpha.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3735) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +10 -0
  3. data/.travis.yml +4 -0
  4. data/CODE_OF_CONDUCT.md +49 -0
  5. data/Gemfile +4 -0
  6. data/LICENSE.txt +21 -0
  7. data/README.md +113 -0
  8. data/Rakefile +11 -0
  9. data/babel-schmooze-sprockets.gemspec +25 -0
  10. data/bin/console +14 -0
  11. data/bin/setup +8 -0
  12. data/examples/myapp/.gitignore +17 -0
  13. data/examples/myapp/Gemfile +11 -0
  14. data/examples/myapp/Gemfile.lock +182 -0
  15. data/examples/myapp/README.md +24 -0
  16. data/examples/myapp/Rakefile +6 -0
  17. data/examples/myapp/app/assets/config/manifest.js +3 -0
  18. data/examples/myapp/app/assets/images/.keep +0 -0
  19. data/examples/myapp/app/assets/javascripts/application.js +7 -0
  20. data/examples/myapp/app/assets/javascripts/code/hello.es6 +3 -0
  21. data/examples/myapp/app/assets/javascripts/code/some_component.es6 +9 -0
  22. data/examples/myapp/app/assets/stylesheets/application.css +15 -0
  23. data/examples/myapp/app/controllers/application_controller.rb +5 -0
  24. data/examples/myapp/app/controllers/concerns/.keep +0 -0
  25. data/examples/myapp/app/controllers/site_controller.rb +4 -0
  26. data/examples/myapp/app/helpers/application_helper.rb +2 -0
  27. data/examples/myapp/app/jobs/application_job.rb +2 -0
  28. data/examples/myapp/app/mailers/application_mailer.rb +4 -0
  29. data/examples/myapp/app/models/concerns/.keep +0 -0
  30. data/examples/myapp/app/views/layouts/application.html.erb +14 -0
  31. data/examples/myapp/app/views/layouts/mailer.html.erb +13 -0
  32. data/examples/myapp/app/views/layouts/mailer.text.erb +1 -0
  33. data/examples/myapp/app/views/site/home.html.erb +1 -0
  34. data/examples/myapp/bin/bundle +3 -0
  35. data/examples/myapp/bin/rails +4 -0
  36. data/examples/myapp/bin/rake +4 -0
  37. data/examples/myapp/bin/setup +34 -0
  38. data/examples/myapp/bin/update +29 -0
  39. data/examples/myapp/config.ru +5 -0
  40. data/examples/myapp/config/application.rb +25 -0
  41. data/examples/myapp/config/boot.rb +3 -0
  42. data/examples/myapp/config/environment.rb +5 -0
  43. data/examples/myapp/config/environments/development.rb +59 -0
  44. data/examples/myapp/config/environments/production.rb +81 -0
  45. data/examples/myapp/config/environments/test.rb +42 -0
  46. data/examples/myapp/config/initializers/application_controller_renderer.rb +6 -0
  47. data/examples/myapp/config/initializers/assets.rb +11 -0
  48. data/examples/myapp/config/initializers/backtrace_silencers.rb +7 -0
  49. data/examples/myapp/config/initializers/callback_terminator.rb +6 -0
  50. data/examples/myapp/config/initializers/cookies_serializer.rb +5 -0
  51. data/examples/myapp/config/initializers/filter_parameter_logging.rb +4 -0
  52. data/examples/myapp/config/initializers/inflections.rb +16 -0
  53. data/examples/myapp/config/initializers/mime_types.rb +4 -0
  54. data/examples/myapp/config/initializers/per_form_csrf_tokens.rb +4 -0
  55. data/examples/myapp/config/initializers/request_forgery_protection.rb +4 -0
  56. data/examples/myapp/config/initializers/session_store.rb +3 -0
  57. data/examples/myapp/config/initializers/wrap_parameters.rb +9 -0
  58. data/examples/myapp/config/locales/en.yml +23 -0
  59. data/examples/myapp/config/puma.rb +47 -0
  60. data/examples/myapp/config/routes.rb +3 -0
  61. data/examples/myapp/config/secrets.yml +22 -0
  62. data/examples/myapp/db/seeds.rb +7 -0
  63. data/examples/myapp/lib/assets/.keep +0 -0
  64. data/examples/myapp/lib/tasks/.keep +0 -0
  65. data/examples/myapp/log/.keep +0 -0
  66. data/examples/myapp/node_modules/almond/.npmignore +4 -0
  67. data/examples/myapp/node_modules/almond/.travis.yml +12 -0
  68. data/examples/myapp/node_modules/almond/LICENSE +45 -0
  69. data/examples/myapp/node_modules/almond/README.md +247 -0
  70. data/examples/myapp/node_modules/almond/almond.js +426 -0
  71. data/examples/myapp/node_modules/almond/package.json +81 -0
  72. data/examples/myapp/package.json +8 -0
  73. data/examples/myapp/public/404.html +67 -0
  74. data/examples/myapp/public/422.html +67 -0
  75. data/examples/myapp/public/500.html +66 -0
  76. data/examples/myapp/public/apple-touch-icon-precomposed.png +0 -0
  77. data/examples/myapp/public/apple-touch-icon.png +0 -0
  78. data/examples/myapp/public/favicon.ico +0 -0
  79. data/examples/myapp/public/robots.txt +5 -0
  80. data/examples/myapp/tmp/.keep +0 -0
  81. data/examples/myapp/vendor/assets/javascripts/.keep +0 -0
  82. data/examples/myapp/vendor/assets/stylesheets/.keep +0 -0
  83. data/lib/babel-schmooze-sprockets.rb +14 -0
  84. data/lib/babel-schmooze-sprockets/babel.rb +8 -0
  85. data/lib/babel-schmooze-sprockets/babel_processor.rb +74 -0
  86. data/lib/babel-schmooze-sprockets/version.rb +3 -0
  87. data/node_modules/amdefine/LICENSE +58 -0
  88. data/node_modules/amdefine/README.md +171 -0
  89. data/node_modules/amdefine/amdefine.js +301 -0
  90. data/node_modules/amdefine/intercept.js +36 -0
  91. data/node_modules/amdefine/package.json +74 -0
  92. data/node_modules/ansi-regex/index.js +4 -0
  93. data/node_modules/ansi-regex/license +21 -0
  94. data/node_modules/ansi-regex/package.json +113 -0
  95. data/node_modules/ansi-regex/readme.md +31 -0
  96. data/node_modules/ansi-styles/index.js +65 -0
  97. data/node_modules/ansi-styles/license +21 -0
  98. data/node_modules/ansi-styles/package.json +106 -0
  99. data/node_modules/ansi-styles/readme.md +86 -0
  100. data/node_modules/babel-code-frame/.npmignore +3 -0
  101. data/node_modules/babel-code-frame/README.md +40 -0
  102. data/node_modules/babel-code-frame/lib/index.js +137 -0
  103. data/node_modules/babel-code-frame/package.json +97 -0
  104. data/node_modules/babel-core/README.md +24 -0
  105. data/node_modules/babel-core/index.js +1 -0
  106. data/node_modules/babel-core/lib/api/browser.js +109 -0
  107. data/node_modules/babel-core/lib/api/node.js +125 -0
  108. data/node_modules/babel-core/lib/helpers/merge.js +44 -0
  109. data/node_modules/babel-core/lib/helpers/normalize-ast.js +29 -0
  110. data/node_modules/babel-core/lib/helpers/resolve.js +49 -0
  111. data/node_modules/babel-core/lib/store.js +41 -0
  112. data/node_modules/babel-core/lib/tools/build-external-helpers.js +108 -0
  113. data/node_modules/babel-core/lib/transformation/file/index.js +677 -0
  114. data/node_modules/babel-core/lib/transformation/file/logger.js +72 -0
  115. data/node_modules/babel-core/lib/transformation/file/metadata.js +160 -0
  116. data/node_modules/babel-core/lib/transformation/file/options/config.js +198 -0
  117. data/node_modules/babel-core/lib/transformation/file/options/index.js +38 -0
  118. data/node_modules/babel-core/lib/transformation/file/options/option-manager.js +483 -0
  119. data/node_modules/babel-core/lib/transformation/file/options/parsers.js +34 -0
  120. data/node_modules/babel-core/lib/transformation/file/options/removed.js +54 -0
  121. data/node_modules/babel-core/lib/transformation/internal-plugins/block-hoist.js +54 -0
  122. data/node_modules/babel-core/lib/transformation/internal-plugins/shadow-functions.js +104 -0
  123. data/node_modules/babel-core/lib/transformation/pipeline.js +79 -0
  124. data/node_modules/babel-core/lib/transformation/plugin-pass.js +80 -0
  125. data/node_modules/babel-core/lib/transformation/plugin.js +147 -0
  126. data/node_modules/babel-core/lib/util.js +187 -0
  127. data/node_modules/babel-core/package.json +133 -0
  128. data/node_modules/babel-core/register.js +3 -0
  129. data/node_modules/babel-generator/README.md +84 -0
  130. data/node_modules/babel-generator/lib/buffer.js +326 -0
  131. data/node_modules/babel-generator/lib/generators/base.js +50 -0
  132. data/node_modules/babel-generator/lib/generators/classes.js +80 -0
  133. data/node_modules/babel-generator/lib/generators/expressions.js +280 -0
  134. data/node_modules/babel-generator/lib/generators/flow.js +331 -0
  135. data/node_modules/babel-generator/lib/generators/jsx.js +88 -0
  136. data/node_modules/babel-generator/lib/generators/methods.js +95 -0
  137. data/node_modules/babel-generator/lib/generators/modules.js +157 -0
  138. data/node_modules/babel-generator/lib/generators/statements.js +294 -0
  139. data/node_modules/babel-generator/lib/generators/template-literals.js +33 -0
  140. data/node_modules/babel-generator/lib/generators/types.js +169 -0
  141. data/node_modules/babel-generator/lib/index.js +177 -0
  142. data/node_modules/babel-generator/lib/node/index.js +100 -0
  143. data/node_modules/babel-generator/lib/node/parentheses.js +265 -0
  144. data/node_modules/babel-generator/lib/node/whitespace.js +242 -0
  145. data/node_modules/babel-generator/lib/position.js +52 -0
  146. data/node_modules/babel-generator/lib/printer.js +379 -0
  147. data/node_modules/babel-generator/lib/source-map.js +115 -0
  148. data/node_modules/babel-generator/lib/whitespace.js +115 -0
  149. data/node_modules/babel-generator/package.json +106 -0
  150. data/node_modules/babel-helper-call-delegate/.npmignore +3 -0
  151. data/node_modules/babel-helper-call-delegate/README.md +5 -0
  152. data/node_modules/babel-helper-call-delegate/lib/index.js +76 -0
  153. data/node_modules/babel-helper-call-delegate/package.json +90 -0
  154. data/node_modules/babel-helper-define-map/.npmignore +3 -0
  155. data/node_modules/babel-helper-define-map/README.md +5 -0
  156. data/node_modules/babel-helper-define-map/lib/index.js +162 -0
  157. data/node_modules/babel-helper-define-map/package.json +91 -0
  158. data/node_modules/babel-helper-function-name/.npmignore +3 -0
  159. data/node_modules/babel-helper-function-name/README.md +5 -0
  160. data/node_modules/babel-helper-function-name/lib/index.js +175 -0
  161. data/node_modules/babel-helper-function-name/package.json +93 -0
  162. data/node_modules/babel-helper-get-function-arity/.npmignore +3 -0
  163. data/node_modules/babel-helper-get-function-arity/README.md +5 -0
  164. data/node_modules/babel-helper-get-function-arity/lib/index.js +22 -0
  165. data/node_modules/babel-helper-get-function-arity/package.json +89 -0
  166. data/node_modules/babel-helper-hoist-variables/.npmignore +3 -0
  167. data/node_modules/babel-helper-hoist-variables/README.md +5 -0
  168. data/node_modules/babel-helper-hoist-variables/lib/index.js +56 -0
  169. data/node_modules/babel-helper-hoist-variables/package.json +88 -0
  170. data/node_modules/babel-helper-optimise-call-expression/.npmignore +3 -0
  171. data/node_modules/babel-helper-optimise-call-expression/README.md +5 -0
  172. data/node_modules/babel-helper-optimise-call-expression/lib/index.js +22 -0
  173. data/node_modules/babel-helper-optimise-call-expression/package.json +89 -0
  174. data/node_modules/babel-helper-regex/.npmignore +3 -0
  175. data/node_modules/babel-helper-regex/README.md +5 -0
  176. data/node_modules/babel-helper-regex/lib/index.js +28 -0
  177. data/node_modules/babel-helper-regex/package.json +90 -0
  178. data/node_modules/babel-helper-remap-async-to-generator/.npmignore +3 -0
  179. data/node_modules/babel-helper-remap-async-to-generator/README.md +5 -0
  180. data/node_modules/babel-helper-remap-async-to-generator/lib/index.js +120 -0
  181. data/node_modules/babel-helper-remap-async-to-generator/package.json +91 -0
  182. data/node_modules/babel-helper-replace-supers/.npmignore +3 -0
  183. data/node_modules/babel-helper-replace-supers/README.md +5 -0
  184. data/node_modules/babel-helper-replace-supers/lib/index.js +252 -0
  185. data/node_modules/babel-helper-replace-supers/package.json +93 -0
  186. data/node_modules/babel-helpers/.npmignore +3 -0
  187. data/node_modules/babel-helpers/README.md +21 -0
  188. data/node_modules/babel-helpers/lib/helpers.js +71 -0
  189. data/node_modules/babel-helpers/lib/index.js +30 -0
  190. data/node_modules/babel-helpers/package.json +93 -0
  191. data/node_modules/babel-messages/.npmignore +3 -0
  192. data/node_modules/babel-messages/README.md +18 -0
  193. data/node_modules/babel-messages/lib/index.js +94 -0
  194. data/node_modules/babel-messages/package.json +96 -0
  195. data/node_modules/babel-plugin-add-module-exports/README.md +81 -0
  196. data/node_modules/babel-plugin-add-module-exports/lib/index.js +46 -0
  197. data/node_modules/babel-plugin-add-module-exports/package.json +99 -0
  198. data/node_modules/babel-plugin-check-es2015-constants/.npmignore +4 -0
  199. data/node_modules/babel-plugin-check-es2015-constants/README.md +39 -0
  200. data/node_modules/babel-plugin-check-es2015-constants/lib/index.js +28 -0
  201. data/node_modules/babel-plugin-check-es2015-constants/package.json +92 -0
  202. data/node_modules/babel-plugin-syntax-async-functions/.npmignore +3 -0
  203. data/node_modules/babel-plugin-syntax-async-functions/README.md +35 -0
  204. data/node_modules/babel-plugin-syntax-async-functions/lib/index.js +13 -0
  205. data/node_modules/babel-plugin-syntax-async-functions/package.json +92 -0
  206. data/node_modules/babel-plugin-syntax-function-bind/.npmignore +3 -0
  207. data/node_modules/babel-plugin-syntax-function-bind/README.md +35 -0
  208. data/node_modules/babel-plugin-syntax-function-bind/lib/index.js +13 -0
  209. data/node_modules/babel-plugin-syntax-function-bind/package.json +92 -0
  210. data/node_modules/babel-plugin-transform-async-to-generator/.npmignore +4 -0
  211. data/node_modules/babel-plugin-transform-async-to-generator/README.md +35 -0
  212. data/node_modules/babel-plugin-transform-async-to-generator/lib/index.js +25 -0
  213. data/node_modules/babel-plugin-transform-async-to-generator/package.json +94 -0
  214. data/node_modules/babel-plugin-transform-es2015-arrow-functions/.npmignore +4 -0
  215. data/node_modules/babel-plugin-transform-es2015-arrow-functions/README.md +43 -0
  216. data/node_modules/babel-plugin-transform-es2015-arrow-functions/lib/index.js +35 -0
  217. data/node_modules/babel-plugin-transform-es2015-arrow-functions/package.json +92 -0
  218. data/node_modules/babel-plugin-transform-es2015-block-scoped-functions/.npmignore +4 -0
  219. data/node_modules/babel-plugin-transform-es2015-block-scoped-functions/README.md +35 -0
  220. data/node_modules/babel-plugin-transform-es2015-block-scoped-functions/lib/index.js +48 -0
  221. data/node_modules/babel-plugin-transform-es2015-block-scoped-functions/package.json +92 -0
  222. data/node_modules/babel-plugin-transform-es2015-block-scoping/.npmignore +4 -0
  223. data/node_modules/babel-plugin-transform-es2015-block-scoping/README.md +35 -0
  224. data/node_modules/babel-plugin-transform-es2015-block-scoping/lib/index.js +719 -0
  225. data/node_modules/babel-plugin-transform-es2015-block-scoping/lib/tdz.js +97 -0
  226. data/node_modules/babel-plugin-transform-es2015-block-scoping/package.json +97 -0
  227. data/node_modules/babel-plugin-transform-es2015-classes/.npmignore +4 -0
  228. data/node_modules/babel-plugin-transform-es2015-classes/README.md +45 -0
  229. data/node_modules/babel-plugin-transform-es2015-classes/lib/index.js +69 -0
  230. data/node_modules/babel-plugin-transform-es2015-classes/lib/lib/memoise-decorators.js +41 -0
  231. data/node_modules/babel-plugin-transform-es2015-classes/lib/loose.js +64 -0
  232. data/node_modules/babel-plugin-transform-es2015-classes/lib/vanilla.js +577 -0
  233. data/node_modules/babel-plugin-transform-es2015-classes/package.json +100 -0
  234. data/node_modules/babel-plugin-transform-es2015-computed-properties/.npmignore +4 -0
  235. data/node_modules/babel-plugin-transform-es2015-computed-properties/README.md +45 -0
  236. data/node_modules/babel-plugin-transform-es2015-computed-properties/lib/index.js +206 -0
  237. data/node_modules/babel-plugin-transform-es2015-computed-properties/package.json +94 -0
  238. data/node_modules/babel-plugin-transform-es2015-destructuring/.npmignore +4 -0
  239. data/node_modules/babel-plugin-transform-es2015-destructuring/README.md +35 -0
  240. data/node_modules/babel-plugin-transform-es2015-destructuring/lib/index.js +503 -0
  241. data/node_modules/babel-plugin-transform-es2015-destructuring/package.json +92 -0
  242. data/node_modules/babel-plugin-transform-es2015-duplicate-keys/.npmignore +3 -0
  243. data/node_modules/babel-plugin-transform-es2015-duplicate-keys/README.md +40 -0
  244. data/node_modules/babel-plugin-transform-es2015-duplicate-keys/lib/index.js +92 -0
  245. data/node_modules/babel-plugin-transform-es2015-duplicate-keys/package.json +93 -0
  246. data/node_modules/babel-plugin-transform-es2015-for-of/.npmignore +4 -0
  247. data/node_modules/babel-plugin-transform-es2015-for-of/README.md +45 -0
  248. data/node_modules/babel-plugin-transform-es2015-for-of/lib/index.js +202 -0
  249. data/node_modules/babel-plugin-transform-es2015-for-of/package.json +93 -0
  250. data/node_modules/babel-plugin-transform-es2015-function-name/.npmignore +4 -0
  251. data/node_modules/babel-plugin-transform-es2015-function-name/README.md +35 -0
  252. data/node_modules/babel-plugin-transform-es2015-function-name/lib/index.js +34 -0
  253. data/node_modules/babel-plugin-transform-es2015-function-name/package.json +94 -0
  254. data/node_modules/babel-plugin-transform-es2015-literals/.npmignore +4 -0
  255. data/node_modules/babel-plugin-transform-es2015-literals/README.md +35 -0
  256. data/node_modules/babel-plugin-transform-es2015-literals/lib/index.js +29 -0
  257. data/node_modules/babel-plugin-transform-es2015-literals/package.json +92 -0
  258. data/node_modules/babel-plugin-transform-es2015-modules-amd/.npmignore +3 -0
  259. data/node_modules/babel-plugin-transform-es2015-modules-amd/README.md +33 -0
  260. data/node_modules/babel-plugin-transform-es2015-modules-amd/lib/index.js +140 -0
  261. data/node_modules/babel-plugin-transform-es2015-modules-amd/package.json +94 -0
  262. data/node_modules/babel-plugin-transform-es2015-modules-commonjs/.npmignore +4 -0
  263. data/node_modules/babel-plugin-transform-es2015-modules-commonjs/README.md +43 -0
  264. data/node_modules/babel-plugin-transform-es2015-modules-commonjs/lib/index.js +527 -0
  265. data/node_modules/babel-plugin-transform-es2015-modules-commonjs/package.json +95 -0
  266. data/node_modules/babel-plugin-transform-es2015-object-super/.npmignore +4 -0
  267. data/node_modules/babel-plugin-transform-es2015-object-super/README.md +35 -0
  268. data/node_modules/babel-plugin-transform-es2015-object-super/lib/index.js +66 -0
  269. data/node_modules/babel-plugin-transform-es2015-object-super/package.json +93 -0
  270. data/node_modules/babel-plugin-transform-es2015-parameters/.npmignore +4 -0
  271. data/node_modules/babel-plugin-transform-es2015-parameters/README.md +35 -0
  272. data/node_modules/babel-plugin-transform-es2015-parameters/lib/default.js +166 -0
  273. data/node_modules/babel-plugin-transform-es2015-parameters/lib/destructuring.js +36 -0
  274. data/node_modules/babel-plugin-transform-es2015-parameters/lib/index.js +39 -0
  275. data/node_modules/babel-plugin-transform-es2015-parameters/lib/rest.js +297 -0
  276. data/node_modules/babel-plugin-transform-es2015-parameters/package.json +97 -0
  277. data/node_modules/babel-plugin-transform-es2015-shorthand-properties/.npmignore +4 -0
  278. data/node_modules/babel-plugin-transform-es2015-shorthand-properties/README.md +35 -0
  279. data/node_modules/babel-plugin-transform-es2015-shorthand-properties/lib/index.js +33 -0
  280. data/node_modules/babel-plugin-transform-es2015-shorthand-properties/package.json +93 -0
  281. data/node_modules/babel-plugin-transform-es2015-spread/.npmignore +4 -0
  282. data/node_modules/babel-plugin-transform-es2015-spread/README.md +45 -0
  283. data/node_modules/babel-plugin-transform-es2015-spread/lib/index.js +140 -0
  284. data/node_modules/babel-plugin-transform-es2015-spread/package.json +92 -0
  285. data/node_modules/babel-plugin-transform-es2015-sticky-regex/.npmignore +4 -0
  286. data/node_modules/babel-plugin-transform-es2015-sticky-regex/README.md +35 -0
  287. data/node_modules/babel-plugin-transform-es2015-sticky-regex/lib/index.js +29 -0
  288. data/node_modules/babel-plugin-transform-es2015-sticky-regex/package.json +94 -0
  289. data/node_modules/babel-plugin-transform-es2015-template-literals/.npmignore +4 -0
  290. data/node_modules/babel-plugin-transform-es2015-template-literals/README.md +46 -0
  291. data/node_modules/babel-plugin-transform-es2015-template-literals/lib/index.js +96 -0
  292. data/node_modules/babel-plugin-transform-es2015-template-literals/package.json +92 -0
  293. data/node_modules/babel-plugin-transform-es2015-typeof-symbol/.npmignore +3 -0
  294. data/node_modules/babel-plugin-transform-es2015-typeof-symbol/README.md +33 -0
  295. data/node_modules/babel-plugin-transform-es2015-typeof-symbol/lib/index.js +59 -0
  296. data/node_modules/babel-plugin-transform-es2015-typeof-symbol/package.json +92 -0
  297. data/node_modules/babel-plugin-transform-es2015-unicode-regex/.npmignore +4 -0
  298. data/node_modules/babel-plugin-transform-es2015-unicode-regex/README.md +35 -0
  299. data/node_modules/babel-plugin-transform-es2015-unicode-regex/lib/index.js +31 -0
  300. data/node_modules/babel-plugin-transform-es2015-unicode-regex/package.json +94 -0
  301. data/node_modules/babel-plugin-transform-es3-member-expression-literals/.npmignore +4 -0
  302. data/node_modules/babel-plugin-transform-es3-member-expression-literals/README.md +35 -0
  303. data/node_modules/babel-plugin-transform-es3-member-expression-literals/lib/index.js +26 -0
  304. data/node_modules/babel-plugin-transform-es3-member-expression-literals/package.json +92 -0
  305. data/node_modules/babel-plugin-transform-es3-property-literals/.npmignore +4 -0
  306. data/node_modules/babel-plugin-transform-es3-property-literals/README.md +35 -0
  307. data/node_modules/babel-plugin-transform-es3-property-literals/lib/index.js +25 -0
  308. data/node_modules/babel-plugin-transform-es3-property-literals/package.json +92 -0
  309. data/node_modules/babel-plugin-transform-function-bind/.npmignore +4 -0
  310. data/node_modules/babel-plugin-transform-function-bind/README.md +35 -0
  311. data/node_modules/babel-plugin-transform-function-bind/lib/index.js +61 -0
  312. data/node_modules/babel-plugin-transform-function-bind/package.json +93 -0
  313. data/node_modules/babel-plugin-transform-regenerator/.npmignore +2 -0
  314. data/node_modules/babel-plugin-transform-regenerator/.test/async.es6.js +493 -0
  315. data/node_modules/babel-plugin-transform-regenerator/.test/tests.es6.js +2560 -0
  316. data/node_modules/babel-plugin-transform-regenerator/LICENSE +14 -0
  317. data/node_modules/babel-plugin-transform-regenerator/PATENTS +33 -0
  318. data/node_modules/babel-plugin-transform-regenerator/README.md +46 -0
  319. data/node_modules/babel-plugin-transform-regenerator/lib/emit.js +996 -0
  320. data/node_modules/babel-plugin-transform-regenerator/lib/hoist.js +141 -0
  321. data/node_modules/babel-plugin-transform-regenerator/lib/index.js +19 -0
  322. data/node_modules/babel-plugin-transform-regenerator/lib/leap.js +185 -0
  323. data/node_modules/babel-plugin-transform-regenerator/lib/meta.js +113 -0
  324. data/node_modules/babel-plugin-transform-regenerator/lib/util.js +29 -0
  325. data/node_modules/babel-plugin-transform-regenerator/lib/visit.js +255 -0
  326. data/node_modules/babel-plugin-transform-regenerator/package.json +102 -0
  327. data/node_modules/babel-plugin-transform-regenerator/src/emit.js +1184 -0
  328. data/node_modules/babel-plugin-transform-regenerator/src/hoist.js +148 -0
  329. data/node_modules/babel-plugin-transform-regenerator/src/index.js +13 -0
  330. data/node_modules/babel-plugin-transform-regenerator/src/leap.js +174 -0
  331. data/node_modules/babel-plugin-transform-regenerator/src/meta.js +103 -0
  332. data/node_modules/babel-plugin-transform-regenerator/src/util.js +23 -0
  333. data/node_modules/babel-plugin-transform-regenerator/src/visit.js +269 -0
  334. data/node_modules/babel-plugin-transform-strict-mode/.npmignore +3 -0
  335. data/node_modules/babel-plugin-transform-strict-mode/README.md +45 -0
  336. data/node_modules/babel-plugin-transform-strict-mode/lib/index.js +31 -0
  337. data/node_modules/babel-plugin-transform-strict-mode/package.json +93 -0
  338. data/node_modules/babel-preset-es2015/.npmignore +3 -0
  339. data/node_modules/babel-preset-es2015/README.md +35 -0
  340. data/node_modules/babel-preset-es2015/index.js +25 -0
  341. data/node_modules/babel-preset-es2015/package.json +114 -0
  342. data/node_modules/babel-register/.npmignore +3 -0
  343. data/node_modules/babel-register/README.md +19 -0
  344. data/node_modules/babel-register/lib/browser.js +9 -0
  345. data/node_modules/babel-register/lib/cache.js +76 -0
  346. data/node_modules/babel-register/lib/node.js +178 -0
  347. data/node_modules/babel-register/node_modules/core-js/CHANGELOG.md +537 -0
  348. data/node_modules/babel-register/node_modules/core-js/Gruntfile.js +2 -0
  349. data/node_modules/babel-register/node_modules/core-js/LICENSE +19 -0
  350. data/node_modules/babel-register/node_modules/core-js/README.md +1982 -0
  351. data/node_modules/babel-register/node_modules/core-js/bower.json +47 -0
  352. data/node_modules/babel-register/node_modules/core-js/build/Gruntfile.ls +84 -0
  353. data/node_modules/babel-register/node_modules/core-js/build/build.ls +62 -0
  354. data/node_modules/babel-register/node_modules/core-js/build/config.js +249 -0
  355. data/node_modules/babel-register/node_modules/core-js/build/index.js +104 -0
  356. data/node_modules/babel-register/node_modules/core-js/client/core.js +7310 -0
  357. data/node_modules/babel-register/node_modules/core-js/client/core.min.js +10 -0
  358. data/node_modules/babel-register/node_modules/core-js/client/core.min.js.map +1 -0
  359. data/node_modules/babel-register/node_modules/core-js/client/library.js +6842 -0
  360. data/node_modules/babel-register/node_modules/core-js/client/library.min.js +10 -0
  361. data/node_modules/babel-register/node_modules/core-js/client/library.min.js.map +1 -0
  362. data/node_modules/babel-register/node_modules/core-js/client/shim.js +6969 -0
  363. data/node_modules/babel-register/node_modules/core-js/client/shim.min.js +10 -0
  364. data/node_modules/babel-register/node_modules/core-js/client/shim.min.js.map +1 -0
  365. data/node_modules/babel-register/node_modules/core-js/core/_.js +2 -0
  366. data/node_modules/babel-register/node_modules/core-js/core/delay.js +2 -0
  367. data/node_modules/babel-register/node_modules/core-js/core/dict.js +2 -0
  368. data/node_modules/babel-register/node_modules/core-js/core/function.js +2 -0
  369. data/node_modules/babel-register/node_modules/core-js/core/index.js +15 -0
  370. data/node_modules/babel-register/node_modules/core-js/core/number.js +2 -0
  371. data/node_modules/babel-register/node_modules/core-js/core/object.js +5 -0
  372. data/node_modules/babel-register/node_modules/core-js/core/regexp.js +2 -0
  373. data/node_modules/babel-register/node_modules/core-js/core/string.js +3 -0
  374. data/node_modules/babel-register/node_modules/core-js/es5/index.js +37 -0
  375. data/node_modules/babel-register/node_modules/core-js/es6/array.js +23 -0
  376. data/node_modules/babel-register/node_modules/core-js/es6/date.js +6 -0
  377. data/node_modules/babel-register/node_modules/core-js/es6/function.js +4 -0
  378. data/node_modules/babel-register/node_modules/core-js/es6/index.js +138 -0
  379. data/node_modules/babel-register/node_modules/core-js/es6/map.js +5 -0
  380. data/node_modules/babel-register/node_modules/core-js/es6/math.js +18 -0
  381. data/node_modules/babel-register/node_modules/core-js/es6/number.js +13 -0
  382. data/node_modules/babel-register/node_modules/core-js/es6/object.js +20 -0
  383. data/node_modules/babel-register/node_modules/core-js/es6/parse-float.js +2 -0
  384. data/node_modules/babel-register/node_modules/core-js/es6/parse-int.js +2 -0
  385. data/node_modules/babel-register/node_modules/core-js/es6/promise.js +5 -0
  386. data/node_modules/babel-register/node_modules/core-js/es6/reflect.js +15 -0
  387. data/node_modules/babel-register/node_modules/core-js/es6/regexp.js +8 -0
  388. data/node_modules/babel-register/node_modules/core-js/es6/set.js +5 -0
  389. data/node_modules/babel-register/node_modules/core-js/es6/string.js +27 -0
  390. data/node_modules/babel-register/node_modules/core-js/es6/symbol.js +3 -0
  391. data/node_modules/babel-register/node_modules/core-js/es6/typed.js +13 -0
  392. data/node_modules/babel-register/node_modules/core-js/es6/weak-map.js +4 -0
  393. data/node_modules/babel-register/node_modules/core-js/es6/weak-set.js +4 -0
  394. data/node_modules/babel-register/node_modules/core-js/es7/array.js +2 -0
  395. data/node_modules/babel-register/node_modules/core-js/es7/error.js +2 -0
  396. data/node_modules/babel-register/node_modules/core-js/es7/index.js +32 -0
  397. data/node_modules/babel-register/node_modules/core-js/es7/map.js +2 -0
  398. data/node_modules/babel-register/node_modules/core-js/es7/math.js +5 -0
  399. data/node_modules/babel-register/node_modules/core-js/es7/object.js +8 -0
  400. data/node_modules/babel-register/node_modules/core-js/es7/reflect.js +10 -0
  401. data/node_modules/babel-register/node_modules/core-js/es7/set.js +2 -0
  402. data/node_modules/babel-register/node_modules/core-js/es7/string.js +7 -0
  403. data/node_modules/babel-register/node_modules/core-js/es7/system.js +2 -0
  404. data/node_modules/babel-register/node_modules/core-js/fn/_.js +2 -0
  405. data/node_modules/babel-register/node_modules/core-js/fn/array/concat.js +4 -0
  406. data/node_modules/babel-register/node_modules/core-js/fn/array/copy-within.js +2 -0
  407. data/node_modules/babel-register/node_modules/core-js/fn/array/entries.js +2 -0
  408. data/node_modules/babel-register/node_modules/core-js/fn/array/every.js +2 -0
  409. data/node_modules/babel-register/node_modules/core-js/fn/array/fill.js +2 -0
  410. data/node_modules/babel-register/node_modules/core-js/fn/array/filter.js +2 -0
  411. data/node_modules/babel-register/node_modules/core-js/fn/array/find-index.js +2 -0
  412. data/node_modules/babel-register/node_modules/core-js/fn/array/find.js +2 -0
  413. data/node_modules/babel-register/node_modules/core-js/fn/array/for-each.js +2 -0
  414. data/node_modules/babel-register/node_modules/core-js/fn/array/from.js +3 -0
  415. data/node_modules/babel-register/node_modules/core-js/fn/array/includes.js +2 -0
  416. data/node_modules/babel-register/node_modules/core-js/fn/array/index-of.js +2 -0
  417. data/node_modules/babel-register/node_modules/core-js/fn/array/index.js +24 -0
  418. data/node_modules/babel-register/node_modules/core-js/fn/array/is-array.js +2 -0
  419. data/node_modules/babel-register/node_modules/core-js/fn/array/iterator.js +2 -0
  420. data/node_modules/babel-register/node_modules/core-js/fn/array/join.js +2 -0
  421. data/node_modules/babel-register/node_modules/core-js/fn/array/keys.js +2 -0
  422. data/node_modules/babel-register/node_modules/core-js/fn/array/last-index-of.js +2 -0
  423. data/node_modules/babel-register/node_modules/core-js/fn/array/map.js +2 -0
  424. data/node_modules/babel-register/node_modules/core-js/fn/array/of.js +2 -0
  425. data/node_modules/babel-register/node_modules/core-js/fn/array/pop.js +4 -0
  426. data/node_modules/babel-register/node_modules/core-js/fn/array/push.js +4 -0
  427. data/node_modules/babel-register/node_modules/core-js/fn/array/reduce-right.js +2 -0
  428. data/node_modules/babel-register/node_modules/core-js/fn/array/reduce.js +2 -0
  429. data/node_modules/babel-register/node_modules/core-js/fn/array/reverse.js +4 -0
  430. data/node_modules/babel-register/node_modules/core-js/fn/array/shift.js +4 -0
  431. data/node_modules/babel-register/node_modules/core-js/fn/array/slice.js +2 -0
  432. data/node_modules/babel-register/node_modules/core-js/fn/array/some.js +2 -0
  433. data/node_modules/babel-register/node_modules/core-js/fn/array/sort.js +2 -0
  434. data/node_modules/babel-register/node_modules/core-js/fn/array/splice.js +4 -0
  435. data/node_modules/babel-register/node_modules/core-js/fn/array/unshift.js +4 -0
  436. data/node_modules/babel-register/node_modules/core-js/fn/array/values.js +2 -0
  437. data/node_modules/babel-register/node_modules/core-js/fn/array/virtual/copy-within.js +2 -0
  438. data/node_modules/babel-register/node_modules/core-js/fn/array/virtual/entries.js +2 -0
  439. data/node_modules/babel-register/node_modules/core-js/fn/array/virtual/every.js +2 -0
  440. data/node_modules/babel-register/node_modules/core-js/fn/array/virtual/fill.js +2 -0
  441. data/node_modules/babel-register/node_modules/core-js/fn/array/virtual/filter.js +2 -0
  442. data/node_modules/babel-register/node_modules/core-js/fn/array/virtual/find-index.js +2 -0
  443. data/node_modules/babel-register/node_modules/core-js/fn/array/virtual/find.js +2 -0
  444. data/node_modules/babel-register/node_modules/core-js/fn/array/virtual/for-each.js +2 -0
  445. data/node_modules/babel-register/node_modules/core-js/fn/array/virtual/includes.js +2 -0
  446. data/node_modules/babel-register/node_modules/core-js/fn/array/virtual/index-of.js +2 -0
  447. data/node_modules/babel-register/node_modules/core-js/fn/array/virtual/index.js +20 -0
  448. data/node_modules/babel-register/node_modules/core-js/fn/array/virtual/iterator.js +2 -0
  449. data/node_modules/babel-register/node_modules/core-js/fn/array/virtual/join.js +2 -0
  450. data/node_modules/babel-register/node_modules/core-js/fn/array/virtual/keys.js +2 -0
  451. data/node_modules/babel-register/node_modules/core-js/fn/array/virtual/last-index-of.js +2 -0
  452. data/node_modules/babel-register/node_modules/core-js/fn/array/virtual/map.js +2 -0
  453. data/node_modules/babel-register/node_modules/core-js/fn/array/virtual/reduce-right.js +2 -0
  454. data/node_modules/babel-register/node_modules/core-js/fn/array/virtual/reduce.js +2 -0
  455. data/node_modules/babel-register/node_modules/core-js/fn/array/virtual/slice.js +2 -0
  456. data/node_modules/babel-register/node_modules/core-js/fn/array/virtual/some.js +2 -0
  457. data/node_modules/babel-register/node_modules/core-js/fn/array/virtual/sort.js +2 -0
  458. data/node_modules/babel-register/node_modules/core-js/fn/array/virtual/values.js +2 -0
  459. data/node_modules/babel-register/node_modules/core-js/fn/clear-immediate.js +2 -0
  460. data/node_modules/babel-register/node_modules/core-js/fn/date/index.js +6 -0
  461. data/node_modules/babel-register/node_modules/core-js/fn/date/now.js +2 -0
  462. data/node_modules/babel-register/node_modules/core-js/fn/date/to-iso-string.js +3 -0
  463. data/node_modules/babel-register/node_modules/core-js/fn/date/to-json.js +2 -0
  464. data/node_modules/babel-register/node_modules/core-js/fn/date/to-primitive.js +5 -0
  465. data/node_modules/babel-register/node_modules/core-js/fn/date/to-string.js +5 -0
  466. data/node_modules/babel-register/node_modules/core-js/fn/delay.js +2 -0
  467. data/node_modules/babel-register/node_modules/core-js/fn/dict.js +2 -0
  468. data/node_modules/babel-register/node_modules/core-js/fn/dom-collections/index.js +8 -0
  469. data/node_modules/babel-register/node_modules/core-js/fn/dom-collections/iterator.js +2 -0
  470. data/node_modules/babel-register/node_modules/core-js/fn/error/index.js +2 -0
  471. data/node_modules/babel-register/node_modules/core-js/fn/error/is-error.js +2 -0
  472. data/node_modules/babel-register/node_modules/core-js/fn/function/bind.js +2 -0
  473. data/node_modules/babel-register/node_modules/core-js/fn/function/has-instance.js +2 -0
  474. data/node_modules/babel-register/node_modules/core-js/fn/function/index.js +5 -0
  475. data/node_modules/babel-register/node_modules/core-js/fn/function/name.js +1 -0
  476. data/node_modules/babel-register/node_modules/core-js/fn/function/part.js +2 -0
  477. data/node_modules/babel-register/node_modules/core-js/fn/function/virtual/bind.js +2 -0
  478. data/node_modules/babel-register/node_modules/core-js/fn/function/virtual/index.js +3 -0
  479. data/node_modules/babel-register/node_modules/core-js/fn/function/virtual/part.js +2 -0
  480. data/node_modules/babel-register/node_modules/core-js/fn/get-iterator-method.js +3 -0
  481. data/node_modules/babel-register/node_modules/core-js/fn/get-iterator.js +3 -0
  482. data/node_modules/babel-register/node_modules/core-js/fn/is-iterable.js +3 -0
  483. data/node_modules/babel-register/node_modules/core-js/fn/json/index.js +2 -0
  484. data/node_modules/babel-register/node_modules/core-js/fn/json/stringify.js +5 -0
  485. data/node_modules/babel-register/node_modules/core-js/fn/map.js +6 -0
  486. data/node_modules/babel-register/node_modules/core-js/fn/math/acosh.js +2 -0
  487. data/node_modules/babel-register/node_modules/core-js/fn/math/asinh.js +2 -0
  488. data/node_modules/babel-register/node_modules/core-js/fn/math/atanh.js +2 -0
  489. data/node_modules/babel-register/node_modules/core-js/fn/math/cbrt.js +2 -0
  490. data/node_modules/babel-register/node_modules/core-js/fn/math/clz32.js +2 -0
  491. data/node_modules/babel-register/node_modules/core-js/fn/math/cosh.js +2 -0
  492. data/node_modules/babel-register/node_modules/core-js/fn/math/expm1.js +2 -0
  493. data/node_modules/babel-register/node_modules/core-js/fn/math/fround.js +2 -0
  494. data/node_modules/babel-register/node_modules/core-js/fn/math/hypot.js +2 -0
  495. data/node_modules/babel-register/node_modules/core-js/fn/math/iaddh.js +2 -0
  496. data/node_modules/babel-register/node_modules/core-js/fn/math/imul.js +2 -0
  497. data/node_modules/babel-register/node_modules/core-js/fn/math/imulh.js +2 -0
  498. data/node_modules/babel-register/node_modules/core-js/fn/math/index.js +22 -0
  499. data/node_modules/babel-register/node_modules/core-js/fn/math/isubh.js +2 -0
  500. data/node_modules/babel-register/node_modules/core-js/fn/math/log10.js +2 -0
  501. data/node_modules/babel-register/node_modules/core-js/fn/math/log1p.js +2 -0
  502. data/node_modules/babel-register/node_modules/core-js/fn/math/log2.js +2 -0
  503. data/node_modules/babel-register/node_modules/core-js/fn/math/sign.js +2 -0
  504. data/node_modules/babel-register/node_modules/core-js/fn/math/sinh.js +2 -0
  505. data/node_modules/babel-register/node_modules/core-js/fn/math/tanh.js +2 -0
  506. data/node_modules/babel-register/node_modules/core-js/fn/math/trunc.js +2 -0
  507. data/node_modules/babel-register/node_modules/core-js/fn/math/umulh.js +2 -0
  508. data/node_modules/babel-register/node_modules/core-js/fn/number/constructor.js +2 -0
  509. data/node_modules/babel-register/node_modules/core-js/fn/number/epsilon.js +2 -0
  510. data/node_modules/babel-register/node_modules/core-js/fn/number/index.js +14 -0
  511. data/node_modules/babel-register/node_modules/core-js/fn/number/is-finite.js +2 -0
  512. data/node_modules/babel-register/node_modules/core-js/fn/number/is-integer.js +2 -0
  513. data/node_modules/babel-register/node_modules/core-js/fn/number/is-nan.js +2 -0
  514. data/node_modules/babel-register/node_modules/core-js/fn/number/is-safe-integer.js +2 -0
  515. data/node_modules/babel-register/node_modules/core-js/fn/number/iterator.js +5 -0
  516. data/node_modules/babel-register/node_modules/core-js/fn/number/max-safe-integer.js +2 -0
  517. data/node_modules/babel-register/node_modules/core-js/fn/number/min-safe-integer.js +2 -0
  518. data/node_modules/babel-register/node_modules/core-js/fn/number/parse-float.js +2 -0
  519. data/node_modules/babel-register/node_modules/core-js/fn/number/parse-int.js +2 -0
  520. data/node_modules/babel-register/node_modules/core-js/fn/number/to-fixed.js +2 -0
  521. data/node_modules/babel-register/node_modules/core-js/fn/number/to-precision.js +2 -0
  522. data/node_modules/babel-register/node_modules/core-js/fn/number/virtual/index.js +4 -0
  523. data/node_modules/babel-register/node_modules/core-js/fn/number/virtual/iterator.js +2 -0
  524. data/node_modules/babel-register/node_modules/core-js/fn/number/virtual/to-fixed.js +2 -0
  525. data/node_modules/babel-register/node_modules/core-js/fn/number/virtual/to-precision.js +2 -0
  526. data/node_modules/babel-register/node_modules/core-js/fn/object/assign.js +2 -0
  527. data/node_modules/babel-register/node_modules/core-js/fn/object/classof.js +2 -0
  528. data/node_modules/babel-register/node_modules/core-js/fn/object/create.js +5 -0
  529. data/node_modules/babel-register/node_modules/core-js/fn/object/define-getter.js +2 -0
  530. data/node_modules/babel-register/node_modules/core-js/fn/object/define-properties.js +5 -0
  531. data/node_modules/babel-register/node_modules/core-js/fn/object/define-property.js +5 -0
  532. data/node_modules/babel-register/node_modules/core-js/fn/object/define-setter.js +2 -0
  533. data/node_modules/babel-register/node_modules/core-js/fn/object/define.js +2 -0
  534. data/node_modules/babel-register/node_modules/core-js/fn/object/entries.js +2 -0
  535. data/node_modules/babel-register/node_modules/core-js/fn/object/freeze.js +2 -0
  536. data/node_modules/babel-register/node_modules/core-js/fn/object/get-own-property-descriptor.js +5 -0
  537. data/node_modules/babel-register/node_modules/core-js/fn/object/get-own-property-descriptors.js +2 -0
  538. data/node_modules/babel-register/node_modules/core-js/fn/object/get-own-property-names.js +5 -0
  539. data/node_modules/babel-register/node_modules/core-js/fn/object/get-own-property-symbols.js +2 -0
  540. data/node_modules/babel-register/node_modules/core-js/fn/object/get-prototype-of.js +2 -0
  541. data/node_modules/babel-register/node_modules/core-js/fn/object/index.js +30 -0
  542. data/node_modules/babel-register/node_modules/core-js/fn/object/is-extensible.js +2 -0
  543. data/node_modules/babel-register/node_modules/core-js/fn/object/is-frozen.js +2 -0
  544. data/node_modules/babel-register/node_modules/core-js/fn/object/is-object.js +2 -0
  545. data/node_modules/babel-register/node_modules/core-js/fn/object/is-sealed.js +2 -0
  546. data/node_modules/babel-register/node_modules/core-js/fn/object/is.js +2 -0
  547. data/node_modules/babel-register/node_modules/core-js/fn/object/keys.js +2 -0
  548. data/node_modules/babel-register/node_modules/core-js/fn/object/lookup-getter.js +2 -0
  549. data/node_modules/babel-register/node_modules/core-js/fn/object/lookup-setter.js +2 -0
  550. data/node_modules/babel-register/node_modules/core-js/fn/object/make.js +2 -0
  551. data/node_modules/babel-register/node_modules/core-js/fn/object/prevent-extensions.js +2 -0
  552. data/node_modules/babel-register/node_modules/core-js/fn/object/seal.js +2 -0
  553. data/node_modules/babel-register/node_modules/core-js/fn/object/set-prototype-of.js +2 -0
  554. data/node_modules/babel-register/node_modules/core-js/fn/object/values.js +2 -0
  555. data/node_modules/babel-register/node_modules/core-js/fn/parse-float.js +2 -0
  556. data/node_modules/babel-register/node_modules/core-js/fn/parse-int.js +2 -0
  557. data/node_modules/babel-register/node_modules/core-js/fn/promise.js +5 -0
  558. data/node_modules/babel-register/node_modules/core-js/fn/reflect/apply.js +2 -0
  559. data/node_modules/babel-register/node_modules/core-js/fn/reflect/construct.js +2 -0
  560. data/node_modules/babel-register/node_modules/core-js/fn/reflect/define-metadata.js +2 -0
  561. data/node_modules/babel-register/node_modules/core-js/fn/reflect/define-property.js +2 -0
  562. data/node_modules/babel-register/node_modules/core-js/fn/reflect/delete-metadata.js +2 -0
  563. data/node_modules/babel-register/node_modules/core-js/fn/reflect/delete-property.js +2 -0
  564. data/node_modules/babel-register/node_modules/core-js/fn/reflect/enumerate.js +2 -0
  565. data/node_modules/babel-register/node_modules/core-js/fn/reflect/get-metadata-keys.js +2 -0
  566. data/node_modules/babel-register/node_modules/core-js/fn/reflect/get-metadata.js +2 -0
  567. data/node_modules/babel-register/node_modules/core-js/fn/reflect/get-own-metadata-keys.js +2 -0
  568. data/node_modules/babel-register/node_modules/core-js/fn/reflect/get-own-metadata.js +2 -0
  569. data/node_modules/babel-register/node_modules/core-js/fn/reflect/get-own-property-descriptor.js +2 -0
  570. data/node_modules/babel-register/node_modules/core-js/fn/reflect/get-prototype-of.js +2 -0
  571. data/node_modules/babel-register/node_modules/core-js/fn/reflect/get.js +2 -0
  572. data/node_modules/babel-register/node_modules/core-js/fn/reflect/has-metadata.js +2 -0
  573. data/node_modules/babel-register/node_modules/core-js/fn/reflect/has-own-metadata.js +2 -0
  574. data/node_modules/babel-register/node_modules/core-js/fn/reflect/has.js +2 -0
  575. data/node_modules/babel-register/node_modules/core-js/fn/reflect/index.js +24 -0
  576. data/node_modules/babel-register/node_modules/core-js/fn/reflect/is-extensible.js +2 -0
  577. data/node_modules/babel-register/node_modules/core-js/fn/reflect/metadata.js +2 -0
  578. data/node_modules/babel-register/node_modules/core-js/fn/reflect/own-keys.js +2 -0
  579. data/node_modules/babel-register/node_modules/core-js/fn/reflect/prevent-extensions.js +2 -0
  580. data/node_modules/babel-register/node_modules/core-js/fn/reflect/set-prototype-of.js +2 -0
  581. data/node_modules/babel-register/node_modules/core-js/fn/reflect/set.js +2 -0
  582. data/node_modules/babel-register/node_modules/core-js/fn/regexp/constructor.js +2 -0
  583. data/node_modules/babel-register/node_modules/core-js/fn/regexp/escape.js +2 -0
  584. data/node_modules/babel-register/node_modules/core-js/fn/regexp/flags.js +5 -0
  585. data/node_modules/babel-register/node_modules/core-js/fn/regexp/index.js +9 -0
  586. data/node_modules/babel-register/node_modules/core-js/fn/regexp/match.js +5 -0
  587. data/node_modules/babel-register/node_modules/core-js/fn/regexp/replace.js +5 -0
  588. data/node_modules/babel-register/node_modules/core-js/fn/regexp/search.js +5 -0
  589. data/node_modules/babel-register/node_modules/core-js/fn/regexp/split.js +5 -0
  590. data/node_modules/babel-register/node_modules/core-js/fn/regexp/to-string.js +5 -0
  591. data/node_modules/babel-register/node_modules/core-js/fn/set-immediate.js +2 -0
  592. data/node_modules/babel-register/node_modules/core-js/fn/set-interval.js +2 -0
  593. data/node_modules/babel-register/node_modules/core-js/fn/set-timeout.js +2 -0
  594. data/node_modules/babel-register/node_modules/core-js/fn/set.js +6 -0
  595. data/node_modules/babel-register/node_modules/core-js/fn/string/anchor.js +2 -0
  596. data/node_modules/babel-register/node_modules/core-js/fn/string/at.js +2 -0
  597. data/node_modules/babel-register/node_modules/core-js/fn/string/big.js +2 -0
  598. data/node_modules/babel-register/node_modules/core-js/fn/string/blink.js +2 -0
  599. data/node_modules/babel-register/node_modules/core-js/fn/string/bold.js +2 -0
  600. data/node_modules/babel-register/node_modules/core-js/fn/string/code-point-at.js +2 -0
  601. data/node_modules/babel-register/node_modules/core-js/fn/string/ends-with.js +2 -0
  602. data/node_modules/babel-register/node_modules/core-js/fn/string/escape-html.js +2 -0
  603. data/node_modules/babel-register/node_modules/core-js/fn/string/fixed.js +2 -0
  604. data/node_modules/babel-register/node_modules/core-js/fn/string/fontcolor.js +2 -0
  605. data/node_modules/babel-register/node_modules/core-js/fn/string/fontsize.js +2 -0
  606. data/node_modules/babel-register/node_modules/core-js/fn/string/from-code-point.js +2 -0
  607. data/node_modules/babel-register/node_modules/core-js/fn/string/includes.js +2 -0
  608. data/node_modules/babel-register/node_modules/core-js/fn/string/index.js +35 -0
  609. data/node_modules/babel-register/node_modules/core-js/fn/string/italics.js +2 -0
  610. data/node_modules/babel-register/node_modules/core-js/fn/string/iterator.js +5 -0
  611. data/node_modules/babel-register/node_modules/core-js/fn/string/link.js +2 -0
  612. data/node_modules/babel-register/node_modules/core-js/fn/string/match-all.js +2 -0
  613. data/node_modules/babel-register/node_modules/core-js/fn/string/pad-end.js +2 -0
  614. data/node_modules/babel-register/node_modules/core-js/fn/string/pad-start.js +2 -0
  615. data/node_modules/babel-register/node_modules/core-js/fn/string/raw.js +2 -0
  616. data/node_modules/babel-register/node_modules/core-js/fn/string/repeat.js +2 -0
  617. data/node_modules/babel-register/node_modules/core-js/fn/string/small.js +2 -0
  618. data/node_modules/babel-register/node_modules/core-js/fn/string/starts-with.js +2 -0
  619. data/node_modules/babel-register/node_modules/core-js/fn/string/strike.js +2 -0
  620. data/node_modules/babel-register/node_modules/core-js/fn/string/sub.js +2 -0
  621. data/node_modules/babel-register/node_modules/core-js/fn/string/sup.js +2 -0
  622. data/node_modules/babel-register/node_modules/core-js/fn/string/trim-end.js +2 -0
  623. data/node_modules/babel-register/node_modules/core-js/fn/string/trim-left.js +2 -0
  624. data/node_modules/babel-register/node_modules/core-js/fn/string/trim-right.js +2 -0
  625. data/node_modules/babel-register/node_modules/core-js/fn/string/trim-start.js +2 -0
  626. data/node_modules/babel-register/node_modules/core-js/fn/string/trim.js +2 -0
  627. data/node_modules/babel-register/node_modules/core-js/fn/string/unescape-html.js +2 -0
  628. data/node_modules/babel-register/node_modules/core-js/fn/string/virtual/anchor.js +2 -0
  629. data/node_modules/babel-register/node_modules/core-js/fn/string/virtual/at.js +2 -0
  630. data/node_modules/babel-register/node_modules/core-js/fn/string/virtual/big.js +2 -0
  631. data/node_modules/babel-register/node_modules/core-js/fn/string/virtual/blink.js +2 -0
  632. data/node_modules/babel-register/node_modules/core-js/fn/string/virtual/bold.js +2 -0
  633. data/node_modules/babel-register/node_modules/core-js/fn/string/virtual/code-point-at.js +2 -0
  634. data/node_modules/babel-register/node_modules/core-js/fn/string/virtual/ends-with.js +2 -0
  635. data/node_modules/babel-register/node_modules/core-js/fn/string/virtual/escape-html.js +2 -0
  636. data/node_modules/babel-register/node_modules/core-js/fn/string/virtual/fixed.js +2 -0
  637. data/node_modules/babel-register/node_modules/core-js/fn/string/virtual/fontcolor.js +2 -0
  638. data/node_modules/babel-register/node_modules/core-js/fn/string/virtual/fontsize.js +2 -0
  639. data/node_modules/babel-register/node_modules/core-js/fn/string/virtual/includes.js +2 -0
  640. data/node_modules/babel-register/node_modules/core-js/fn/string/virtual/index.js +33 -0
  641. data/node_modules/babel-register/node_modules/core-js/fn/string/virtual/italics.js +2 -0
  642. data/node_modules/babel-register/node_modules/core-js/fn/string/virtual/iterator.js +2 -0
  643. data/node_modules/babel-register/node_modules/core-js/fn/string/virtual/link.js +2 -0
  644. data/node_modules/babel-register/node_modules/core-js/fn/string/virtual/match-all.js +2 -0
  645. data/node_modules/babel-register/node_modules/core-js/fn/string/virtual/pad-end.js +2 -0
  646. data/node_modules/babel-register/node_modules/core-js/fn/string/virtual/pad-start.js +2 -0
  647. data/node_modules/babel-register/node_modules/core-js/fn/string/virtual/repeat.js +2 -0
  648. data/node_modules/babel-register/node_modules/core-js/fn/string/virtual/small.js +2 -0
  649. data/node_modules/babel-register/node_modules/core-js/fn/string/virtual/starts-with.js +2 -0
  650. data/node_modules/babel-register/node_modules/core-js/fn/string/virtual/strike.js +2 -0
  651. data/node_modules/babel-register/node_modules/core-js/fn/string/virtual/sub.js +2 -0
  652. data/node_modules/babel-register/node_modules/core-js/fn/string/virtual/sup.js +2 -0
  653. data/node_modules/babel-register/node_modules/core-js/fn/string/virtual/trim-end.js +2 -0
  654. data/node_modules/babel-register/node_modules/core-js/fn/string/virtual/trim-left.js +2 -0
  655. data/node_modules/babel-register/node_modules/core-js/fn/string/virtual/trim-right.js +2 -0
  656. data/node_modules/babel-register/node_modules/core-js/fn/string/virtual/trim-start.js +2 -0
  657. data/node_modules/babel-register/node_modules/core-js/fn/string/virtual/trim.js +2 -0
  658. data/node_modules/babel-register/node_modules/core-js/fn/string/virtual/unescape-html.js +2 -0
  659. data/node_modules/babel-register/node_modules/core-js/fn/symbol/for.js +2 -0
  660. data/node_modules/babel-register/node_modules/core-js/fn/symbol/has-instance.js +1 -0
  661. data/node_modules/babel-register/node_modules/core-js/fn/symbol/index.js +3 -0
  662. data/node_modules/babel-register/node_modules/core-js/fn/symbol/is-concat-spreadable.js +1 -0
  663. data/node_modules/babel-register/node_modules/core-js/fn/symbol/iterator.js +3 -0
  664. data/node_modules/babel-register/node_modules/core-js/fn/symbol/key-for.js +2 -0
  665. data/node_modules/babel-register/node_modules/core-js/fn/symbol/match.js +2 -0
  666. data/node_modules/babel-register/node_modules/core-js/fn/symbol/replace.js +2 -0
  667. data/node_modules/babel-register/node_modules/core-js/fn/symbol/search.js +2 -0
  668. data/node_modules/babel-register/node_modules/core-js/fn/symbol/species.js +1 -0
  669. data/node_modules/babel-register/node_modules/core-js/fn/symbol/split.js +2 -0
  670. data/node_modules/babel-register/node_modules/core-js/fn/symbol/to-primitive.js +1 -0
  671. data/node_modules/babel-register/node_modules/core-js/fn/symbol/to-string-tag.js +2 -0
  672. data/node_modules/babel-register/node_modules/core-js/fn/symbol/unscopables.js +1 -0
  673. data/node_modules/babel-register/node_modules/core-js/fn/system/global.js +2 -0
  674. data/node_modules/babel-register/node_modules/core-js/fn/system/index.js +2 -0
  675. data/node_modules/babel-register/node_modules/core-js/fn/typed/array-buffer.js +3 -0
  676. data/node_modules/babel-register/node_modules/core-js/fn/typed/data-view.js +3 -0
  677. data/node_modules/babel-register/node_modules/core-js/fn/typed/float32-array.js +2 -0
  678. data/node_modules/babel-register/node_modules/core-js/fn/typed/float64-array.js +2 -0
  679. data/node_modules/babel-register/node_modules/core-js/fn/typed/index.js +13 -0
  680. data/node_modules/babel-register/node_modules/core-js/fn/typed/int16-array.js +2 -0
  681. data/node_modules/babel-register/node_modules/core-js/fn/typed/int32-array.js +2 -0
  682. data/node_modules/babel-register/node_modules/core-js/fn/typed/int8-array.js +2 -0
  683. data/node_modules/babel-register/node_modules/core-js/fn/typed/uint16-array.js +2 -0
  684. data/node_modules/babel-register/node_modules/core-js/fn/typed/uint32-array.js +2 -0
  685. data/node_modules/babel-register/node_modules/core-js/fn/typed/uint8-array.js +2 -0
  686. data/node_modules/babel-register/node_modules/core-js/fn/typed/uint8-clamped-array.js +2 -0
  687. data/node_modules/babel-register/node_modules/core-js/fn/weak-map.js +4 -0
  688. data/node_modules/babel-register/node_modules/core-js/fn/weak-set.js +4 -0
  689. data/node_modules/babel-register/node_modules/core-js/index.js +16 -0
  690. data/node_modules/babel-register/node_modules/core-js/library/core/_.js +2 -0
  691. data/node_modules/babel-register/node_modules/core-js/library/core/delay.js +2 -0
  692. data/node_modules/babel-register/node_modules/core-js/library/core/dict.js +2 -0
  693. data/node_modules/babel-register/node_modules/core-js/library/core/function.js +2 -0
  694. data/node_modules/babel-register/node_modules/core-js/library/core/index.js +15 -0
  695. data/node_modules/babel-register/node_modules/core-js/library/core/number.js +2 -0
  696. data/node_modules/babel-register/node_modules/core-js/library/core/object.js +5 -0
  697. data/node_modules/babel-register/node_modules/core-js/library/core/regexp.js +2 -0
  698. data/node_modules/babel-register/node_modules/core-js/library/core/string.js +3 -0
  699. data/node_modules/babel-register/node_modules/core-js/library/es5/index.js +37 -0
  700. data/node_modules/babel-register/node_modules/core-js/library/es6/array.js +23 -0
  701. data/node_modules/babel-register/node_modules/core-js/library/es6/date.js +6 -0
  702. data/node_modules/babel-register/node_modules/core-js/library/es6/function.js +4 -0
  703. data/node_modules/babel-register/node_modules/core-js/library/es6/index.js +138 -0
  704. data/node_modules/babel-register/node_modules/core-js/library/es6/map.js +5 -0
  705. data/node_modules/babel-register/node_modules/core-js/library/es6/math.js +18 -0
  706. data/node_modules/babel-register/node_modules/core-js/library/es6/number.js +13 -0
  707. data/node_modules/babel-register/node_modules/core-js/library/es6/object.js +20 -0
  708. data/node_modules/babel-register/node_modules/core-js/library/es6/parse-float.js +2 -0
  709. data/node_modules/babel-register/node_modules/core-js/library/es6/parse-int.js +2 -0
  710. data/node_modules/babel-register/node_modules/core-js/library/es6/promise.js +5 -0
  711. data/node_modules/babel-register/node_modules/core-js/library/es6/reflect.js +15 -0
  712. data/node_modules/babel-register/node_modules/core-js/library/es6/regexp.js +8 -0
  713. data/node_modules/babel-register/node_modules/core-js/library/es6/set.js +5 -0
  714. data/node_modules/babel-register/node_modules/core-js/library/es6/string.js +27 -0
  715. data/node_modules/babel-register/node_modules/core-js/library/es6/symbol.js +3 -0
  716. data/node_modules/babel-register/node_modules/core-js/library/es6/typed.js +13 -0
  717. data/node_modules/babel-register/node_modules/core-js/library/es6/weak-map.js +4 -0
  718. data/node_modules/babel-register/node_modules/core-js/library/es6/weak-set.js +4 -0
  719. data/node_modules/babel-register/node_modules/core-js/library/es7/array.js +2 -0
  720. data/node_modules/babel-register/node_modules/core-js/library/es7/error.js +2 -0
  721. data/node_modules/babel-register/node_modules/core-js/library/es7/index.js +32 -0
  722. data/node_modules/babel-register/node_modules/core-js/library/es7/map.js +2 -0
  723. data/node_modules/babel-register/node_modules/core-js/library/es7/math.js +5 -0
  724. data/node_modules/babel-register/node_modules/core-js/library/es7/object.js +8 -0
  725. data/node_modules/babel-register/node_modules/core-js/library/es7/reflect.js +10 -0
  726. data/node_modules/babel-register/node_modules/core-js/library/es7/set.js +2 -0
  727. data/node_modules/babel-register/node_modules/core-js/library/es7/string.js +7 -0
  728. data/node_modules/babel-register/node_modules/core-js/library/es7/system.js +2 -0
  729. data/node_modules/babel-register/node_modules/core-js/library/fn/_.js +2 -0
  730. data/node_modules/babel-register/node_modules/core-js/library/fn/array/concat.js +4 -0
  731. data/node_modules/babel-register/node_modules/core-js/library/fn/array/copy-within.js +2 -0
  732. data/node_modules/babel-register/node_modules/core-js/library/fn/array/entries.js +2 -0
  733. data/node_modules/babel-register/node_modules/core-js/library/fn/array/every.js +2 -0
  734. data/node_modules/babel-register/node_modules/core-js/library/fn/array/fill.js +2 -0
  735. data/node_modules/babel-register/node_modules/core-js/library/fn/array/filter.js +2 -0
  736. data/node_modules/babel-register/node_modules/core-js/library/fn/array/find-index.js +2 -0
  737. data/node_modules/babel-register/node_modules/core-js/library/fn/array/find.js +2 -0
  738. data/node_modules/babel-register/node_modules/core-js/library/fn/array/for-each.js +2 -0
  739. data/node_modules/babel-register/node_modules/core-js/library/fn/array/from.js +3 -0
  740. data/node_modules/babel-register/node_modules/core-js/library/fn/array/includes.js +2 -0
  741. data/node_modules/babel-register/node_modules/core-js/library/fn/array/index-of.js +2 -0
  742. data/node_modules/babel-register/node_modules/core-js/library/fn/array/index.js +24 -0
  743. data/node_modules/babel-register/node_modules/core-js/library/fn/array/is-array.js +2 -0
  744. data/node_modules/babel-register/node_modules/core-js/library/fn/array/iterator.js +2 -0
  745. data/node_modules/babel-register/node_modules/core-js/library/fn/array/join.js +2 -0
  746. data/node_modules/babel-register/node_modules/core-js/library/fn/array/keys.js +2 -0
  747. data/node_modules/babel-register/node_modules/core-js/library/fn/array/last-index-of.js +2 -0
  748. data/node_modules/babel-register/node_modules/core-js/library/fn/array/map.js +2 -0
  749. data/node_modules/babel-register/node_modules/core-js/library/fn/array/of.js +2 -0
  750. data/node_modules/babel-register/node_modules/core-js/library/fn/array/pop.js +4 -0
  751. data/node_modules/babel-register/node_modules/core-js/library/fn/array/push.js +4 -0
  752. data/node_modules/babel-register/node_modules/core-js/library/fn/array/reduce-right.js +2 -0
  753. data/node_modules/babel-register/node_modules/core-js/library/fn/array/reduce.js +2 -0
  754. data/node_modules/babel-register/node_modules/core-js/library/fn/array/reverse.js +4 -0
  755. data/node_modules/babel-register/node_modules/core-js/library/fn/array/shift.js +4 -0
  756. data/node_modules/babel-register/node_modules/core-js/library/fn/array/slice.js +2 -0
  757. data/node_modules/babel-register/node_modules/core-js/library/fn/array/some.js +2 -0
  758. data/node_modules/babel-register/node_modules/core-js/library/fn/array/sort.js +2 -0
  759. data/node_modules/babel-register/node_modules/core-js/library/fn/array/splice.js +4 -0
  760. data/node_modules/babel-register/node_modules/core-js/library/fn/array/unshift.js +4 -0
  761. data/node_modules/babel-register/node_modules/core-js/library/fn/array/values.js +2 -0
  762. data/node_modules/babel-register/node_modules/core-js/library/fn/array/virtual/copy-within.js +2 -0
  763. data/node_modules/babel-register/node_modules/core-js/library/fn/array/virtual/entries.js +2 -0
  764. data/node_modules/babel-register/node_modules/core-js/library/fn/array/virtual/every.js +2 -0
  765. data/node_modules/babel-register/node_modules/core-js/library/fn/array/virtual/fill.js +2 -0
  766. data/node_modules/babel-register/node_modules/core-js/library/fn/array/virtual/filter.js +2 -0
  767. data/node_modules/babel-register/node_modules/core-js/library/fn/array/virtual/find-index.js +2 -0
  768. data/node_modules/babel-register/node_modules/core-js/library/fn/array/virtual/find.js +2 -0
  769. data/node_modules/babel-register/node_modules/core-js/library/fn/array/virtual/for-each.js +2 -0
  770. data/node_modules/babel-register/node_modules/core-js/library/fn/array/virtual/includes.js +2 -0
  771. data/node_modules/babel-register/node_modules/core-js/library/fn/array/virtual/index-of.js +2 -0
  772. data/node_modules/babel-register/node_modules/core-js/library/fn/array/virtual/index.js +20 -0
  773. data/node_modules/babel-register/node_modules/core-js/library/fn/array/virtual/iterator.js +2 -0
  774. data/node_modules/babel-register/node_modules/core-js/library/fn/array/virtual/join.js +2 -0
  775. data/node_modules/babel-register/node_modules/core-js/library/fn/array/virtual/keys.js +2 -0
  776. data/node_modules/babel-register/node_modules/core-js/library/fn/array/virtual/last-index-of.js +2 -0
  777. data/node_modules/babel-register/node_modules/core-js/library/fn/array/virtual/map.js +2 -0
  778. data/node_modules/babel-register/node_modules/core-js/library/fn/array/virtual/reduce-right.js +2 -0
  779. data/node_modules/babel-register/node_modules/core-js/library/fn/array/virtual/reduce.js +2 -0
  780. data/node_modules/babel-register/node_modules/core-js/library/fn/array/virtual/slice.js +2 -0
  781. data/node_modules/babel-register/node_modules/core-js/library/fn/array/virtual/some.js +2 -0
  782. data/node_modules/babel-register/node_modules/core-js/library/fn/array/virtual/sort.js +2 -0
  783. data/node_modules/babel-register/node_modules/core-js/library/fn/array/virtual/values.js +2 -0
  784. data/node_modules/babel-register/node_modules/core-js/library/fn/clear-immediate.js +2 -0
  785. data/node_modules/babel-register/node_modules/core-js/library/fn/date/index.js +6 -0
  786. data/node_modules/babel-register/node_modules/core-js/library/fn/date/now.js +2 -0
  787. data/node_modules/babel-register/node_modules/core-js/library/fn/date/to-iso-string.js +3 -0
  788. data/node_modules/babel-register/node_modules/core-js/library/fn/date/to-json.js +2 -0
  789. data/node_modules/babel-register/node_modules/core-js/library/fn/date/to-primitive.js +5 -0
  790. data/node_modules/babel-register/node_modules/core-js/library/fn/date/to-string.js +5 -0
  791. data/node_modules/babel-register/node_modules/core-js/library/fn/delay.js +2 -0
  792. data/node_modules/babel-register/node_modules/core-js/library/fn/dict.js +2 -0
  793. data/node_modules/babel-register/node_modules/core-js/library/fn/dom-collections/index.js +8 -0
  794. data/node_modules/babel-register/node_modules/core-js/library/fn/dom-collections/iterator.js +2 -0
  795. data/node_modules/babel-register/node_modules/core-js/library/fn/error/index.js +2 -0
  796. data/node_modules/babel-register/node_modules/core-js/library/fn/error/is-error.js +2 -0
  797. data/node_modules/babel-register/node_modules/core-js/library/fn/function/bind.js +2 -0
  798. data/node_modules/babel-register/node_modules/core-js/library/fn/function/has-instance.js +2 -0
  799. data/node_modules/babel-register/node_modules/core-js/library/fn/function/index.js +5 -0
  800. data/node_modules/babel-register/node_modules/core-js/library/fn/function/name.js +1 -0
  801. data/node_modules/babel-register/node_modules/core-js/library/fn/function/part.js +2 -0
  802. data/node_modules/babel-register/node_modules/core-js/library/fn/function/virtual/bind.js +2 -0
  803. data/node_modules/babel-register/node_modules/core-js/library/fn/function/virtual/index.js +3 -0
  804. data/node_modules/babel-register/node_modules/core-js/library/fn/function/virtual/part.js +2 -0
  805. data/node_modules/babel-register/node_modules/core-js/library/fn/get-iterator-method.js +3 -0
  806. data/node_modules/babel-register/node_modules/core-js/library/fn/get-iterator.js +3 -0
  807. data/node_modules/babel-register/node_modules/core-js/library/fn/is-iterable.js +3 -0
  808. data/node_modules/babel-register/node_modules/core-js/library/fn/json/index.js +2 -0
  809. data/node_modules/babel-register/node_modules/core-js/library/fn/json/stringify.js +5 -0
  810. data/node_modules/babel-register/node_modules/core-js/library/fn/map.js +6 -0
  811. data/node_modules/babel-register/node_modules/core-js/library/fn/math/acosh.js +2 -0
  812. data/node_modules/babel-register/node_modules/core-js/library/fn/math/asinh.js +2 -0
  813. data/node_modules/babel-register/node_modules/core-js/library/fn/math/atanh.js +2 -0
  814. data/node_modules/babel-register/node_modules/core-js/library/fn/math/cbrt.js +2 -0
  815. data/node_modules/babel-register/node_modules/core-js/library/fn/math/clz32.js +2 -0
  816. data/node_modules/babel-register/node_modules/core-js/library/fn/math/cosh.js +2 -0
  817. data/node_modules/babel-register/node_modules/core-js/library/fn/math/expm1.js +2 -0
  818. data/node_modules/babel-register/node_modules/core-js/library/fn/math/fround.js +2 -0
  819. data/node_modules/babel-register/node_modules/core-js/library/fn/math/hypot.js +2 -0
  820. data/node_modules/babel-register/node_modules/core-js/library/fn/math/iaddh.js +2 -0
  821. data/node_modules/babel-register/node_modules/core-js/library/fn/math/imul.js +2 -0
  822. data/node_modules/babel-register/node_modules/core-js/library/fn/math/imulh.js +2 -0
  823. data/node_modules/babel-register/node_modules/core-js/library/fn/math/index.js +22 -0
  824. data/node_modules/babel-register/node_modules/core-js/library/fn/math/isubh.js +2 -0
  825. data/node_modules/babel-register/node_modules/core-js/library/fn/math/log10.js +2 -0
  826. data/node_modules/babel-register/node_modules/core-js/library/fn/math/log1p.js +2 -0
  827. data/node_modules/babel-register/node_modules/core-js/library/fn/math/log2.js +2 -0
  828. data/node_modules/babel-register/node_modules/core-js/library/fn/math/sign.js +2 -0
  829. data/node_modules/babel-register/node_modules/core-js/library/fn/math/sinh.js +2 -0
  830. data/node_modules/babel-register/node_modules/core-js/library/fn/math/tanh.js +2 -0
  831. data/node_modules/babel-register/node_modules/core-js/library/fn/math/trunc.js +2 -0
  832. data/node_modules/babel-register/node_modules/core-js/library/fn/math/umulh.js +2 -0
  833. data/node_modules/babel-register/node_modules/core-js/library/fn/number/constructor.js +2 -0
  834. data/node_modules/babel-register/node_modules/core-js/library/fn/number/epsilon.js +2 -0
  835. data/node_modules/babel-register/node_modules/core-js/library/fn/number/index.js +14 -0
  836. data/node_modules/babel-register/node_modules/core-js/library/fn/number/is-finite.js +2 -0
  837. data/node_modules/babel-register/node_modules/core-js/library/fn/number/is-integer.js +2 -0
  838. data/node_modules/babel-register/node_modules/core-js/library/fn/number/is-nan.js +2 -0
  839. data/node_modules/babel-register/node_modules/core-js/library/fn/number/is-safe-integer.js +2 -0
  840. data/node_modules/babel-register/node_modules/core-js/library/fn/number/iterator.js +5 -0
  841. data/node_modules/babel-register/node_modules/core-js/library/fn/number/max-safe-integer.js +2 -0
  842. data/node_modules/babel-register/node_modules/core-js/library/fn/number/min-safe-integer.js +2 -0
  843. data/node_modules/babel-register/node_modules/core-js/library/fn/number/parse-float.js +2 -0
  844. data/node_modules/babel-register/node_modules/core-js/library/fn/number/parse-int.js +2 -0
  845. data/node_modules/babel-register/node_modules/core-js/library/fn/number/to-fixed.js +2 -0
  846. data/node_modules/babel-register/node_modules/core-js/library/fn/number/to-precision.js +2 -0
  847. data/node_modules/babel-register/node_modules/core-js/library/fn/number/virtual/index.js +4 -0
  848. data/node_modules/babel-register/node_modules/core-js/library/fn/number/virtual/iterator.js +2 -0
  849. data/node_modules/babel-register/node_modules/core-js/library/fn/number/virtual/to-fixed.js +2 -0
  850. data/node_modules/babel-register/node_modules/core-js/library/fn/number/virtual/to-precision.js +2 -0
  851. data/node_modules/babel-register/node_modules/core-js/library/fn/object/assign.js +2 -0
  852. data/node_modules/babel-register/node_modules/core-js/library/fn/object/classof.js +2 -0
  853. data/node_modules/babel-register/node_modules/core-js/library/fn/object/create.js +5 -0
  854. data/node_modules/babel-register/node_modules/core-js/library/fn/object/define-getter.js +2 -0
  855. data/node_modules/babel-register/node_modules/core-js/library/fn/object/define-properties.js +5 -0
  856. data/node_modules/babel-register/node_modules/core-js/library/fn/object/define-property.js +5 -0
  857. data/node_modules/babel-register/node_modules/core-js/library/fn/object/define-setter.js +2 -0
  858. data/node_modules/babel-register/node_modules/core-js/library/fn/object/define.js +2 -0
  859. data/node_modules/babel-register/node_modules/core-js/library/fn/object/entries.js +2 -0
  860. data/node_modules/babel-register/node_modules/core-js/library/fn/object/freeze.js +2 -0
  861. data/node_modules/babel-register/node_modules/core-js/library/fn/object/get-own-property-descriptor.js +5 -0
  862. data/node_modules/babel-register/node_modules/core-js/library/fn/object/get-own-property-descriptors.js +2 -0
  863. data/node_modules/babel-register/node_modules/core-js/library/fn/object/get-own-property-names.js +5 -0
  864. data/node_modules/babel-register/node_modules/core-js/library/fn/object/get-own-property-symbols.js +2 -0
  865. data/node_modules/babel-register/node_modules/core-js/library/fn/object/get-prototype-of.js +2 -0
  866. data/node_modules/babel-register/node_modules/core-js/library/fn/object/index.js +30 -0
  867. data/node_modules/babel-register/node_modules/core-js/library/fn/object/is-extensible.js +2 -0
  868. data/node_modules/babel-register/node_modules/core-js/library/fn/object/is-frozen.js +2 -0
  869. data/node_modules/babel-register/node_modules/core-js/library/fn/object/is-object.js +2 -0
  870. data/node_modules/babel-register/node_modules/core-js/library/fn/object/is-sealed.js +2 -0
  871. data/node_modules/babel-register/node_modules/core-js/library/fn/object/is.js +2 -0
  872. data/node_modules/babel-register/node_modules/core-js/library/fn/object/keys.js +2 -0
  873. data/node_modules/babel-register/node_modules/core-js/library/fn/object/lookup-getter.js +2 -0
  874. data/node_modules/babel-register/node_modules/core-js/library/fn/object/lookup-setter.js +2 -0
  875. data/node_modules/babel-register/node_modules/core-js/library/fn/object/make.js +2 -0
  876. data/node_modules/babel-register/node_modules/core-js/library/fn/object/prevent-extensions.js +2 -0
  877. data/node_modules/babel-register/node_modules/core-js/library/fn/object/seal.js +2 -0
  878. data/node_modules/babel-register/node_modules/core-js/library/fn/object/set-prototype-of.js +2 -0
  879. data/node_modules/babel-register/node_modules/core-js/library/fn/object/values.js +2 -0
  880. data/node_modules/babel-register/node_modules/core-js/library/fn/parse-float.js +2 -0
  881. data/node_modules/babel-register/node_modules/core-js/library/fn/parse-int.js +2 -0
  882. data/node_modules/babel-register/node_modules/core-js/library/fn/promise.js +5 -0
  883. data/node_modules/babel-register/node_modules/core-js/library/fn/reflect/apply.js +2 -0
  884. data/node_modules/babel-register/node_modules/core-js/library/fn/reflect/construct.js +2 -0
  885. data/node_modules/babel-register/node_modules/core-js/library/fn/reflect/define-metadata.js +2 -0
  886. data/node_modules/babel-register/node_modules/core-js/library/fn/reflect/define-property.js +2 -0
  887. data/node_modules/babel-register/node_modules/core-js/library/fn/reflect/delete-metadata.js +2 -0
  888. data/node_modules/babel-register/node_modules/core-js/library/fn/reflect/delete-property.js +2 -0
  889. data/node_modules/babel-register/node_modules/core-js/library/fn/reflect/enumerate.js +2 -0
  890. data/node_modules/babel-register/node_modules/core-js/library/fn/reflect/get-metadata-keys.js +2 -0
  891. data/node_modules/babel-register/node_modules/core-js/library/fn/reflect/get-metadata.js +2 -0
  892. data/node_modules/babel-register/node_modules/core-js/library/fn/reflect/get-own-metadata-keys.js +2 -0
  893. data/node_modules/babel-register/node_modules/core-js/library/fn/reflect/get-own-metadata.js +2 -0
  894. data/node_modules/babel-register/node_modules/core-js/library/fn/reflect/get-own-property-descriptor.js +2 -0
  895. data/node_modules/babel-register/node_modules/core-js/library/fn/reflect/get-prototype-of.js +2 -0
  896. data/node_modules/babel-register/node_modules/core-js/library/fn/reflect/get.js +2 -0
  897. data/node_modules/babel-register/node_modules/core-js/library/fn/reflect/has-metadata.js +2 -0
  898. data/node_modules/babel-register/node_modules/core-js/library/fn/reflect/has-own-metadata.js +2 -0
  899. data/node_modules/babel-register/node_modules/core-js/library/fn/reflect/has.js +2 -0
  900. data/node_modules/babel-register/node_modules/core-js/library/fn/reflect/index.js +24 -0
  901. data/node_modules/babel-register/node_modules/core-js/library/fn/reflect/is-extensible.js +2 -0
  902. data/node_modules/babel-register/node_modules/core-js/library/fn/reflect/metadata.js +2 -0
  903. data/node_modules/babel-register/node_modules/core-js/library/fn/reflect/own-keys.js +2 -0
  904. data/node_modules/babel-register/node_modules/core-js/library/fn/reflect/prevent-extensions.js +2 -0
  905. data/node_modules/babel-register/node_modules/core-js/library/fn/reflect/set-prototype-of.js +2 -0
  906. data/node_modules/babel-register/node_modules/core-js/library/fn/reflect/set.js +2 -0
  907. data/node_modules/babel-register/node_modules/core-js/library/fn/regexp/constructor.js +2 -0
  908. data/node_modules/babel-register/node_modules/core-js/library/fn/regexp/escape.js +2 -0
  909. data/node_modules/babel-register/node_modules/core-js/library/fn/regexp/flags.js +5 -0
  910. data/node_modules/babel-register/node_modules/core-js/library/fn/regexp/index.js +9 -0
  911. data/node_modules/babel-register/node_modules/core-js/library/fn/regexp/match.js +5 -0
  912. data/node_modules/babel-register/node_modules/core-js/library/fn/regexp/replace.js +5 -0
  913. data/node_modules/babel-register/node_modules/core-js/library/fn/regexp/search.js +5 -0
  914. data/node_modules/babel-register/node_modules/core-js/library/fn/regexp/split.js +5 -0
  915. data/node_modules/babel-register/node_modules/core-js/library/fn/regexp/to-string.js +5 -0
  916. data/node_modules/babel-register/node_modules/core-js/library/fn/set-immediate.js +2 -0
  917. data/node_modules/babel-register/node_modules/core-js/library/fn/set-interval.js +2 -0
  918. data/node_modules/babel-register/node_modules/core-js/library/fn/set-timeout.js +2 -0
  919. data/node_modules/babel-register/node_modules/core-js/library/fn/set.js +6 -0
  920. data/node_modules/babel-register/node_modules/core-js/library/fn/string/anchor.js +2 -0
  921. data/node_modules/babel-register/node_modules/core-js/library/fn/string/at.js +2 -0
  922. data/node_modules/babel-register/node_modules/core-js/library/fn/string/big.js +2 -0
  923. data/node_modules/babel-register/node_modules/core-js/library/fn/string/blink.js +2 -0
  924. data/node_modules/babel-register/node_modules/core-js/library/fn/string/bold.js +2 -0
  925. data/node_modules/babel-register/node_modules/core-js/library/fn/string/code-point-at.js +2 -0
  926. data/node_modules/babel-register/node_modules/core-js/library/fn/string/ends-with.js +2 -0
  927. data/node_modules/babel-register/node_modules/core-js/library/fn/string/escape-html.js +2 -0
  928. data/node_modules/babel-register/node_modules/core-js/library/fn/string/fixed.js +2 -0
  929. data/node_modules/babel-register/node_modules/core-js/library/fn/string/fontcolor.js +2 -0
  930. data/node_modules/babel-register/node_modules/core-js/library/fn/string/fontsize.js +2 -0
  931. data/node_modules/babel-register/node_modules/core-js/library/fn/string/from-code-point.js +2 -0
  932. data/node_modules/babel-register/node_modules/core-js/library/fn/string/includes.js +2 -0
  933. data/node_modules/babel-register/node_modules/core-js/library/fn/string/index.js +35 -0
  934. data/node_modules/babel-register/node_modules/core-js/library/fn/string/italics.js +2 -0
  935. data/node_modules/babel-register/node_modules/core-js/library/fn/string/iterator.js +5 -0
  936. data/node_modules/babel-register/node_modules/core-js/library/fn/string/link.js +2 -0
  937. data/node_modules/babel-register/node_modules/core-js/library/fn/string/match-all.js +2 -0
  938. data/node_modules/babel-register/node_modules/core-js/library/fn/string/pad-end.js +2 -0
  939. data/node_modules/babel-register/node_modules/core-js/library/fn/string/pad-start.js +2 -0
  940. data/node_modules/babel-register/node_modules/core-js/library/fn/string/raw.js +2 -0
  941. data/node_modules/babel-register/node_modules/core-js/library/fn/string/repeat.js +2 -0
  942. data/node_modules/babel-register/node_modules/core-js/library/fn/string/small.js +2 -0
  943. data/node_modules/babel-register/node_modules/core-js/library/fn/string/starts-with.js +2 -0
  944. data/node_modules/babel-register/node_modules/core-js/library/fn/string/strike.js +2 -0
  945. data/node_modules/babel-register/node_modules/core-js/library/fn/string/sub.js +2 -0
  946. data/node_modules/babel-register/node_modules/core-js/library/fn/string/sup.js +2 -0
  947. data/node_modules/babel-register/node_modules/core-js/library/fn/string/trim-end.js +2 -0
  948. data/node_modules/babel-register/node_modules/core-js/library/fn/string/trim-left.js +2 -0
  949. data/node_modules/babel-register/node_modules/core-js/library/fn/string/trim-right.js +2 -0
  950. data/node_modules/babel-register/node_modules/core-js/library/fn/string/trim-start.js +2 -0
  951. data/node_modules/babel-register/node_modules/core-js/library/fn/string/trim.js +2 -0
  952. data/node_modules/babel-register/node_modules/core-js/library/fn/string/unescape-html.js +2 -0
  953. data/node_modules/babel-register/node_modules/core-js/library/fn/string/virtual/anchor.js +2 -0
  954. data/node_modules/babel-register/node_modules/core-js/library/fn/string/virtual/at.js +2 -0
  955. data/node_modules/babel-register/node_modules/core-js/library/fn/string/virtual/big.js +2 -0
  956. data/node_modules/babel-register/node_modules/core-js/library/fn/string/virtual/blink.js +2 -0
  957. data/node_modules/babel-register/node_modules/core-js/library/fn/string/virtual/bold.js +2 -0
  958. data/node_modules/babel-register/node_modules/core-js/library/fn/string/virtual/code-point-at.js +2 -0
  959. data/node_modules/babel-register/node_modules/core-js/library/fn/string/virtual/ends-with.js +2 -0
  960. data/node_modules/babel-register/node_modules/core-js/library/fn/string/virtual/escape-html.js +2 -0
  961. data/node_modules/babel-register/node_modules/core-js/library/fn/string/virtual/fixed.js +2 -0
  962. data/node_modules/babel-register/node_modules/core-js/library/fn/string/virtual/fontcolor.js +2 -0
  963. data/node_modules/babel-register/node_modules/core-js/library/fn/string/virtual/fontsize.js +2 -0
  964. data/node_modules/babel-register/node_modules/core-js/library/fn/string/virtual/includes.js +2 -0
  965. data/node_modules/babel-register/node_modules/core-js/library/fn/string/virtual/index.js +33 -0
  966. data/node_modules/babel-register/node_modules/core-js/library/fn/string/virtual/italics.js +2 -0
  967. data/node_modules/babel-register/node_modules/core-js/library/fn/string/virtual/iterator.js +2 -0
  968. data/node_modules/babel-register/node_modules/core-js/library/fn/string/virtual/link.js +2 -0
  969. data/node_modules/babel-register/node_modules/core-js/library/fn/string/virtual/match-all.js +2 -0
  970. data/node_modules/babel-register/node_modules/core-js/library/fn/string/virtual/pad-end.js +2 -0
  971. data/node_modules/babel-register/node_modules/core-js/library/fn/string/virtual/pad-start.js +2 -0
  972. data/node_modules/babel-register/node_modules/core-js/library/fn/string/virtual/repeat.js +2 -0
  973. data/node_modules/babel-register/node_modules/core-js/library/fn/string/virtual/small.js +2 -0
  974. data/node_modules/babel-register/node_modules/core-js/library/fn/string/virtual/starts-with.js +2 -0
  975. data/node_modules/babel-register/node_modules/core-js/library/fn/string/virtual/strike.js +2 -0
  976. data/node_modules/babel-register/node_modules/core-js/library/fn/string/virtual/sub.js +2 -0
  977. data/node_modules/babel-register/node_modules/core-js/library/fn/string/virtual/sup.js +2 -0
  978. data/node_modules/babel-register/node_modules/core-js/library/fn/string/virtual/trim-end.js +2 -0
  979. data/node_modules/babel-register/node_modules/core-js/library/fn/string/virtual/trim-left.js +2 -0
  980. data/node_modules/babel-register/node_modules/core-js/library/fn/string/virtual/trim-right.js +2 -0
  981. data/node_modules/babel-register/node_modules/core-js/library/fn/string/virtual/trim-start.js +2 -0
  982. data/node_modules/babel-register/node_modules/core-js/library/fn/string/virtual/trim.js +2 -0
  983. data/node_modules/babel-register/node_modules/core-js/library/fn/string/virtual/unescape-html.js +2 -0
  984. data/node_modules/babel-register/node_modules/core-js/library/fn/symbol/for.js +2 -0
  985. data/node_modules/babel-register/node_modules/core-js/library/fn/symbol/has-instance.js +1 -0
  986. data/node_modules/babel-register/node_modules/core-js/library/fn/symbol/index.js +3 -0
  987. data/node_modules/babel-register/node_modules/core-js/library/fn/symbol/is-concat-spreadable.js +1 -0
  988. data/node_modules/babel-register/node_modules/core-js/library/fn/symbol/iterator.js +3 -0
  989. data/node_modules/babel-register/node_modules/core-js/library/fn/symbol/key-for.js +2 -0
  990. data/node_modules/babel-register/node_modules/core-js/library/fn/symbol/match.js +2 -0
  991. data/node_modules/babel-register/node_modules/core-js/library/fn/symbol/replace.js +2 -0
  992. data/node_modules/babel-register/node_modules/core-js/library/fn/symbol/search.js +2 -0
  993. data/node_modules/babel-register/node_modules/core-js/library/fn/symbol/species.js +1 -0
  994. data/node_modules/babel-register/node_modules/core-js/library/fn/symbol/split.js +2 -0
  995. data/node_modules/babel-register/node_modules/core-js/library/fn/symbol/to-primitive.js +1 -0
  996. data/node_modules/babel-register/node_modules/core-js/library/fn/symbol/to-string-tag.js +2 -0
  997. data/node_modules/babel-register/node_modules/core-js/library/fn/symbol/unscopables.js +1 -0
  998. data/node_modules/babel-register/node_modules/core-js/library/fn/system/global.js +2 -0
  999. data/node_modules/babel-register/node_modules/core-js/library/fn/system/index.js +2 -0
  1000. data/node_modules/babel-register/node_modules/core-js/library/fn/typed/array-buffer.js +3 -0
  1001. data/node_modules/babel-register/node_modules/core-js/library/fn/typed/data-view.js +3 -0
  1002. data/node_modules/babel-register/node_modules/core-js/library/fn/typed/float32-array.js +2 -0
  1003. data/node_modules/babel-register/node_modules/core-js/library/fn/typed/float64-array.js +2 -0
  1004. data/node_modules/babel-register/node_modules/core-js/library/fn/typed/index.js +13 -0
  1005. data/node_modules/babel-register/node_modules/core-js/library/fn/typed/int16-array.js +2 -0
  1006. data/node_modules/babel-register/node_modules/core-js/library/fn/typed/int32-array.js +2 -0
  1007. data/node_modules/babel-register/node_modules/core-js/library/fn/typed/int8-array.js +2 -0
  1008. data/node_modules/babel-register/node_modules/core-js/library/fn/typed/uint16-array.js +2 -0
  1009. data/node_modules/babel-register/node_modules/core-js/library/fn/typed/uint32-array.js +2 -0
  1010. data/node_modules/babel-register/node_modules/core-js/library/fn/typed/uint8-array.js +2 -0
  1011. data/node_modules/babel-register/node_modules/core-js/library/fn/typed/uint8-clamped-array.js +2 -0
  1012. data/node_modules/babel-register/node_modules/core-js/library/fn/weak-map.js +4 -0
  1013. data/node_modules/babel-register/node_modules/core-js/library/fn/weak-set.js +4 -0
  1014. data/node_modules/babel-register/node_modules/core-js/library/index.js +16 -0
  1015. data/node_modules/babel-register/node_modules/core-js/library/modules/_a-function.js +4 -0
  1016. data/node_modules/babel-register/node_modules/core-js/library/modules/_a-number-value.js +5 -0
  1017. data/node_modules/babel-register/node_modules/core-js/library/modules/_add-to-unscopables.js +1 -0
  1018. data/node_modules/babel-register/node_modules/core-js/library/modules/_an-instance.js +5 -0
  1019. data/node_modules/babel-register/node_modules/core-js/library/modules/_an-object.js +5 -0
  1020. data/node_modules/babel-register/node_modules/core-js/library/modules/_array-copy-within.js +26 -0
  1021. data/node_modules/babel-register/node_modules/core-js/library/modules/_array-fill.js +15 -0
  1022. data/node_modules/babel-register/node_modules/core-js/library/modules/_array-from-iterable.js +7 -0
  1023. data/node_modules/babel-register/node_modules/core-js/library/modules/_array-includes.js +21 -0
  1024. data/node_modules/babel-register/node_modules/core-js/library/modules/_array-methods.js +44 -0
  1025. data/node_modules/babel-register/node_modules/core-js/library/modules/_array-reduce.js +28 -0
  1026. data/node_modules/babel-register/node_modules/core-js/library/modules/_array-species-create.js +16 -0
  1027. data/node_modules/babel-register/node_modules/core-js/library/modules/_bind.js +24 -0
  1028. data/node_modules/babel-register/node_modules/core-js/library/modules/_classof.js +23 -0
  1029. data/node_modules/babel-register/node_modules/core-js/library/modules/_cof.js +5 -0
  1030. data/node_modules/babel-register/node_modules/core-js/library/modules/_collection-strong.js +143 -0
  1031. data/node_modules/babel-register/node_modules/core-js/library/modules/_collection-to-json.js +9 -0
  1032. data/node_modules/babel-register/node_modules/core-js/library/modules/_collection-weak.js +83 -0
  1033. data/node_modules/babel-register/node_modules/core-js/library/modules/_collection.js +59 -0
  1034. data/node_modules/babel-register/node_modules/core-js/library/modules/_core.js +2 -0
  1035. data/node_modules/babel-register/node_modules/core-js/library/modules/_create-property.js +8 -0
  1036. data/node_modules/babel-register/node_modules/core-js/library/modules/_ctx.js +20 -0
  1037. data/node_modules/babel-register/node_modules/core-js/library/modules/_date-to-primitive.js +9 -0
  1038. data/node_modules/babel-register/node_modules/core-js/library/modules/_defined.js +5 -0
  1039. data/node_modules/babel-register/node_modules/core-js/library/modules/_descriptors.js +4 -0
  1040. data/node_modules/babel-register/node_modules/core-js/library/modules/_dom-create.js +7 -0
  1041. data/node_modules/babel-register/node_modules/core-js/library/modules/_entry-virtual.js +5 -0
  1042. data/node_modules/babel-register/node_modules/core-js/library/modules/_enum-bug-keys.js +4 -0
  1043. data/node_modules/babel-register/node_modules/core-js/library/modules/_enum-keys.js +15 -0
  1044. data/node_modules/babel-register/node_modules/core-js/library/modules/_export.js +61 -0
  1045. data/node_modules/babel-register/node_modules/core-js/library/modules/_fails-is-regexp.js +12 -0
  1046. data/node_modules/babel-register/node_modules/core-js/library/modules/_fails.js +7 -0
  1047. data/node_modules/babel-register/node_modules/core-js/library/modules/_fix-re-wks.js +28 -0
  1048. data/node_modules/babel-register/node_modules/core-js/library/modules/_flags.js +13 -0
  1049. data/node_modules/babel-register/node_modules/core-js/library/modules/_for-of.js +19 -0
  1050. data/node_modules/babel-register/node_modules/core-js/library/modules/_global.js +4 -0
  1051. data/node_modules/babel-register/node_modules/core-js/library/modules/_has.js +4 -0
  1052. data/node_modules/babel-register/node_modules/core-js/library/modules/_hide.js +8 -0
  1053. data/node_modules/babel-register/node_modules/core-js/library/modules/_html.js +1 -0
  1054. data/node_modules/babel-register/node_modules/core-js/library/modules/_ie8-dom-define.js +3 -0
  1055. data/node_modules/babel-register/node_modules/core-js/library/modules/_inherit-if-required.js +8 -0
  1056. data/node_modules/babel-register/node_modules/core-js/library/modules/_invoke.js +16 -0
  1057. data/node_modules/babel-register/node_modules/core-js/library/modules/_iobject.js +5 -0
  1058. data/node_modules/babel-register/node_modules/core-js/library/modules/_is-array-iter.js +8 -0
  1059. data/node_modules/babel-register/node_modules/core-js/library/modules/_is-array.js +5 -0
  1060. data/node_modules/babel-register/node_modules/core-js/library/modules/_is-integer.js +6 -0
  1061. data/node_modules/babel-register/node_modules/core-js/library/modules/_is-object.js +3 -0
  1062. data/node_modules/babel-register/node_modules/core-js/library/modules/_is-regexp.js +8 -0
  1063. data/node_modules/babel-register/node_modules/core-js/library/modules/_iter-call.js +12 -0
  1064. data/node_modules/babel-register/node_modules/core-js/library/modules/_iter-create.js +13 -0
  1065. data/node_modules/babel-register/node_modules/core-js/library/modules/_iter-define.js +70 -0
  1066. data/node_modules/babel-register/node_modules/core-js/library/modules/_iter-detect.js +21 -0
  1067. data/node_modules/babel-register/node_modules/core-js/library/modules/_iter-step.js +3 -0
  1068. data/node_modules/babel-register/node_modules/core-js/library/modules/_iterators.js +1 -0
  1069. data/node_modules/babel-register/node_modules/core-js/library/modules/_keyof.js +10 -0
  1070. data/node_modules/babel-register/node_modules/core-js/library/modules/_library.js +1 -0
  1071. data/node_modules/babel-register/node_modules/core-js/library/modules/_math-expm1.js +10 -0
  1072. data/node_modules/babel-register/node_modules/core-js/library/modules/_math-log1p.js +4 -0
  1073. data/node_modules/babel-register/node_modules/core-js/library/modules/_math-sign.js +4 -0
  1074. data/node_modules/babel-register/node_modules/core-js/library/modules/_meta.js +53 -0
  1075. data/node_modules/babel-register/node_modules/core-js/library/modules/_metadata.js +51 -0
  1076. data/node_modules/babel-register/node_modules/core-js/library/modules/_microtask.js +58 -0
  1077. data/node_modules/babel-register/node_modules/core-js/library/modules/_object-assign.js +33 -0
  1078. data/node_modules/babel-register/node_modules/core-js/library/modules/_object-create.js +40 -0
  1079. data/node_modules/babel-register/node_modules/core-js/library/modules/_object-define.js +12 -0
  1080. data/node_modules/babel-register/node_modules/core-js/library/modules/_object-dp.js +16 -0
  1081. data/node_modules/babel-register/node_modules/core-js/library/modules/_object-dps.js +13 -0
  1082. data/node_modules/babel-register/node_modules/core-js/library/modules/_object-forced-pam.js +7 -0
  1083. data/node_modules/babel-register/node_modules/core-js/library/modules/_object-gopd.js +16 -0
  1084. data/node_modules/babel-register/node_modules/core-js/library/modules/_object-gopn-ext.js +19 -0
  1085. data/node_modules/babel-register/node_modules/core-js/library/modules/_object-gopn.js +7 -0
  1086. data/node_modules/babel-register/node_modules/core-js/library/modules/_object-gops.js +1 -0
  1087. data/node_modules/babel-register/node_modules/core-js/library/modules/_object-gpo.js +13 -0
  1088. data/node_modules/babel-register/node_modules/core-js/library/modules/_object-keys-internal.js +17 -0
  1089. data/node_modules/babel-register/node_modules/core-js/library/modules/_object-keys.js +7 -0
  1090. data/node_modules/babel-register/node_modules/core-js/library/modules/_object-pie.js +1 -0
  1091. data/node_modules/babel-register/node_modules/core-js/library/modules/_object-sap.js +10 -0
  1092. data/node_modules/babel-register/node_modules/core-js/library/modules/_object-to-array.js +16 -0
  1093. data/node_modules/babel-register/node_modules/core-js/library/modules/_own-keys.js +10 -0
  1094. data/node_modules/babel-register/node_modules/core-js/library/modules/_parse-float.js +8 -0
  1095. data/node_modules/babel-register/node_modules/core-js/library/modules/_parse-int.js +9 -0
  1096. data/node_modules/babel-register/node_modules/core-js/library/modules/_partial.js +23 -0
  1097. data/node_modules/babel-register/node_modules/core-js/library/modules/_path.js +1 -0
  1098. data/node_modules/babel-register/node_modules/core-js/library/modules/_property-desc.js +8 -0
  1099. data/node_modules/babel-register/node_modules/core-js/library/modules/_redefine-all.js +7 -0
  1100. data/node_modules/babel-register/node_modules/core-js/library/modules/_redefine.js +1 -0
  1101. data/node_modules/babel-register/node_modules/core-js/library/modules/_replacer.js +8 -0
  1102. data/node_modules/babel-register/node_modules/core-js/library/modules/_same-value.js +4 -0
  1103. data/node_modules/babel-register/node_modules/core-js/library/modules/_set-proto.js +25 -0
  1104. data/node_modules/babel-register/node_modules/core-js/library/modules/_set-species.js +14 -0
  1105. data/node_modules/babel-register/node_modules/core-js/library/modules/_set-to-string-tag.js +7 -0
  1106. data/node_modules/babel-register/node_modules/core-js/library/modules/_shared-key.js +5 -0
  1107. data/node_modules/babel-register/node_modules/core-js/library/modules/_shared.js +6 -0
  1108. data/node_modules/babel-register/node_modules/core-js/library/modules/_species-constructor.js +8 -0
  1109. data/node_modules/babel-register/node_modules/core-js/library/modules/_strict-method.js +7 -0
  1110. data/node_modules/babel-register/node_modules/core-js/library/modules/_string-at.js +17 -0
  1111. data/node_modules/babel-register/node_modules/core-js/library/modules/_string-context.js +8 -0
  1112. data/node_modules/babel-register/node_modules/core-js/library/modules/_string-html.js +19 -0
  1113. data/node_modules/babel-register/node_modules/core-js/library/modules/_string-pad.js +17 -0
  1114. data/node_modules/babel-register/node_modules/core-js/library/modules/_string-repeat.js +12 -0
  1115. data/node_modules/babel-register/node_modules/core-js/library/modules/_string-trim.js +30 -0
  1116. data/node_modules/babel-register/node_modules/core-js/library/modules/_string-ws.js +2 -0
  1117. data/node_modules/babel-register/node_modules/core-js/library/modules/_task.js +75 -0
  1118. data/node_modules/babel-register/node_modules/core-js/library/modules/_to-index.js +7 -0
  1119. data/node_modules/babel-register/node_modules/core-js/library/modules/_to-integer.js +6 -0
  1120. data/node_modules/babel-register/node_modules/core-js/library/modules/_to-iobject.js +6 -0
  1121. data/node_modules/babel-register/node_modules/core-js/library/modules/_to-length.js +6 -0
  1122. data/node_modules/babel-register/node_modules/core-js/library/modules/_to-object.js +5 -0
  1123. data/node_modules/babel-register/node_modules/core-js/library/modules/_to-primitive.js +12 -0
  1124. data/node_modules/babel-register/node_modules/core-js/library/modules/_typed-array.js +481 -0
  1125. data/node_modules/babel-register/node_modules/core-js/library/modules/_typed-buffer.js +275 -0
  1126. data/node_modules/babel-register/node_modules/core-js/library/modules/_typed.js +26 -0
  1127. data/node_modules/babel-register/node_modules/core-js/library/modules/_uid.js +5 -0
  1128. data/node_modules/babel-register/node_modules/core-js/library/modules/_wks.js +8 -0
  1129. data/node_modules/babel-register/node_modules/core-js/library/modules/core.delay.js +12 -0
  1130. data/node_modules/babel-register/node_modules/core-js/library/modules/core.dict.js +155 -0
  1131. data/node_modules/babel-register/node_modules/core-js/library/modules/core.function.part.js +7 -0
  1132. data/node_modules/babel-register/node_modules/core-js/library/modules/core.get-iterator-method.js +8 -0
  1133. data/node_modules/babel-register/node_modules/core-js/library/modules/core.get-iterator.js +7 -0
  1134. data/node_modules/babel-register/node_modules/core-js/library/modules/core.is-iterable.js +9 -0
  1135. data/node_modules/babel-register/node_modules/core-js/library/modules/core.number.iterator.js +9 -0
  1136. data/node_modules/babel-register/node_modules/core-js/library/modules/core.object.classof.js +3 -0
  1137. data/node_modules/babel-register/node_modules/core-js/library/modules/core.object.define.js +4 -0
  1138. data/node_modules/babel-register/node_modules/core-js/library/modules/core.object.is-object.js +3 -0
  1139. data/node_modules/babel-register/node_modules/core-js/library/modules/core.object.make.js +9 -0
  1140. data/node_modules/babel-register/node_modules/core-js/library/modules/core.regexp.escape.js +5 -0
  1141. data/node_modules/babel-register/node_modules/core-js/library/modules/core.string.escape-html.js +11 -0
  1142. data/node_modules/babel-register/node_modules/core-js/library/modules/core.string.unescape-html.js +11 -0
  1143. data/node_modules/babel-register/node_modules/core-js/library/modules/es5.js +35 -0
  1144. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.array.copy-within.js +6 -0
  1145. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.array.every.js +10 -0
  1146. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.array.fill.js +6 -0
  1147. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.array.filter.js +10 -0
  1148. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.array.find-index.js +14 -0
  1149. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.array.find.js +14 -0
  1150. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.array.for-each.js +11 -0
  1151. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.array.from.js +37 -0
  1152. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.array.index-of.js +15 -0
  1153. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.array.is-array.js +4 -0
  1154. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.array.iterator.js +34 -0
  1155. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.array.join.js +12 -0
  1156. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.array.last-index-of.js +22 -0
  1157. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.array.map.js +10 -0
  1158. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.array.of.js +19 -0
  1159. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.array.reduce-right.js +10 -0
  1160. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.array.reduce.js +10 -0
  1161. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.array.slice.js +28 -0
  1162. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.array.some.js +10 -0
  1163. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.array.sort.js +23 -0
  1164. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.array.species.js +1 -0
  1165. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.date.now.js +4 -0
  1166. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.date.to-iso-string.js +28 -0
  1167. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.date.to-json.js +14 -0
  1168. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.date.to-primitive.js +0 -0
  1169. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.date.to-string.js +0 -0
  1170. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.function.bind.js +4 -0
  1171. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.function.has-instance.js +13 -0
  1172. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.function.name.js +0 -0
  1173. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.map.js +17 -0
  1174. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.math.acosh.js +18 -0
  1175. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.math.asinh.js +10 -0
  1176. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.math.atanh.js +10 -0
  1177. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.math.cbrt.js +9 -0
  1178. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.math.clz32.js +8 -0
  1179. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.math.cosh.js +9 -0
  1180. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.math.expm1.js +5 -0
  1181. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.math.fround.js +26 -0
  1182. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.math.hypot.js +25 -0
  1183. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.math.imul.js +17 -0
  1184. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.math.log10.js +8 -0
  1185. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.math.log1p.js +4 -0
  1186. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.math.log2.js +8 -0
  1187. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.math.sign.js +4 -0
  1188. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.math.sinh.js +15 -0
  1189. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.math.tanh.js +12 -0
  1190. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.math.trunc.js +8 -0
  1191. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.number.constructor.js +0 -0
  1192. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.number.epsilon.js +4 -0
  1193. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.number.is-finite.js +9 -0
  1194. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.number.is-integer.js +4 -0
  1195. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.number.is-nan.js +8 -0
  1196. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.number.is-safe-integer.js +10 -0
  1197. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.number.max-safe-integer.js +4 -0
  1198. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.number.min-safe-integer.js +4 -0
  1199. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.number.parse-float.js +4 -0
  1200. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.number.parse-int.js +4 -0
  1201. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.number.to-fixed.js +114 -0
  1202. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.number.to-precision.js +18 -0
  1203. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.object.assign.js +4 -0
  1204. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.object.create.js +3 -0
  1205. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.object.define-properties.js +3 -0
  1206. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.object.define-property.js +3 -0
  1207. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.object.freeze.js +9 -0
  1208. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.object.get-own-property-descriptor.js +9 -0
  1209. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.object.get-own-property-names.js +4 -0
  1210. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.object.get-prototype-of.js +9 -0
  1211. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.object.is-extensible.js +8 -0
  1212. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.object.is-frozen.js +8 -0
  1213. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.object.is-sealed.js +8 -0
  1214. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.object.is.js +3 -0
  1215. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.object.keys.js +9 -0
  1216. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.object.prevent-extensions.js +9 -0
  1217. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.object.seal.js +9 -0
  1218. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.object.set-prototype-of.js +3 -0
  1219. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.object.to-string.js +0 -0
  1220. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.parse-float.js +4 -0
  1221. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.parse-int.js +4 -0
  1222. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.promise.js +301 -0
  1223. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.reflect.apply.js +9 -0
  1224. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.reflect.construct.js +38 -0
  1225. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.reflect.define-property.js +22 -0
  1226. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.reflect.delete-property.js +11 -0
  1227. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.reflect.enumerate.js +26 -0
  1228. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.reflect.get-own-property-descriptor.js +10 -0
  1229. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.reflect.get-prototype-of.js +10 -0
  1230. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.reflect.get.js +21 -0
  1231. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.reflect.has.js +8 -0
  1232. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.reflect.is-extensible.js +11 -0
  1233. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.reflect.own-keys.js +4 -0
  1234. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.reflect.prevent-extensions.js +16 -0
  1235. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.reflect.set-prototype-of.js +15 -0
  1236. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.reflect.set.js +31 -0
  1237. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.regexp.constructor.js +1 -0
  1238. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.regexp.flags.js +0 -0
  1239. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.regexp.match.js +0 -0
  1240. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.regexp.replace.js +0 -0
  1241. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.regexp.search.js +0 -0
  1242. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.regexp.split.js +0 -0
  1243. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.regexp.to-string.js +0 -0
  1244. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.set.js +12 -0
  1245. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.string.anchor.js +7 -0
  1246. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.string.big.js +7 -0
  1247. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.string.blink.js +7 -0
  1248. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.string.bold.js +7 -0
  1249. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.string.code-point-at.js +9 -0
  1250. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.string.ends-with.js +20 -0
  1251. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.string.fixed.js +7 -0
  1252. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.string.fontcolor.js +7 -0
  1253. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.string.fontsize.js +7 -0
  1254. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.string.from-code-point.js +23 -0
  1255. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.string.includes.js +12 -0
  1256. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.string.italics.js +7 -0
  1257. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.string.iterator.js +17 -0
  1258. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.string.link.js +7 -0
  1259. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.string.raw.js +18 -0
  1260. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.string.repeat.js +6 -0
  1261. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.string.small.js +7 -0
  1262. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.string.starts-with.js +18 -0
  1263. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.string.strike.js +7 -0
  1264. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.string.sub.js +7 -0
  1265. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.string.sup.js +7 -0
  1266. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.string.trim.js +7 -0
  1267. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.symbol.js +235 -0
  1268. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.typed.array-buffer.js +47 -0
  1269. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.typed.data-view.js +4 -0
  1270. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.typed.float32-array.js +5 -0
  1271. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.typed.float64-array.js +5 -0
  1272. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.typed.int16-array.js +5 -0
  1273. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.typed.int32-array.js +5 -0
  1274. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.typed.int8-array.js +5 -0
  1275. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.typed.uint16-array.js +5 -0
  1276. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.typed.uint32-array.js +5 -0
  1277. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.typed.uint8-array.js +5 -0
  1278. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.typed.uint8-clamped-array.js +5 -0
  1279. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.weak-map.js +57 -0
  1280. data/node_modules/babel-register/node_modules/core-js/library/modules/es6.weak-set.js +12 -0
  1281. data/node_modules/babel-register/node_modules/core-js/library/modules/es7.array.includes.js +12 -0
  1282. data/node_modules/babel-register/node_modules/core-js/library/modules/es7.error.is-error.js +9 -0
  1283. data/node_modules/babel-register/node_modules/core-js/library/modules/es7.map.to-json.js +4 -0
  1284. data/node_modules/babel-register/node_modules/core-js/library/modules/es7.math.iaddh.js +11 -0
  1285. data/node_modules/babel-register/node_modules/core-js/library/modules/es7.math.imulh.js +16 -0
  1286. data/node_modules/babel-register/node_modules/core-js/library/modules/es7.math.isubh.js +11 -0
  1287. data/node_modules/babel-register/node_modules/core-js/library/modules/es7.math.umulh.js +16 -0
  1288. data/node_modules/babel-register/node_modules/core-js/library/modules/es7.object.define-getter.js +12 -0
  1289. data/node_modules/babel-register/node_modules/core-js/library/modules/es7.object.define-setter.js +12 -0
  1290. data/node_modules/babel-register/node_modules/core-js/library/modules/es7.object.entries.js +9 -0
  1291. data/node_modules/babel-register/node_modules/core-js/library/modules/es7.object.get-own-property-descriptors.js +19 -0
  1292. data/node_modules/babel-register/node_modules/core-js/library/modules/es7.object.lookup-getter.js +18 -0
  1293. data/node_modules/babel-register/node_modules/core-js/library/modules/es7.object.lookup-setter.js +18 -0
  1294. data/node_modules/babel-register/node_modules/core-js/library/modules/es7.object.values.js +9 -0
  1295. data/node_modules/babel-register/node_modules/core-js/library/modules/es7.reflect.define-metadata.js +8 -0
  1296. data/node_modules/babel-register/node_modules/core-js/library/modules/es7.reflect.delete-metadata.js +15 -0
  1297. data/node_modules/babel-register/node_modules/core-js/library/modules/es7.reflect.get-metadata-keys.js +19 -0
  1298. data/node_modules/babel-register/node_modules/core-js/library/modules/es7.reflect.get-metadata.js +17 -0
  1299. data/node_modules/babel-register/node_modules/core-js/library/modules/es7.reflect.get-own-metadata-keys.js +8 -0
  1300. data/node_modules/babel-register/node_modules/core-js/library/modules/es7.reflect.get-own-metadata.js +9 -0
  1301. data/node_modules/babel-register/node_modules/core-js/library/modules/es7.reflect.has-metadata.js +16 -0
  1302. data/node_modules/babel-register/node_modules/core-js/library/modules/es7.reflect.has-own-metadata.js +9 -0
  1303. data/node_modules/babel-register/node_modules/core-js/library/modules/es7.reflect.metadata.js +15 -0
  1304. data/node_modules/babel-register/node_modules/core-js/library/modules/es7.set.to-json.js +4 -0
  1305. data/node_modules/babel-register/node_modules/core-js/library/modules/es7.string.at.js +10 -0
  1306. data/node_modules/babel-register/node_modules/core-js/library/modules/es7.string.match-all.js +30 -0
  1307. data/node_modules/babel-register/node_modules/core-js/library/modules/es7.string.pad-end.js +10 -0
  1308. data/node_modules/babel-register/node_modules/core-js/library/modules/es7.string.pad-start.js +10 -0
  1309. data/node_modules/babel-register/node_modules/core-js/library/modules/es7.string.trim-left.js +7 -0
  1310. data/node_modules/babel-register/node_modules/core-js/library/modules/es7.string.trim-right.js +7 -0
  1311. data/node_modules/babel-register/node_modules/core-js/library/modules/es7.system.global.js +4 -0
  1312. data/node_modules/babel-register/node_modules/core-js/library/modules/web.dom.iterable.js +13 -0
  1313. data/node_modules/babel-register/node_modules/core-js/library/modules/web.immediate.js +6 -0
  1314. data/node_modules/babel-register/node_modules/core-js/library/modules/web.timers.js +20 -0
  1315. data/node_modules/babel-register/node_modules/core-js/library/shim.js +172 -0
  1316. data/node_modules/babel-register/node_modules/core-js/library/stage/0.js +9 -0
  1317. data/node_modules/babel-register/node_modules/core-js/library/stage/1.js +5 -0
  1318. data/node_modules/babel-register/node_modules/core-js/library/stage/2.js +1 -0
  1319. data/node_modules/babel-register/node_modules/core-js/library/stage/3.js +6 -0
  1320. data/node_modules/babel-register/node_modules/core-js/library/stage/4.js +6 -0
  1321. data/node_modules/babel-register/node_modules/core-js/library/stage/index.js +1 -0
  1322. data/node_modules/babel-register/node_modules/core-js/library/stage/pre.js +10 -0
  1323. data/node_modules/babel-register/node_modules/core-js/library/web/dom-collections.js +2 -0
  1324. data/node_modules/babel-register/node_modules/core-js/library/web/immediate.js +2 -0
  1325. data/node_modules/babel-register/node_modules/core-js/library/web/index.js +4 -0
  1326. data/node_modules/babel-register/node_modules/core-js/library/web/timers.js +2 -0
  1327. data/node_modules/babel-register/node_modules/core-js/modules/_a-function.js +4 -0
  1328. data/node_modules/babel-register/node_modules/core-js/modules/_a-number-value.js +5 -0
  1329. data/node_modules/babel-register/node_modules/core-js/modules/_add-to-unscopables.js +7 -0
  1330. data/node_modules/babel-register/node_modules/core-js/modules/_an-instance.js +5 -0
  1331. data/node_modules/babel-register/node_modules/core-js/modules/_an-object.js +5 -0
  1332. data/node_modules/babel-register/node_modules/core-js/modules/_array-copy-within.js +26 -0
  1333. data/node_modules/babel-register/node_modules/core-js/modules/_array-fill.js +15 -0
  1334. data/node_modules/babel-register/node_modules/core-js/modules/_array-from-iterable.js +7 -0
  1335. data/node_modules/babel-register/node_modules/core-js/modules/_array-includes.js +21 -0
  1336. data/node_modules/babel-register/node_modules/core-js/modules/_array-methods.js +44 -0
  1337. data/node_modules/babel-register/node_modules/core-js/modules/_array-reduce.js +28 -0
  1338. data/node_modules/babel-register/node_modules/core-js/modules/_array-species-create.js +16 -0
  1339. data/node_modules/babel-register/node_modules/core-js/modules/_bind.js +24 -0
  1340. data/node_modules/babel-register/node_modules/core-js/modules/_classof.js +23 -0
  1341. data/node_modules/babel-register/node_modules/core-js/modules/_cof.js +5 -0
  1342. data/node_modules/babel-register/node_modules/core-js/modules/_collection-strong.js +143 -0
  1343. data/node_modules/babel-register/node_modules/core-js/modules/_collection-to-json.js +9 -0
  1344. data/node_modules/babel-register/node_modules/core-js/modules/_collection-weak.js +83 -0
  1345. data/node_modules/babel-register/node_modules/core-js/modules/_collection.js +85 -0
  1346. data/node_modules/babel-register/node_modules/core-js/modules/_core.js +2 -0
  1347. data/node_modules/babel-register/node_modules/core-js/modules/_create-property.js +8 -0
  1348. data/node_modules/babel-register/node_modules/core-js/modules/_ctx.js +20 -0
  1349. data/node_modules/babel-register/node_modules/core-js/modules/_date-to-primitive.js +9 -0
  1350. data/node_modules/babel-register/node_modules/core-js/modules/_defined.js +5 -0
  1351. data/node_modules/babel-register/node_modules/core-js/modules/_descriptors.js +4 -0
  1352. data/node_modules/babel-register/node_modules/core-js/modules/_dom-create.js +7 -0
  1353. data/node_modules/babel-register/node_modules/core-js/modules/_entry-virtual.js +5 -0
  1354. data/node_modules/babel-register/node_modules/core-js/modules/_enum-bug-keys.js +4 -0
  1355. data/node_modules/babel-register/node_modules/core-js/modules/_enum-keys.js +15 -0
  1356. data/node_modules/babel-register/node_modules/core-js/modules/_export.js +43 -0
  1357. data/node_modules/babel-register/node_modules/core-js/modules/_fails-is-regexp.js +12 -0
  1358. data/node_modules/babel-register/node_modules/core-js/modules/_fails.js +7 -0
  1359. data/node_modules/babel-register/node_modules/core-js/modules/_fix-re-wks.js +28 -0
  1360. data/node_modules/babel-register/node_modules/core-js/modules/_flags.js +13 -0
  1361. data/node_modules/babel-register/node_modules/core-js/modules/_for-of.js +19 -0
  1362. data/node_modules/babel-register/node_modules/core-js/modules/_global.js +4 -0
  1363. data/node_modules/babel-register/node_modules/core-js/modules/_has.js +4 -0
  1364. data/node_modules/babel-register/node_modules/core-js/modules/_hide.js +8 -0
  1365. data/node_modules/babel-register/node_modules/core-js/modules/_html.js +1 -0
  1366. data/node_modules/babel-register/node_modules/core-js/modules/_ie8-dom-define.js +3 -0
  1367. data/node_modules/babel-register/node_modules/core-js/modules/_inherit-if-required.js +8 -0
  1368. data/node_modules/babel-register/node_modules/core-js/modules/_invoke.js +16 -0
  1369. data/node_modules/babel-register/node_modules/core-js/modules/_iobject.js +5 -0
  1370. data/node_modules/babel-register/node_modules/core-js/modules/_is-array-iter.js +8 -0
  1371. data/node_modules/babel-register/node_modules/core-js/modules/_is-array.js +5 -0
  1372. data/node_modules/babel-register/node_modules/core-js/modules/_is-integer.js +6 -0
  1373. data/node_modules/babel-register/node_modules/core-js/modules/_is-object.js +3 -0
  1374. data/node_modules/babel-register/node_modules/core-js/modules/_is-regexp.js +8 -0
  1375. data/node_modules/babel-register/node_modules/core-js/modules/_iter-call.js +12 -0
  1376. data/node_modules/babel-register/node_modules/core-js/modules/_iter-create.js +13 -0
  1377. data/node_modules/babel-register/node_modules/core-js/modules/_iter-define.js +70 -0
  1378. data/node_modules/babel-register/node_modules/core-js/modules/_iter-detect.js +21 -0
  1379. data/node_modules/babel-register/node_modules/core-js/modules/_iter-step.js +3 -0
  1380. data/node_modules/babel-register/node_modules/core-js/modules/_iterators.js +1 -0
  1381. data/node_modules/babel-register/node_modules/core-js/modules/_keyof.js +10 -0
  1382. data/node_modules/babel-register/node_modules/core-js/modules/_library.js +1 -0
  1383. data/node_modules/babel-register/node_modules/core-js/modules/_math-expm1.js +10 -0
  1384. data/node_modules/babel-register/node_modules/core-js/modules/_math-log1p.js +4 -0
  1385. data/node_modules/babel-register/node_modules/core-js/modules/_math-sign.js +4 -0
  1386. data/node_modules/babel-register/node_modules/core-js/modules/_meta.js +53 -0
  1387. data/node_modules/babel-register/node_modules/core-js/modules/_metadata.js +51 -0
  1388. data/node_modules/babel-register/node_modules/core-js/modules/_microtask.js +58 -0
  1389. data/node_modules/babel-register/node_modules/core-js/modules/_object-assign.js +33 -0
  1390. data/node_modules/babel-register/node_modules/core-js/modules/_object-create.js +40 -0
  1391. data/node_modules/babel-register/node_modules/core-js/modules/_object-define.js +12 -0
  1392. data/node_modules/babel-register/node_modules/core-js/modules/_object-dp.js +16 -0
  1393. data/node_modules/babel-register/node_modules/core-js/modules/_object-dps.js +13 -0
  1394. data/node_modules/babel-register/node_modules/core-js/modules/_object-forced-pam.js +7 -0
  1395. data/node_modules/babel-register/node_modules/core-js/modules/_object-gopd.js +16 -0
  1396. data/node_modules/babel-register/node_modules/core-js/modules/_object-gopn-ext.js +19 -0
  1397. data/node_modules/babel-register/node_modules/core-js/modules/_object-gopn.js +7 -0
  1398. data/node_modules/babel-register/node_modules/core-js/modules/_object-gops.js +1 -0
  1399. data/node_modules/babel-register/node_modules/core-js/modules/_object-gpo.js +13 -0
  1400. data/node_modules/babel-register/node_modules/core-js/modules/_object-keys-internal.js +17 -0
  1401. data/node_modules/babel-register/node_modules/core-js/modules/_object-keys.js +7 -0
  1402. data/node_modules/babel-register/node_modules/core-js/modules/_object-pie.js +1 -0
  1403. data/node_modules/babel-register/node_modules/core-js/modules/_object-sap.js +10 -0
  1404. data/node_modules/babel-register/node_modules/core-js/modules/_object-to-array.js +16 -0
  1405. data/node_modules/babel-register/node_modules/core-js/modules/_own-keys.js +10 -0
  1406. data/node_modules/babel-register/node_modules/core-js/modules/_parse-float.js +8 -0
  1407. data/node_modules/babel-register/node_modules/core-js/modules/_parse-int.js +9 -0
  1408. data/node_modules/babel-register/node_modules/core-js/modules/_partial.js +23 -0
  1409. data/node_modules/babel-register/node_modules/core-js/modules/_path.js +1 -0
  1410. data/node_modules/babel-register/node_modules/core-js/modules/_property-desc.js +8 -0
  1411. data/node_modules/babel-register/node_modules/core-js/modules/_redefine-all.js +5 -0
  1412. data/node_modules/babel-register/node_modules/core-js/modules/_redefine.js +32 -0
  1413. data/node_modules/babel-register/node_modules/core-js/modules/_replacer.js +8 -0
  1414. data/node_modules/babel-register/node_modules/core-js/modules/_same-value.js +4 -0
  1415. data/node_modules/babel-register/node_modules/core-js/modules/_set-proto.js +25 -0
  1416. data/node_modules/babel-register/node_modules/core-js/modules/_set-species.js +13 -0
  1417. data/node_modules/babel-register/node_modules/core-js/modules/_set-to-string-tag.js +7 -0
  1418. data/node_modules/babel-register/node_modules/core-js/modules/_shared-key.js +5 -0
  1419. data/node_modules/babel-register/node_modules/core-js/modules/_shared.js +6 -0
  1420. data/node_modules/babel-register/node_modules/core-js/modules/_species-constructor.js +8 -0
  1421. data/node_modules/babel-register/node_modules/core-js/modules/_strict-method.js +7 -0
  1422. data/node_modules/babel-register/node_modules/core-js/modules/_string-at.js +17 -0
  1423. data/node_modules/babel-register/node_modules/core-js/modules/_string-context.js +8 -0
  1424. data/node_modules/babel-register/node_modules/core-js/modules/_string-html.js +19 -0
  1425. data/node_modules/babel-register/node_modules/core-js/modules/_string-pad.js +17 -0
  1426. data/node_modules/babel-register/node_modules/core-js/modules/_string-repeat.js +12 -0
  1427. data/node_modules/babel-register/node_modules/core-js/modules/_string-trim.js +30 -0
  1428. data/node_modules/babel-register/node_modules/core-js/modules/_string-ws.js +2 -0
  1429. data/node_modules/babel-register/node_modules/core-js/modules/_task.js +75 -0
  1430. data/node_modules/babel-register/node_modules/core-js/modules/_to-index.js +7 -0
  1431. data/node_modules/babel-register/node_modules/core-js/modules/_to-integer.js +6 -0
  1432. data/node_modules/babel-register/node_modules/core-js/modules/_to-iobject.js +6 -0
  1433. data/node_modules/babel-register/node_modules/core-js/modules/_to-length.js +6 -0
  1434. data/node_modules/babel-register/node_modules/core-js/modules/_to-object.js +5 -0
  1435. data/node_modules/babel-register/node_modules/core-js/modules/_to-primitive.js +12 -0
  1436. data/node_modules/babel-register/node_modules/core-js/modules/_typed-array.js +481 -0
  1437. data/node_modules/babel-register/node_modules/core-js/modules/_typed-buffer.js +275 -0
  1438. data/node_modules/babel-register/node_modules/core-js/modules/_typed.js +26 -0
  1439. data/node_modules/babel-register/node_modules/core-js/modules/_uid.js +5 -0
  1440. data/node_modules/babel-register/node_modules/core-js/modules/_wks.js +8 -0
  1441. data/node_modules/babel-register/node_modules/core-js/modules/core.delay.js +12 -0
  1442. data/node_modules/babel-register/node_modules/core-js/modules/core.dict.js +155 -0
  1443. data/node_modules/babel-register/node_modules/core-js/modules/core.function.part.js +7 -0
  1444. data/node_modules/babel-register/node_modules/core-js/modules/core.get-iterator-method.js +8 -0
  1445. data/node_modules/babel-register/node_modules/core-js/modules/core.get-iterator.js +7 -0
  1446. data/node_modules/babel-register/node_modules/core-js/modules/core.is-iterable.js +9 -0
  1447. data/node_modules/babel-register/node_modules/core-js/modules/core.number.iterator.js +9 -0
  1448. data/node_modules/babel-register/node_modules/core-js/modules/core.object.classof.js +3 -0
  1449. data/node_modules/babel-register/node_modules/core-js/modules/core.object.define.js +4 -0
  1450. data/node_modules/babel-register/node_modules/core-js/modules/core.object.is-object.js +3 -0
  1451. data/node_modules/babel-register/node_modules/core-js/modules/core.object.make.js +9 -0
  1452. data/node_modules/babel-register/node_modules/core-js/modules/core.regexp.escape.js +5 -0
  1453. data/node_modules/babel-register/node_modules/core-js/modules/core.string.escape-html.js +11 -0
  1454. data/node_modules/babel-register/node_modules/core-js/modules/core.string.unescape-html.js +11 -0
  1455. data/node_modules/babel-register/node_modules/core-js/modules/es5.js +35 -0
  1456. data/node_modules/babel-register/node_modules/core-js/modules/es6.array.copy-within.js +6 -0
  1457. data/node_modules/babel-register/node_modules/core-js/modules/es6.array.every.js +10 -0
  1458. data/node_modules/babel-register/node_modules/core-js/modules/es6.array.fill.js +6 -0
  1459. data/node_modules/babel-register/node_modules/core-js/modules/es6.array.filter.js +10 -0
  1460. data/node_modules/babel-register/node_modules/core-js/modules/es6.array.find-index.js +14 -0
  1461. data/node_modules/babel-register/node_modules/core-js/modules/es6.array.find.js +14 -0
  1462. data/node_modules/babel-register/node_modules/core-js/modules/es6.array.for-each.js +11 -0
  1463. data/node_modules/babel-register/node_modules/core-js/modules/es6.array.from.js +37 -0
  1464. data/node_modules/babel-register/node_modules/core-js/modules/es6.array.index-of.js +15 -0
  1465. data/node_modules/babel-register/node_modules/core-js/modules/es6.array.is-array.js +4 -0
  1466. data/node_modules/babel-register/node_modules/core-js/modules/es6.array.iterator.js +34 -0
  1467. data/node_modules/babel-register/node_modules/core-js/modules/es6.array.join.js +12 -0
  1468. data/node_modules/babel-register/node_modules/core-js/modules/es6.array.last-index-of.js +22 -0
  1469. data/node_modules/babel-register/node_modules/core-js/modules/es6.array.map.js +10 -0
  1470. data/node_modules/babel-register/node_modules/core-js/modules/es6.array.of.js +19 -0
  1471. data/node_modules/babel-register/node_modules/core-js/modules/es6.array.reduce-right.js +10 -0
  1472. data/node_modules/babel-register/node_modules/core-js/modules/es6.array.reduce.js +10 -0
  1473. data/node_modules/babel-register/node_modules/core-js/modules/es6.array.slice.js +28 -0
  1474. data/node_modules/babel-register/node_modules/core-js/modules/es6.array.some.js +10 -0
  1475. data/node_modules/babel-register/node_modules/core-js/modules/es6.array.sort.js +23 -0
  1476. data/node_modules/babel-register/node_modules/core-js/modules/es6.array.species.js +1 -0
  1477. data/node_modules/babel-register/node_modules/core-js/modules/es6.date.now.js +4 -0
  1478. data/node_modules/babel-register/node_modules/core-js/modules/es6.date.to-iso-string.js +28 -0
  1479. data/node_modules/babel-register/node_modules/core-js/modules/es6.date.to-json.js +14 -0
  1480. data/node_modules/babel-register/node_modules/core-js/modules/es6.date.to-primitive.js +4 -0
  1481. data/node_modules/babel-register/node_modules/core-js/modules/es6.date.to-string.js +11 -0
  1482. data/node_modules/babel-register/node_modules/core-js/modules/es6.function.bind.js +4 -0
  1483. data/node_modules/babel-register/node_modules/core-js/modules/es6.function.has-instance.js +13 -0
  1484. data/node_modules/babel-register/node_modules/core-js/modules/es6.function.name.js +16 -0
  1485. data/node_modules/babel-register/node_modules/core-js/modules/es6.map.js +17 -0
  1486. data/node_modules/babel-register/node_modules/core-js/modules/es6.math.acosh.js +18 -0
  1487. data/node_modules/babel-register/node_modules/core-js/modules/es6.math.asinh.js +10 -0
  1488. data/node_modules/babel-register/node_modules/core-js/modules/es6.math.atanh.js +10 -0
  1489. data/node_modules/babel-register/node_modules/core-js/modules/es6.math.cbrt.js +9 -0
  1490. data/node_modules/babel-register/node_modules/core-js/modules/es6.math.clz32.js +8 -0
  1491. data/node_modules/babel-register/node_modules/core-js/modules/es6.math.cosh.js +9 -0
  1492. data/node_modules/babel-register/node_modules/core-js/modules/es6.math.expm1.js +5 -0
  1493. data/node_modules/babel-register/node_modules/core-js/modules/es6.math.fround.js +26 -0
  1494. data/node_modules/babel-register/node_modules/core-js/modules/es6.math.hypot.js +25 -0
  1495. data/node_modules/babel-register/node_modules/core-js/modules/es6.math.imul.js +17 -0
  1496. data/node_modules/babel-register/node_modules/core-js/modules/es6.math.log10.js +8 -0
  1497. data/node_modules/babel-register/node_modules/core-js/modules/es6.math.log1p.js +4 -0
  1498. data/node_modules/babel-register/node_modules/core-js/modules/es6.math.log2.js +8 -0
  1499. data/node_modules/babel-register/node_modules/core-js/modules/es6.math.sign.js +4 -0
  1500. data/node_modules/babel-register/node_modules/core-js/modules/es6.math.sinh.js +15 -0
  1501. data/node_modules/babel-register/node_modules/core-js/modules/es6.math.tanh.js +12 -0
  1502. data/node_modules/babel-register/node_modules/core-js/modules/es6.math.trunc.js +8 -0
  1503. data/node_modules/babel-register/node_modules/core-js/modules/es6.number.constructor.js +69 -0
  1504. data/node_modules/babel-register/node_modules/core-js/modules/es6.number.epsilon.js +4 -0
  1505. data/node_modules/babel-register/node_modules/core-js/modules/es6.number.is-finite.js +9 -0
  1506. data/node_modules/babel-register/node_modules/core-js/modules/es6.number.is-integer.js +4 -0
  1507. data/node_modules/babel-register/node_modules/core-js/modules/es6.number.is-nan.js +8 -0
  1508. data/node_modules/babel-register/node_modules/core-js/modules/es6.number.is-safe-integer.js +10 -0
  1509. data/node_modules/babel-register/node_modules/core-js/modules/es6.number.max-safe-integer.js +4 -0
  1510. data/node_modules/babel-register/node_modules/core-js/modules/es6.number.min-safe-integer.js +4 -0
  1511. data/node_modules/babel-register/node_modules/core-js/modules/es6.number.parse-float.js +4 -0
  1512. data/node_modules/babel-register/node_modules/core-js/modules/es6.number.parse-int.js +4 -0
  1513. data/node_modules/babel-register/node_modules/core-js/modules/es6.number.to-fixed.js +114 -0
  1514. data/node_modules/babel-register/node_modules/core-js/modules/es6.number.to-precision.js +18 -0
  1515. data/node_modules/babel-register/node_modules/core-js/modules/es6.object.assign.js +4 -0
  1516. data/node_modules/babel-register/node_modules/core-js/modules/es6.object.create.js +3 -0
  1517. data/node_modules/babel-register/node_modules/core-js/modules/es6.object.define-properties.js +3 -0
  1518. data/node_modules/babel-register/node_modules/core-js/modules/es6.object.define-property.js +3 -0
  1519. data/node_modules/babel-register/node_modules/core-js/modules/es6.object.freeze.js +9 -0
  1520. data/node_modules/babel-register/node_modules/core-js/modules/es6.object.get-own-property-descriptor.js +9 -0
  1521. data/node_modules/babel-register/node_modules/core-js/modules/es6.object.get-own-property-names.js +4 -0
  1522. data/node_modules/babel-register/node_modules/core-js/modules/es6.object.get-prototype-of.js +9 -0
  1523. data/node_modules/babel-register/node_modules/core-js/modules/es6.object.is-extensible.js +8 -0
  1524. data/node_modules/babel-register/node_modules/core-js/modules/es6.object.is-frozen.js +8 -0
  1525. data/node_modules/babel-register/node_modules/core-js/modules/es6.object.is-sealed.js +8 -0
  1526. data/node_modules/babel-register/node_modules/core-js/modules/es6.object.is.js +3 -0
  1527. data/node_modules/babel-register/node_modules/core-js/modules/es6.object.keys.js +9 -0
  1528. data/node_modules/babel-register/node_modules/core-js/modules/es6.object.prevent-extensions.js +9 -0
  1529. data/node_modules/babel-register/node_modules/core-js/modules/es6.object.seal.js +9 -0
  1530. data/node_modules/babel-register/node_modules/core-js/modules/es6.object.set-prototype-of.js +3 -0
  1531. data/node_modules/babel-register/node_modules/core-js/modules/es6.object.to-string.js +10 -0
  1532. data/node_modules/babel-register/node_modules/core-js/modules/es6.parse-float.js +4 -0
  1533. data/node_modules/babel-register/node_modules/core-js/modules/es6.parse-int.js +4 -0
  1534. data/node_modules/babel-register/node_modules/core-js/modules/es6.promise.js +301 -0
  1535. data/node_modules/babel-register/node_modules/core-js/modules/es6.reflect.apply.js +9 -0
  1536. data/node_modules/babel-register/node_modules/core-js/modules/es6.reflect.construct.js +38 -0
  1537. data/node_modules/babel-register/node_modules/core-js/modules/es6.reflect.define-property.js +22 -0
  1538. data/node_modules/babel-register/node_modules/core-js/modules/es6.reflect.delete-property.js +11 -0
  1539. data/node_modules/babel-register/node_modules/core-js/modules/es6.reflect.enumerate.js +26 -0
  1540. data/node_modules/babel-register/node_modules/core-js/modules/es6.reflect.get-own-property-descriptor.js +10 -0
  1541. data/node_modules/babel-register/node_modules/core-js/modules/es6.reflect.get-prototype-of.js +10 -0
  1542. data/node_modules/babel-register/node_modules/core-js/modules/es6.reflect.get.js +21 -0
  1543. data/node_modules/babel-register/node_modules/core-js/modules/es6.reflect.has.js +8 -0
  1544. data/node_modules/babel-register/node_modules/core-js/modules/es6.reflect.is-extensible.js +11 -0
  1545. data/node_modules/babel-register/node_modules/core-js/modules/es6.reflect.own-keys.js +4 -0
  1546. data/node_modules/babel-register/node_modules/core-js/modules/es6.reflect.prevent-extensions.js +16 -0
  1547. data/node_modules/babel-register/node_modules/core-js/modules/es6.reflect.set-prototype-of.js +15 -0
  1548. data/node_modules/babel-register/node_modules/core-js/modules/es6.reflect.set.js +31 -0
  1549. data/node_modules/babel-register/node_modules/core-js/modules/es6.regexp.constructor.js +43 -0
  1550. data/node_modules/babel-register/node_modules/core-js/modules/es6.regexp.flags.js +5 -0
  1551. data/node_modules/babel-register/node_modules/core-js/modules/es6.regexp.match.js +10 -0
  1552. data/node_modules/babel-register/node_modules/core-js/modules/es6.regexp.replace.js +12 -0
  1553. data/node_modules/babel-register/node_modules/core-js/modules/es6.regexp.search.js +10 -0
  1554. data/node_modules/babel-register/node_modules/core-js/modules/es6.regexp.split.js +70 -0
  1555. data/node_modules/babel-register/node_modules/core-js/modules/es6.regexp.to-string.js +25 -0
  1556. data/node_modules/babel-register/node_modules/core-js/modules/es6.set.js +12 -0
  1557. data/node_modules/babel-register/node_modules/core-js/modules/es6.string.anchor.js +7 -0
  1558. data/node_modules/babel-register/node_modules/core-js/modules/es6.string.big.js +7 -0
  1559. data/node_modules/babel-register/node_modules/core-js/modules/es6.string.blink.js +7 -0
  1560. data/node_modules/babel-register/node_modules/core-js/modules/es6.string.bold.js +7 -0
  1561. data/node_modules/babel-register/node_modules/core-js/modules/es6.string.code-point-at.js +9 -0
  1562. data/node_modules/babel-register/node_modules/core-js/modules/es6.string.ends-with.js +20 -0
  1563. data/node_modules/babel-register/node_modules/core-js/modules/es6.string.fixed.js +7 -0
  1564. data/node_modules/babel-register/node_modules/core-js/modules/es6.string.fontcolor.js +7 -0
  1565. data/node_modules/babel-register/node_modules/core-js/modules/es6.string.fontsize.js +7 -0
  1566. data/node_modules/babel-register/node_modules/core-js/modules/es6.string.from-code-point.js +23 -0
  1567. data/node_modules/babel-register/node_modules/core-js/modules/es6.string.includes.js +12 -0
  1568. data/node_modules/babel-register/node_modules/core-js/modules/es6.string.italics.js +7 -0
  1569. data/node_modules/babel-register/node_modules/core-js/modules/es6.string.iterator.js +17 -0
  1570. data/node_modules/babel-register/node_modules/core-js/modules/es6.string.link.js +7 -0
  1571. data/node_modules/babel-register/node_modules/core-js/modules/es6.string.raw.js +18 -0
  1572. data/node_modules/babel-register/node_modules/core-js/modules/es6.string.repeat.js +6 -0
  1573. data/node_modules/babel-register/node_modules/core-js/modules/es6.string.small.js +7 -0
  1574. data/node_modules/babel-register/node_modules/core-js/modules/es6.string.starts-with.js +18 -0
  1575. data/node_modules/babel-register/node_modules/core-js/modules/es6.string.strike.js +7 -0
  1576. data/node_modules/babel-register/node_modules/core-js/modules/es6.string.sub.js +7 -0
  1577. data/node_modules/babel-register/node_modules/core-js/modules/es6.string.sup.js +7 -0
  1578. data/node_modules/babel-register/node_modules/core-js/modules/es6.string.trim.js +7 -0
  1579. data/node_modules/babel-register/node_modules/core-js/modules/es6.symbol.js +235 -0
  1580. data/node_modules/babel-register/node_modules/core-js/modules/es6.typed.array-buffer.js +47 -0
  1581. data/node_modules/babel-register/node_modules/core-js/modules/es6.typed.data-view.js +4 -0
  1582. data/node_modules/babel-register/node_modules/core-js/modules/es6.typed.float32-array.js +5 -0
  1583. data/node_modules/babel-register/node_modules/core-js/modules/es6.typed.float64-array.js +5 -0
  1584. data/node_modules/babel-register/node_modules/core-js/modules/es6.typed.int16-array.js +5 -0
  1585. data/node_modules/babel-register/node_modules/core-js/modules/es6.typed.int32-array.js +5 -0
  1586. data/node_modules/babel-register/node_modules/core-js/modules/es6.typed.int8-array.js +5 -0
  1587. data/node_modules/babel-register/node_modules/core-js/modules/es6.typed.uint16-array.js +5 -0
  1588. data/node_modules/babel-register/node_modules/core-js/modules/es6.typed.uint32-array.js +5 -0
  1589. data/node_modules/babel-register/node_modules/core-js/modules/es6.typed.uint8-array.js +5 -0
  1590. data/node_modules/babel-register/node_modules/core-js/modules/es6.typed.uint8-clamped-array.js +5 -0
  1591. data/node_modules/babel-register/node_modules/core-js/modules/es6.weak-map.js +57 -0
  1592. data/node_modules/babel-register/node_modules/core-js/modules/es6.weak-set.js +12 -0
  1593. data/node_modules/babel-register/node_modules/core-js/modules/es7.array.includes.js +12 -0
  1594. data/node_modules/babel-register/node_modules/core-js/modules/es7.error.is-error.js +9 -0
  1595. data/node_modules/babel-register/node_modules/core-js/modules/es7.map.to-json.js +4 -0
  1596. data/node_modules/babel-register/node_modules/core-js/modules/es7.math.iaddh.js +11 -0
  1597. data/node_modules/babel-register/node_modules/core-js/modules/es7.math.imulh.js +16 -0
  1598. data/node_modules/babel-register/node_modules/core-js/modules/es7.math.isubh.js +11 -0
  1599. data/node_modules/babel-register/node_modules/core-js/modules/es7.math.umulh.js +16 -0
  1600. data/node_modules/babel-register/node_modules/core-js/modules/es7.object.define-getter.js +12 -0
  1601. data/node_modules/babel-register/node_modules/core-js/modules/es7.object.define-setter.js +12 -0
  1602. data/node_modules/babel-register/node_modules/core-js/modules/es7.object.entries.js +9 -0
  1603. data/node_modules/babel-register/node_modules/core-js/modules/es7.object.get-own-property-descriptors.js +19 -0
  1604. data/node_modules/babel-register/node_modules/core-js/modules/es7.object.lookup-getter.js +18 -0
  1605. data/node_modules/babel-register/node_modules/core-js/modules/es7.object.lookup-setter.js +18 -0
  1606. data/node_modules/babel-register/node_modules/core-js/modules/es7.object.values.js +9 -0
  1607. data/node_modules/babel-register/node_modules/core-js/modules/es7.reflect.define-metadata.js +8 -0
  1608. data/node_modules/babel-register/node_modules/core-js/modules/es7.reflect.delete-metadata.js +15 -0
  1609. data/node_modules/babel-register/node_modules/core-js/modules/es7.reflect.get-metadata-keys.js +19 -0
  1610. data/node_modules/babel-register/node_modules/core-js/modules/es7.reflect.get-metadata.js +17 -0
  1611. data/node_modules/babel-register/node_modules/core-js/modules/es7.reflect.get-own-metadata-keys.js +8 -0
  1612. data/node_modules/babel-register/node_modules/core-js/modules/es7.reflect.get-own-metadata.js +9 -0
  1613. data/node_modules/babel-register/node_modules/core-js/modules/es7.reflect.has-metadata.js +16 -0
  1614. data/node_modules/babel-register/node_modules/core-js/modules/es7.reflect.has-own-metadata.js +9 -0
  1615. data/node_modules/babel-register/node_modules/core-js/modules/es7.reflect.metadata.js +15 -0
  1616. data/node_modules/babel-register/node_modules/core-js/modules/es7.set.to-json.js +4 -0
  1617. data/node_modules/babel-register/node_modules/core-js/modules/es7.string.at.js +10 -0
  1618. data/node_modules/babel-register/node_modules/core-js/modules/es7.string.match-all.js +30 -0
  1619. data/node_modules/babel-register/node_modules/core-js/modules/es7.string.pad-end.js +10 -0
  1620. data/node_modules/babel-register/node_modules/core-js/modules/es7.string.pad-start.js +10 -0
  1621. data/node_modules/babel-register/node_modules/core-js/modules/es7.string.trim-left.js +7 -0
  1622. data/node_modules/babel-register/node_modules/core-js/modules/es7.string.trim-right.js +7 -0
  1623. data/node_modules/babel-register/node_modules/core-js/modules/es7.system.global.js +4 -0
  1624. data/node_modules/babel-register/node_modules/core-js/modules/library/_add-to-unscopables.js +1 -0
  1625. data/node_modules/babel-register/node_modules/core-js/modules/library/_collection.js +59 -0
  1626. data/node_modules/babel-register/node_modules/core-js/modules/library/_export.js +61 -0
  1627. data/node_modules/babel-register/node_modules/core-js/modules/library/_library.js +1 -0
  1628. data/node_modules/babel-register/node_modules/core-js/modules/library/_path.js +1 -0
  1629. data/node_modules/babel-register/node_modules/core-js/modules/library/_redefine-all.js +7 -0
  1630. data/node_modules/babel-register/node_modules/core-js/modules/library/_redefine.js +1 -0
  1631. data/node_modules/babel-register/node_modules/core-js/modules/library/_set-species.js +14 -0
  1632. data/node_modules/babel-register/node_modules/core-js/modules/library/es6.date.to-primitive.js +0 -0
  1633. data/node_modules/babel-register/node_modules/core-js/modules/library/es6.date.to-string.js +0 -0
  1634. data/node_modules/babel-register/node_modules/core-js/modules/library/es6.function.name.js +0 -0
  1635. data/node_modules/babel-register/node_modules/core-js/modules/library/es6.number.constructor.js +0 -0
  1636. data/node_modules/babel-register/node_modules/core-js/modules/library/es6.object.to-string.js +0 -0
  1637. data/node_modules/babel-register/node_modules/core-js/modules/library/es6.regexp.constructor.js +1 -0
  1638. data/node_modules/babel-register/node_modules/core-js/modules/library/es6.regexp.flags.js +0 -0
  1639. data/node_modules/babel-register/node_modules/core-js/modules/library/es6.regexp.match.js +0 -0
  1640. data/node_modules/babel-register/node_modules/core-js/modules/library/es6.regexp.replace.js +0 -0
  1641. data/node_modules/babel-register/node_modules/core-js/modules/library/es6.regexp.search.js +0 -0
  1642. data/node_modules/babel-register/node_modules/core-js/modules/library/es6.regexp.split.js +0 -0
  1643. data/node_modules/babel-register/node_modules/core-js/modules/library/es6.regexp.to-string.js +0 -0
  1644. data/node_modules/babel-register/node_modules/core-js/modules/library/web.dom.iterable.js +13 -0
  1645. data/node_modules/babel-register/node_modules/core-js/modules/web.dom.iterable.js +22 -0
  1646. data/node_modules/babel-register/node_modules/core-js/modules/web.immediate.js +6 -0
  1647. data/node_modules/babel-register/node_modules/core-js/modules/web.timers.js +20 -0
  1648. data/node_modules/babel-register/node_modules/core-js/package.json +124 -0
  1649. data/node_modules/babel-register/node_modules/core-js/shim.js +172 -0
  1650. data/node_modules/babel-register/node_modules/core-js/stage/0.js +9 -0
  1651. data/node_modules/babel-register/node_modules/core-js/stage/1.js +5 -0
  1652. data/node_modules/babel-register/node_modules/core-js/stage/2.js +1 -0
  1653. data/node_modules/babel-register/node_modules/core-js/stage/3.js +6 -0
  1654. data/node_modules/babel-register/node_modules/core-js/stage/4.js +6 -0
  1655. data/node_modules/babel-register/node_modules/core-js/stage/index.js +1 -0
  1656. data/node_modules/babel-register/node_modules/core-js/stage/pre.js +10 -0
  1657. data/node_modules/babel-register/node_modules/core-js/web/dom-collections.js +2 -0
  1658. data/node_modules/babel-register/node_modules/core-js/web/immediate.js +2 -0
  1659. data/node_modules/babel-register/node_modules/core-js/web/index.js +4 -0
  1660. data/node_modules/babel-register/node_modules/core-js/web/timers.js +2 -0
  1661. data/node_modules/babel-register/package.json +99 -0
  1662. data/node_modules/babel-runtime/.npmignore +2 -0
  1663. data/node_modules/babel-runtime/README.md +5 -0
  1664. data/node_modules/babel-runtime/core-js.js +4 -0
  1665. data/node_modules/babel-runtime/core-js/array/concat.js +1 -0
  1666. data/node_modules/babel-runtime/core-js/array/copy-within.js +1 -0
  1667. data/node_modules/babel-runtime/core-js/array/entries.js +1 -0
  1668. data/node_modules/babel-runtime/core-js/array/every.js +1 -0
  1669. data/node_modules/babel-runtime/core-js/array/fill.js +1 -0
  1670. data/node_modules/babel-runtime/core-js/array/filter.js +1 -0
  1671. data/node_modules/babel-runtime/core-js/array/find-index.js +1 -0
  1672. data/node_modules/babel-runtime/core-js/array/find.js +1 -0
  1673. data/node_modules/babel-runtime/core-js/array/for-each.js +1 -0
  1674. data/node_modules/babel-runtime/core-js/array/from.js +1 -0
  1675. data/node_modules/babel-runtime/core-js/array/includes.js +1 -0
  1676. data/node_modules/babel-runtime/core-js/array/index-of.js +1 -0
  1677. data/node_modules/babel-runtime/core-js/array/join.js +1 -0
  1678. data/node_modules/babel-runtime/core-js/array/keys.js +1 -0
  1679. data/node_modules/babel-runtime/core-js/array/last-index-of.js +1 -0
  1680. data/node_modules/babel-runtime/core-js/array/map.js +1 -0
  1681. data/node_modules/babel-runtime/core-js/array/of.js +1 -0
  1682. data/node_modules/babel-runtime/core-js/array/pop.js +1 -0
  1683. data/node_modules/babel-runtime/core-js/array/push.js +1 -0
  1684. data/node_modules/babel-runtime/core-js/array/reduce-right.js +1 -0
  1685. data/node_modules/babel-runtime/core-js/array/reduce.js +1 -0
  1686. data/node_modules/babel-runtime/core-js/array/reverse.js +1 -0
  1687. data/node_modules/babel-runtime/core-js/array/shift.js +1 -0
  1688. data/node_modules/babel-runtime/core-js/array/slice.js +1 -0
  1689. data/node_modules/babel-runtime/core-js/array/some.js +1 -0
  1690. data/node_modules/babel-runtime/core-js/array/sort.js +1 -0
  1691. data/node_modules/babel-runtime/core-js/array/splice.js +1 -0
  1692. data/node_modules/babel-runtime/core-js/array/turn.js +1 -0
  1693. data/node_modules/babel-runtime/core-js/array/unshift.js +1 -0
  1694. data/node_modules/babel-runtime/core-js/array/values.js +1 -0
  1695. data/node_modules/babel-runtime/core-js/clear-immediate.js +1 -0
  1696. data/node_modules/babel-runtime/core-js/date/add-locale.js +1 -0
  1697. data/node_modules/babel-runtime/core-js/date/format-utc.js +1 -0
  1698. data/node_modules/babel-runtime/core-js/date/format.js +1 -0
  1699. data/node_modules/babel-runtime/core-js/error/is-error.js +1 -0
  1700. data/node_modules/babel-runtime/core-js/function/only.js +1 -0
  1701. data/node_modules/babel-runtime/core-js/function/part.js +1 -0
  1702. data/node_modules/babel-runtime/core-js/get-iterator.js +1 -0
  1703. data/node_modules/babel-runtime/core-js/is-iterable.js +1 -0
  1704. data/node_modules/babel-runtime/core-js/json/stringify.js +1 -0
  1705. data/node_modules/babel-runtime/core-js/map.js +1 -0
  1706. data/node_modules/babel-runtime/core-js/math/acosh.js +1 -0
  1707. data/node_modules/babel-runtime/core-js/math/asinh.js +1 -0
  1708. data/node_modules/babel-runtime/core-js/math/atanh.js +1 -0
  1709. data/node_modules/babel-runtime/core-js/math/cbrt.js +1 -0
  1710. data/node_modules/babel-runtime/core-js/math/clz32.js +1 -0
  1711. data/node_modules/babel-runtime/core-js/math/cosh.js +1 -0
  1712. data/node_modules/babel-runtime/core-js/math/expm1.js +1 -0
  1713. data/node_modules/babel-runtime/core-js/math/fround.js +1 -0
  1714. data/node_modules/babel-runtime/core-js/math/hypot.js +1 -0
  1715. data/node_modules/babel-runtime/core-js/math/iaddh.js +1 -0
  1716. data/node_modules/babel-runtime/core-js/math/imul.js +1 -0
  1717. data/node_modules/babel-runtime/core-js/math/imulh.js +1 -0
  1718. data/node_modules/babel-runtime/core-js/math/isubh.js +1 -0
  1719. data/node_modules/babel-runtime/core-js/math/log10.js +1 -0
  1720. data/node_modules/babel-runtime/core-js/math/log1p.js +1 -0
  1721. data/node_modules/babel-runtime/core-js/math/log2.js +1 -0
  1722. data/node_modules/babel-runtime/core-js/math/pot.js +1 -0
  1723. data/node_modules/babel-runtime/core-js/math/sign.js +1 -0
  1724. data/node_modules/babel-runtime/core-js/math/sinh.js +1 -0
  1725. data/node_modules/babel-runtime/core-js/math/tanh.js +1 -0
  1726. data/node_modules/babel-runtime/core-js/math/trunc.js +1 -0
  1727. data/node_modules/babel-runtime/core-js/math/umulh.js +1 -0
  1728. data/node_modules/babel-runtime/core-js/number/epsilon.js +1 -0
  1729. data/node_modules/babel-runtime/core-js/number/is-finite.js +1 -0
  1730. data/node_modules/babel-runtime/core-js/number/is-integer.js +1 -0
  1731. data/node_modules/babel-runtime/core-js/number/is-nan.js +1 -0
  1732. data/node_modules/babel-runtime/core-js/number/is-safe-integer.js +1 -0
  1733. data/node_modules/babel-runtime/core-js/number/max-safe-integer.js +1 -0
  1734. data/node_modules/babel-runtime/core-js/number/min-safe-integer.js +1 -0
  1735. data/node_modules/babel-runtime/core-js/number/parse-float.js +1 -0
  1736. data/node_modules/babel-runtime/core-js/number/parse-int.js +1 -0
  1737. data/node_modules/babel-runtime/core-js/number/random.js +1 -0
  1738. data/node_modules/babel-runtime/core-js/object/assign.js +1 -0
  1739. data/node_modules/babel-runtime/core-js/object/classof.js +1 -0
  1740. data/node_modules/babel-runtime/core-js/object/create.js +1 -0
  1741. data/node_modules/babel-runtime/core-js/object/define-properties.js +1 -0
  1742. data/node_modules/babel-runtime/core-js/object/define-property.js +1 -0
  1743. data/node_modules/babel-runtime/core-js/object/define.js +1 -0
  1744. data/node_modules/babel-runtime/core-js/object/entries.js +1 -0
  1745. data/node_modules/babel-runtime/core-js/object/freeze.js +1 -0
  1746. data/node_modules/babel-runtime/core-js/object/get-own-property-descriptor.js +1 -0
  1747. data/node_modules/babel-runtime/core-js/object/get-own-property-descriptors.js +1 -0
  1748. data/node_modules/babel-runtime/core-js/object/get-own-property-names.js +1 -0
  1749. data/node_modules/babel-runtime/core-js/object/get-own-property-symbols.js +1 -0
  1750. data/node_modules/babel-runtime/core-js/object/get-prototype-of.js +1 -0
  1751. data/node_modules/babel-runtime/core-js/object/index.js +1 -0
  1752. data/node_modules/babel-runtime/core-js/object/is-extensible.js +1 -0
  1753. data/node_modules/babel-runtime/core-js/object/is-frozen.js +1 -0
  1754. data/node_modules/babel-runtime/core-js/object/is-object.js +1 -0
  1755. data/node_modules/babel-runtime/core-js/object/is-sealed.js +1 -0
  1756. data/node_modules/babel-runtime/core-js/object/is.js +1 -0
  1757. data/node_modules/babel-runtime/core-js/object/keys.js +1 -0
  1758. data/node_modules/babel-runtime/core-js/object/make.js +1 -0
  1759. data/node_modules/babel-runtime/core-js/object/prevent-extensions.js +1 -0
  1760. data/node_modules/babel-runtime/core-js/object/seal.js +1 -0
  1761. data/node_modules/babel-runtime/core-js/object/set-prototype-of.js +1 -0
  1762. data/node_modules/babel-runtime/core-js/object/values.js +1 -0
  1763. data/node_modules/babel-runtime/core-js/promise.js +1 -0
  1764. data/node_modules/babel-runtime/core-js/reflect/apply.js +1 -0
  1765. data/node_modules/babel-runtime/core-js/reflect/construct.js +1 -0
  1766. data/node_modules/babel-runtime/core-js/reflect/define-metadata.js +1 -0
  1767. data/node_modules/babel-runtime/core-js/reflect/define-property.js +1 -0
  1768. data/node_modules/babel-runtime/core-js/reflect/delete-metadata.js +1 -0
  1769. data/node_modules/babel-runtime/core-js/reflect/delete-property.js +1 -0
  1770. data/node_modules/babel-runtime/core-js/reflect/enumerate.js +1 -0
  1771. data/node_modules/babel-runtime/core-js/reflect/get-metadata-keys.js +1 -0
  1772. data/node_modules/babel-runtime/core-js/reflect/get-metadata.js +1 -0
  1773. data/node_modules/babel-runtime/core-js/reflect/get-own-metadata-keys.js +1 -0
  1774. data/node_modules/babel-runtime/core-js/reflect/get-own-metadata.js +1 -0
  1775. data/node_modules/babel-runtime/core-js/reflect/get-own-property-descriptor.js +1 -0
  1776. data/node_modules/babel-runtime/core-js/reflect/get-prototype-of.js +1 -0
  1777. data/node_modules/babel-runtime/core-js/reflect/get.js +1 -0
  1778. data/node_modules/babel-runtime/core-js/reflect/has-metadata.js +1 -0
  1779. data/node_modules/babel-runtime/core-js/reflect/has-own-metadata.js +1 -0
  1780. data/node_modules/babel-runtime/core-js/reflect/has.js +1 -0
  1781. data/node_modules/babel-runtime/core-js/reflect/is-extensible.js +1 -0
  1782. data/node_modules/babel-runtime/core-js/reflect/metadata.js +1 -0
  1783. data/node_modules/babel-runtime/core-js/reflect/own-keys.js +1 -0
  1784. data/node_modules/babel-runtime/core-js/reflect/prevent-extensions.js +1 -0
  1785. data/node_modules/babel-runtime/core-js/reflect/set-prototype-of.js +1 -0
  1786. data/node_modules/babel-runtime/core-js/reflect/set.js +1 -0
  1787. data/node_modules/babel-runtime/core-js/regexp/escape.js +1 -0
  1788. data/node_modules/babel-runtime/core-js/set-immediate.js +1 -0
  1789. data/node_modules/babel-runtime/core-js/set.js +1 -0
  1790. data/node_modules/babel-runtime/core-js/string/at.js +1 -0
  1791. data/node_modules/babel-runtime/core-js/string/code-point-at.js +1 -0
  1792. data/node_modules/babel-runtime/core-js/string/ends-with.js +1 -0
  1793. data/node_modules/babel-runtime/core-js/string/escape-html.js +1 -0
  1794. data/node_modules/babel-runtime/core-js/string/from-code-point.js +1 -0
  1795. data/node_modules/babel-runtime/core-js/string/includes.js +1 -0
  1796. data/node_modules/babel-runtime/core-js/string/pad-end.js +1 -0
  1797. data/node_modules/babel-runtime/core-js/string/pad-left.js +1 -0
  1798. data/node_modules/babel-runtime/core-js/string/pad-right.js +1 -0
  1799. data/node_modules/babel-runtime/core-js/string/pad-start.js +1 -0
  1800. data/node_modules/babel-runtime/core-js/string/raw.js +1 -0
  1801. data/node_modules/babel-runtime/core-js/string/repeat.js +1 -0
  1802. data/node_modules/babel-runtime/core-js/string/starts-with.js +1 -0
  1803. data/node_modules/babel-runtime/core-js/string/trim-end.js +1 -0
  1804. data/node_modules/babel-runtime/core-js/string/trim-left.js +1 -0
  1805. data/node_modules/babel-runtime/core-js/string/trim-right.js +1 -0
  1806. data/node_modules/babel-runtime/core-js/string/trim-start.js +1 -0
  1807. data/node_modules/babel-runtime/core-js/string/trim.js +1 -0
  1808. data/node_modules/babel-runtime/core-js/string/unescape-html.js +1 -0
  1809. data/node_modules/babel-runtime/core-js/symbol.js +1 -0
  1810. data/node_modules/babel-runtime/core-js/symbol/for.js +1 -0
  1811. data/node_modules/babel-runtime/core-js/symbol/has-instance.js +1 -0
  1812. data/node_modules/babel-runtime/core-js/symbol/is-concat-spreadable.js +1 -0
  1813. data/node_modules/babel-runtime/core-js/symbol/iterator.js +1 -0
  1814. data/node_modules/babel-runtime/core-js/symbol/key-for.js +1 -0
  1815. data/node_modules/babel-runtime/core-js/symbol/match.js +1 -0
  1816. data/node_modules/babel-runtime/core-js/symbol/replace.js +1 -0
  1817. data/node_modules/babel-runtime/core-js/symbol/search.js +1 -0
  1818. data/node_modules/babel-runtime/core-js/symbol/species.js +1 -0
  1819. data/node_modules/babel-runtime/core-js/symbol/split.js +1 -0
  1820. data/node_modules/babel-runtime/core-js/symbol/to-primitive.js +1 -0
  1821. data/node_modules/babel-runtime/core-js/symbol/to-string-tag.js +1 -0
  1822. data/node_modules/babel-runtime/core-js/symbol/unscopables.js +1 -0
  1823. data/node_modules/babel-runtime/core-js/system/global.js +1 -0
  1824. data/node_modules/babel-runtime/core-js/weak-map.js +1 -0
  1825. data/node_modules/babel-runtime/core-js/weak-set.js +1 -0
  1826. data/node_modules/babel-runtime/helpers/_async-to-generator.js +1 -0
  1827. data/node_modules/babel-runtime/helpers/_class-call-check.js +1 -0
  1828. data/node_modules/babel-runtime/helpers/_create-class.js +1 -0
  1829. data/node_modules/babel-runtime/helpers/_defaults.js +1 -0
  1830. data/node_modules/babel-runtime/helpers/_define-enumerable-properties.js +1 -0
  1831. data/node_modules/babel-runtime/helpers/_define-property.js +1 -0
  1832. data/node_modules/babel-runtime/helpers/_extends.js +1 -0
  1833. data/node_modules/babel-runtime/helpers/_get.js +1 -0
  1834. data/node_modules/babel-runtime/helpers/_inherits.js +1 -0
  1835. data/node_modules/babel-runtime/helpers/_instanceof.js +1 -0
  1836. data/node_modules/babel-runtime/helpers/_interop-require-default.js +1 -0
  1837. data/node_modules/babel-runtime/helpers/_interop-require-wildcard.js +1 -0
  1838. data/node_modules/babel-runtime/helpers/_jsx.js +1 -0
  1839. data/node_modules/babel-runtime/helpers/_new-arrow-check.js +1 -0
  1840. data/node_modules/babel-runtime/helpers/_object-destructuring-empty.js +1 -0
  1841. data/node_modules/babel-runtime/helpers/_object-without-properties.js +1 -0
  1842. data/node_modules/babel-runtime/helpers/_possible-constructor-return.js +1 -0
  1843. data/node_modules/babel-runtime/helpers/_self-global.js +1 -0
  1844. data/node_modules/babel-runtime/helpers/_set.js +1 -0
  1845. data/node_modules/babel-runtime/helpers/_sliced-to-array-loose.js +1 -0
  1846. data/node_modules/babel-runtime/helpers/_sliced-to-array.js +1 -0
  1847. data/node_modules/babel-runtime/helpers/_tagged-template-literal-loose.js +1 -0
  1848. data/node_modules/babel-runtime/helpers/_tagged-template-literal.js +1 -0
  1849. data/node_modules/babel-runtime/helpers/_temporal-ref.js +1 -0
  1850. data/node_modules/babel-runtime/helpers/_temporal-undefined.js +1 -0
  1851. data/node_modules/babel-runtime/helpers/_to-array.js +1 -0
  1852. data/node_modules/babel-runtime/helpers/_to-consumable-array.js +1 -0
  1853. data/node_modules/babel-runtime/helpers/_typeof.js +1 -0
  1854. data/node_modules/babel-runtime/helpers/async-to-generator.js +33 -0
  1855. data/node_modules/babel-runtime/helpers/asyncToGenerator.js +38 -0
  1856. data/node_modules/babel-runtime/helpers/bind.js +4 -0
  1857. data/node_modules/babel-runtime/helpers/class-call-check.js +9 -0
  1858. data/node_modules/babel-runtime/helpers/classCallCheck.js +9 -0
  1859. data/node_modules/babel-runtime/helpers/create-class.js +24 -0
  1860. data/node_modules/babel-runtime/helpers/create-decorated-class.js +45 -0
  1861. data/node_modules/babel-runtime/helpers/create-decorated-object.js +40 -0
  1862. data/node_modules/babel-runtime/helpers/createClass.js +27 -0
  1863. data/node_modules/babel-runtime/helpers/default-props.js +15 -0
  1864. data/node_modules/babel-runtime/helpers/defaults.js +25 -0
  1865. data/node_modules/babel-runtime/helpers/define-decorated-property-descriptor.js +17 -0
  1866. data/node_modules/babel-runtime/helpers/define-enumerable-properties.js +1 -0
  1867. data/node_modules/babel-runtime/helpers/define-property.js +20 -0
  1868. data/node_modules/babel-runtime/helpers/defineEnumerableProperties.js +20 -0
  1869. data/node_modules/babel-runtime/helpers/defineProperty.js +24 -0
  1870. data/node_modules/babel-runtime/helpers/extends.js +19 -0
  1871. data/node_modules/babel-runtime/helpers/get.js +44 -0
  1872. data/node_modules/babel-runtime/helpers/has-own.js +4 -0
  1873. data/node_modules/babel-runtime/helpers/inherits.js +23 -0
  1874. data/node_modules/babel-runtime/helpers/instanceof.js +13 -0
  1875. data/node_modules/babel-runtime/helpers/interop-export-wildcard.js +9 -0
  1876. data/node_modules/babel-runtime/helpers/interop-require-default.js +9 -0
  1877. data/node_modules/babel-runtime/helpers/interop-require-wildcard.js +20 -0
  1878. data/node_modules/babel-runtime/helpers/interop-require.js +7 -0
  1879. data/node_modules/babel-runtime/helpers/interopRequireDefault.js +9 -0
  1880. data/node_modules/babel-runtime/helpers/interopRequireWildcard.js +20 -0
  1881. data/node_modules/babel-runtime/helpers/jsx.js +56 -0
  1882. data/node_modules/babel-runtime/helpers/new-arrow-check.js +9 -0
  1883. data/node_modules/babel-runtime/helpers/newArrowCheck.js +9 -0
  1884. data/node_modules/babel-runtime/helpers/object-destructuring-empty.js +7 -0
  1885. data/node_modules/babel-runtime/helpers/object-without-properties.js +15 -0
  1886. data/node_modules/babel-runtime/helpers/objectDestructuringEmpty.js +7 -0
  1887. data/node_modules/babel-runtime/helpers/objectWithoutProperties.js +15 -0
  1888. data/node_modules/babel-runtime/helpers/possible-constructor-return.js +1 -0
  1889. data/node_modules/babel-runtime/helpers/possibleConstructorReturn.js +17 -0
  1890. data/node_modules/babel-runtime/helpers/self-global.js +4 -0
  1891. data/node_modules/babel-runtime/helpers/selfGlobal.js +4 -0
  1892. data/node_modules/babel-runtime/helpers/set.js +27 -0
  1893. data/node_modules/babel-runtime/helpers/slice.js +4 -0
  1894. data/node_modules/babel-runtime/helpers/sliced-to-array-loose.js +25 -0
  1895. data/node_modules/babel-runtime/helpers/sliced-to-array.js +45 -0
  1896. data/node_modules/babel-runtime/helpers/slicedToArray.js +51 -0
  1897. data/node_modules/babel-runtime/helpers/slicedToArrayLoose.js +31 -0
  1898. data/node_modules/babel-runtime/helpers/tagged-template-literal-loose.js +8 -0
  1899. data/node_modules/babel-runtime/helpers/tagged-template-literal.js +15 -0
  1900. data/node_modules/babel-runtime/helpers/taggedTemplateLiteral.js +21 -0
  1901. data/node_modules/babel-runtime/helpers/taggedTemplateLiteralLoose.js +8 -0
  1902. data/node_modules/babel-runtime/helpers/temporal-assert-defined.js +11 -0
  1903. data/node_modules/babel-runtime/helpers/temporal-ref.js +1 -0
  1904. data/node_modules/babel-runtime/helpers/temporal-undefined.js +4 -0
  1905. data/node_modules/babel-runtime/helpers/temporalRef.js +11 -0
  1906. data/node_modules/babel-runtime/helpers/temporalUndefined.js +4 -0
  1907. data/node_modules/babel-runtime/helpers/to-array.js +9 -0
  1908. data/node_modules/babel-runtime/helpers/to-consumable-array.js +15 -0
  1909. data/node_modules/babel-runtime/helpers/toArray.js +13 -0
  1910. data/node_modules/babel-runtime/helpers/toConsumableArray.js +21 -0
  1911. data/node_modules/babel-runtime/helpers/typeof-react-element.js +6 -0
  1912. data/node_modules/babel-runtime/helpers/typeof.js +9 -0
  1913. data/node_modules/babel-runtime/package.json +133 -0
  1914. data/node_modules/babel-runtime/regenerator/index.js +33 -0
  1915. data/node_modules/babel-runtime/regenerator/runtime.js +647 -0
  1916. data/node_modules/babel-template/.npmignore +3 -0
  1917. data/node_modules/babel-template/README.md +32 -0
  1918. data/node_modules/babel-template/lib/index.js +145 -0
  1919. data/node_modules/babel-template/package.json +104 -0
  1920. data/node_modules/babel-traverse/.npmignore +3 -0
  1921. data/node_modules/babel-traverse/README.md +1 -0
  1922. data/node_modules/babel-traverse/lib/cache.js +16 -0
  1923. data/node_modules/babel-traverse/lib/context.js +192 -0
  1924. data/node_modules/babel-traverse/lib/hub.js +15 -0
  1925. data/node_modules/babel-traverse/lib/index.js +200 -0
  1926. data/node_modules/babel-traverse/lib/path/ancestry.js +282 -0
  1927. data/node_modules/babel-traverse/lib/path/comments.js +56 -0
  1928. data/node_modules/babel-traverse/lib/path/context.js +284 -0
  1929. data/node_modules/babel-traverse/lib/path/conversion.js +50 -0
  1930. data/node_modules/babel-traverse/lib/path/evaluation.js +336 -0
  1931. data/node_modules/babel-traverse/lib/path/family.js +156 -0
  1932. data/node_modules/babel-traverse/lib/path/index.js +227 -0
  1933. data/node_modules/babel-traverse/lib/path/inference/index.js +134 -0
  1934. data/node_modules/babel-traverse/lib/path/inference/inferer-reference.js +208 -0
  1935. data/node_modules/babel-traverse/lib/path/inference/inferers.js +193 -0
  1936. data/node_modules/babel-traverse/lib/path/introspection.js +477 -0
  1937. data/node_modules/babel-traverse/lib/path/lib/hoister.js +148 -0
  1938. data/node_modules/babel-traverse/lib/path/lib/removal-hooks.js +65 -0
  1939. data/node_modules/babel-traverse/lib/path/lib/virtual-types.js +153 -0
  1940. data/node_modules/babel-traverse/lib/path/modification.js +286 -0
  1941. data/node_modules/babel-traverse/lib/path/removal.js +57 -0
  1942. data/node_modules/babel-traverse/lib/path/replacement.js +275 -0
  1943. data/node_modules/babel-traverse/lib/scope/binding.js +101 -0
  1944. data/node_modules/babel-traverse/lib/scope/index.js +1074 -0
  1945. data/node_modules/babel-traverse/lib/scope/lib/renamer.js +153 -0
  1946. data/node_modules/babel-traverse/lib/visitors.js +321 -0
  1947. data/node_modules/babel-traverse/package.json +110 -0
  1948. data/node_modules/babel-types/.npmignore +3 -0
  1949. data/node_modules/babel-types/README.md +1141 -0
  1950. data/node_modules/babel-types/lib/constants.js +53 -0
  1951. data/node_modules/babel-types/lib/converters.js +344 -0
  1952. data/node_modules/babel-types/lib/definitions/core.js +700 -0
  1953. data/node_modules/babel-types/lib/definitions/es2015.js +347 -0
  1954. data/node_modules/babel-types/lib/definitions/experimental.js +85 -0
  1955. data/node_modules/babel-types/lib/definitions/flow.js +311 -0
  1956. data/node_modules/babel-types/lib/definitions/index.js +229 -0
  1957. data/node_modules/babel-types/lib/definitions/init.js +15 -0
  1958. data/node_modules/babel-types/lib/definitions/jsx.js +137 -0
  1959. data/node_modules/babel-types/lib/definitions/misc.js +21 -0
  1960. data/node_modules/babel-types/lib/flow.js +129 -0
  1961. data/node_modules/babel-types/lib/index.js +544 -0
  1962. data/node_modules/babel-types/lib/react.js +84 -0
  1963. data/node_modules/babel-types/lib/retrievers.js +118 -0
  1964. data/node_modules/babel-types/lib/validators.js +261 -0
  1965. data/node_modules/babel-types/package.json +117 -0
  1966. data/node_modules/babylon/.npmignore +5 -0
  1967. data/node_modules/babylon/AUTHORS +41 -0
  1968. data/node_modules/babylon/LICENSE +19 -0
  1969. data/node_modules/babylon/README.md +77 -0
  1970. data/node_modules/babylon/bin/babylon.js +16 -0
  1971. data/node_modules/babylon/index.js +6264 -0
  1972. data/node_modules/babylon/package.json +222 -0
  1973. data/node_modules/balanced-match/.npmignore +2 -0
  1974. data/node_modules/balanced-match/.travis.yml +3 -0
  1975. data/node_modules/balanced-match/LICENSE.md +21 -0
  1976. data/node_modules/balanced-match/Makefile +6 -0
  1977. data/node_modules/balanced-match/README.md +89 -0
  1978. data/node_modules/balanced-match/example.js +5 -0
  1979. data/node_modules/balanced-match/index.js +50 -0
  1980. data/node_modules/balanced-match/package.json +98 -0
  1981. data/node_modules/balanced-match/test/balanced.js +84 -0
  1982. data/node_modules/brace-expansion/.npmignore +3 -0
  1983. data/node_modules/brace-expansion/README.md +122 -0
  1984. data/node_modules/brace-expansion/example.js +8 -0
  1985. data/node_modules/brace-expansion/index.js +191 -0
  1986. data/node_modules/brace-expansion/package.json +104 -0
  1987. data/node_modules/chalk/index.js +116 -0
  1988. data/node_modules/chalk/license +21 -0
  1989. data/node_modules/chalk/package.json +132 -0
  1990. data/node_modules/chalk/readme.md +213 -0
  1991. data/node_modules/concat-map/.travis.yml +4 -0
  1992. data/node_modules/concat-map/LICENSE +18 -0
  1993. data/node_modules/concat-map/README.markdown +62 -0
  1994. data/node_modules/concat-map/example/map.js +6 -0
  1995. data/node_modules/concat-map/index.js +13 -0
  1996. data/node_modules/concat-map/package.json +109 -0
  1997. data/node_modules/concat-map/test/map.js +39 -0
  1998. data/node_modules/convert-source-map/.npmignore +16 -0
  1999. data/node_modules/convert-source-map/.travis.yml +5 -0
  2000. data/node_modules/convert-source-map/LICENSE +23 -0
  2001. data/node_modules/convert-source-map/README.md +129 -0
  2002. data/node_modules/convert-source-map/example/comment-to-json.js +15 -0
  2003. data/node_modules/convert-source-map/index.js +161 -0
  2004. data/node_modules/convert-source-map/package.json +91 -0
  2005. data/node_modules/convert-source-map/test/comment-regex.js +138 -0
  2006. data/node_modules/convert-source-map/test/convert-source-map.js +213 -0
  2007. data/node_modules/convert-source-map/test/fixtures/map-file-comment-double-slash.css +14 -0
  2008. data/node_modules/convert-source-map/test/fixtures/map-file-comment-inline.css +14 -0
  2009. data/node_modules/convert-source-map/test/fixtures/map-file-comment.css +14 -0
  2010. data/node_modules/convert-source-map/test/fixtures/map-file-comment.css.map +6 -0
  2011. data/node_modules/convert-source-map/test/map-file-comment.js +70 -0
  2012. data/node_modules/core-js/CHANGELOG.md +406 -0
  2013. data/node_modules/core-js/Gruntfile.js +2 -0
  2014. data/node_modules/core-js/LICENSE +19 -0
  2015. data/node_modules/core-js/README.md +1289 -0
  2016. data/node_modules/core-js/bower.json +34 -0
  2017. data/node_modules/core-js/build/Gruntfile.ls +84 -0
  2018. data/node_modules/core-js/build/build.ls +218 -0
  2019. data/node_modules/core-js/build/config.js +8 -0
  2020. data/node_modules/core-js/build/index.js +98 -0
  2021. data/node_modules/core-js/client/core.js +4904 -0
  2022. data/node_modules/core-js/client/core.min.js +9 -0
  2023. data/node_modules/core-js/client/core.min.js.map +1 -0
  2024. data/node_modules/core-js/client/library.js +4544 -0
  2025. data/node_modules/core-js/client/library.min.js +9 -0
  2026. data/node_modules/core-js/client/library.min.js.map +1 -0
  2027. data/node_modules/core-js/client/shim.js +4545 -0
  2028. data/node_modules/core-js/client/shim.min.js +9 -0
  2029. data/node_modules/core-js/client/shim.min.js.map +1 -0
  2030. data/node_modules/core-js/core/_.js +2 -0
  2031. data/node_modules/core-js/core/delay.js +2 -0
  2032. data/node_modules/core-js/core/dict.js +2 -0
  2033. data/node_modules/core-js/core/function.js +2 -0
  2034. data/node_modules/core-js/core/index.js +15 -0
  2035. data/node_modules/core-js/core/log.js +2 -0
  2036. data/node_modules/core-js/core/number.js +2 -0
  2037. data/node_modules/core-js/core/object.js +5 -0
  2038. data/node_modules/core-js/core/string.js +3 -0
  2039. data/node_modules/core-js/es5/index.js +9 -0
  2040. data/node_modules/core-js/es6/array.js +10 -0
  2041. data/node_modules/core-js/es6/function.js +3 -0
  2042. data/node_modules/core-js/es6/index.js +87 -0
  2043. data/node_modules/core-js/es6/map.js +5 -0
  2044. data/node_modules/core-js/es6/math.js +18 -0
  2045. data/node_modules/core-js/es6/number.js +11 -0
  2046. data/node_modules/core-js/es6/object.js +17 -0
  2047. data/node_modules/core-js/es6/promise.js +5 -0
  2048. data/node_modules/core-js/es6/reflect.js +15 -0
  2049. data/node_modules/core-js/es6/regexp.js +7 -0
  2050. data/node_modules/core-js/es6/set.js +5 -0
  2051. data/node_modules/core-js/es6/string.js +14 -0
  2052. data/node_modules/core-js/es6/symbol.js +3 -0
  2053. data/node_modules/core-js/es6/weak-map.js +4 -0
  2054. data/node_modules/core-js/es6/weak-set.js +4 -0
  2055. data/node_modules/core-js/es7/array.js +2 -0
  2056. data/node_modules/core-js/es7/index.js +13 -0
  2057. data/node_modules/core-js/es7/map.js +2 -0
  2058. data/node_modules/core-js/es7/object.js +4 -0
  2059. data/node_modules/core-js/es7/regexp.js +2 -0
  2060. data/node_modules/core-js/es7/set.js +2 -0
  2061. data/node_modules/core-js/es7/string.js +6 -0
  2062. data/node_modules/core-js/fn/_.js +2 -0
  2063. data/node_modules/core-js/fn/array/concat.js +2 -0
  2064. data/node_modules/core-js/fn/array/copy-within.js +2 -0
  2065. data/node_modules/core-js/fn/array/entries.js +2 -0
  2066. data/node_modules/core-js/fn/array/every.js +2 -0
  2067. data/node_modules/core-js/fn/array/fill.js +2 -0
  2068. data/node_modules/core-js/fn/array/filter.js +2 -0
  2069. data/node_modules/core-js/fn/array/find-index.js +2 -0
  2070. data/node_modules/core-js/fn/array/find.js +2 -0
  2071. data/node_modules/core-js/fn/array/for-each.js +2 -0
  2072. data/node_modules/core-js/fn/array/from.js +3 -0
  2073. data/node_modules/core-js/fn/array/includes.js +2 -0
  2074. data/node_modules/core-js/fn/array/index-of.js +2 -0
  2075. data/node_modules/core-js/fn/array/index.js +12 -0
  2076. data/node_modules/core-js/fn/array/iterator.js +2 -0
  2077. data/node_modules/core-js/fn/array/join.js +2 -0
  2078. data/node_modules/core-js/fn/array/keys.js +2 -0
  2079. data/node_modules/core-js/fn/array/last-index-of.js +2 -0
  2080. data/node_modules/core-js/fn/array/map.js +2 -0
  2081. data/node_modules/core-js/fn/array/of.js +2 -0
  2082. data/node_modules/core-js/fn/array/pop.js +2 -0
  2083. data/node_modules/core-js/fn/array/push.js +2 -0
  2084. data/node_modules/core-js/fn/array/reduce-right.js +2 -0
  2085. data/node_modules/core-js/fn/array/reduce.js +2 -0
  2086. data/node_modules/core-js/fn/array/reverse.js +2 -0
  2087. data/node_modules/core-js/fn/array/shift.js +2 -0
  2088. data/node_modules/core-js/fn/array/slice.js +2 -0
  2089. data/node_modules/core-js/fn/array/some.js +2 -0
  2090. data/node_modules/core-js/fn/array/sort.js +2 -0
  2091. data/node_modules/core-js/fn/array/splice.js +2 -0
  2092. data/node_modules/core-js/fn/array/unshift.js +2 -0
  2093. data/node_modules/core-js/fn/array/values.js +2 -0
  2094. data/node_modules/core-js/fn/clear-immediate.js +2 -0
  2095. data/node_modules/core-js/fn/delay.js +2 -0
  2096. data/node_modules/core-js/fn/dict.js +2 -0
  2097. data/node_modules/core-js/fn/function/has-instance.js +2 -0
  2098. data/node_modules/core-js/fn/function/index.js +4 -0
  2099. data/node_modules/core-js/fn/function/name.js +1 -0
  2100. data/node_modules/core-js/fn/function/part.js +2 -0
  2101. data/node_modules/core-js/fn/get-iterator-method.js +3 -0
  2102. data/node_modules/core-js/fn/get-iterator.js +3 -0
  2103. data/node_modules/core-js/fn/html-collection/index.js +2 -0
  2104. data/node_modules/core-js/fn/html-collection/iterator.js +2 -0
  2105. data/node_modules/core-js/fn/is-iterable.js +3 -0
  2106. data/node_modules/core-js/fn/json/stringify.js +4 -0
  2107. data/node_modules/core-js/fn/log.js +2 -0
  2108. data/node_modules/core-js/fn/map.js +6 -0
  2109. data/node_modules/core-js/fn/math/acosh.js +2 -0
  2110. data/node_modules/core-js/fn/math/asinh.js +2 -0
  2111. data/node_modules/core-js/fn/math/atanh.js +2 -0
  2112. data/node_modules/core-js/fn/math/cbrt.js +2 -0
  2113. data/node_modules/core-js/fn/math/clz32.js +2 -0
  2114. data/node_modules/core-js/fn/math/cosh.js +2 -0
  2115. data/node_modules/core-js/fn/math/expm1.js +2 -0
  2116. data/node_modules/core-js/fn/math/fround.js +2 -0
  2117. data/node_modules/core-js/fn/math/hypot.js +2 -0
  2118. data/node_modules/core-js/fn/math/imul.js +2 -0
  2119. data/node_modules/core-js/fn/math/index.js +18 -0
  2120. data/node_modules/core-js/fn/math/log10.js +2 -0
  2121. data/node_modules/core-js/fn/math/log1p.js +2 -0
  2122. data/node_modules/core-js/fn/math/log2.js +2 -0
  2123. data/node_modules/core-js/fn/math/sign.js +2 -0
  2124. data/node_modules/core-js/fn/math/sinh.js +2 -0
  2125. data/node_modules/core-js/fn/math/tanh.js +2 -0
  2126. data/node_modules/core-js/fn/math/trunc.js +2 -0
  2127. data/node_modules/core-js/fn/node-list/index.js +2 -0
  2128. data/node_modules/core-js/fn/node-list/iterator.js +2 -0
  2129. data/node_modules/core-js/fn/number/epsilon.js +2 -0
  2130. data/node_modules/core-js/fn/number/index.js +12 -0
  2131. data/node_modules/core-js/fn/number/is-finite.js +2 -0
  2132. data/node_modules/core-js/fn/number/is-integer.js +2 -0
  2133. data/node_modules/core-js/fn/number/is-nan.js +2 -0
  2134. data/node_modules/core-js/fn/number/is-safe-integer.js +2 -0
  2135. data/node_modules/core-js/fn/number/iterator.js +5 -0
  2136. data/node_modules/core-js/fn/number/max-safe-integer.js +2 -0
  2137. data/node_modules/core-js/fn/number/min-safe-integer.js +2 -0
  2138. data/node_modules/core-js/fn/number/parse-float.js +2 -0
  2139. data/node_modules/core-js/fn/number/parse-int.js +2 -0
  2140. data/node_modules/core-js/fn/object/assign.js +2 -0
  2141. data/node_modules/core-js/fn/object/classof.js +2 -0
  2142. data/node_modules/core-js/fn/object/create.js +4 -0
  2143. data/node_modules/core-js/fn/object/define-properties.js +4 -0
  2144. data/node_modules/core-js/fn/object/define-property.js +4 -0
  2145. data/node_modules/core-js/fn/object/define.js +2 -0
  2146. data/node_modules/core-js/fn/object/entries.js +2 -0
  2147. data/node_modules/core-js/fn/object/freeze.js +2 -0
  2148. data/node_modules/core-js/fn/object/get-own-property-descriptor.js +5 -0
  2149. data/node_modules/core-js/fn/object/get-own-property-descriptors.js +2 -0
  2150. data/node_modules/core-js/fn/object/get-own-property-names.js +5 -0
  2151. data/node_modules/core-js/fn/object/get-own-property-symbols.js +2 -0
  2152. data/node_modules/core-js/fn/object/get-prototype-of.js +2 -0
  2153. data/node_modules/core-js/fn/object/index.js +23 -0
  2154. data/node_modules/core-js/fn/object/is-extensible.js +2 -0
  2155. data/node_modules/core-js/fn/object/is-frozen.js +2 -0
  2156. data/node_modules/core-js/fn/object/is-object.js +2 -0
  2157. data/node_modules/core-js/fn/object/is-sealed.js +2 -0
  2158. data/node_modules/core-js/fn/object/is.js +2 -0
  2159. data/node_modules/core-js/fn/object/keys.js +2 -0
  2160. data/node_modules/core-js/fn/object/make.js +2 -0
  2161. data/node_modules/core-js/fn/object/prevent-extensions.js +2 -0
  2162. data/node_modules/core-js/fn/object/seal.js +2 -0
  2163. data/node_modules/core-js/fn/object/set-prototype-of.js +2 -0
  2164. data/node_modules/core-js/fn/object/values.js +2 -0
  2165. data/node_modules/core-js/fn/promise.js +5 -0
  2166. data/node_modules/core-js/fn/reflect/apply.js +2 -0
  2167. data/node_modules/core-js/fn/reflect/construct.js +2 -0
  2168. data/node_modules/core-js/fn/reflect/define-property.js +2 -0
  2169. data/node_modules/core-js/fn/reflect/delete-property.js +2 -0
  2170. data/node_modules/core-js/fn/reflect/enumerate.js +2 -0
  2171. data/node_modules/core-js/fn/reflect/get-own-property-descriptor.js +2 -0
  2172. data/node_modules/core-js/fn/reflect/get-prototype-of.js +2 -0
  2173. data/node_modules/core-js/fn/reflect/get.js +2 -0
  2174. data/node_modules/core-js/fn/reflect/has.js +2 -0
  2175. data/node_modules/core-js/fn/reflect/index.js +15 -0
  2176. data/node_modules/core-js/fn/reflect/is-extensible.js +2 -0
  2177. data/node_modules/core-js/fn/reflect/own-keys.js +2 -0
  2178. data/node_modules/core-js/fn/reflect/prevent-extensions.js +2 -0
  2179. data/node_modules/core-js/fn/reflect/set-prototype-of.js +2 -0
  2180. data/node_modules/core-js/fn/reflect/set.js +2 -0
  2181. data/node_modules/core-js/fn/regexp/escape.js +2 -0
  2182. data/node_modules/core-js/fn/regexp/index.js +8 -0
  2183. data/node_modules/core-js/fn/set-immediate.js +2 -0
  2184. data/node_modules/core-js/fn/set-interval.js +2 -0
  2185. data/node_modules/core-js/fn/set-timeout.js +2 -0
  2186. data/node_modules/core-js/fn/set.js +6 -0
  2187. data/node_modules/core-js/fn/string/at.js +2 -0
  2188. data/node_modules/core-js/fn/string/code-point-at.js +2 -0
  2189. data/node_modules/core-js/fn/string/ends-with.js +2 -0
  2190. data/node_modules/core-js/fn/string/escape-html.js +2 -0
  2191. data/node_modules/core-js/fn/string/from-code-point.js +2 -0
  2192. data/node_modules/core-js/fn/string/includes.js +2 -0
  2193. data/node_modules/core-js/fn/string/index.js +21 -0
  2194. data/node_modules/core-js/fn/string/iterator.js +5 -0
  2195. data/node_modules/core-js/fn/string/pad-left.js +2 -0
  2196. data/node_modules/core-js/fn/string/pad-right.js +2 -0
  2197. data/node_modules/core-js/fn/string/raw.js +2 -0
  2198. data/node_modules/core-js/fn/string/repeat.js +2 -0
  2199. data/node_modules/core-js/fn/string/starts-with.js +2 -0
  2200. data/node_modules/core-js/fn/string/trim-left.js +2 -0
  2201. data/node_modules/core-js/fn/string/trim-right.js +2 -0
  2202. data/node_modules/core-js/fn/string/trim.js +2 -0
  2203. data/node_modules/core-js/fn/string/unescape-html.js +2 -0
  2204. data/node_modules/core-js/fn/symbol/for.js +2 -0
  2205. data/node_modules/core-js/fn/symbol/has-instance.js +1 -0
  2206. data/node_modules/core-js/fn/symbol/index.js +3 -0
  2207. data/node_modules/core-js/fn/symbol/is-concat-spreadable.js +1 -0
  2208. data/node_modules/core-js/fn/symbol/iterator.js +3 -0
  2209. data/node_modules/core-js/fn/symbol/key-for.js +2 -0
  2210. data/node_modules/core-js/fn/symbol/match.js +2 -0
  2211. data/node_modules/core-js/fn/symbol/replace.js +2 -0
  2212. data/node_modules/core-js/fn/symbol/search.js +2 -0
  2213. data/node_modules/core-js/fn/symbol/species.js +1 -0
  2214. data/node_modules/core-js/fn/symbol/split.js +2 -0
  2215. data/node_modules/core-js/fn/symbol/to-primitive.js +1 -0
  2216. data/node_modules/core-js/fn/symbol/to-string-tag.js +2 -0
  2217. data/node_modules/core-js/fn/symbol/unscopables.js +1 -0
  2218. data/node_modules/core-js/fn/weak-map.js +4 -0
  2219. data/node_modules/core-js/fn/weak-set.js +4 -0
  2220. data/node_modules/core-js/index.js +16 -0
  2221. data/node_modules/core-js/js/array.js +2 -0
  2222. data/node_modules/core-js/js/index.js +2 -0
  2223. data/node_modules/core-js/library/core/_.js +2 -0
  2224. data/node_modules/core-js/library/core/delay.js +2 -0
  2225. data/node_modules/core-js/library/core/dict.js +2 -0
  2226. data/node_modules/core-js/library/core/function.js +2 -0
  2227. data/node_modules/core-js/library/core/index.js +15 -0
  2228. data/node_modules/core-js/library/core/log.js +2 -0
  2229. data/node_modules/core-js/library/core/number.js +2 -0
  2230. data/node_modules/core-js/library/core/object.js +5 -0
  2231. data/node_modules/core-js/library/core/string.js +3 -0
  2232. data/node_modules/core-js/library/es5/index.js +9 -0
  2233. data/node_modules/core-js/library/es6/array.js +10 -0
  2234. data/node_modules/core-js/library/es6/function.js +3 -0
  2235. data/node_modules/core-js/library/es6/index.js +87 -0
  2236. data/node_modules/core-js/library/es6/map.js +5 -0
  2237. data/node_modules/core-js/library/es6/math.js +18 -0
  2238. data/node_modules/core-js/library/es6/number.js +11 -0
  2239. data/node_modules/core-js/library/es6/object.js +17 -0
  2240. data/node_modules/core-js/library/es6/promise.js +5 -0
  2241. data/node_modules/core-js/library/es6/reflect.js +15 -0
  2242. data/node_modules/core-js/library/es6/regexp.js +7 -0
  2243. data/node_modules/core-js/library/es6/set.js +5 -0
  2244. data/node_modules/core-js/library/es6/string.js +14 -0
  2245. data/node_modules/core-js/library/es6/symbol.js +3 -0
  2246. data/node_modules/core-js/library/es6/weak-map.js +4 -0
  2247. data/node_modules/core-js/library/es6/weak-set.js +4 -0
  2248. data/node_modules/core-js/library/es7/array.js +2 -0
  2249. data/node_modules/core-js/library/es7/index.js +13 -0
  2250. data/node_modules/core-js/library/es7/map.js +2 -0
  2251. data/node_modules/core-js/library/es7/object.js +4 -0
  2252. data/node_modules/core-js/library/es7/regexp.js +2 -0
  2253. data/node_modules/core-js/library/es7/set.js +2 -0
  2254. data/node_modules/core-js/library/es7/string.js +6 -0
  2255. data/node_modules/core-js/library/fn/_.js +2 -0
  2256. data/node_modules/core-js/library/fn/array/concat.js +2 -0
  2257. data/node_modules/core-js/library/fn/array/copy-within.js +2 -0
  2258. data/node_modules/core-js/library/fn/array/entries.js +2 -0
  2259. data/node_modules/core-js/library/fn/array/every.js +2 -0
  2260. data/node_modules/core-js/library/fn/array/fill.js +2 -0
  2261. data/node_modules/core-js/library/fn/array/filter.js +2 -0
  2262. data/node_modules/core-js/library/fn/array/find-index.js +2 -0
  2263. data/node_modules/core-js/library/fn/array/find.js +2 -0
  2264. data/node_modules/core-js/library/fn/array/for-each.js +2 -0
  2265. data/node_modules/core-js/library/fn/array/from.js +3 -0
  2266. data/node_modules/core-js/library/fn/array/includes.js +2 -0
  2267. data/node_modules/core-js/library/fn/array/index-of.js +2 -0
  2268. data/node_modules/core-js/library/fn/array/index.js +12 -0
  2269. data/node_modules/core-js/library/fn/array/iterator.js +2 -0
  2270. data/node_modules/core-js/library/fn/array/join.js +2 -0
  2271. data/node_modules/core-js/library/fn/array/keys.js +2 -0
  2272. data/node_modules/core-js/library/fn/array/last-index-of.js +2 -0
  2273. data/node_modules/core-js/library/fn/array/map.js +2 -0
  2274. data/node_modules/core-js/library/fn/array/of.js +2 -0
  2275. data/node_modules/core-js/library/fn/array/pop.js +2 -0
  2276. data/node_modules/core-js/library/fn/array/push.js +2 -0
  2277. data/node_modules/core-js/library/fn/array/reduce-right.js +2 -0
  2278. data/node_modules/core-js/library/fn/array/reduce.js +2 -0
  2279. data/node_modules/core-js/library/fn/array/reverse.js +2 -0
  2280. data/node_modules/core-js/library/fn/array/shift.js +2 -0
  2281. data/node_modules/core-js/library/fn/array/slice.js +2 -0
  2282. data/node_modules/core-js/library/fn/array/some.js +2 -0
  2283. data/node_modules/core-js/library/fn/array/sort.js +2 -0
  2284. data/node_modules/core-js/library/fn/array/splice.js +2 -0
  2285. data/node_modules/core-js/library/fn/array/unshift.js +2 -0
  2286. data/node_modules/core-js/library/fn/array/values.js +2 -0
  2287. data/node_modules/core-js/library/fn/clear-immediate.js +2 -0
  2288. data/node_modules/core-js/library/fn/delay.js +2 -0
  2289. data/node_modules/core-js/library/fn/dict.js +2 -0
  2290. data/node_modules/core-js/library/fn/function/has-instance.js +2 -0
  2291. data/node_modules/core-js/library/fn/function/index.js +4 -0
  2292. data/node_modules/core-js/library/fn/function/name.js +1 -0
  2293. data/node_modules/core-js/library/fn/function/part.js +2 -0
  2294. data/node_modules/core-js/library/fn/get-iterator-method.js +3 -0
  2295. data/node_modules/core-js/library/fn/get-iterator.js +3 -0
  2296. data/node_modules/core-js/library/fn/html-collection/index.js +2 -0
  2297. data/node_modules/core-js/library/fn/html-collection/iterator.js +2 -0
  2298. data/node_modules/core-js/library/fn/is-iterable.js +3 -0
  2299. data/node_modules/core-js/library/fn/json/stringify.js +4 -0
  2300. data/node_modules/core-js/library/fn/log.js +2 -0
  2301. data/node_modules/core-js/library/fn/map.js +6 -0
  2302. data/node_modules/core-js/library/fn/math/acosh.js +2 -0
  2303. data/node_modules/core-js/library/fn/math/asinh.js +2 -0
  2304. data/node_modules/core-js/library/fn/math/atanh.js +2 -0
  2305. data/node_modules/core-js/library/fn/math/cbrt.js +2 -0
  2306. data/node_modules/core-js/library/fn/math/clz32.js +2 -0
  2307. data/node_modules/core-js/library/fn/math/cosh.js +2 -0
  2308. data/node_modules/core-js/library/fn/math/expm1.js +2 -0
  2309. data/node_modules/core-js/library/fn/math/fround.js +2 -0
  2310. data/node_modules/core-js/library/fn/math/hypot.js +2 -0
  2311. data/node_modules/core-js/library/fn/math/imul.js +2 -0
  2312. data/node_modules/core-js/library/fn/math/index.js +18 -0
  2313. data/node_modules/core-js/library/fn/math/log10.js +2 -0
  2314. data/node_modules/core-js/library/fn/math/log1p.js +2 -0
  2315. data/node_modules/core-js/library/fn/math/log2.js +2 -0
  2316. data/node_modules/core-js/library/fn/math/sign.js +2 -0
  2317. data/node_modules/core-js/library/fn/math/sinh.js +2 -0
  2318. data/node_modules/core-js/library/fn/math/tanh.js +2 -0
  2319. data/node_modules/core-js/library/fn/math/trunc.js +2 -0
  2320. data/node_modules/core-js/library/fn/node-list/index.js +2 -0
  2321. data/node_modules/core-js/library/fn/node-list/iterator.js +2 -0
  2322. data/node_modules/core-js/library/fn/number/epsilon.js +2 -0
  2323. data/node_modules/core-js/library/fn/number/index.js +12 -0
  2324. data/node_modules/core-js/library/fn/number/is-finite.js +2 -0
  2325. data/node_modules/core-js/library/fn/number/is-integer.js +2 -0
  2326. data/node_modules/core-js/library/fn/number/is-nan.js +2 -0
  2327. data/node_modules/core-js/library/fn/number/is-safe-integer.js +2 -0
  2328. data/node_modules/core-js/library/fn/number/iterator.js +5 -0
  2329. data/node_modules/core-js/library/fn/number/max-safe-integer.js +2 -0
  2330. data/node_modules/core-js/library/fn/number/min-safe-integer.js +2 -0
  2331. data/node_modules/core-js/library/fn/number/parse-float.js +2 -0
  2332. data/node_modules/core-js/library/fn/number/parse-int.js +2 -0
  2333. data/node_modules/core-js/library/fn/object/assign.js +2 -0
  2334. data/node_modules/core-js/library/fn/object/classof.js +2 -0
  2335. data/node_modules/core-js/library/fn/object/create.js +4 -0
  2336. data/node_modules/core-js/library/fn/object/define-properties.js +4 -0
  2337. data/node_modules/core-js/library/fn/object/define-property.js +4 -0
  2338. data/node_modules/core-js/library/fn/object/define.js +2 -0
  2339. data/node_modules/core-js/library/fn/object/entries.js +2 -0
  2340. data/node_modules/core-js/library/fn/object/freeze.js +2 -0
  2341. data/node_modules/core-js/library/fn/object/get-own-property-descriptor.js +5 -0
  2342. data/node_modules/core-js/library/fn/object/get-own-property-descriptors.js +2 -0
  2343. data/node_modules/core-js/library/fn/object/get-own-property-names.js +5 -0
  2344. data/node_modules/core-js/library/fn/object/get-own-property-symbols.js +2 -0
  2345. data/node_modules/core-js/library/fn/object/get-prototype-of.js +2 -0
  2346. data/node_modules/core-js/library/fn/object/index.js +23 -0
  2347. data/node_modules/core-js/library/fn/object/is-extensible.js +2 -0
  2348. data/node_modules/core-js/library/fn/object/is-frozen.js +2 -0
  2349. data/node_modules/core-js/library/fn/object/is-object.js +2 -0
  2350. data/node_modules/core-js/library/fn/object/is-sealed.js +2 -0
  2351. data/node_modules/core-js/library/fn/object/is.js +2 -0
  2352. data/node_modules/core-js/library/fn/object/keys.js +2 -0
  2353. data/node_modules/core-js/library/fn/object/make.js +2 -0
  2354. data/node_modules/core-js/library/fn/object/prevent-extensions.js +2 -0
  2355. data/node_modules/core-js/library/fn/object/seal.js +2 -0
  2356. data/node_modules/core-js/library/fn/object/set-prototype-of.js +2 -0
  2357. data/node_modules/core-js/library/fn/object/values.js +2 -0
  2358. data/node_modules/core-js/library/fn/promise.js +5 -0
  2359. data/node_modules/core-js/library/fn/reflect/apply.js +2 -0
  2360. data/node_modules/core-js/library/fn/reflect/construct.js +2 -0
  2361. data/node_modules/core-js/library/fn/reflect/define-property.js +2 -0
  2362. data/node_modules/core-js/library/fn/reflect/delete-property.js +2 -0
  2363. data/node_modules/core-js/library/fn/reflect/enumerate.js +2 -0
  2364. data/node_modules/core-js/library/fn/reflect/get-own-property-descriptor.js +2 -0
  2365. data/node_modules/core-js/library/fn/reflect/get-prototype-of.js +2 -0
  2366. data/node_modules/core-js/library/fn/reflect/get.js +2 -0
  2367. data/node_modules/core-js/library/fn/reflect/has.js +2 -0
  2368. data/node_modules/core-js/library/fn/reflect/index.js +15 -0
  2369. data/node_modules/core-js/library/fn/reflect/is-extensible.js +2 -0
  2370. data/node_modules/core-js/library/fn/reflect/own-keys.js +2 -0
  2371. data/node_modules/core-js/library/fn/reflect/prevent-extensions.js +2 -0
  2372. data/node_modules/core-js/library/fn/reflect/set-prototype-of.js +2 -0
  2373. data/node_modules/core-js/library/fn/reflect/set.js +2 -0
  2374. data/node_modules/core-js/library/fn/regexp/escape.js +2 -0
  2375. data/node_modules/core-js/library/fn/regexp/index.js +8 -0
  2376. data/node_modules/core-js/library/fn/set-immediate.js +2 -0
  2377. data/node_modules/core-js/library/fn/set-interval.js +2 -0
  2378. data/node_modules/core-js/library/fn/set-timeout.js +2 -0
  2379. data/node_modules/core-js/library/fn/set.js +6 -0
  2380. data/node_modules/core-js/library/fn/string/at.js +2 -0
  2381. data/node_modules/core-js/library/fn/string/code-point-at.js +2 -0
  2382. data/node_modules/core-js/library/fn/string/ends-with.js +2 -0
  2383. data/node_modules/core-js/library/fn/string/escape-html.js +2 -0
  2384. data/node_modules/core-js/library/fn/string/from-code-point.js +2 -0
  2385. data/node_modules/core-js/library/fn/string/includes.js +2 -0
  2386. data/node_modules/core-js/library/fn/string/index.js +21 -0
  2387. data/node_modules/core-js/library/fn/string/iterator.js +5 -0
  2388. data/node_modules/core-js/library/fn/string/pad-left.js +2 -0
  2389. data/node_modules/core-js/library/fn/string/pad-right.js +2 -0
  2390. data/node_modules/core-js/library/fn/string/raw.js +2 -0
  2391. data/node_modules/core-js/library/fn/string/repeat.js +2 -0
  2392. data/node_modules/core-js/library/fn/string/starts-with.js +2 -0
  2393. data/node_modules/core-js/library/fn/string/trim-left.js +2 -0
  2394. data/node_modules/core-js/library/fn/string/trim-right.js +2 -0
  2395. data/node_modules/core-js/library/fn/string/trim.js +2 -0
  2396. data/node_modules/core-js/library/fn/string/unescape-html.js +2 -0
  2397. data/node_modules/core-js/library/fn/symbol/for.js +2 -0
  2398. data/node_modules/core-js/library/fn/symbol/has-instance.js +1 -0
  2399. data/node_modules/core-js/library/fn/symbol/index.js +3 -0
  2400. data/node_modules/core-js/library/fn/symbol/is-concat-spreadable.js +1 -0
  2401. data/node_modules/core-js/library/fn/symbol/iterator.js +3 -0
  2402. data/node_modules/core-js/library/fn/symbol/key-for.js +2 -0
  2403. data/node_modules/core-js/library/fn/symbol/match.js +2 -0
  2404. data/node_modules/core-js/library/fn/symbol/replace.js +2 -0
  2405. data/node_modules/core-js/library/fn/symbol/search.js +2 -0
  2406. data/node_modules/core-js/library/fn/symbol/species.js +1 -0
  2407. data/node_modules/core-js/library/fn/symbol/split.js +2 -0
  2408. data/node_modules/core-js/library/fn/symbol/to-primitive.js +1 -0
  2409. data/node_modules/core-js/library/fn/symbol/to-string-tag.js +2 -0
  2410. data/node_modules/core-js/library/fn/symbol/unscopables.js +1 -0
  2411. data/node_modules/core-js/library/fn/weak-map.js +4 -0
  2412. data/node_modules/core-js/library/fn/weak-set.js +4 -0
  2413. data/node_modules/core-js/library/index.js +16 -0
  2414. data/node_modules/core-js/library/js/array.js +2 -0
  2415. data/node_modules/core-js/library/js/index.js +2 -0
  2416. data/node_modules/core-js/library/modules/$.a-function.js +4 -0
  2417. data/node_modules/core-js/library/modules/$.add-to-unscopables.js +1 -0
  2418. data/node_modules/core-js/library/modules/$.an-object.js +5 -0
  2419. data/node_modules/core-js/library/modules/$.array-copy-within.js +27 -0
  2420. data/node_modules/core-js/library/modules/$.array-fill.js +16 -0
  2421. data/node_modules/core-js/library/modules/$.array-includes.js +21 -0
  2422. data/node_modules/core-js/library/modules/$.array-methods.js +43 -0
  2423. data/node_modules/core-js/library/modules/$.array-species-create.js +16 -0
  2424. data/node_modules/core-js/library/modules/$.buffer.js +288 -0
  2425. data/node_modules/core-js/library/modules/$.classof.js +16 -0
  2426. data/node_modules/core-js/library/modules/$.cof.js +5 -0
  2427. data/node_modules/core-js/library/modules/$.collection-strong.js +159 -0
  2428. data/node_modules/core-js/library/modules/$.collection-to-json.js +11 -0
  2429. data/node_modules/core-js/library/modules/$.collection-weak.js +86 -0
  2430. data/node_modules/core-js/library/modules/$.collection.js +55 -0
  2431. data/node_modules/core-js/library/modules/$.core.js +2 -0
  2432. data/node_modules/core-js/library/modules/$.ctx.js +20 -0
  2433. data/node_modules/core-js/library/modules/$.defined.js +5 -0
  2434. data/node_modules/core-js/library/modules/$.descriptors.js +4 -0
  2435. data/node_modules/core-js/library/modules/$.dom-create.js +7 -0
  2436. data/node_modules/core-js/library/modules/$.enum-keys.js +14 -0
  2437. data/node_modules/core-js/library/modules/$.export.js +46 -0
  2438. data/node_modules/core-js/library/modules/$.fails-is-regexp.js +12 -0
  2439. data/node_modules/core-js/library/modules/$.fails.js +7 -0
  2440. data/node_modules/core-js/library/modules/$.fix-re-wks.js +26 -0
  2441. data/node_modules/core-js/library/modules/$.flags.js +13 -0
  2442. data/node_modules/core-js/library/modules/$.for-of.js +19 -0
  2443. data/node_modules/core-js/library/modules/$.get-names.js +20 -0
  2444. data/node_modules/core-js/library/modules/$.global.js +4 -0
  2445. data/node_modules/core-js/library/modules/$.has.js +4 -0
  2446. data/node_modules/core-js/library/modules/$.hide.js +8 -0
  2447. data/node_modules/core-js/library/modules/$.html.js +1 -0
  2448. data/node_modules/core-js/library/modules/$.invoke.js +16 -0
  2449. data/node_modules/core-js/library/modules/$.iobject.js +5 -0
  2450. data/node_modules/core-js/library/modules/$.is-array-iter.js +8 -0
  2451. data/node_modules/core-js/library/modules/$.is-array.js +5 -0
  2452. data/node_modules/core-js/library/modules/$.is-integer.js +6 -0
  2453. data/node_modules/core-js/library/modules/$.is-object.js +3 -0
  2454. data/node_modules/core-js/library/modules/$.is-regexp.js +8 -0
  2455. data/node_modules/core-js/library/modules/$.iter-call.js +12 -0
  2456. data/node_modules/core-js/library/modules/$.iter-create.js +13 -0
  2457. data/node_modules/core-js/library/modules/$.iter-define.js +66 -0
  2458. data/node_modules/core-js/library/modules/$.iter-detect.js +21 -0
  2459. data/node_modules/core-js/library/modules/$.iter-step.js +3 -0
  2460. data/node_modules/core-js/library/modules/$.iterators.js +1 -0
  2461. data/node_modules/core-js/library/modules/$.js +13 -0
  2462. data/node_modules/core-js/library/modules/$.keyof.js +10 -0
  2463. data/node_modules/core-js/library/modules/$.library.js +1 -0
  2464. data/node_modules/core-js/library/modules/$.math-expm1.js +4 -0
  2465. data/node_modules/core-js/library/modules/$.math-log1p.js +4 -0
  2466. data/node_modules/core-js/library/modules/$.math-sign.js +4 -0
  2467. data/node_modules/core-js/library/modules/$.microtask.js +64 -0
  2468. data/node_modules/core-js/library/modules/$.object-assign.js +33 -0
  2469. data/node_modules/core-js/library/modules/$.object-define.js +11 -0
  2470. data/node_modules/core-js/library/modules/$.object-sap.js +10 -0
  2471. data/node_modules/core-js/library/modules/$.object-to-array.js +16 -0
  2472. data/node_modules/core-js/library/modules/$.own-keys.js +9 -0
  2473. data/node_modules/core-js/library/modules/$.partial.js +24 -0
  2474. data/node_modules/core-js/library/modules/$.path.js +1 -0
  2475. data/node_modules/core-js/library/modules/$.property-desc.js +8 -0
  2476. data/node_modules/core-js/library/modules/$.redefine-all.js +5 -0
  2477. data/node_modules/core-js/library/modules/$.redefine.js +1 -0
  2478. data/node_modules/core-js/library/modules/$.replacer.js +8 -0
  2479. data/node_modules/core-js/library/modules/$.same-value.js +4 -0
  2480. data/node_modules/core-js/library/modules/$.set-proto.js +26 -0
  2481. data/node_modules/core-js/library/modules/$.set-species.js +13 -0
  2482. data/node_modules/core-js/library/modules/$.set-to-string-tag.js +7 -0
  2483. data/node_modules/core-js/library/modules/$.shared.js +6 -0
  2484. data/node_modules/core-js/library/modules/$.species-constructor.js +8 -0
  2485. data/node_modules/core-js/library/modules/$.strict-new.js +4 -0
  2486. data/node_modules/core-js/library/modules/$.string-at.js +17 -0
  2487. data/node_modules/core-js/library/modules/$.string-context.js +8 -0
  2488. data/node_modules/core-js/library/modules/$.string-pad.js +17 -0
  2489. data/node_modules/core-js/library/modules/$.string-repeat.js +12 -0
  2490. data/node_modules/core-js/library/modules/$.string-trim.js +29 -0
  2491. data/node_modules/core-js/library/modules/$.task.js +75 -0
  2492. data/node_modules/core-js/library/modules/$.to-index.js +7 -0
  2493. data/node_modules/core-js/library/modules/$.to-integer.js +6 -0
  2494. data/node_modules/core-js/library/modules/$.to-iobject.js +6 -0
  2495. data/node_modules/core-js/library/modules/$.to-length.js +6 -0
  2496. data/node_modules/core-js/library/modules/$.to-object.js +5 -0
  2497. data/node_modules/core-js/library/modules/$.to-primitive.js +12 -0
  2498. data/node_modules/core-js/library/modules/$.typed-array.js +365 -0
  2499. data/node_modules/core-js/library/modules/$.typed.js +36 -0
  2500. data/node_modules/core-js/library/modules/$.uid.js +5 -0
  2501. data/node_modules/core-js/library/modules/$.wks.js +7 -0
  2502. data/node_modules/core-js/library/modules/core.delay.js +12 -0
  2503. data/node_modules/core-js/library/modules/core.dict.js +153 -0
  2504. data/node_modules/core-js/library/modules/core.function.part.js +7 -0
  2505. data/node_modules/core-js/library/modules/core.get-iterator-method.js +8 -0
  2506. data/node_modules/core-js/library/modules/core.get-iterator.js +7 -0
  2507. data/node_modules/core-js/library/modules/core.is-iterable.js +9 -0
  2508. data/node_modules/core-js/library/modules/core.log.js +26 -0
  2509. data/node_modules/core-js/library/modules/core.number.iterator.js +9 -0
  2510. data/node_modules/core-js/library/modules/core.object.classof.js +3 -0
  2511. data/node_modules/core-js/library/modules/core.object.define.js +4 -0
  2512. data/node_modules/core-js/library/modules/core.object.is-object.js +3 -0
  2513. data/node_modules/core-js/library/modules/core.object.make.js +9 -0
  2514. data/node_modules/core-js/library/modules/core.string.escape-html.js +11 -0
  2515. data/node_modules/core-js/library/modules/core.string.unescape-html.js +11 -0
  2516. data/node_modules/core-js/library/modules/es5.js +276 -0
  2517. data/node_modules/core-js/library/modules/es6.array.copy-within.js +6 -0
  2518. data/node_modules/core-js/library/modules/es6.array.fill.js +6 -0
  2519. data/node_modules/core-js/library/modules/es6.array.find-index.js +14 -0
  2520. data/node_modules/core-js/library/modules/es6.array.find.js +14 -0
  2521. data/node_modules/core-js/library/modules/es6.array.from.js +36 -0
  2522. data/node_modules/core-js/library/modules/es6.array.iterator.js +34 -0
  2523. data/node_modules/core-js/library/modules/es6.array.of.js +19 -0
  2524. data/node_modules/core-js/library/modules/es6.array.species.js +1 -0
  2525. data/node_modules/core-js/library/modules/es6.date.to-string.js +0 -0
  2526. data/node_modules/core-js/library/modules/es6.function.has-instance.js +13 -0
  2527. data/node_modules/core-js/library/modules/es6.function.name.js +0 -0
  2528. data/node_modules/core-js/library/modules/es6.map.js +17 -0
  2529. data/node_modules/core-js/library/modules/es6.math.acosh.js +14 -0
  2530. data/node_modules/core-js/library/modules/es6.math.asinh.js +8 -0
  2531. data/node_modules/core-js/library/modules/es6.math.atanh.js +8 -0
  2532. data/node_modules/core-js/library/modules/es6.math.cbrt.js +9 -0
  2533. data/node_modules/core-js/library/modules/es6.math.clz32.js +8 -0
  2534. data/node_modules/core-js/library/modules/es6.math.cosh.js +9 -0
  2535. data/node_modules/core-js/library/modules/es6.math.expm1.js +4 -0
  2536. data/node_modules/core-js/library/modules/es6.math.fround.js +26 -0
  2537. data/node_modules/core-js/library/modules/es6.math.hypot.js +26 -0
  2538. data/node_modules/core-js/library/modules/es6.math.imul.js +17 -0
  2539. data/node_modules/core-js/library/modules/es6.math.log10.js +8 -0
  2540. data/node_modules/core-js/library/modules/es6.math.log1p.js +4 -0
  2541. data/node_modules/core-js/library/modules/es6.math.log2.js +8 -0
  2542. data/node_modules/core-js/library/modules/es6.math.sign.js +4 -0
  2543. data/node_modules/core-js/library/modules/es6.math.sinh.js +15 -0
  2544. data/node_modules/core-js/library/modules/es6.math.tanh.js +12 -0
  2545. data/node_modules/core-js/library/modules/es6.math.trunc.js +8 -0
  2546. data/node_modules/core-js/library/modules/es6.number.constructor.js +0 -0
  2547. data/node_modules/core-js/library/modules/es6.number.epsilon.js +4 -0
  2548. data/node_modules/core-js/library/modules/es6.number.is-finite.js +9 -0
  2549. data/node_modules/core-js/library/modules/es6.number.is-integer.js +4 -0
  2550. data/node_modules/core-js/library/modules/es6.number.is-nan.js +8 -0
  2551. data/node_modules/core-js/library/modules/es6.number.is-safe-integer.js +10 -0
  2552. data/node_modules/core-js/library/modules/es6.number.max-safe-integer.js +4 -0
  2553. data/node_modules/core-js/library/modules/es6.number.min-safe-integer.js +4 -0
  2554. data/node_modules/core-js/library/modules/es6.number.parse-float.js +4 -0
  2555. data/node_modules/core-js/library/modules/es6.number.parse-int.js +4 -0
  2556. data/node_modules/core-js/library/modules/es6.object.assign.js +4 -0
  2557. data/node_modules/core-js/library/modules/es6.object.freeze.js +8 -0
  2558. data/node_modules/core-js/library/modules/es6.object.get-own-property-descriptor.js +8 -0
  2559. data/node_modules/core-js/library/modules/es6.object.get-own-property-names.js +4 -0
  2560. data/node_modules/core-js/library/modules/es6.object.get-prototype-of.js +8 -0
  2561. data/node_modules/core-js/library/modules/es6.object.is-extensible.js +8 -0
  2562. data/node_modules/core-js/library/modules/es6.object.is-frozen.js +8 -0
  2563. data/node_modules/core-js/library/modules/es6.object.is-sealed.js +8 -0
  2564. data/node_modules/core-js/library/modules/es6.object.is.js +3 -0
  2565. data/node_modules/core-js/library/modules/es6.object.keys.js +8 -0
  2566. data/node_modules/core-js/library/modules/es6.object.prevent-extensions.js +8 -0
  2567. data/node_modules/core-js/library/modules/es6.object.seal.js +8 -0
  2568. data/node_modules/core-js/library/modules/es6.object.set-prototype-of.js +3 -0
  2569. data/node_modules/core-js/library/modules/es6.object.to-string.js +0 -0
  2570. data/node_modules/core-js/library/modules/es6.promise.js +289 -0
  2571. data/node_modules/core-js/library/modules/es6.reflect.apply.js +9 -0
  2572. data/node_modules/core-js/library/modules/es6.reflect.construct.js +38 -0
  2573. data/node_modules/core-js/library/modules/es6.reflect.define-property.js +19 -0
  2574. data/node_modules/core-js/library/modules/es6.reflect.delete-property.js +11 -0
  2575. data/node_modules/core-js/library/modules/es6.reflect.enumerate.js +26 -0
  2576. data/node_modules/core-js/library/modules/es6.reflect.get-own-property-descriptor.js +10 -0
  2577. data/node_modules/core-js/library/modules/es6.reflect.get-prototype-of.js +10 -0
  2578. data/node_modules/core-js/library/modules/es6.reflect.get.js +20 -0
  2579. data/node_modules/core-js/library/modules/es6.reflect.has.js +8 -0
  2580. data/node_modules/core-js/library/modules/es6.reflect.is-extensible.js +11 -0
  2581. data/node_modules/core-js/library/modules/es6.reflect.own-keys.js +4 -0
  2582. data/node_modules/core-js/library/modules/es6.reflect.prevent-extensions.js +16 -0
  2583. data/node_modules/core-js/library/modules/es6.reflect.set-prototype-of.js +15 -0
  2584. data/node_modules/core-js/library/modules/es6.reflect.set.js +29 -0
  2585. data/node_modules/core-js/library/modules/es6.regexp.constructor.js +1 -0
  2586. data/node_modules/core-js/library/modules/es6.regexp.flags.js +0 -0
  2587. data/node_modules/core-js/library/modules/es6.regexp.match.js +0 -0
  2588. data/node_modules/core-js/library/modules/es6.regexp.replace.js +0 -0
  2589. data/node_modules/core-js/library/modules/es6.regexp.search.js +0 -0
  2590. data/node_modules/core-js/library/modules/es6.regexp.split.js +0 -0
  2591. data/node_modules/core-js/library/modules/es6.set.js +12 -0
  2592. data/node_modules/core-js/library/modules/es6.string.code-point-at.js +9 -0
  2593. data/node_modules/core-js/library/modules/es6.string.ends-with.js +21 -0
  2594. data/node_modules/core-js/library/modules/es6.string.from-code-point.js +24 -0
  2595. data/node_modules/core-js/library/modules/es6.string.includes.js +12 -0
  2596. data/node_modules/core-js/library/modules/es6.string.iterator.js +17 -0
  2597. data/node_modules/core-js/library/modules/es6.string.raw.js +19 -0
  2598. data/node_modules/core-js/library/modules/es6.string.repeat.js +6 -0
  2599. data/node_modules/core-js/library/modules/es6.string.starts-with.js +19 -0
  2600. data/node_modules/core-js/library/modules/es6.string.trim.js +7 -0
  2601. data/node_modules/core-js/library/modules/es6.symbol.js +227 -0
  2602. data/node_modules/core-js/library/modules/es6.typed.array-buffer.js +43 -0
  2603. data/node_modules/core-js/library/modules/es6.typed.data-view.js +4 -0
  2604. data/node_modules/core-js/library/modules/es6.typed.float32-array.js +5 -0
  2605. data/node_modules/core-js/library/modules/es6.typed.float64-array.js +5 -0
  2606. data/node_modules/core-js/library/modules/es6.typed.int16-array.js +5 -0
  2607. data/node_modules/core-js/library/modules/es6.typed.int32-array.js +5 -0
  2608. data/node_modules/core-js/library/modules/es6.typed.int8-array.js +5 -0
  2609. data/node_modules/core-js/library/modules/es6.typed.uint16-array.js +5 -0
  2610. data/node_modules/core-js/library/modules/es6.typed.uint32-array.js +5 -0
  2611. data/node_modules/core-js/library/modules/es6.typed.uint8-array.js +5 -0
  2612. data/node_modules/core-js/library/modules/es6.typed.uint8-clamped-array.js +5 -0
  2613. data/node_modules/core-js/library/modules/es6.weak-map.js +43 -0
  2614. data/node_modules/core-js/library/modules/es6.weak-set.js +12 -0
  2615. data/node_modules/core-js/library/modules/es7.array.includes.js +12 -0
  2616. data/node_modules/core-js/library/modules/es7.map.to-json.js +4 -0
  2617. data/node_modules/core-js/library/modules/es7.object.entries.js +9 -0
  2618. data/node_modules/core-js/library/modules/es7.object.get-own-property-descriptors.js +23 -0
  2619. data/node_modules/core-js/library/modules/es7.object.values.js +9 -0
  2620. data/node_modules/core-js/library/modules/es7.regexp.escape.js +5 -0
  2621. data/node_modules/core-js/library/modules/es7.set.to-json.js +4 -0
  2622. data/node_modules/core-js/library/modules/es7.string.at.js +10 -0
  2623. data/node_modules/core-js/library/modules/es7.string.pad-left.js +9 -0
  2624. data/node_modules/core-js/library/modules/es7.string.pad-right.js +9 -0
  2625. data/node_modules/core-js/library/modules/es7.string.trim-left.js +7 -0
  2626. data/node_modules/core-js/library/modules/es7.string.trim-right.js +7 -0
  2627. data/node_modules/core-js/library/modules/js.array.statics.js +17 -0
  2628. data/node_modules/core-js/library/modules/web.dom.iterable.js +3 -0
  2629. data/node_modules/core-js/library/modules/web.immediate.js +6 -0
  2630. data/node_modules/core-js/library/modules/web.timers.js +20 -0
  2631. data/node_modules/core-js/library/shim.js +104 -0
  2632. data/node_modules/core-js/library/web/dom.js +2 -0
  2633. data/node_modules/core-js/library/web/immediate.js +2 -0
  2634. data/node_modules/core-js/library/web/index.js +4 -0
  2635. data/node_modules/core-js/library/web/timers.js +2 -0
  2636. data/node_modules/core-js/modules/$.a-function.js +4 -0
  2637. data/node_modules/core-js/modules/$.add-to-unscopables.js +7 -0
  2638. data/node_modules/core-js/modules/$.an-object.js +5 -0
  2639. data/node_modules/core-js/modules/$.array-copy-within.js +27 -0
  2640. data/node_modules/core-js/modules/$.array-fill.js +16 -0
  2641. data/node_modules/core-js/modules/$.array-includes.js +21 -0
  2642. data/node_modules/core-js/modules/$.array-methods.js +43 -0
  2643. data/node_modules/core-js/modules/$.array-species-create.js +16 -0
  2644. data/node_modules/core-js/modules/$.buffer.js +288 -0
  2645. data/node_modules/core-js/modules/$.classof.js +16 -0
  2646. data/node_modules/core-js/modules/$.cof.js +5 -0
  2647. data/node_modules/core-js/modules/$.collection-strong.js +159 -0
  2648. data/node_modules/core-js/modules/$.collection-to-json.js +11 -0
  2649. data/node_modules/core-js/modules/$.collection-weak.js +86 -0
  2650. data/node_modules/core-js/modules/$.collection.js +79 -0
  2651. data/node_modules/core-js/modules/$.core.js +2 -0
  2652. data/node_modules/core-js/modules/$.ctx.js +20 -0
  2653. data/node_modules/core-js/modules/$.defined.js +5 -0
  2654. data/node_modules/core-js/modules/$.descriptors.js +4 -0
  2655. data/node_modules/core-js/modules/$.dom-create.js +7 -0
  2656. data/node_modules/core-js/modules/$.enum-keys.js +14 -0
  2657. data/node_modules/core-js/modules/$.export.js +41 -0
  2658. data/node_modules/core-js/modules/$.fails-is-regexp.js +12 -0
  2659. data/node_modules/core-js/modules/$.fails.js +7 -0
  2660. data/node_modules/core-js/modules/$.fix-re-wks.js +26 -0
  2661. data/node_modules/core-js/modules/$.flags.js +13 -0
  2662. data/node_modules/core-js/modules/$.for-of.js +19 -0
  2663. data/node_modules/core-js/modules/$.get-names.js +20 -0
  2664. data/node_modules/core-js/modules/$.global.js +4 -0
  2665. data/node_modules/core-js/modules/$.has.js +4 -0
  2666. data/node_modules/core-js/modules/$.hide.js +8 -0
  2667. data/node_modules/core-js/modules/$.html.js +1 -0
  2668. data/node_modules/core-js/modules/$.invoke.js +16 -0
  2669. data/node_modules/core-js/modules/$.iobject.js +5 -0
  2670. data/node_modules/core-js/modules/$.is-array-iter.js +8 -0
  2671. data/node_modules/core-js/modules/$.is-array.js +5 -0
  2672. data/node_modules/core-js/modules/$.is-integer.js +6 -0
  2673. data/node_modules/core-js/modules/$.is-object.js +3 -0
  2674. data/node_modules/core-js/modules/$.is-regexp.js +8 -0
  2675. data/node_modules/core-js/modules/$.iter-call.js +12 -0
  2676. data/node_modules/core-js/modules/$.iter-create.js +13 -0
  2677. data/node_modules/core-js/modules/$.iter-define.js +66 -0
  2678. data/node_modules/core-js/modules/$.iter-detect.js +21 -0
  2679. data/node_modules/core-js/modules/$.iter-step.js +3 -0
  2680. data/node_modules/core-js/modules/$.iterators.js +1 -0
  2681. data/node_modules/core-js/modules/$.js +13 -0
  2682. data/node_modules/core-js/modules/$.keyof.js +10 -0
  2683. data/node_modules/core-js/modules/$.library.js +1 -0
  2684. data/node_modules/core-js/modules/$.math-expm1.js +4 -0
  2685. data/node_modules/core-js/modules/$.math-log1p.js +4 -0
  2686. data/node_modules/core-js/modules/$.math-sign.js +4 -0
  2687. data/node_modules/core-js/modules/$.microtask.js +64 -0
  2688. data/node_modules/core-js/modules/$.object-assign.js +33 -0
  2689. data/node_modules/core-js/modules/$.object-define.js +11 -0
  2690. data/node_modules/core-js/modules/$.object-sap.js +10 -0
  2691. data/node_modules/core-js/modules/$.object-to-array.js +16 -0
  2692. data/node_modules/core-js/modules/$.own-keys.js +9 -0
  2693. data/node_modules/core-js/modules/$.partial.js +24 -0
  2694. data/node_modules/core-js/modules/$.path.js +1 -0
  2695. data/node_modules/core-js/modules/$.property-desc.js +8 -0
  2696. data/node_modules/core-js/modules/$.redefine-all.js +5 -0
  2697. data/node_modules/core-js/modules/$.redefine.js +27 -0
  2698. data/node_modules/core-js/modules/$.replacer.js +8 -0
  2699. data/node_modules/core-js/modules/$.same-value.js +4 -0
  2700. data/node_modules/core-js/modules/$.set-proto.js +26 -0
  2701. data/node_modules/core-js/modules/$.set-species.js +13 -0
  2702. data/node_modules/core-js/modules/$.set-to-string-tag.js +7 -0
  2703. data/node_modules/core-js/modules/$.shared.js +6 -0
  2704. data/node_modules/core-js/modules/$.species-constructor.js +8 -0
  2705. data/node_modules/core-js/modules/$.strict-new.js +4 -0
  2706. data/node_modules/core-js/modules/$.string-at.js +17 -0
  2707. data/node_modules/core-js/modules/$.string-context.js +8 -0
  2708. data/node_modules/core-js/modules/$.string-pad.js +17 -0
  2709. data/node_modules/core-js/modules/$.string-repeat.js +12 -0
  2710. data/node_modules/core-js/modules/$.string-trim.js +29 -0
  2711. data/node_modules/core-js/modules/$.task.js +75 -0
  2712. data/node_modules/core-js/modules/$.to-index.js +7 -0
  2713. data/node_modules/core-js/modules/$.to-integer.js +6 -0
  2714. data/node_modules/core-js/modules/$.to-iobject.js +6 -0
  2715. data/node_modules/core-js/modules/$.to-length.js +6 -0
  2716. data/node_modules/core-js/modules/$.to-object.js +5 -0
  2717. data/node_modules/core-js/modules/$.to-primitive.js +12 -0
  2718. data/node_modules/core-js/modules/$.typed-array.js +365 -0
  2719. data/node_modules/core-js/modules/$.typed.js +36 -0
  2720. data/node_modules/core-js/modules/$.uid.js +5 -0
  2721. data/node_modules/core-js/modules/$.wks.js +7 -0
  2722. data/node_modules/core-js/modules/core.delay.js +12 -0
  2723. data/node_modules/core-js/modules/core.dict.js +153 -0
  2724. data/node_modules/core-js/modules/core.function.part.js +7 -0
  2725. data/node_modules/core-js/modules/core.get-iterator-method.js +8 -0
  2726. data/node_modules/core-js/modules/core.get-iterator.js +7 -0
  2727. data/node_modules/core-js/modules/core.is-iterable.js +9 -0
  2728. data/node_modules/core-js/modules/core.log.js +26 -0
  2729. data/node_modules/core-js/modules/core.number.iterator.js +9 -0
  2730. data/node_modules/core-js/modules/core.object.classof.js +3 -0
  2731. data/node_modules/core-js/modules/core.object.define.js +4 -0
  2732. data/node_modules/core-js/modules/core.object.is-object.js +3 -0
  2733. data/node_modules/core-js/modules/core.object.make.js +9 -0
  2734. data/node_modules/core-js/modules/core.string.escape-html.js +11 -0
  2735. data/node_modules/core-js/modules/core.string.unescape-html.js +11 -0
  2736. data/node_modules/core-js/modules/es5.js +276 -0
  2737. data/node_modules/core-js/modules/es6.array.copy-within.js +6 -0
  2738. data/node_modules/core-js/modules/es6.array.fill.js +6 -0
  2739. data/node_modules/core-js/modules/es6.array.find-index.js +14 -0
  2740. data/node_modules/core-js/modules/es6.array.find.js +14 -0
  2741. data/node_modules/core-js/modules/es6.array.from.js +36 -0
  2742. data/node_modules/core-js/modules/es6.array.iterator.js +34 -0
  2743. data/node_modules/core-js/modules/es6.array.of.js +19 -0
  2744. data/node_modules/core-js/modules/es6.array.species.js +1 -0
  2745. data/node_modules/core-js/modules/es6.date.to-string.js +10 -0
  2746. data/node_modules/core-js/modules/es6.function.has-instance.js +13 -0
  2747. data/node_modules/core-js/modules/es6.function.name.js +16 -0
  2748. data/node_modules/core-js/modules/es6.map.js +17 -0
  2749. data/node_modules/core-js/modules/es6.math.acosh.js +14 -0
  2750. data/node_modules/core-js/modules/es6.math.asinh.js +8 -0
  2751. data/node_modules/core-js/modules/es6.math.atanh.js +8 -0
  2752. data/node_modules/core-js/modules/es6.math.cbrt.js +9 -0
  2753. data/node_modules/core-js/modules/es6.math.clz32.js +8 -0
  2754. data/node_modules/core-js/modules/es6.math.cosh.js +9 -0
  2755. data/node_modules/core-js/modules/es6.math.expm1.js +4 -0
  2756. data/node_modules/core-js/modules/es6.math.fround.js +26 -0
  2757. data/node_modules/core-js/modules/es6.math.hypot.js +26 -0
  2758. data/node_modules/core-js/modules/es6.math.imul.js +17 -0
  2759. data/node_modules/core-js/modules/es6.math.log10.js +8 -0
  2760. data/node_modules/core-js/modules/es6.math.log1p.js +4 -0
  2761. data/node_modules/core-js/modules/es6.math.log2.js +8 -0
  2762. data/node_modules/core-js/modules/es6.math.sign.js +4 -0
  2763. data/node_modules/core-js/modules/es6.math.sinh.js +15 -0
  2764. data/node_modules/core-js/modules/es6.math.tanh.js +12 -0
  2765. data/node_modules/core-js/modules/es6.math.trunc.js +8 -0
  2766. data/node_modules/core-js/modules/es6.number.constructor.js +66 -0
  2767. data/node_modules/core-js/modules/es6.number.epsilon.js +4 -0
  2768. data/node_modules/core-js/modules/es6.number.is-finite.js +9 -0
  2769. data/node_modules/core-js/modules/es6.number.is-integer.js +4 -0
  2770. data/node_modules/core-js/modules/es6.number.is-nan.js +8 -0
  2771. data/node_modules/core-js/modules/es6.number.is-safe-integer.js +10 -0
  2772. data/node_modules/core-js/modules/es6.number.max-safe-integer.js +4 -0
  2773. data/node_modules/core-js/modules/es6.number.min-safe-integer.js +4 -0
  2774. data/node_modules/core-js/modules/es6.number.parse-float.js +4 -0
  2775. data/node_modules/core-js/modules/es6.number.parse-int.js +4 -0
  2776. data/node_modules/core-js/modules/es6.object.assign.js +4 -0
  2777. data/node_modules/core-js/modules/es6.object.freeze.js +8 -0
  2778. data/node_modules/core-js/modules/es6.object.get-own-property-descriptor.js +8 -0
  2779. data/node_modules/core-js/modules/es6.object.get-own-property-names.js +4 -0
  2780. data/node_modules/core-js/modules/es6.object.get-prototype-of.js +8 -0
  2781. data/node_modules/core-js/modules/es6.object.is-extensible.js +8 -0
  2782. data/node_modules/core-js/modules/es6.object.is-frozen.js +8 -0
  2783. data/node_modules/core-js/modules/es6.object.is-sealed.js +8 -0
  2784. data/node_modules/core-js/modules/es6.object.is.js +3 -0
  2785. data/node_modules/core-js/modules/es6.object.keys.js +8 -0
  2786. data/node_modules/core-js/modules/es6.object.prevent-extensions.js +8 -0
  2787. data/node_modules/core-js/modules/es6.object.seal.js +8 -0
  2788. data/node_modules/core-js/modules/es6.object.set-prototype-of.js +3 -0
  2789. data/node_modules/core-js/modules/es6.object.to-string.js +10 -0
  2790. data/node_modules/core-js/modules/es6.promise.js +289 -0
  2791. data/node_modules/core-js/modules/es6.reflect.apply.js +9 -0
  2792. data/node_modules/core-js/modules/es6.reflect.construct.js +38 -0
  2793. data/node_modules/core-js/modules/es6.reflect.define-property.js +19 -0
  2794. data/node_modules/core-js/modules/es6.reflect.delete-property.js +11 -0
  2795. data/node_modules/core-js/modules/es6.reflect.enumerate.js +26 -0
  2796. data/node_modules/core-js/modules/es6.reflect.get-own-property-descriptor.js +10 -0
  2797. data/node_modules/core-js/modules/es6.reflect.get-prototype-of.js +10 -0
  2798. data/node_modules/core-js/modules/es6.reflect.get.js +20 -0
  2799. data/node_modules/core-js/modules/es6.reflect.has.js +8 -0
  2800. data/node_modules/core-js/modules/es6.reflect.is-extensible.js +11 -0
  2801. data/node_modules/core-js/modules/es6.reflect.own-keys.js +4 -0
  2802. data/node_modules/core-js/modules/es6.reflect.prevent-extensions.js +16 -0
  2803. data/node_modules/core-js/modules/es6.reflect.set-prototype-of.js +15 -0
  2804. data/node_modules/core-js/modules/es6.reflect.set.js +29 -0
  2805. data/node_modules/core-js/modules/es6.regexp.constructor.js +38 -0
  2806. data/node_modules/core-js/modules/es6.regexp.flags.js +6 -0
  2807. data/node_modules/core-js/modules/es6.regexp.match.js +10 -0
  2808. data/node_modules/core-js/modules/es6.regexp.replace.js +12 -0
  2809. data/node_modules/core-js/modules/es6.regexp.search.js +10 -0
  2810. data/node_modules/core-js/modules/es6.regexp.split.js +12 -0
  2811. data/node_modules/core-js/modules/es6.set.js +12 -0
  2812. data/node_modules/core-js/modules/es6.string.code-point-at.js +9 -0
  2813. data/node_modules/core-js/modules/es6.string.ends-with.js +21 -0
  2814. data/node_modules/core-js/modules/es6.string.from-code-point.js +24 -0
  2815. data/node_modules/core-js/modules/es6.string.includes.js +12 -0
  2816. data/node_modules/core-js/modules/es6.string.iterator.js +17 -0
  2817. data/node_modules/core-js/modules/es6.string.raw.js +19 -0
  2818. data/node_modules/core-js/modules/es6.string.repeat.js +6 -0
  2819. data/node_modules/core-js/modules/es6.string.starts-with.js +19 -0
  2820. data/node_modules/core-js/modules/es6.string.trim.js +7 -0
  2821. data/node_modules/core-js/modules/es6.symbol.js +227 -0
  2822. data/node_modules/core-js/modules/es6.typed.array-buffer.js +43 -0
  2823. data/node_modules/core-js/modules/es6.typed.data-view.js +4 -0
  2824. data/node_modules/core-js/modules/es6.typed.float32-array.js +5 -0
  2825. data/node_modules/core-js/modules/es6.typed.float64-array.js +5 -0
  2826. data/node_modules/core-js/modules/es6.typed.int16-array.js +5 -0
  2827. data/node_modules/core-js/modules/es6.typed.int32-array.js +5 -0
  2828. data/node_modules/core-js/modules/es6.typed.int8-array.js +5 -0
  2829. data/node_modules/core-js/modules/es6.typed.uint16-array.js +5 -0
  2830. data/node_modules/core-js/modules/es6.typed.uint32-array.js +5 -0
  2831. data/node_modules/core-js/modules/es6.typed.uint8-array.js +5 -0
  2832. data/node_modules/core-js/modules/es6.typed.uint8-clamped-array.js +5 -0
  2833. data/node_modules/core-js/modules/es6.weak-map.js +43 -0
  2834. data/node_modules/core-js/modules/es6.weak-set.js +12 -0
  2835. data/node_modules/core-js/modules/es7.array.includes.js +12 -0
  2836. data/node_modules/core-js/modules/es7.map.to-json.js +4 -0
  2837. data/node_modules/core-js/modules/es7.object.entries.js +9 -0
  2838. data/node_modules/core-js/modules/es7.object.get-own-property-descriptors.js +23 -0
  2839. data/node_modules/core-js/modules/es7.object.values.js +9 -0
  2840. data/node_modules/core-js/modules/es7.regexp.escape.js +5 -0
  2841. data/node_modules/core-js/modules/es7.set.to-json.js +4 -0
  2842. data/node_modules/core-js/modules/es7.string.at.js +10 -0
  2843. data/node_modules/core-js/modules/es7.string.pad-left.js +9 -0
  2844. data/node_modules/core-js/modules/es7.string.pad-right.js +9 -0
  2845. data/node_modules/core-js/modules/es7.string.trim-left.js +7 -0
  2846. data/node_modules/core-js/modules/es7.string.trim-right.js +7 -0
  2847. data/node_modules/core-js/modules/js.array.statics.js +17 -0
  2848. data/node_modules/core-js/modules/library/$.add-to-unscopables.js +1 -0
  2849. data/node_modules/core-js/modules/library/$.collection.js +55 -0
  2850. data/node_modules/core-js/modules/library/$.export.js +46 -0
  2851. data/node_modules/core-js/modules/library/$.library.js +1 -0
  2852. data/node_modules/core-js/modules/library/$.path.js +1 -0
  2853. data/node_modules/core-js/modules/library/$.redefine.js +1 -0
  2854. data/node_modules/core-js/modules/library/$.set-species.js +13 -0
  2855. data/node_modules/core-js/modules/library/es6.date.to-string.js +0 -0
  2856. data/node_modules/core-js/modules/library/es6.function.name.js +0 -0
  2857. data/node_modules/core-js/modules/library/es6.number.constructor.js +0 -0
  2858. data/node_modules/core-js/modules/library/es6.object.to-string.js +0 -0
  2859. data/node_modules/core-js/modules/library/es6.regexp.constructor.js +1 -0
  2860. data/node_modules/core-js/modules/library/es6.regexp.flags.js +0 -0
  2861. data/node_modules/core-js/modules/library/es6.regexp.match.js +0 -0
  2862. data/node_modules/core-js/modules/library/es6.regexp.replace.js +0 -0
  2863. data/node_modules/core-js/modules/library/es6.regexp.search.js +0 -0
  2864. data/node_modules/core-js/modules/library/es6.regexp.split.js +0 -0
  2865. data/node_modules/core-js/modules/library/web.dom.iterable.js +3 -0
  2866. data/node_modules/core-js/modules/web.dom.iterable.js +12 -0
  2867. data/node_modules/core-js/modules/web.immediate.js +6 -0
  2868. data/node_modules/core-js/modules/web.timers.js +20 -0
  2869. data/node_modules/core-js/package.json +110 -0
  2870. data/node_modules/core-js/shim.js +104 -0
  2871. data/node_modules/core-js/web/dom.js +2 -0
  2872. data/node_modules/core-js/web/immediate.js +2 -0
  2873. data/node_modules/core-js/web/index.js +4 -0
  2874. data/node_modules/core-js/web/timers.js +2 -0
  2875. data/node_modules/debug/.jshintrc +3 -0
  2876. data/node_modules/debug/.npmignore +6 -0
  2877. data/node_modules/debug/History.md +195 -0
  2878. data/node_modules/debug/Makefile +36 -0
  2879. data/node_modules/debug/Readme.md +188 -0
  2880. data/node_modules/debug/bower.json +28 -0
  2881. data/node_modules/debug/browser.js +168 -0
  2882. data/node_modules/debug/component.json +19 -0
  2883. data/node_modules/debug/debug.js +197 -0
  2884. data/node_modules/debug/node.js +209 -0
  2885. data/node_modules/debug/package.json +99 -0
  2886. data/node_modules/detect-indent/cli.js +55 -0
  2887. data/node_modules/detect-indent/index.js +119 -0
  2888. data/node_modules/detect-indent/license +21 -0
  2889. data/node_modules/detect-indent/package.json +103 -0
  2890. data/node_modules/detect-indent/readme.md +120 -0
  2891. data/node_modules/escape-string-regexp/index.js +11 -0
  2892. data/node_modules/escape-string-regexp/license +21 -0
  2893. data/node_modules/escape-string-regexp/package.json +101 -0
  2894. data/node_modules/escape-string-regexp/readme.md +27 -0
  2895. data/node_modules/esutils/LICENSE.BSD +19 -0
  2896. data/node_modules/esutils/README.md +169 -0
  2897. data/node_modules/esutils/lib/ast.js +144 -0
  2898. data/node_modules/esutils/lib/code.js +135 -0
  2899. data/node_modules/esutils/lib/keyword.js +165 -0
  2900. data/node_modules/esutils/lib/utils.js +33 -0
  2901. data/node_modules/esutils/package.json +98 -0
  2902. data/node_modules/get-stdin/index.js +49 -0
  2903. data/node_modules/get-stdin/package.json +90 -0
  2904. data/node_modules/get-stdin/readme.md +44 -0
  2905. data/node_modules/globals/globals.json +1245 -0
  2906. data/node_modules/globals/index.js +1 -0
  2907. data/node_modules/globals/license +21 -0
  2908. data/node_modules/globals/package.json +103 -0
  2909. data/node_modules/globals/readme.md +39 -0
  2910. data/node_modules/has-ansi/index.js +4 -0
  2911. data/node_modules/has-ansi/license +21 -0
  2912. data/node_modules/has-ansi/package.json +110 -0
  2913. data/node_modules/has-ansi/readme.md +36 -0
  2914. data/node_modules/home-or-tmp/index.js +5 -0
  2915. data/node_modules/home-or-tmp/license +21 -0
  2916. data/node_modules/home-or-tmp/package.json +96 -0
  2917. data/node_modules/home-or-tmp/readme.md +32 -0
  2918. data/node_modules/invariant/CHANGELOG.md +33 -0
  2919. data/node_modules/invariant/README.md +35 -0
  2920. data/node_modules/invariant/browser.js +51 -0
  2921. data/node_modules/invariant/invariant.js +53 -0
  2922. data/node_modules/invariant/package.json +98 -0
  2923. data/node_modules/is-finite/index.js +6 -0
  2924. data/node_modules/is-finite/license +21 -0
  2925. data/node_modules/is-finite/package.json +94 -0
  2926. data/node_modules/is-finite/readme.md +30 -0
  2927. data/node_modules/is-integer/.npmignore +1 -0
  2928. data/node_modules/is-integer/.travis.yml +8 -0
  2929. data/node_modules/is-integer/LICENSE +10 -0
  2930. data/node_modules/is-integer/README.md +31 -0
  2931. data/node_modules/is-integer/index.js +8 -0
  2932. data/node_modules/is-integer/package.json +82 -0
  2933. data/node_modules/is-integer/test.js +72 -0
  2934. data/node_modules/js-tokens/LICENSE +21 -0
  2935. data/node_modules/js-tokens/changelog.md +71 -0
  2936. data/node_modules/js-tokens/index.js +19 -0
  2937. data/node_modules/js-tokens/package.json +93 -0
  2938. data/node_modules/js-tokens/readme.md +217 -0
  2939. data/node_modules/jsesc/LICENSE-MIT.txt +20 -0
  2940. data/node_modules/jsesc/README.md +375 -0
  2941. data/node_modules/jsesc/bin/jsesc +138 -0
  2942. data/node_modules/jsesc/jsesc.js +265 -0
  2943. data/node_modules/jsesc/man/jsesc.1 +90 -0
  2944. data/node_modules/jsesc/package.json +105 -0
  2945. data/node_modules/json5/.editorconfig +8 -0
  2946. data/node_modules/json5/.npmignore +2 -0
  2947. data/node_modules/json5/.travis.yml +5 -0
  2948. data/node_modules/json5/CHANGELOG.md +144 -0
  2949. data/node_modules/json5/README.md +271 -0
  2950. data/node_modules/json5/lib/cli.js +41 -0
  2951. data/node_modules/json5/lib/json5.js +754 -0
  2952. data/node_modules/json5/lib/require.js +18 -0
  2953. data/node_modules/json5/package.json +90 -0
  2954. data/node_modules/json5/package.json5 +30 -0
  2955. data/node_modules/json5/test/parse-cases/arrays/empty-array.json +1 -0
  2956. data/node_modules/json5/test/parse-cases/arrays/leading-comma-array.js +3 -0
  2957. data/node_modules/json5/test/parse-cases/arrays/lone-trailing-comma-array.js +3 -0
  2958. data/node_modules/json5/test/parse-cases/arrays/no-comma-array.txt +4 -0
  2959. data/node_modules/json5/test/parse-cases/arrays/regular-array.json +5 -0
  2960. data/node_modules/json5/test/parse-cases/arrays/trailing-comma-array.json5 +3 -0
  2961. data/node_modules/json5/test/parse-cases/comments/block-comment-following-array-element.json5 +6 -0
  2962. data/node_modules/json5/test/parse-cases/comments/block-comment-following-top-level-value.json5 +5 -0
  2963. data/node_modules/json5/test/parse-cases/comments/block-comment-in-string.json +1 -0
  2964. data/node_modules/json5/test/parse-cases/comments/block-comment-preceding-top-level-value.json5 +5 -0
  2965. data/node_modules/json5/test/parse-cases/comments/block-comment-with-asterisks.json5 +7 -0
  2966. data/node_modules/json5/test/parse-cases/comments/inline-comment-following-array-element.json5 +3 -0
  2967. data/node_modules/json5/test/parse-cases/comments/inline-comment-following-top-level-value.json5 +1 -0
  2968. data/node_modules/json5/test/parse-cases/comments/inline-comment-in-string.json +1 -0
  2969. data/node_modules/json5/test/parse-cases/comments/inline-comment-preceding-top-level-value.json5 +2 -0
  2970. data/node_modules/json5/test/parse-cases/comments/top-level-block-comment.txt +4 -0
  2971. data/node_modules/json5/test/parse-cases/comments/top-level-inline-comment.txt +1 -0
  2972. data/node_modules/json5/test/parse-cases/comments/unterminated-block-comment.txt +5 -0
  2973. data/node_modules/json5/test/parse-cases/misc/empty.txt +0 -0
  2974. data/node_modules/json5/test/parse-cases/misc/npm-package.json +106 -0
  2975. data/node_modules/json5/test/parse-cases/misc/npm-package.json5 +106 -0
  2976. data/node_modules/json5/test/parse-cases/misc/readme-example.json5 +25 -0
  2977. data/node_modules/json5/test/parse-cases/misc/valid-whitespace.json5 +5 -0
  2978. data/node_modules/json5/test/parse-cases/new-lines/.editorconfig +0 -0
  2979. data/node_modules/json5/test/parse-cases/new-lines/.gitattributes +0 -0
  2980. data/node_modules/json5/test/parse-cases/new-lines/comment-cr.json5 +0 -0
  2981. data/node_modules/json5/test/parse-cases/new-lines/comment-crlf.json5 +0 -0
  2982. data/node_modules/json5/test/parse-cases/new-lines/comment-lf.json5 +0 -0
  2983. data/node_modules/json5/test/parse-cases/new-lines/escaped-cr.json5 +0 -0
  2984. data/node_modules/json5/test/parse-cases/new-lines/escaped-crlf.json5 +0 -0
  2985. data/node_modules/json5/test/parse-cases/new-lines/escaped-lf.json5 +0 -0
  2986. data/node_modules/json5/test/parse-cases/numbers/binary-coffeescript.txt +1 -0
  2987. data/node_modules/json5/test/parse-cases/numbers/float-leading-decimal-point.json5 +1 -0
  2988. data/node_modules/json5/test/parse-cases/numbers/float-leading-zero.json +1 -0
  2989. data/node_modules/json5/test/parse-cases/numbers/float-trailing-decimal-point-with-integer-exponent.json5 +1 -0
  2990. data/node_modules/json5/test/parse-cases/numbers/float-trailing-decimal-point.json5 +1 -0
  2991. data/node_modules/json5/test/parse-cases/numbers/float-with-integer-exponent.json +1 -0
  2992. data/node_modules/json5/test/parse-cases/numbers/float.json +1 -0
  2993. data/node_modules/json5/test/parse-cases/numbers/hexadecimal-empty.txt +1 -0
  2994. data/node_modules/json5/test/parse-cases/numbers/hexadecimal-lowercase-letter.json5 +1 -0
  2995. data/node_modules/json5/test/parse-cases/numbers/hexadecimal-uppercase-x.json5 +1 -0
  2996. data/node_modules/json5/test/parse-cases/numbers/hexadecimal-with-integer-exponent.json5 +1 -0
  2997. data/node_modules/json5/test/parse-cases/numbers/hexadecimal.json5 +1 -0
  2998. data/node_modules/json5/test/parse-cases/numbers/infinity.json5 +1 -0
  2999. data/node_modules/json5/test/parse-cases/numbers/integer-with-float-exponent.txt +1 -0
  3000. data/node_modules/json5/test/parse-cases/numbers/integer-with-hexadecimal-exponent.txt +1 -0
  3001. data/node_modules/json5/test/parse-cases/numbers/integer-with-integer-exponent.json +1 -0
  3002. data/node_modules/json5/test/parse-cases/numbers/integer-with-negative-float-exponent.txt +1 -0
  3003. data/node_modules/json5/test/parse-cases/numbers/integer-with-negative-hexadecimal-exponent.txt +1 -0
  3004. data/node_modules/json5/test/parse-cases/numbers/integer-with-negative-integer-exponent.json +1 -0
  3005. data/node_modules/json5/test/parse-cases/numbers/integer-with-negative-zero-integer-exponent.json +1 -0
  3006. data/node_modules/json5/test/parse-cases/numbers/integer-with-positive-float-exponent.txt +1 -0
  3007. data/node_modules/json5/test/parse-cases/numbers/integer-with-positive-hexadecimal-exponent.txt +1 -0
  3008. data/node_modules/json5/test/parse-cases/numbers/integer-with-positive-integer-exponent.json +1 -0
  3009. data/node_modules/json5/test/parse-cases/numbers/integer-with-positive-zero-integer-exponent.json +1 -0
  3010. data/node_modules/json5/test/parse-cases/numbers/integer-with-zero-integer-exponent.json +1 -0
  3011. data/node_modules/json5/test/parse-cases/numbers/integer.json +1 -0
  3012. data/node_modules/json5/test/parse-cases/numbers/lone-decimal-point.txt +1 -0
  3013. data/node_modules/json5/test/parse-cases/numbers/nan.json5 +1 -0
  3014. data/node_modules/json5/test/parse-cases/numbers/negative-binary-coffeescript.txt +1 -0
  3015. data/node_modules/json5/test/parse-cases/numbers/negative-float-leading-decimal-point.json5 +1 -0
  3016. data/node_modules/json5/test/parse-cases/numbers/negative-float-leading-zero.json +1 -0
  3017. data/node_modules/json5/test/parse-cases/numbers/negative-float-trailing-decimal-point.json5 +1 -0
  3018. data/node_modules/json5/test/parse-cases/numbers/negative-float.json +1 -0
  3019. data/node_modules/json5/test/parse-cases/numbers/negative-hexadecimal.json5 +1 -0
  3020. data/node_modules/json5/test/parse-cases/numbers/negative-infinity.json5 +1 -0
  3021. data/node_modules/json5/test/parse-cases/numbers/negative-integer.json +1 -0
  3022. data/node_modules/json5/test/parse-cases/numbers/negative-noctal.js +1 -0
  3023. data/node_modules/json5/test/parse-cases/numbers/negative-octal-coffeescript.txt +1 -0
  3024. data/node_modules/json5/test/parse-cases/numbers/negative-octal.txt +1 -0
  3025. data/node_modules/json5/test/parse-cases/numbers/negative-zero-binary-coffeescript.txt +1 -0
  3026. data/node_modules/json5/test/parse-cases/numbers/negative-zero-float-leading-decimal-point.json5 +1 -0
  3027. data/node_modules/json5/test/parse-cases/numbers/negative-zero-float-trailing-decimal-point.json5 +1 -0
  3028. data/node_modules/json5/test/parse-cases/numbers/negative-zero-float.json +1 -0
  3029. data/node_modules/json5/test/parse-cases/numbers/negative-zero-hexadecimal.json5 +1 -0
  3030. data/node_modules/json5/test/parse-cases/numbers/negative-zero-integer.json +1 -0
  3031. data/node_modules/json5/test/parse-cases/numbers/negative-zero-octal-coffeescript.txt +1 -0
  3032. data/node_modules/json5/test/parse-cases/numbers/negative-zero-octal.txt +1 -0
  3033. data/node_modules/json5/test/parse-cases/numbers/noctal-with-leading-octal-digit.js +1 -0
  3034. data/node_modules/json5/test/parse-cases/numbers/noctal.js +1 -0
  3035. data/node_modules/json5/test/parse-cases/numbers/octal-coffeescript.txt +1 -0
  3036. data/node_modules/json5/test/parse-cases/numbers/octal.txt +1 -0
  3037. data/node_modules/json5/test/parse-cases/numbers/positive-binary-coffeescript.txt +1 -0
  3038. data/node_modules/json5/test/parse-cases/numbers/positive-float-leading-decimal-point.json5 +1 -0
  3039. data/node_modules/json5/test/parse-cases/numbers/positive-float-leading-zero.json5 +1 -0
  3040. data/node_modules/json5/test/parse-cases/numbers/positive-float-trailing-decimal-point.json5 +1 -0
  3041. data/node_modules/json5/test/parse-cases/numbers/positive-float.json5 +1 -0
  3042. data/node_modules/json5/test/parse-cases/numbers/positive-hexadecimal.json5 +1 -0
  3043. data/node_modules/json5/test/parse-cases/numbers/positive-infinity.json5 +1 -0
  3044. data/node_modules/json5/test/parse-cases/numbers/positive-integer.json5 +1 -0
  3045. data/node_modules/json5/test/parse-cases/numbers/positive-noctal.js +1 -0
  3046. data/node_modules/json5/test/parse-cases/numbers/positive-octal-coffeescript.txt +1 -0
  3047. data/node_modules/json5/test/parse-cases/numbers/positive-octal.txt +1 -0
  3048. data/node_modules/json5/test/parse-cases/numbers/positive-zero-binary-coffeescript.txt +1 -0
  3049. data/node_modules/json5/test/parse-cases/numbers/positive-zero-float-leading-decimal-point.json5 +1 -0
  3050. data/node_modules/json5/test/parse-cases/numbers/positive-zero-float-trailing-decimal-point.json5 +1 -0
  3051. data/node_modules/json5/test/parse-cases/numbers/positive-zero-float.json5 +1 -0
  3052. data/node_modules/json5/test/parse-cases/numbers/positive-zero-hexadecimal.json5 +1 -0
  3053. data/node_modules/json5/test/parse-cases/numbers/positive-zero-integer.json5 +1 -0
  3054. data/node_modules/json5/test/parse-cases/numbers/positive-zero-octal-coffeescript.txt +1 -0
  3055. data/node_modules/json5/test/parse-cases/numbers/positive-zero-octal.txt +1 -0
  3056. data/node_modules/json5/test/parse-cases/numbers/zero-binary-coffeescript.txt +1 -0
  3057. data/node_modules/json5/test/parse-cases/numbers/zero-float-leading-decimal-point.json5 +1 -0
  3058. data/node_modules/json5/test/parse-cases/numbers/zero-float-trailing-decimal-point.json5 +1 -0
  3059. data/node_modules/json5/test/parse-cases/numbers/zero-float.json +1 -0
  3060. data/node_modules/json5/test/parse-cases/numbers/zero-hexadecimal.json5 +1 -0
  3061. data/node_modules/json5/test/parse-cases/numbers/zero-integer-with-integer-exponent.json +1 -0
  3062. data/node_modules/json5/test/parse-cases/numbers/zero-integer.json +1 -0
  3063. data/node_modules/json5/test/parse-cases/numbers/zero-octal-coffeescript.txt +1 -0
  3064. data/node_modules/json5/test/parse-cases/numbers/zero-octal.txt +1 -0
  3065. data/node_modules/json5/test/parse-cases/objects/duplicate-keys.json +4 -0
  3066. data/node_modules/json5/test/parse-cases/objects/empty-object.json +1 -0
  3067. data/node_modules/json5/test/parse-cases/objects/illegal-unquoted-key-number.txt +3 -0
  3068. data/node_modules/json5/test/parse-cases/objects/illegal-unquoted-key-symbol.txt +3 -0
  3069. data/node_modules/json5/test/parse-cases/objects/leading-comma-object.txt +3 -0
  3070. data/node_modules/json5/test/parse-cases/objects/lone-trailing-comma-object.txt +3 -0
  3071. data/node_modules/json5/test/parse-cases/objects/no-comma-object.txt +4 -0
  3072. data/node_modules/json5/test/parse-cases/objects/reserved-unquoted-key.json5 +3 -0
  3073. data/node_modules/json5/test/parse-cases/objects/single-quoted-key.json5 +3 -0
  3074. data/node_modules/json5/test/parse-cases/objects/trailing-comma-object.json5 +3 -0
  3075. data/node_modules/json5/test/parse-cases/objects/unquoted-keys.json5 +8 -0
  3076. data/node_modules/json5/test/parse-cases/strings/escaped-single-quoted-string.json5 +1 -0
  3077. data/node_modules/json5/test/parse-cases/strings/multi-line-string.json5 +2 -0
  3078. data/node_modules/json5/test/parse-cases/strings/single-quoted-string.json5 +1 -0
  3079. data/node_modules/json5/test/parse-cases/strings/unescaped-multi-line-string.txt +2 -0
  3080. data/node_modules/json5/test/parse-cases/todo/unicode-escaped-unquoted-key.json5 +3 -0
  3081. data/node_modules/json5/test/parse-cases/todo/unicode-unquoted-key.json5 +3 -0
  3082. data/node_modules/json5/test/parse.js +89 -0
  3083. data/node_modules/json5/test/readme.md +23 -0
  3084. data/node_modules/json5/test/require.js +18 -0
  3085. data/node_modules/json5/test/stringify.js +498 -0
  3086. data/node_modules/lodash/LICENSE +22 -0
  3087. data/node_modules/lodash/README.md +121 -0
  3088. data/node_modules/lodash/array.js +44 -0
  3089. data/node_modules/lodash/array/chunk.js +46 -0
  3090. data/node_modules/lodash/array/compact.js +30 -0
  3091. data/node_modules/lodash/array/difference.js +29 -0
  3092. data/node_modules/lodash/array/drop.js +39 -0
  3093. data/node_modules/lodash/array/dropRight.js +40 -0
  3094. data/node_modules/lodash/array/dropRightWhile.js +59 -0
  3095. data/node_modules/lodash/array/dropWhile.js +59 -0
  3096. data/node_modules/lodash/array/fill.js +44 -0
  3097. data/node_modules/lodash/array/findIndex.js +53 -0
  3098. data/node_modules/lodash/array/findLastIndex.js +53 -0
  3099. data/node_modules/lodash/array/first.js +22 -0
  3100. data/node_modules/lodash/array/flatten.js +32 -0
  3101. data/node_modules/lodash/array/flattenDeep.js +21 -0
  3102. data/node_modules/lodash/array/head.js +1 -0
  3103. data/node_modules/lodash/array/indexOf.js +53 -0
  3104. data/node_modules/lodash/array/initial.js +20 -0
  3105. data/node_modules/lodash/array/intersection.js +58 -0
  3106. data/node_modules/lodash/array/last.js +19 -0
  3107. data/node_modules/lodash/array/lastIndexOf.js +60 -0
  3108. data/node_modules/lodash/array/object.js +1 -0
  3109. data/node_modules/lodash/array/pull.js +52 -0
  3110. data/node_modules/lodash/array/pullAt.js +40 -0
  3111. data/node_modules/lodash/array/remove.js +64 -0
  3112. data/node_modules/lodash/array/rest.js +21 -0
  3113. data/node_modules/lodash/array/slice.js +30 -0
  3114. data/node_modules/lodash/array/sortedIndex.js +53 -0
  3115. data/node_modules/lodash/array/sortedLastIndex.js +25 -0
  3116. data/node_modules/lodash/array/tail.js +1 -0
  3117. data/node_modules/lodash/array/take.js +39 -0
  3118. data/node_modules/lodash/array/takeRight.js +40 -0
  3119. data/node_modules/lodash/array/takeRightWhile.js +59 -0
  3120. data/node_modules/lodash/array/takeWhile.js +59 -0
  3121. data/node_modules/lodash/array/union.js +24 -0
  3122. data/node_modules/lodash/array/uniq.js +71 -0
  3123. data/node_modules/lodash/array/unique.js +1 -0
  3124. data/node_modules/lodash/array/unzip.js +47 -0
  3125. data/node_modules/lodash/array/unzipWith.js +41 -0
  3126. data/node_modules/lodash/array/without.js +27 -0
  3127. data/node_modules/lodash/array/xor.js +35 -0
  3128. data/node_modules/lodash/array/zip.js +21 -0
  3129. data/node_modules/lodash/array/zipObject.js +43 -0
  3130. data/node_modules/lodash/array/zipWith.js +36 -0
  3131. data/node_modules/lodash/chain.js +16 -0
  3132. data/node_modules/lodash/chain/chain.js +35 -0
  3133. data/node_modules/lodash/chain/commit.js +1 -0
  3134. data/node_modules/lodash/chain/concat.js +1 -0
  3135. data/node_modules/lodash/chain/lodash.js +125 -0
  3136. data/node_modules/lodash/chain/plant.js +1 -0
  3137. data/node_modules/lodash/chain/reverse.js +1 -0
  3138. data/node_modules/lodash/chain/run.js +1 -0
  3139. data/node_modules/lodash/chain/tap.js +29 -0
  3140. data/node_modules/lodash/chain/thru.js +26 -0
  3141. data/node_modules/lodash/chain/toJSON.js +1 -0
  3142. data/node_modules/lodash/chain/toString.js +1 -0
  3143. data/node_modules/lodash/chain/value.js +1 -0
  3144. data/node_modules/lodash/chain/valueOf.js +1 -0
  3145. data/node_modules/lodash/chain/wrapperChain.js +32 -0
  3146. data/node_modules/lodash/chain/wrapperCommit.js +32 -0
  3147. data/node_modules/lodash/chain/wrapperConcat.js +34 -0
  3148. data/node_modules/lodash/chain/wrapperPlant.js +45 -0
  3149. data/node_modules/lodash/chain/wrapperReverse.js +43 -0
  3150. data/node_modules/lodash/chain/wrapperToString.js +17 -0
  3151. data/node_modules/lodash/chain/wrapperValue.js +20 -0
  3152. data/node_modules/lodash/collection.js +44 -0
  3153. data/node_modules/lodash/collection/all.js +1 -0
  3154. data/node_modules/lodash/collection/any.js +1 -0
  3155. data/node_modules/lodash/collection/at.js +29 -0
  3156. data/node_modules/lodash/collection/collect.js +1 -0
  3157. data/node_modules/lodash/collection/contains.js +1 -0
  3158. data/node_modules/lodash/collection/countBy.js +54 -0
  3159. data/node_modules/lodash/collection/detect.js +1 -0
  3160. data/node_modules/lodash/collection/each.js +1 -0
  3161. data/node_modules/lodash/collection/eachRight.js +1 -0
  3162. data/node_modules/lodash/collection/every.js +66 -0
  3163. data/node_modules/lodash/collection/filter.js +61 -0
  3164. data/node_modules/lodash/collection/find.js +56 -0
  3165. data/node_modules/lodash/collection/findLast.js +25 -0
  3166. data/node_modules/lodash/collection/findWhere.js +37 -0
  3167. data/node_modules/lodash/collection/foldl.js +1 -0
  3168. data/node_modules/lodash/collection/foldr.js +1 -0
  3169. data/node_modules/lodash/collection/forEach.js +37 -0
  3170. data/node_modules/lodash/collection/forEachRight.js +26 -0
  3171. data/node_modules/lodash/collection/groupBy.js +59 -0
  3172. data/node_modules/lodash/collection/include.js +1 -0
  3173. data/node_modules/lodash/collection/includes.js +57 -0
  3174. data/node_modules/lodash/collection/indexBy.js +53 -0
  3175. data/node_modules/lodash/collection/inject.js +1 -0
  3176. data/node_modules/lodash/collection/invoke.js +42 -0
  3177. data/node_modules/lodash/collection/map.js +68 -0
  3178. data/node_modules/lodash/collection/max.js +1 -0
  3179. data/node_modules/lodash/collection/min.js +1 -0
  3180. data/node_modules/lodash/collection/partition.js +66 -0
  3181. data/node_modules/lodash/collection/pluck.js +31 -0
  3182. data/node_modules/lodash/collection/reduce.js +44 -0
  3183. data/node_modules/lodash/collection/reduceRight.js +29 -0
  3184. data/node_modules/lodash/collection/reject.js +50 -0
  3185. data/node_modules/lodash/collection/sample.js +50 -0
  3186. data/node_modules/lodash/collection/select.js +1 -0
  3187. data/node_modules/lodash/collection/shuffle.js +24 -0
  3188. data/node_modules/lodash/collection/size.js +30 -0
  3189. data/node_modules/lodash/collection/some.js +67 -0
  3190. data/node_modules/lodash/collection/sortBy.js +71 -0
  3191. data/node_modules/lodash/collection/sortByAll.js +52 -0
  3192. data/node_modules/lodash/collection/sortByOrder.js +55 -0
  3193. data/node_modules/lodash/collection/sum.js +1 -0
  3194. data/node_modules/lodash/collection/where.js +37 -0
  3195. data/node_modules/lodash/date.js +3 -0
  3196. data/node_modules/lodash/date/now.js +24 -0
  3197. data/node_modules/lodash/function.js +28 -0
  3198. data/node_modules/lodash/function/after.js +48 -0
  3199. data/node_modules/lodash/function/ary.js +34 -0
  3200. data/node_modules/lodash/function/backflow.js +1 -0
  3201. data/node_modules/lodash/function/before.js +42 -0
  3202. data/node_modules/lodash/function/bind.js +56 -0
  3203. data/node_modules/lodash/function/bindAll.js +50 -0
  3204. data/node_modules/lodash/function/bindKey.js +66 -0
  3205. data/node_modules/lodash/function/compose.js +1 -0
  3206. data/node_modules/lodash/function/curry.js +51 -0
  3207. data/node_modules/lodash/function/curryRight.js +48 -0
  3208. data/node_modules/lodash/function/debounce.js +181 -0
  3209. data/node_modules/lodash/function/defer.js +25 -0
  3210. data/node_modules/lodash/function/delay.js +26 -0
  3211. data/node_modules/lodash/function/flow.js +25 -0
  3212. data/node_modules/lodash/function/flowRight.js +25 -0
  3213. data/node_modules/lodash/function/memoize.js +80 -0
  3214. data/node_modules/lodash/function/modArgs.js +58 -0
  3215. data/node_modules/lodash/function/negate.js +32 -0
  3216. data/node_modules/lodash/function/once.js +24 -0
  3217. data/node_modules/lodash/function/partial.js +43 -0
  3218. data/node_modules/lodash/function/partialRight.js +42 -0
  3219. data/node_modules/lodash/function/rearg.js +40 -0
  3220. data/node_modules/lodash/function/restParam.js +58 -0
  3221. data/node_modules/lodash/function/spread.js +44 -0
  3222. data/node_modules/lodash/function/throttle.js +62 -0
  3223. data/node_modules/lodash/function/wrap.js +33 -0
  3224. data/node_modules/lodash/index.js +12351 -0
  3225. data/node_modules/lodash/internal/LazyWrapper.js +26 -0
  3226. data/node_modules/lodash/internal/LodashWrapper.js +21 -0
  3227. data/node_modules/lodash/internal/MapCache.js +24 -0
  3228. data/node_modules/lodash/internal/SetCache.js +29 -0
  3229. data/node_modules/lodash/internal/arrayConcat.js +25 -0
  3230. data/node_modules/lodash/internal/arrayCopy.js +20 -0
  3231. data/node_modules/lodash/internal/arrayEach.js +22 -0
  3232. data/node_modules/lodash/internal/arrayEachRight.js +21 -0
  3233. data/node_modules/lodash/internal/arrayEvery.js +23 -0
  3234. data/node_modules/lodash/internal/arrayExtremum.js +30 -0
  3235. data/node_modules/lodash/internal/arrayFilter.js +25 -0
  3236. data/node_modules/lodash/internal/arrayMap.js +21 -0
  3237. data/node_modules/lodash/internal/arrayPush.js +20 -0
  3238. data/node_modules/lodash/internal/arrayReduce.js +26 -0
  3239. data/node_modules/lodash/internal/arrayReduceRight.js +24 -0
  3240. data/node_modules/lodash/internal/arraySome.js +23 -0
  3241. data/node_modules/lodash/internal/arraySum.js +20 -0
  3242. data/node_modules/lodash/internal/assignDefaults.js +13 -0
  3243. data/node_modules/lodash/internal/assignOwnDefaults.js +26 -0
  3244. data/node_modules/lodash/internal/assignWith.js +32 -0
  3245. data/node_modules/lodash/internal/baseAssign.js +19 -0
  3246. data/node_modules/lodash/internal/baseAt.js +32 -0
  3247. data/node_modules/lodash/internal/baseCallback.js +35 -0
  3248. data/node_modules/lodash/internal/baseClone.js +128 -0
  3249. data/node_modules/lodash/internal/baseCompareAscending.js +34 -0
  3250. data/node_modules/lodash/internal/baseCopy.js +23 -0
  3251. data/node_modules/lodash/internal/baseCreate.js +23 -0
  3252. data/node_modules/lodash/internal/baseDelay.js +21 -0
  3253. data/node_modules/lodash/internal/baseDifference.js +55 -0
  3254. data/node_modules/lodash/internal/baseEach.js +15 -0
  3255. data/node_modules/lodash/internal/baseEachRight.js +15 -0
  3256. data/node_modules/lodash/internal/baseEvery.js +22 -0
  3257. data/node_modules/lodash/internal/baseExtremum.js +29 -0
  3258. data/node_modules/lodash/internal/baseFill.js +31 -0
  3259. data/node_modules/lodash/internal/baseFilter.js +22 -0
  3260. data/node_modules/lodash/internal/baseFind.js +25 -0
  3261. data/node_modules/lodash/internal/baseFindIndex.js +23 -0
  3262. data/node_modules/lodash/internal/baseFlatten.js +41 -0
  3263. data/node_modules/lodash/internal/baseFor.js +17 -0
  3264. data/node_modules/lodash/internal/baseForIn.js +17 -0
  3265. data/node_modules/lodash/internal/baseForOwn.js +17 -0
  3266. data/node_modules/lodash/internal/baseForOwnRight.js +17 -0
  3267. data/node_modules/lodash/internal/baseForRight.js +15 -0
  3268. data/node_modules/lodash/internal/baseFunctions.js +27 -0
  3269. data/node_modules/lodash/internal/baseGet.js +29 -0
  3270. data/node_modules/lodash/internal/baseIndexOf.js +27 -0
  3271. data/node_modules/lodash/internal/baseIsEqual.js +28 -0
  3272. data/node_modules/lodash/internal/baseIsEqualDeep.js +102 -0
  3273. data/node_modules/lodash/internal/baseIsFunction.js +15 -0
  3274. data/node_modules/lodash/internal/baseIsMatch.js +52 -0
  3275. data/node_modules/lodash/internal/baseLodash.js +10 -0
  3276. data/node_modules/lodash/internal/baseMap.js +23 -0
  3277. data/node_modules/lodash/internal/baseMatches.js +30 -0
  3278. data/node_modules/lodash/internal/baseMatchesProperty.js +45 -0
  3279. data/node_modules/lodash/internal/baseMerge.js +56 -0
  3280. data/node_modules/lodash/internal/baseMergeDeep.js +67 -0
  3281. data/node_modules/lodash/internal/baseProperty.js +14 -0
  3282. data/node_modules/lodash/internal/basePropertyDeep.js +19 -0
  3283. data/node_modules/lodash/internal/basePullAt.js +30 -0
  3284. data/node_modules/lodash/internal/baseRandom.js +18 -0
  3285. data/node_modules/lodash/internal/baseReduce.js +24 -0
  3286. data/node_modules/lodash/internal/baseSetData.js +17 -0
  3287. data/node_modules/lodash/internal/baseSlice.js +32 -0
  3288. data/node_modules/lodash/internal/baseSome.js +23 -0
  3289. data/node_modules/lodash/internal/baseSortBy.js +21 -0
  3290. data/node_modules/lodash/internal/baseSortByOrder.js +31 -0
  3291. data/node_modules/lodash/internal/baseSum.js +20 -0
  3292. data/node_modules/lodash/internal/baseToString.js +13 -0
  3293. data/node_modules/lodash/internal/baseUniq.js +60 -0
  3294. data/node_modules/lodash/internal/baseValues.js +22 -0
  3295. data/node_modules/lodash/internal/baseWhile.js +24 -0
  3296. data/node_modules/lodash/internal/baseWrapperValue.js +29 -0
  3297. data/node_modules/lodash/internal/binaryIndex.js +39 -0
  3298. data/node_modules/lodash/internal/binaryIndexBy.js +57 -0
  3299. data/node_modules/lodash/internal/bindCallback.js +39 -0
  3300. data/node_modules/lodash/internal/bufferClone.js +20 -0
  3301. data/node_modules/lodash/internal/cacheIndexOf.js +19 -0
  3302. data/node_modules/lodash/internal/cachePush.js +20 -0
  3303. data/node_modules/lodash/internal/charsLeftIndex.js +18 -0
  3304. data/node_modules/lodash/internal/charsRightIndex.js +17 -0
  3305. data/node_modules/lodash/internal/compareAscending.js +16 -0
  3306. data/node_modules/lodash/internal/compareMultiple.js +44 -0
  3307. data/node_modules/lodash/internal/composeArgs.js +34 -0
  3308. data/node_modules/lodash/internal/composeArgsRight.js +36 -0
  3309. data/node_modules/lodash/internal/createAggregator.js +35 -0
  3310. data/node_modules/lodash/internal/createAssigner.js +41 -0
  3311. data/node_modules/lodash/internal/createBaseEach.js +31 -0
  3312. data/node_modules/lodash/internal/createBaseFor.js +27 -0
  3313. data/node_modules/lodash/internal/createBindWrapper.js +22 -0
  3314. data/node_modules/lodash/internal/createCache.js +21 -0
  3315. data/node_modules/lodash/internal/createCompounder.js +26 -0
  3316. data/node_modules/lodash/internal/createCtorWrapper.js +37 -0
  3317. data/node_modules/lodash/internal/createCurry.js +23 -0
  3318. data/node_modules/lodash/internal/createDefaults.js +22 -0
  3319. data/node_modules/lodash/internal/createExtremum.js +33 -0
  3320. data/node_modules/lodash/internal/createFind.js +25 -0
  3321. data/node_modules/lodash/internal/createFindIndex.js +21 -0
  3322. data/node_modules/lodash/internal/createFindKey.js +18 -0
  3323. data/node_modules/lodash/internal/createFlow.js +74 -0
  3324. data/node_modules/lodash/internal/createForEach.js +20 -0
  3325. data/node_modules/lodash/internal/createForIn.js +20 -0
  3326. data/node_modules/lodash/internal/createForOwn.js +19 -0
  3327. data/node_modules/lodash/internal/createHybridWrapper.js +111 -0
  3328. data/node_modules/lodash/internal/createObjectMapper.js +26 -0
  3329. data/node_modules/lodash/internal/createPadDir.js +18 -0
  3330. data/node_modules/lodash/internal/createPadding.js +29 -0
  3331. data/node_modules/lodash/internal/createPartial.js +20 -0
  3332. data/node_modules/lodash/internal/createPartialWrapper.js +43 -0
  3333. data/node_modules/lodash/internal/createReduce.js +22 -0
  3334. data/node_modules/lodash/internal/createRound.js +23 -0
  3335. data/node_modules/lodash/internal/createSortedIndex.js +20 -0
  3336. data/node_modules/lodash/internal/createWrapper.js +86 -0
  3337. data/node_modules/lodash/internal/deburrLetter.js +33 -0
  3338. data/node_modules/lodash/internal/equalArrays.js +51 -0
  3339. data/node_modules/lodash/internal/equalByTag.js +48 -0
  3340. data/node_modules/lodash/internal/equalObjects.js +67 -0
  3341. data/node_modules/lodash/internal/escapeHtmlChar.js +22 -0
  3342. data/node_modules/lodash/internal/escapeRegExpChar.js +38 -0
  3343. data/node_modules/lodash/internal/escapeStringChar.js +22 -0
  3344. data/node_modules/lodash/internal/getData.js +15 -0
  3345. data/node_modules/lodash/internal/getFuncName.js +25 -0
  3346. data/node_modules/lodash/internal/getLength.js +15 -0
  3347. data/node_modules/lodash/internal/getMatchData.js +21 -0
  3348. data/node_modules/lodash/internal/getNative.js +16 -0
  3349. data/node_modules/lodash/internal/getView.js +33 -0
  3350. data/node_modules/lodash/internal/indexOfNaN.js +23 -0
  3351. data/node_modules/lodash/internal/initCloneArray.js +26 -0
  3352. data/node_modules/lodash/internal/initCloneByTag.js +63 -0
  3353. data/node_modules/lodash/internal/initCloneObject.js +16 -0
  3354. data/node_modules/lodash/internal/invokePath.js +26 -0
  3355. data/node_modules/lodash/internal/isArrayLike.js +15 -0
  3356. data/node_modules/lodash/internal/isIndex.js +24 -0
  3357. data/node_modules/lodash/internal/isIterateeCall.js +28 -0
  3358. data/node_modules/lodash/internal/isKey.js +28 -0
  3359. data/node_modules/lodash/internal/isLaziable.js +27 -0
  3360. data/node_modules/lodash/internal/isLength.js +20 -0
  3361. data/node_modules/lodash/internal/isObjectLike.js +12 -0
  3362. data/node_modules/lodash/internal/isSpace.js +14 -0
  3363. data/node_modules/lodash/internal/isStrictComparable.js +15 -0
  3364. data/node_modules/lodash/internal/lazyClone.js +23 -0
  3365. data/node_modules/lodash/internal/lazyReverse.js +23 -0
  3366. data/node_modules/lodash/internal/lazyValue.js +72 -0
  3367. data/node_modules/lodash/internal/mapDelete.js +14 -0
  3368. data/node_modules/lodash/internal/mapGet.js +14 -0
  3369. data/node_modules/lodash/internal/mapHas.js +20 -0
  3370. data/node_modules/lodash/internal/mapSet.js +18 -0
  3371. data/node_modules/lodash/internal/mergeData.js +89 -0
  3372. data/node_modules/lodash/internal/mergeDefaults.js +15 -0
  3373. data/node_modules/lodash/internal/metaMap.js +9 -0
  3374. data/node_modules/lodash/internal/pickByArray.js +28 -0
  3375. data/node_modules/lodash/internal/pickByCallback.js +22 -0
  3376. data/node_modules/lodash/internal/reEscape.js +4 -0
  3377. data/node_modules/lodash/internal/reEvaluate.js +4 -0
  3378. data/node_modules/lodash/internal/reInterpolate.js +4 -0
  3379. data/node_modules/lodash/internal/realNames.js +4 -0
  3380. data/node_modules/lodash/internal/reorder.js +29 -0
  3381. data/node_modules/lodash/internal/replaceHolders.js +28 -0
  3382. data/node_modules/lodash/internal/setData.js +41 -0
  3383. data/node_modules/lodash/internal/shimKeys.js +41 -0
  3384. data/node_modules/lodash/internal/sortedUniq.js +29 -0
  3385. data/node_modules/lodash/internal/toIterable.js +22 -0
  3386. data/node_modules/lodash/internal/toObject.js +14 -0
  3387. data/node_modules/lodash/internal/toPath.js +28 -0
  3388. data/node_modules/lodash/internal/trimmedLeftIndex.js +19 -0
  3389. data/node_modules/lodash/internal/trimmedRightIndex.js +18 -0
  3390. data/node_modules/lodash/internal/unescapeHtmlChar.js +22 -0
  3391. data/node_modules/lodash/internal/wrapperClone.js +18 -0
  3392. data/node_modules/lodash/lang.js +32 -0
  3393. data/node_modules/lodash/lang/clone.js +70 -0
  3394. data/node_modules/lodash/lang/cloneDeep.js +55 -0
  3395. data/node_modules/lodash/lang/eq.js +1 -0
  3396. data/node_modules/lodash/lang/gt.js +25 -0
  3397. data/node_modules/lodash/lang/gte.js +25 -0
  3398. data/node_modules/lodash/lang/isArguments.js +34 -0
  3399. data/node_modules/lodash/lang/isArray.js +40 -0
  3400. data/node_modules/lodash/lang/isBoolean.js +35 -0
  3401. data/node_modules/lodash/lang/isDate.js +35 -0
  3402. data/node_modules/lodash/lang/isElement.js +24 -0
  3403. data/node_modules/lodash/lang/isEmpty.js +47 -0
  3404. data/node_modules/lodash/lang/isEqual.js +54 -0
  3405. data/node_modules/lodash/lang/isError.js +36 -0
  3406. data/node_modules/lodash/lang/isFinite.js +35 -0
  3407. data/node_modules/lodash/lang/isFunction.js +38 -0
  3408. data/node_modules/lodash/lang/isMatch.js +49 -0
  3409. data/node_modules/lodash/lang/isNaN.js +34 -0
  3410. data/node_modules/lodash/lang/isNative.js +48 -0
  3411. data/node_modules/lodash/lang/isNull.js +21 -0
  3412. data/node_modules/lodash/lang/isNumber.js +41 -0
  3413. data/node_modules/lodash/lang/isObject.js +28 -0
  3414. data/node_modules/lodash/lang/isPlainObject.js +71 -0
  3415. data/node_modules/lodash/lang/isRegExp.js +35 -0
  3416. data/node_modules/lodash/lang/isString.js +35 -0
  3417. data/node_modules/lodash/lang/isTypedArray.js +74 -0
  3418. data/node_modules/lodash/lang/isUndefined.js +21 -0
  3419. data/node_modules/lodash/lang/lt.js +25 -0
  3420. data/node_modules/lodash/lang/lte.js +25 -0
  3421. data/node_modules/lodash/lang/toArray.js +32 -0
  3422. data/node_modules/lodash/lang/toPlainObject.js +31 -0
  3423. data/node_modules/lodash/math.js +9 -0
  3424. data/node_modules/lodash/math/add.js +19 -0
  3425. data/node_modules/lodash/math/ceil.js +25 -0
  3426. data/node_modules/lodash/math/floor.js +25 -0
  3427. data/node_modules/lodash/math/max.js +56 -0
  3428. data/node_modules/lodash/math/min.js +56 -0
  3429. data/node_modules/lodash/math/round.js +25 -0
  3430. data/node_modules/lodash/math/sum.js +50 -0
  3431. data/node_modules/lodash/number.js +4 -0
  3432. data/node_modules/lodash/number/inRange.js +47 -0
  3433. data/node_modules/lodash/number/random.js +70 -0
  3434. data/node_modules/lodash/object.js +31 -0
  3435. data/node_modules/lodash/object/assign.js +43 -0
  3436. data/node_modules/lodash/object/create.js +47 -0
  3437. data/node_modules/lodash/object/defaults.js +25 -0
  3438. data/node_modules/lodash/object/defaultsDeep.js +25 -0
  3439. data/node_modules/lodash/object/extend.js +1 -0
  3440. data/node_modules/lodash/object/findKey.js +54 -0
  3441. data/node_modules/lodash/object/findLastKey.js +54 -0
  3442. data/node_modules/lodash/object/forIn.js +33 -0
  3443. data/node_modules/lodash/object/forInRight.js +31 -0
  3444. data/node_modules/lodash/object/forOwn.js +33 -0
  3445. data/node_modules/lodash/object/forOwnRight.js +31 -0
  3446. data/node_modules/lodash/object/functions.js +23 -0
  3447. data/node_modules/lodash/object/get.js +33 -0
  3448. data/node_modules/lodash/object/has.js +57 -0
  3449. data/node_modules/lodash/object/invert.js +60 -0
  3450. data/node_modules/lodash/object/keys.js +45 -0
  3451. data/node_modules/lodash/object/keysIn.js +64 -0
  3452. data/node_modules/lodash/object/mapKeys.js +25 -0
  3453. data/node_modules/lodash/object/mapValues.js +46 -0
  3454. data/node_modules/lodash/object/merge.js +54 -0
  3455. data/node_modules/lodash/object/methods.js +1 -0
  3456. data/node_modules/lodash/object/omit.js +47 -0
  3457. data/node_modules/lodash/object/pairs.js +33 -0
  3458. data/node_modules/lodash/object/pick.js +42 -0
  3459. data/node_modules/lodash/object/result.js +49 -0
  3460. data/node_modules/lodash/object/set.js +55 -0
  3461. data/node_modules/lodash/object/transform.js +61 -0
  3462. data/node_modules/lodash/object/values.js +33 -0
  3463. data/node_modules/lodash/object/valuesIn.js +31 -0
  3464. data/node_modules/lodash/package.json +129 -0
  3465. data/node_modules/lodash/string.js +25 -0
  3466. data/node_modules/lodash/string/camelCase.js +27 -0
  3467. data/node_modules/lodash/string/capitalize.js +21 -0
  3468. data/node_modules/lodash/string/deburr.js +29 -0
  3469. data/node_modules/lodash/string/endsWith.js +40 -0
  3470. data/node_modules/lodash/string/escape.js +48 -0
  3471. data/node_modules/lodash/string/escapeRegExp.js +32 -0
  3472. data/node_modules/lodash/string/kebabCase.js +26 -0
  3473. data/node_modules/lodash/string/pad.js +47 -0
  3474. data/node_modules/lodash/string/padLeft.js +27 -0
  3475. data/node_modules/lodash/string/padRight.js +27 -0
  3476. data/node_modules/lodash/string/parseInt.js +46 -0
  3477. data/node_modules/lodash/string/repeat.js +47 -0
  3478. data/node_modules/lodash/string/snakeCase.js +26 -0
  3479. data/node_modules/lodash/string/startCase.js +26 -0
  3480. data/node_modules/lodash/string/startsWith.js +36 -0
  3481. data/node_modules/lodash/string/template.js +226 -0
  3482. data/node_modules/lodash/string/templateSettings.js +67 -0
  3483. data/node_modules/lodash/string/trim.js +42 -0
  3484. data/node_modules/lodash/string/trimLeft.js +36 -0
  3485. data/node_modules/lodash/string/trimRight.js +36 -0
  3486. data/node_modules/lodash/string/trunc.js +105 -0
  3487. data/node_modules/lodash/string/unescape.js +33 -0
  3488. data/node_modules/lodash/string/words.js +38 -0
  3489. data/node_modules/lodash/support.js +10 -0
  3490. data/node_modules/lodash/utility.js +18 -0
  3491. data/node_modules/lodash/utility/attempt.js +32 -0
  3492. data/node_modules/lodash/utility/callback.js +53 -0
  3493. data/node_modules/lodash/utility/constant.js +23 -0
  3494. data/node_modules/lodash/utility/identity.js +20 -0
  3495. data/node_modules/lodash/utility/iteratee.js +1 -0
  3496. data/node_modules/lodash/utility/matches.js +33 -0
  3497. data/node_modules/lodash/utility/matchesProperty.js +32 -0
  3498. data/node_modules/lodash/utility/method.js +33 -0
  3499. data/node_modules/lodash/utility/methodOf.js +32 -0
  3500. data/node_modules/lodash/utility/mixin.js +82 -0
  3501. data/node_modules/lodash/utility/noop.js +19 -0
  3502. data/node_modules/lodash/utility/property.js +31 -0
  3503. data/node_modules/lodash/utility/propertyOf.js +30 -0
  3504. data/node_modules/lodash/utility/range.js +66 -0
  3505. data/node_modules/lodash/utility/times.js +60 -0
  3506. data/node_modules/lodash/utility/uniqueId.js +27 -0
  3507. data/node_modules/loose-envify/.npmignore +3 -0
  3508. data/node_modules/loose-envify/README.md +45 -0
  3509. data/node_modules/loose-envify/custom.js +2 -0
  3510. data/node_modules/loose-envify/index.js +1 -0
  3511. data/node_modules/loose-envify/loose-envify.js +36 -0
  3512. data/node_modules/loose-envify/package.json +86 -0
  3513. data/node_modules/loose-envify/replace.js +65 -0
  3514. data/node_modules/minimatch/LICENSE +15 -0
  3515. data/node_modules/minimatch/README.md +216 -0
  3516. data/node_modules/minimatch/browser.js +1159 -0
  3517. data/node_modules/minimatch/minimatch.js +912 -0
  3518. data/node_modules/minimatch/package.json +88 -0
  3519. data/node_modules/minimist/.travis.yml +8 -0
  3520. data/node_modules/minimist/LICENSE +18 -0
  3521. data/node_modules/minimist/example/parse.js +2 -0
  3522. data/node_modules/minimist/index.js +236 -0
  3523. data/node_modules/minimist/package.json +97 -0
  3524. data/node_modules/minimist/readme.markdown +91 -0
  3525. data/node_modules/minimist/test/all_bool.js +32 -0
  3526. data/node_modules/minimist/test/bool.js +166 -0
  3527. data/node_modules/minimist/test/dash.js +31 -0
  3528. data/node_modules/minimist/test/default_bool.js +35 -0
  3529. data/node_modules/minimist/test/dotted.js +22 -0
  3530. data/node_modules/minimist/test/kv_short.js +16 -0
  3531. data/node_modules/minimist/test/long.js +31 -0
  3532. data/node_modules/minimist/test/num.js +36 -0
  3533. data/node_modules/minimist/test/parse.js +197 -0
  3534. data/node_modules/minimist/test/parse_modified.js +9 -0
  3535. data/node_modules/minimist/test/short.js +67 -0
  3536. data/node_modules/minimist/test/stop_early.js +15 -0
  3537. data/node_modules/minimist/test/unknown.js +102 -0
  3538. data/node_modules/minimist/test/whitespace.js +8 -0
  3539. data/node_modules/mkdirp/.travis.yml +8 -0
  3540. data/node_modules/mkdirp/LICENSE +21 -0
  3541. data/node_modules/mkdirp/bin/cmd.js +33 -0
  3542. data/node_modules/mkdirp/bin/usage.txt +12 -0
  3543. data/node_modules/mkdirp/examples/pow.js +6 -0
  3544. data/node_modules/mkdirp/index.js +98 -0
  3545. data/node_modules/mkdirp/node_modules/minimist/.travis.yml +4 -0
  3546. data/node_modules/mkdirp/node_modules/minimist/LICENSE +18 -0
  3547. data/node_modules/mkdirp/node_modules/minimist/example/parse.js +2 -0
  3548. data/node_modules/mkdirp/node_modules/minimist/index.js +187 -0
  3549. data/node_modules/mkdirp/node_modules/minimist/package.json +93 -0
  3550. data/node_modules/mkdirp/node_modules/minimist/readme.markdown +73 -0
  3551. data/node_modules/mkdirp/node_modules/minimist/test/dash.js +24 -0
  3552. data/node_modules/mkdirp/node_modules/minimist/test/default_bool.js +20 -0
  3553. data/node_modules/mkdirp/node_modules/minimist/test/dotted.js +16 -0
  3554. data/node_modules/mkdirp/node_modules/minimist/test/long.js +31 -0
  3555. data/node_modules/mkdirp/node_modules/minimist/test/parse.js +318 -0
  3556. data/node_modules/mkdirp/node_modules/minimist/test/parse_modified.js +9 -0
  3557. data/node_modules/mkdirp/node_modules/minimist/test/short.js +67 -0
  3558. data/node_modules/mkdirp/node_modules/minimist/test/whitespace.js +8 -0
  3559. data/node_modules/mkdirp/package.json +85 -0
  3560. data/node_modules/mkdirp/readme.markdown +100 -0
  3561. data/node_modules/mkdirp/test/chmod.js +41 -0
  3562. data/node_modules/mkdirp/test/clobber.js +38 -0
  3563. data/node_modules/mkdirp/test/mkdirp.js +28 -0
  3564. data/node_modules/mkdirp/test/opts_fs.js +29 -0
  3565. data/node_modules/mkdirp/test/opts_fs_sync.js +27 -0
  3566. data/node_modules/mkdirp/test/perm.js +32 -0
  3567. data/node_modules/mkdirp/test/perm_sync.js +36 -0
  3568. data/node_modules/mkdirp/test/race.js +37 -0
  3569. data/node_modules/mkdirp/test/rel.js +32 -0
  3570. data/node_modules/mkdirp/test/return.js +25 -0
  3571. data/node_modules/mkdirp/test/return_sync.js +24 -0
  3572. data/node_modules/mkdirp/test/root.js +19 -0
  3573. data/node_modules/mkdirp/test/sync.js +32 -0
  3574. data/node_modules/mkdirp/test/umask.js +28 -0
  3575. data/node_modules/mkdirp/test/umask_sync.js +32 -0
  3576. data/node_modules/ms/.npmignore +5 -0
  3577. data/node_modules/ms/History.md +66 -0
  3578. data/node_modules/ms/LICENSE +20 -0
  3579. data/node_modules/ms/README.md +35 -0
  3580. data/node_modules/ms/index.js +125 -0
  3581. data/node_modules/ms/package.json +74 -0
  3582. data/node_modules/number-is-nan/index.js +4 -0
  3583. data/node_modules/number-is-nan/license +21 -0
  3584. data/node_modules/number-is-nan/package.json +93 -0
  3585. data/node_modules/number-is-nan/readme.md +30 -0
  3586. data/node_modules/os-tmpdir/index.js +25 -0
  3587. data/node_modules/os-tmpdir/license +21 -0
  3588. data/node_modules/os-tmpdir/package.json +96 -0
  3589. data/node_modules/os-tmpdir/readme.md +36 -0
  3590. data/node_modules/path-exists/index.js +21 -0
  3591. data/node_modules/path-exists/license +21 -0
  3592. data/node_modules/path-exists/package.json +93 -0
  3593. data/node_modules/path-exists/readme.md +60 -0
  3594. data/node_modules/path-is-absolute/index.js +20 -0
  3595. data/node_modules/path-is-absolute/license +21 -0
  3596. data/node_modules/path-is-absolute/package.json +97 -0
  3597. data/node_modules/path-is-absolute/readme.md +51 -0
  3598. data/node_modules/private/.travis.yml +6 -0
  3599. data/node_modules/private/LICENSE +20 -0
  3600. data/node_modules/private/README.md +246 -0
  3601. data/node_modules/private/package.json +86 -0
  3602. data/node_modules/private/private.js +129 -0
  3603. data/node_modules/private/test/run.js +68 -0
  3604. data/node_modules/regenerate/LICENSE-MIT.txt +20 -0
  3605. data/node_modules/regenerate/README.md +332 -0
  3606. data/node_modules/regenerate/package.json +88 -0
  3607. data/node_modules/regenerate/regenerate.js +1158 -0
  3608. data/node_modules/regenerate/x.js +15 -0
  3609. data/node_modules/regexpu-core/LICENSE-MIT.txt +20 -0
  3610. data/node_modules/regexpu-core/README.md +62 -0
  3611. data/node_modules/regexpu-core/data/character-class-escape-sets.js +104 -0
  3612. data/node_modules/regexpu-core/data/iu-mappings.json +296 -0
  3613. data/node_modules/regexpu-core/package.json +112 -0
  3614. data/node_modules/regexpu-core/rewrite-pattern.js +193 -0
  3615. data/node_modules/regjsgen/LICENSE.txt +20 -0
  3616. data/node_modules/regjsgen/README.md +60 -0
  3617. data/node_modules/regjsgen/package.json +98 -0
  3618. data/node_modules/regjsgen/regjsgen.js +408 -0
  3619. data/node_modules/regjsparser/CHANGELOG +12 -0
  3620. data/node_modules/regjsparser/LICENSE.BSD +19 -0
  3621. data/node_modules/regjsparser/README.md +34 -0
  3622. data/node_modules/regjsparser/bin/parser +50 -0
  3623. data/node_modules/regjsparser/package.json +86 -0
  3624. data/node_modules/regjsparser/parser.js +962 -0
  3625. data/node_modules/repeating/cli.js +36 -0
  3626. data/node_modules/repeating/index.js +24 -0
  3627. data/node_modules/repeating/license +21 -0
  3628. data/node_modules/repeating/package.json +100 -0
  3629. data/node_modules/repeating/readme.md +40 -0
  3630. data/node_modules/shebang-regex/index.js +2 -0
  3631. data/node_modules/shebang-regex/license +21 -0
  3632. data/node_modules/shebang-regex/package.json +88 -0
  3633. data/node_modules/shebang-regex/readme.md +29 -0
  3634. data/node_modules/slash/index.js +11 -0
  3635. data/node_modules/slash/package.json +88 -0
  3636. data/node_modules/slash/readme.md +44 -0
  3637. data/node_modules/source-map-support/.npmignore +1 -0
  3638. data/node_modules/source-map-support/LICENSE.md +21 -0
  3639. data/node_modules/source-map-support/README.md +165 -0
  3640. data/node_modules/source-map-support/amd-test/browser-source-map-support.js +89 -0
  3641. data/node_modules/source-map-support/amd-test/index.html +6 -0
  3642. data/node_modules/source-map-support/amd-test/require.js +36 -0
  3643. data/node_modules/source-map-support/amd-test/script.coffee +13 -0
  3644. data/node_modules/source-map-support/amd-test/script.js +24 -0
  3645. data/node_modules/source-map-support/amd-test/script.map +10 -0
  3646. data/node_modules/source-map-support/browser-source-map-support.js +89 -0
  3647. data/node_modules/source-map-support/browser-test/index.html +6 -0
  3648. data/node_modules/source-map-support/browser-test/script.coffee +12 -0
  3649. data/node_modules/source-map-support/browser-test/script.js +25 -0
  3650. data/node_modules/source-map-support/browser-test/script.map +10 -0
  3651. data/node_modules/source-map-support/build.js +69 -0
  3652. data/node_modules/source-map-support/header-test/index.html +6 -0
  3653. data/node_modules/source-map-support/header-test/script.coffee +12 -0
  3654. data/node_modules/source-map-support/header-test/script.js +25 -0
  3655. data/node_modules/source-map-support/header-test/script.map +10 -0
  3656. data/node_modules/source-map-support/header-test/server.js +45 -0
  3657. data/node_modules/source-map-support/node_modules/source-map/.npmignore +2 -0
  3658. data/node_modules/source-map-support/node_modules/source-map/.travis.yml +4 -0
  3659. data/node_modules/source-map-support/node_modules/source-map/CHANGELOG.md +121 -0
  3660. data/node_modules/source-map-support/node_modules/source-map/LICENSE +28 -0
  3661. data/node_modules/source-map-support/node_modules/source-map/Makefile.dryice.js +166 -0
  3662. data/node_modules/source-map-support/node_modules/source-map/README.md +434 -0
  3663. data/node_modules/source-map-support/node_modules/source-map/build/assert-shim.js +56 -0
  3664. data/node_modules/source-map-support/node_modules/source-map/build/mini-require.js +152 -0
  3665. data/node_modules/source-map-support/node_modules/source-map/build/prefix-source-map.jsm +20 -0
  3666. data/node_modules/source-map-support/node_modules/source-map/build/prefix-utils.jsm +18 -0
  3667. data/node_modules/source-map-support/node_modules/source-map/build/suffix-browser.js +8 -0
  3668. data/node_modules/source-map-support/node_modules/source-map/build/suffix-source-map.jsm +6 -0
  3669. data/node_modules/source-map-support/node_modules/source-map/build/suffix-utils.jsm +21 -0
  3670. data/node_modules/source-map-support/node_modules/source-map/build/test-prefix.js +8 -0
  3671. data/node_modules/source-map-support/node_modules/source-map/build/test-suffix.js +3 -0
  3672. data/node_modules/source-map-support/node_modules/source-map/lib/source-map.js +8 -0
  3673. data/node_modules/source-map-support/node_modules/source-map/lib/source-map/array-set.js +97 -0
  3674. data/node_modules/source-map-support/node_modules/source-map/lib/source-map/base64-vlq.js +144 -0
  3675. data/node_modules/source-map-support/node_modules/source-map/lib/source-map/base64.js +42 -0
  3676. data/node_modules/source-map-support/node_modules/source-map/lib/source-map/binary-search.js +81 -0
  3677. data/node_modules/source-map-support/node_modules/source-map/lib/source-map/source-map-consumer.js +478 -0
  3678. data/node_modules/source-map-support/node_modules/source-map/lib/source-map/source-map-generator.js +380 -0
  3679. data/node_modules/source-map-support/node_modules/source-map/lib/source-map/source-node.js +371 -0
  3680. data/node_modules/source-map-support/node_modules/source-map/lib/source-map/util.js +205 -0
  3681. data/node_modules/source-map-support/node_modules/source-map/package.json +167 -0
  3682. data/node_modules/source-map-support/node_modules/source-map/test/run-tests.js +62 -0
  3683. data/node_modules/source-map-support/node_modules/source-map/test/source-map/test-api.js +26 -0
  3684. data/node_modules/source-map-support/node_modules/source-map/test/source-map/test-array-set.js +104 -0
  3685. data/node_modules/source-map-support/node_modules/source-map/test/source-map/test-base64-vlq.js +24 -0
  3686. data/node_modules/source-map-support/node_modules/source-map/test/source-map/test-base64.js +35 -0
  3687. data/node_modules/source-map-support/node_modules/source-map/test/source-map/test-binary-search.js +54 -0
  3688. data/node_modules/source-map-support/node_modules/source-map/test/source-map/test-dog-fooding.js +72 -0
  3689. data/node_modules/source-map-support/node_modules/source-map/test/source-map/test-source-map-consumer.js +451 -0
  3690. data/node_modules/source-map-support/node_modules/source-map/test/source-map/test-source-map-generator.js +417 -0
  3691. data/node_modules/source-map-support/node_modules/source-map/test/source-map/test-source-node.js +365 -0
  3692. data/node_modules/source-map-support/node_modules/source-map/test/source-map/util.js +161 -0
  3693. data/node_modules/source-map-support/package.json +79 -0
  3694. data/node_modules/source-map-support/source-map-support.js +386 -0
  3695. data/node_modules/source-map-support/test.js +384 -0
  3696. data/node_modules/source-map/README.md +729 -0
  3697. data/node_modules/source-map/dist/source-map.debug.js +3006 -0
  3698. data/node_modules/source-map/dist/source-map.js +3005 -0
  3699. data/node_modules/source-map/dist/source-map.min.js +2 -0
  3700. data/node_modules/source-map/dist/source-map.min.js.map +1 -0
  3701. data/node_modules/source-map/lib/array-set.js +104 -0
  3702. data/node_modules/source-map/lib/base64-vlq.js +141 -0
  3703. data/node_modules/source-map/lib/base64.js +68 -0
  3704. data/node_modules/source-map/lib/binary-search.js +112 -0
  3705. data/node_modules/source-map/lib/mapping-list.js +80 -0
  3706. data/node_modules/source-map/lib/quick-sort.js +115 -0
  3707. data/node_modules/source-map/lib/source-map-consumer.js +1082 -0
  3708. data/node_modules/source-map/lib/source-map-generator.js +396 -0
  3709. data/node_modules/source-map/lib/source-node.js +408 -0
  3710. data/node_modules/source-map/lib/util.js +369 -0
  3711. data/node_modules/source-map/package.json +241 -0
  3712. data/node_modules/source-map/source-map.js +8 -0
  3713. data/node_modules/strip-ansi/index.js +6 -0
  3714. data/node_modules/strip-ansi/license +21 -0
  3715. data/node_modules/strip-ansi/package.json +115 -0
  3716. data/node_modules/strip-ansi/readme.md +33 -0
  3717. data/node_modules/supports-color/index.js +50 -0
  3718. data/node_modules/supports-color/license +21 -0
  3719. data/node_modules/supports-color/package.json +105 -0
  3720. data/node_modules/supports-color/readme.md +36 -0
  3721. data/node_modules/to-fast-properties/index.js +8 -0
  3722. data/node_modules/to-fast-properties/license +22 -0
  3723. data/node_modules/to-fast-properties/package.json +95 -0
  3724. data/node_modules/to-fast-properties/readme.md +37 -0
  3725. data/node_modules/trim-right/index.js +10 -0
  3726. data/node_modules/trim-right/license +21 -0
  3727. data/node_modules/trim-right/package.json +93 -0
  3728. data/node_modules/trim-right/readme.md +30 -0
  3729. data/node_modules/user-home/cli.js +26 -0
  3730. data/node_modules/user-home/index.js +15 -0
  3731. data/node_modules/user-home/license +21 -0
  3732. data/node_modules/user-home/package.json +95 -0
  3733. data/node_modules/user-home/readme.md +42 -0
  3734. data/package.json +16 -0
  3735. metadata +3861 -0
@@ -0,0 +1,44 @@
1
+ # slash [![Build Status](https://travis-ci.org/sindresorhus/slash.svg?branch=master)](https://travis-ci.org/sindresorhus/slash)
2
+
3
+ > Convert Windows backslash paths to slash paths: `foo\\bar` ➔ `foo/bar`
4
+
5
+ [Forward-slash paths can be used in Windows](http://superuser.com/a/176395/6877) as long as they're not extended-length paths and don't contain any non-ascii characters.
6
+
7
+ This was created since the `path` methods in Node outputs `\\` paths on Windows.
8
+
9
+
10
+ ## Install
11
+
12
+ ```sh
13
+ $ npm install --save slash
14
+ ```
15
+
16
+
17
+ ## Usage
18
+
19
+ ```js
20
+ var path = require('path');
21
+ var slash = require('slash');
22
+
23
+ var str = path.join('foo', 'bar');
24
+ // Unix => foo/bar
25
+ // Windows => foo\\bar
26
+
27
+ slash(str);
28
+ // Unix => foo/bar
29
+ // Windows => foo/bar
30
+ ```
31
+
32
+
33
+ ## API
34
+
35
+ ### slash(path)
36
+
37
+ Type: `string`
38
+
39
+ Accepts a Windows backslash path and returns a slash path.
40
+
41
+
42
+ ## License
43
+
44
+ MIT © [Sindre Sorhus](http://sindresorhus.com)
@@ -0,0 +1 @@
1
+ browserify-test/
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2014 Evan Wallace
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,165 @@
1
+ # Source Map Support
2
+
3
+ This module provides source map support for stack traces in node via the [V8 stack trace API](http://code.google.com/p/v8/wiki/JavaScriptStackTraceApi). It uses the [source-map](https://github.com/mozilla/source-map) module to replace the paths and line numbers of source-mapped files with their original paths and line numbers. The output mimics node's stack trace format with the goal of making every compile-to-JS language more of a first-class citizen. Source maps are completely general (not specific to any one language) so you can use source maps with multiple compile-to-JS languages in the same node process.
4
+
5
+ ## Installation and Usage
6
+
7
+ #### Node support
8
+
9
+ npm install source-map-support
10
+
11
+ Source maps can be generated using libraries such as [source-map-index-generator](https://github.com/twolfson/source-map-index-generator). Once you have a valid source map, insert the following two lines at the top of your compiled code:
12
+
13
+ //# sourceMappingURL=path/to/source.map
14
+ require('source-map-support').install();
15
+
16
+ The path should either be absolute or relative to the compiled file.
17
+
18
+ #### Browser support
19
+
20
+ This library also works in Chrome. While the DevTools console already supports source maps, the V8 engine doesn't and `Error.prototype.stack` will be incorrect without this library. Everything will just work if you deploy your source files using [browserify](http://browserify.org/). Just make sure to pass the `--debug` flag to the browserify command so your source maps are included in the bundled code.
21
+
22
+ This library also works if you use another build process or just include the source files directly. In this case, include the file `browser-source-map-support.js` in your page and call `sourceMapSupport.install()`. It contains the whole library already bundled for the browser using browserify.
23
+
24
+ <script src="browser-source-map-support.js"></script>
25
+ <script>sourceMapSupport.install();</script>
26
+
27
+ This library also works if you use AMD (Asynchronous Module Definition), which is used in tools like [RequireJS](http://requirejs.org/). Just list `browser-source-map-support` as a dependency:
28
+
29
+ <script>
30
+ define(['browser-source-map-support'], function(sourceMapSupport) {
31
+ sourceMapSupport.install();
32
+ });
33
+ </script>
34
+
35
+ ## Options
36
+
37
+ This module installs two things: a change to the `stack` property on `Error` objects and a handler for uncaught exceptions that mimics node's default exception handler (the handler can be seen in the demos below). You may want to disable the handler if you have your own uncaught exception handler. This can be done by passing an argument to the installer:
38
+
39
+ require('source-map-support').install({
40
+ handleUncaughtExceptions: false
41
+ });
42
+
43
+ This module loads source maps from the filesystem by default. You can provide alternate loading behavior through a callback as shown below. For example, [Meteor](https://github.com/meteor) keeps all source maps cached in memory to avoid disk access.
44
+
45
+ require('source-map-support').install({
46
+ retrieveSourceMap: function(source) {
47
+ if (source === 'compiled.js') {
48
+ return {
49
+ url: 'original.js',
50
+ map: fs.readFileSync('compiled.js.map', 'utf8')
51
+ };
52
+ }
53
+ return null;
54
+ }
55
+ });
56
+
57
+ ## Demos
58
+
59
+ #### Basic Demo
60
+
61
+ original.js:
62
+
63
+ throw new Error('test'); // This is the original code
64
+
65
+ compiled.js:
66
+
67
+ //# sourceMappingURL=compiled.js.map
68
+ require('source-map-support').install();
69
+
70
+ throw new Error('test'); // This is the compiled code
71
+
72
+ compiled.js.map:
73
+
74
+ {
75
+ "version": 3,
76
+ "file": "compiled.js",
77
+ "sources": ["original.js"],
78
+ "names": [],
79
+ "mappings": ";;;AAAA,MAAM,IAAI"
80
+ }
81
+
82
+ Run compiled.js using node (notice how the stack trace uses original.js instead of compiled.js):
83
+
84
+ $ node compiled.js
85
+
86
+ original.js:1
87
+ throw new Error('test'); // This is the original code
88
+ ^
89
+ Error: test
90
+ at Object.<anonymous> (original.js:1:7)
91
+ at Module._compile (module.js:456:26)
92
+ at Object.Module._extensions..js (module.js:474:10)
93
+ at Module.load (module.js:356:32)
94
+ at Function.Module._load (module.js:312:12)
95
+ at Function.Module.runMain (module.js:497:10)
96
+ at startup (node.js:119:16)
97
+ at node.js:901:3
98
+
99
+ #### TypeScript Demo
100
+
101
+ demo.ts:
102
+
103
+ declare function require(name: string);
104
+ require('source-map-support').install();
105
+ class Foo {
106
+ constructor() { this.bar(); }
107
+ bar() { throw new Error('this is a demo'); }
108
+ }
109
+ new Foo();
110
+
111
+ Compile and run the file using the TypeScript compiler from the terminal:
112
+
113
+ $ npm install source-map-support typescript
114
+ $ node_modules/typescript/bin/tsc -sourcemap demo.ts
115
+ $ node demo.js
116
+
117
+ demo.ts:5
118
+ bar() { throw new Error('this is a demo'); }
119
+ ^
120
+ Error: this is a demo
121
+ at Foo.bar (demo.ts:5:17)
122
+ at new Foo (demo.ts:4:24)
123
+ at Object.<anonymous> (demo.ts:7:1)
124
+ at Module._compile (module.js:456:26)
125
+ at Object.Module._extensions..js (module.js:474:10)
126
+ at Module.load (module.js:356:32)
127
+ at Function.Module._load (module.js:312:12)
128
+ at Function.Module.runMain (module.js:497:10)
129
+ at startup (node.js:119:16)
130
+ at node.js:901:3
131
+
132
+ #### CoffeeScript Demo
133
+
134
+ demo.coffee:
135
+
136
+ require('source-map-support').install()
137
+ foo = ->
138
+ bar = -> throw new Error 'this is a demo'
139
+ bar()
140
+ foo()
141
+
142
+ Compile and run the file using the CoffeeScript compiler from the terminal:
143
+
144
+ $ npm install source-map-support coffee-script
145
+ $ node_modules/coffee-script/bin/coffee --map --compile demo.coffee
146
+ $ node demo.js
147
+
148
+ demo.coffee:3
149
+ bar = -> throw new Error 'this is a demo'
150
+ ^
151
+ Error: this is a demo
152
+ at bar (demo.coffee:3:22)
153
+ at foo (demo.coffee:4:3)
154
+ at Object.<anonymous> (demo.coffee:5:1)
155
+ at Object.<anonymous> (demo.coffee:1:1)
156
+ at Module._compile (module.js:456:26)
157
+ at Object.Module._extensions..js (module.js:474:10)
158
+ at Module.load (module.js:356:32)
159
+ at Function.Module._load (module.js:312:12)
160
+ at Function.Module.runMain (module.js:497:10)
161
+ at startup (node.js:119:16)
162
+
163
+ ## License
164
+
165
+ This code is available under the [MIT license](http://opensource.org/licenses/MIT).
@@ -0,0 +1,89 @@
1
+ /*
2
+ * Support for source maps in V8 stack traces
3
+ * https://github.com/evanw/node-source-map-support
4
+ */
5
+ (this.define||function(K,O){this.sourceMapSupport=O()})("browser-source-map-support",function(K){(function h(r,m,e){function p(g,d){if(!m[g]){if(!r[g]){var k="function"==typeof require&&require;if(!d&&k)return k(g,!0);if(v)return v(g,!0);throw Error("Cannot find module '"+g+"'");}k=m[g]={exports:{}};r[g][0].call(k.exports,function(d){var c=r[g][1][d];return p(c?c:d)},k,k.exports,h,r,m,e)}return m[g].exports}for(var v="function"==typeof require&&require,A=0;A<e.length;A++)p(e[A]);return p})({1:[function(h,
6
+ r,m){K=h("./source-map-support")},{"./source-map-support":18}],2:[function(h,r,m){},{}],3:[function(h,r,m){function e(f,n,x){if(!(this instanceof e))return new e(f,n,x);var a=typeof f;if("base64"===n&&"string"===a)for(f=f.trim?f.trim():f.replace(/^\s+|\s+$/g,"");0!==f.length%4;)f+="=";var b;if("number"===a)b=w(f);else if("string"===a)b=e.byteLength(f,n);else if("object"===a)b=w(f.length);else throw Error("First argument needs to be a number, array or string.");var c;e._useTypedArrays?c=e._augment(new Uint8Array(b)):
7
+ (c=this,c.length=b,c._isBuffer=!0);if(e._useTypedArrays&&"number"===typeof f.byteLength)c._set(f);else{var d=f;if(y(d)||e.isBuffer(d)||d&&"object"===typeof d&&"number"===typeof d.length)for(n=0;n<b;n++)e.isBuffer(f)?c[n]=f.readUInt8(n):c[n]=f[n];else if("string"===a)c.write(f,0,n);else if("number"===a&&!e._useTypedArrays&&!x)for(n=0;n<b;n++)c[n]=0}return c}function p(f,n,x){var a="";for(x=Math.min(f.length,x);n<x;n++)a+=String.fromCharCode(f[n]);return a}function v(f,n,x,a){a||(q("boolean"===typeof x,
8
+ "missing or invalid endian"),q(void 0!==n&&null!==n,"missing offset"),q(n+1<f.length,"Trying to read beyond buffer length"));a=f.length;if(!(n>=a))return x?(x=f[n],n+1<a&&(x|=f[n+1]<<8)):(x=f[n]<<8,n+1<a&&(x|=f[n+1])),x}function A(f,n,a,c){c||(q("boolean"===typeof a,"missing or invalid endian"),q(void 0!==n&&null!==n,"missing offset"),q(n+3<f.length,"Trying to read beyond buffer length"));c=f.length;if(!(n>=c)){var b;a?(n+2<c&&(b=f[n+2]<<16),n+1<c&&(b|=f[n+1]<<8),b|=f[n],n+3<c&&(b+=f[n+3]<<24>>>0)):
9
+ (n+1<c&&(b=f[n+1]<<16),n+2<c&&(b|=f[n+2]<<8),n+3<c&&(b|=f[n+3]),b+=f[n]<<24>>>0);return b}}function g(f,n,a,b){b||(q("boolean"===typeof a,"missing or invalid endian"),q(void 0!==n&&null!==n,"missing offset"),q(n+1<f.length,"Trying to read beyond buffer length"));if(!(n>=f.length))return f=v(f,n,a,!0),f&32768?-1*(65535-f+1):f}function d(f,n,a,b){b||(q("boolean"===typeof a,"missing or invalid endian"),q(void 0!==n&&null!==n,"missing offset"),q(n+3<f.length,"Trying to read beyond buffer length"));if(!(n>=
10
+ f.length))return f=A(f,n,a,!0),f&2147483648?-1*(4294967295-f+1):f}function k(f,n,a,b){b||(q("boolean"===typeof a,"missing or invalid endian"),q(n+3<f.length,"Trying to read beyond buffer length"));return I.read(f,n,a,23,4)}function l(f,n,a,b){b||(q("boolean"===typeof a,"missing or invalid endian"),q(n+7<f.length,"Trying to read beyond buffer length"));return I.read(f,n,a,52,8)}function c(f,n,a,b,c){c||(q(void 0!==n&&null!==n,"missing value"),q("boolean"===typeof b,"missing or invalid endian"),q(void 0!==
11
+ a&&null!==a,"missing offset"),q(a+1<f.length,"trying to write beyond buffer length"),L(n,65535));var d=f.length;if(!(a>=d))for(c=0,d=Math.min(d-a,2);c<d;c++)f[a+c]=(n&255<<8*(b?c:1-c))>>>8*(b?c:1-c)}function a(f,n,a,b,c){c||(q(void 0!==n&&null!==n,"missing value"),q("boolean"===typeof b,"missing or invalid endian"),q(void 0!==a&&null!==a,"missing offset"),q(a+3<f.length,"trying to write beyond buffer length"),L(n,4294967295));var d=f.length;if(!(a>=d))for(c=0,d=Math.min(d-a,4);c<d;c++)f[a+c]=n>>>
12
+ 8*(b?c:3-c)&255}function b(f,n,a,b,d){d||(q(void 0!==n&&null!==n,"missing value"),q("boolean"===typeof b,"missing or invalid endian"),q(void 0!==a&&null!==a,"missing offset"),q(a+1<f.length,"Trying to write beyond buffer length"),M(n,32767,-32768));a>=f.length||(0<=n?c(f,n,a,b,d):c(f,65535+n+1,a,b,d))}function z(f,n,b,c,d){d||(q(void 0!==n&&null!==n,"missing value"),q("boolean"===typeof c,"missing or invalid endian"),q(void 0!==b&&null!==b,"missing offset"),q(b+3<f.length,"Trying to write beyond buffer length"),
13
+ M(n,2147483647,-2147483648));b>=f.length||(0<=n?a(f,n,b,c,d):a(f,4294967295+n+1,b,c,d))}function D(f,n,a,b,c){c||(q(void 0!==n&&null!==n,"missing value"),q("boolean"===typeof b,"missing or invalid endian"),q(void 0!==a&&null!==a,"missing offset"),q(a+3<f.length,"Trying to write beyond buffer length"),N(n,3.4028234663852886E38,-3.4028234663852886E38));a>=f.length||I.write(f,n,a,b,23,4)}function B(f,n,a,b,c){c||(q(void 0!==n&&null!==n,"missing value"),q("boolean"===typeof b,"missing or invalid endian"),
14
+ q(void 0!==a&&null!==a,"missing offset"),q(a+7<f.length,"Trying to write beyond buffer length"),N(n,1.7976931348623157E308,-1.7976931348623157E308));a>=f.length||I.write(f,n,a,b,52,8)}function E(f,a,b){if("number"!==typeof f)return b;f=~~f;if(f>=a)return a;if(0<=f)return f;f+=a;return 0<=f?f:0}function w(f){f=~~Math.ceil(+f);return 0>f?0:f}function y(f){return(Array.isArray||function(f){return"[object Array]"===Object.prototype.toString.call(f)})(f)}function H(f){return 16>f?"0"+f.toString(16):f.toString(16)}
15
+ function t(f){for(var a=[],b=0;b<f.length;b++){var c=f.charCodeAt(b);if(127>=c)a.push(f.charCodeAt(b));else{var d=b;55296<=c&&57343>=c&&b++;c=encodeURIComponent(f.slice(d,b+1)).substr(1).split("%");for(d=0;d<c.length;d++)a.push(parseInt(c[d],16))}}return a}function F(f){for(var a=[],b=0;b<f.length;b++)a.push(f.charCodeAt(b)&255);return a}function C(f,a,b,c){for(var d=0;d<c&&!(d+b>=a.length||d>=f.length);d++)a[d+b]=f[d];return d}function G(f){try{return decodeURIComponent(f)}catch(a){return String.fromCharCode(65533)}}
16
+ function L(f,a){q("number"===typeof f,"cannot write a non-number as a number");q(0<=f,"specified a negative value for writing an unsigned value");q(f<=a,"value is larger than maximum value for type");q(Math.floor(f)===f,"value has a fractional component")}function M(f,a,b){q("number"===typeof f,"cannot write a non-number as a number");q(f<=a,"value larger than maximum allowed value");q(f>=b,"value smaller than minimum allowed value");q(Math.floor(f)===f,"value has a fractional component")}function N(f,
17
+ a,b){q("number"===typeof f,"cannot write a non-number as a number");q(f<=a,"value larger than maximum allowed value");q(f>=b,"value smaller than minimum allowed value")}function q(f,a){if(!f)throw Error(a||"Failed assertion");}var J=h("base64-js"),I=h("ieee754");m.Buffer=e;m.SlowBuffer=e;m.INSPECT_MAX_BYTES=50;e.poolSize=8192;e._useTypedArrays=function(){try{var f=new ArrayBuffer(0),a=new Uint8Array(f);a.foo=function(){return 42};return 42===a.foo()&&"function"===typeof a.subarray}catch(b){return!1}}();
18
+ e.isEncoding=function(f){switch(String(f).toLowerCase()){case "hex":case "utf8":case "utf-8":case "ascii":case "binary":case "base64":case "raw":case "ucs2":case "ucs-2":case "utf16le":case "utf-16le":return!0;default:return!1}};e.isBuffer=function(f){return!(null===f||void 0===f||!f._isBuffer)};e.byteLength=function(f,a){var b;f+="";switch(a||"utf8"){case "hex":b=f.length/2;break;case "utf8":case "utf-8":b=t(f).length;break;case "ascii":case "binary":case "raw":b=f.length;break;case "base64":b=J.toByteArray(f).length;
19
+ break;case "ucs2":case "ucs-2":case "utf16le":case "utf-16le":b=2*f.length;break;default:throw Error("Unknown encoding");}return b};e.concat=function(f,a){q(y(f),"Usage: Buffer.concat(list, [totalLength])\nlist should be an Array.");if(0===f.length)return new e(0);if(1===f.length)return f[0];var b;if("number"!==typeof a)for(b=a=0;b<f.length;b++)a+=f[b].length;var c=new e(a),d=0;for(b=0;b<f.length;b++){var k=f[b];k.copy(c,d);d+=k.length}return c};e.prototype.write=function(f,a,b,c){if(isFinite(a))isFinite(b)||
20
+ (c=b,b=void 0);else{var d=c;c=a;a=b;b=d}a=Number(a)||0;d=this.length-a;b?(b=Number(b),b>d&&(b=d)):b=d;c=String(c||"utf8").toLowerCase();switch(c){case "hex":a=Number(a)||0;c=this.length-a;b?(b=Number(b),b>c&&(b=c)):b=c;c=f.length;q(0===c%2,"Invalid hex string");b>c/2&&(b=c/2);for(c=0;c<b;c++)d=parseInt(f.substr(2*c,2),16),q(!isNaN(d),"Invalid hex string"),this[a+c]=d;e._charsWritten=2*c;f=c;break;case "utf8":case "utf-8":f=e._charsWritten=C(t(f),this,a,b);break;case "ascii":f=e._charsWritten=C(F(f),
21
+ this,a,b);break;case "binary":f=e._charsWritten=C(F(f),this,a,b);break;case "base64":f=e._charsWritten=C(J.toByteArray(f),this,a,b);break;case "ucs2":case "ucs-2":case "utf16le":case "utf-16le":for(var k,d=[],l=0;l<f.length;l++)k=f.charCodeAt(l),c=k>>8,k%=256,d.push(k),d.push(c);f=e._charsWritten=C(d,this,a,b);break;default:throw Error("Unknown encoding");}return f};e.prototype.toString=function(f,a,b){f=String(f||"utf8").toLowerCase();a=Number(a)||0;b=void 0!==b?Number(b):b=this.length;if(b===a)return"";
22
+ switch(f){case "hex":f=a;a=this.length;if(!f||0>f)f=0;if(!b||0>b||b>a)b=a;for(a="";f<b;f++)a+=H(this[f]);b=a;break;case "utf8":case "utf-8":var c=a;a=f="";for(b=Math.min(this.length,b);c<b;c++)127>=this[c]?(f+=G(a)+String.fromCharCode(this[c]),a=""):a+="%"+this[c].toString(16);b=f+G(a);break;case "ascii":b=p(this,a,b);break;case "binary":b=p(this,a,b);break;case "base64":f=a;b=0===f&&b===this.length?J.fromByteArray(this):J.fromByteArray(this.slice(f,b));break;case "ucs2":case "ucs-2":case "utf16le":case "utf-16le":b=
23
+ this.slice(a,b);f="";for(a=0;a<b.length;a+=2)f+=String.fromCharCode(b[a]+256*b[a+1]);b=f;break;default:throw Error("Unknown encoding");}return b};e.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};e.prototype.copy=function(a,b,c,d){c||(c=0);d||0===d||(d=this.length);b||(b=0);if(d!==c&&0!==a.length&&0!==this.length)if(q(d>=c,"sourceEnd < sourceStart"),q(0<=b&&b<a.length,"targetStart out of bounds"),q(0<=c&&c<this.length,"sourceStart out of bounds"),
24
+ q(0<=d&&d<=this.length,"sourceEnd out of bounds"),d>this.length&&(d=this.length),a.length-b<d-c&&(d=a.length-b+c),d-=c,100>d||!e._useTypedArrays)for(var k=0;k<d;k++)a[k+b]=this[k+c];else a._set(this.subarray(c,c+d),b)};e.prototype.slice=function(a,b){var c=this.length;a=E(a,c,0);b=E(b,c,c);if(e._useTypedArrays)return e._augment(this.subarray(a,b));for(var c=b-a,d=new e(c,void 0,!0),k=0;k<c;k++)d[k]=this[k+a];return d};e.prototype.get=function(a){console.log(".get() is deprecated. Access using array indexes instead.");
25
+ return this.readUInt8(a)};e.prototype.set=function(a,b){console.log(".set() is deprecated. Access using array indexes instead.");return this.writeUInt8(a,b)};e.prototype.readUInt8=function(a,b){b||(q(void 0!==a&&null!==a,"missing offset"),q(a<this.length,"Trying to read beyond buffer length"));if(!(a>=this.length))return this[a]};e.prototype.readUInt16LE=function(a,b){return v(this,a,!0,b)};e.prototype.readUInt16BE=function(a,b){return v(this,a,!1,b)};e.prototype.readUInt32LE=function(a,b){return A(this,
26
+ a,!0,b)};e.prototype.readUInt32BE=function(a,b){return A(this,a,!1,b)};e.prototype.readInt8=function(a,b){b||(q(void 0!==a&&null!==a,"missing offset"),q(a<this.length,"Trying to read beyond buffer length"));if(!(a>=this.length))return this[a]&128?-1*(255-this[a]+1):this[a]};e.prototype.readInt16LE=function(a,b){return g(this,a,!0,b)};e.prototype.readInt16BE=function(a,b){return g(this,a,!1,b)};e.prototype.readInt32LE=function(a,b){return d(this,a,!0,b)};e.prototype.readInt32BE=function(a,b){return d(this,
27
+ a,!1,b)};e.prototype.readFloatLE=function(a,b){return k(this,a,!0,b)};e.prototype.readFloatBE=function(a,b){return k(this,a,!1,b)};e.prototype.readDoubleLE=function(a,b){return l(this,a,!0,b)};e.prototype.readDoubleBE=function(a,b){return l(this,a,!1,b)};e.prototype.writeUInt8=function(a,b,c){c||(q(void 0!==a&&null!==a,"missing value"),q(void 0!==b&&null!==b,"missing offset"),q(b<this.length,"trying to write beyond buffer length"),L(a,255));b>=this.length||(this[b]=a)};e.prototype.writeUInt16LE=function(a,
28
+ b,d){c(this,a,b,!0,d)};e.prototype.writeUInt16BE=function(a,b,d){c(this,a,b,!1,d)};e.prototype.writeUInt32LE=function(b,c,d){a(this,b,c,!0,d)};e.prototype.writeUInt32BE=function(b,c,d){a(this,b,c,!1,d)};e.prototype.writeInt8=function(a,b,c){c||(q(void 0!==a&&null!==a,"missing value"),q(void 0!==b&&null!==b,"missing offset"),q(b<this.length,"Trying to write beyond buffer length"),M(a,127,-128));b>=this.length||(0<=a?this.writeUInt8(a,b,c):this.writeUInt8(255+a+1,b,c))};e.prototype.writeInt16LE=function(a,
29
+ c,d){b(this,a,c,!0,d)};e.prototype.writeInt16BE=function(a,c,d){b(this,a,c,!1,d)};e.prototype.writeInt32LE=function(a,b,c){z(this,a,b,!0,c)};e.prototype.writeInt32BE=function(a,b,c){z(this,a,b,!1,c)};e.prototype.writeFloatLE=function(a,b,c){D(this,a,b,!0,c)};e.prototype.writeFloatBE=function(a,b,c){D(this,a,b,!1,c)};e.prototype.writeDoubleLE=function(a,b,c){B(this,a,b,!0,c)};e.prototype.writeDoubleBE=function(a,b,c){B(this,a,b,!1,c)};e.prototype.fill=function(a,b,c){a||(a=0);b||(b=0);c||(c=this.length);
30
+ "string"===typeof a&&(a=a.charCodeAt(0));q("number"===typeof a&&!isNaN(a),"value is not a number");q(c>=b,"end < start");if(c!==b&&0!==this.length)for(q(0<=b&&b<this.length,"start out of bounds"),q(0<=c&&c<=this.length,"end out of bounds");b<c;b++)this[b]=a};e.prototype.inspect=function(){for(var a=[],b=this.length,c=0;c<b;c++)if(a[c]=H(this[c]),c===m.INSPECT_MAX_BYTES){a[c+1]="...";break}return"<Buffer "+a.join(" ")+">"};e.prototype.toArrayBuffer=function(){if("undefined"!==typeof Uint8Array){if(e._useTypedArrays)return(new e(this)).buffer;
31
+ for(var a=new Uint8Array(this.length),b=0,c=a.length;b<c;b+=1)a[b]=this[b];return a.buffer}throw Error("Buffer.toArrayBuffer not supported in this browser");};var u=e.prototype;e._augment=function(a){a._isBuffer=!0;a._get=a.get;a._set=a.set;a.get=u.get;a.set=u.set;a.write=u.write;a.toString=u.toString;a.toLocaleString=u.toString;a.toJSON=u.toJSON;a.copy=u.copy;a.slice=u.slice;a.readUInt8=u.readUInt8;a.readUInt16LE=u.readUInt16LE;a.readUInt16BE=u.readUInt16BE;a.readUInt32LE=u.readUInt32LE;a.readUInt32BE=
32
+ u.readUInt32BE;a.readInt8=u.readInt8;a.readInt16LE=u.readInt16LE;a.readInt16BE=u.readInt16BE;a.readInt32LE=u.readInt32LE;a.readInt32BE=u.readInt32BE;a.readFloatLE=u.readFloatLE;a.readFloatBE=u.readFloatBE;a.readDoubleLE=u.readDoubleLE;a.readDoubleBE=u.readDoubleBE;a.writeUInt8=u.writeUInt8;a.writeUInt16LE=u.writeUInt16LE;a.writeUInt16BE=u.writeUInt16BE;a.writeUInt32LE=u.writeUInt32LE;a.writeUInt32BE=u.writeUInt32BE;a.writeInt8=u.writeInt8;a.writeInt16LE=u.writeInt16LE;a.writeInt16BE=u.writeInt16BE;
33
+ a.writeInt32LE=u.writeInt32LE;a.writeInt32BE=u.writeInt32BE;a.writeFloatLE=u.writeFloatLE;a.writeFloatBE=u.writeFloatBE;a.writeDoubleLE=u.writeDoubleLE;a.writeDoubleBE=u.writeDoubleBE;a.fill=u.fill;a.inspect=u.inspect;a.toArrayBuffer=u.toArrayBuffer;return a}},{"base64-js":4,ieee754:5}],4:[function(h,r,m){(function(e){function p(e){e=e.charCodeAt(0);if(43===e)return 62;if(47===e)return 63;if(48>e)return-1;if(58>e)return e-48+52;if(91>e)return e-65;if(123>e)return e-97+26}var v="undefined"!==typeof Uint8Array?
34
+ Uint8Array:Array;e.toByteArray=function(e){function g(c){a[b++]=c}var d,k,l,c,a;if(0<e.length%4)throw Error("Invalid string. Length must be a multiple of 4");d=e.length;c="="===e.charAt(d-2)?2:"="===e.charAt(d-1)?1:0;a=new v(3*e.length/4-c);k=0<c?e.length-4:e.length;var b=0;for(d=0;d<k;d+=4)l=p(e.charAt(d))<<18|p(e.charAt(d+1))<<12|p(e.charAt(d+2))<<6|p(e.charAt(d+3)),g((l&16711680)>>16),g((l&65280)>>8),g(l&255);2===c?(l=p(e.charAt(d))<<2|p(e.charAt(d+1))>>4,g(l&255)):1===c&&(l=p(e.charAt(d))<<10|
35
+ p(e.charAt(d+1))<<4|p(e.charAt(d+2))>>2,g(l>>8&255),g(l&255));return a};e.fromByteArray=function(e){var g,d=e.length%3,k="",l,c;g=0;for(c=e.length-d;g<c;g+=3)l=(e[g]<<16)+(e[g+1]<<8)+e[g+2],l="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(l>>18&63)+"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(l>>12&63)+"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(l>>6&63)+"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(l&
36
+ 63),k+=l;switch(d){case 1:l=e[e.length-1];k+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(l>>2);k+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(l<<4&63);k+="==";break;case 2:l=(e[e.length-2]<<8)+e[e.length-1],k+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(l>>10),k+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(l>>4&63),k+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(l<<
37
+ 2&63),k+="="}return k}})("undefined"===typeof m?this.base64js={}:m)},{}],5:[function(h,r,m){m.read=function(e,p,v,h,g){var d;d=8*g-h-1;var k=(1<<d)-1,l=k>>1,c=-7;g=v?g-1:0;var a=v?-1:1,b=e[p+g];g+=a;v=b&(1<<-c)-1;b>>=-c;for(c+=d;0<c;v=256*v+e[p+g],g+=a,c-=8);d=v&(1<<-c)-1;v>>=-c;for(c+=h;0<c;d=256*d+e[p+g],g+=a,c-=8);if(0===v)v=1-l;else{if(v===k)return d?NaN:Infinity*(b?-1:1);d+=Math.pow(2,h);v-=l}return(b?-1:1)*d*Math.pow(2,v-h)};m.write=function(e,p,v,h,g,d){var k,l=8*d-g-1,c=(1<<l)-1,a=c>>1,b=
38
+ 23===g?Math.pow(2,-24)-Math.pow(2,-77):0;d=h?0:d-1;var z=h?1:-1,D=0>p||0===p&&0>1/p?1:0;p=Math.abs(p);isNaN(p)||Infinity===p?(p=isNaN(p)?1:0,h=c):(h=Math.floor(Math.log(p)/Math.LN2),1>p*(k=Math.pow(2,-h))&&(h--,k*=2),p=1<=h+a?p+b/k:p+b*Math.pow(2,1-a),2<=p*k&&(h++,k/=2),h+a>=c?(p=0,h=c):1<=h+a?(p=(p*k-1)*Math.pow(2,g),h+=a):(p=p*Math.pow(2,a-1)*Math.pow(2,g),h=0));for(;8<=g;e[v+d]=p&255,d+=z,p/=256,g-=8);h=h<<g|p;for(l+=g;0<l;e[v+d]=h&255,d+=z,h/=256,l-=8);e[v+d-z]|=128*D}},{}],6:[function(h,r,m){function e(){}
39
+ h=r.exports={};h.nextTick=function(){if("undefined"!==typeof window&&window.setImmediate)return function(e){return window.setImmediate(e)};if("undefined"!==typeof window&&window.postMessage&&window.addEventListener){var e=[];window.addEventListener("message",function(h){var m=h.source;m!==window&&null!==m||"process-tick"!==h.data||(h.stopPropagation(),0<e.length&&e.shift()())},!0);return function(h){e.push(h);window.postMessage("process-tick","*")}}return function(e){setTimeout(e,0)}}();h.title="browser";
40
+ h.browser=!0;h.env={};h.argv=[];h.on=e;h.once=e;h.off=e;h.emit=e;h.binding=function(e){throw Error("process.binding is not supported");};h.cwd=function(){return"/"};h.chdir=function(e){throw Error("process.chdir is not supported");}},{}],7:[function(h,r,m){(function(e){function h(d,k){for(var e=0,c=d.length-1;0<=c;c--){var a=d[c];"."===a?d.splice(c,1):".."===a?(d.splice(c,1),e++):e&&(d.splice(c,1),e--)}if(k)for(;e--;e)d.unshift("..");return d}function v(d,k){if(d.filter)return d.filter(k);for(var e=
41
+ [],c=0;c<d.length;c++)k(d[c],c,d)&&e.push(d[c]);return e}var r=/^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/;m.resolve=function(){for(var d="",k=!1,l=arguments.length-1;-1<=l&&!k;l--){var c=0<=l?arguments[l]:e.cwd();if("string"!==typeof c)throw new TypeError("Arguments to path.resolve must be strings");c&&(d=c+"/"+d,k="/"===c.charAt(0))}d=h(v(d.split("/"),function(a){return!!a}),!k).join("/");return(k?"/":"")+d||"."};m.normalize=function(d){var e=m.isAbsolute(d),l="/"===g(d,-1);
42
+ (d=h(v(d.split("/"),function(c){return!!c}),!e).join("/"))||e||(d=".");d&&l&&(d+="/");return(e?"/":"")+d};m.isAbsolute=function(d){return"/"===d.charAt(0)};m.join=function(){var d=Array.prototype.slice.call(arguments,0);return m.normalize(v(d,function(d,e){if("string"!==typeof d)throw new TypeError("Arguments to path.join must be strings");return d}).join("/"))};m.relative=function(d,e){function l(a){for(var b=0;b<a.length&&""===a[b];b++);for(var c=a.length-1;0<=c&&""===a[c];c--);return b>c?[]:a.slice(b,
43
+ c-b+1)}d=m.resolve(d).substr(1);e=m.resolve(e).substr(1);for(var c=l(d.split("/")),a=l(e.split("/")),b=Math.min(c.length,a.length),g=b,h=0;h<b;h++)if(c[h]!==a[h]){g=h;break}b=[];for(h=g;h<c.length;h++)b.push("..");b=b.concat(a.slice(g));return b.join("/")};m.sep="/";m.delimiter=":";m.dirname=function(d){var e=r.exec(d).slice(1);d=e[0];e=e[1];if(!d&&!e)return".";e&&(e=e.substr(0,e.length-1));return d+e};m.basename=function(d,e){var l=r.exec(d).slice(1)[2];e&&l.substr(-1*e.length)===e&&(l=l.substr(0,
44
+ l.length-e.length));return l};m.extname=function(d){return r.exec(d).slice(1)[3]};var g="b"==="ab".substr(-1)?function(d,e,l){return d.substr(e,l)}:function(d,e,l){0>e&&(e=d.length+e);return d.substr(e,l)}}).call(this,h("node_modules/browserify/node_modules/insert-module-globals/node_modules/process/browser.js"))},{"node_modules/browserify/node_modules/insert-module-globals/node_modules/process/browser.js":6}],8:[function(h,r,m){m.SourceMapGenerator=h("./source-map/source-map-generator").SourceMapGenerator;
45
+ m.SourceMapConsumer=h("./source-map/source-map-consumer").SourceMapConsumer;m.SourceNode=h("./source-map/source-node").SourceNode},{"./source-map/source-map-consumer":13,"./source-map/source-map-generator":14,"./source-map/source-node":15}],9:[function(h,r,m){if("function"!==typeof e)var e=h("amdefine")(r,h);e(function(e,h,m){function g(){this._array=[];this._set={}}var d=e("./util");g.fromArray=function(d,e){for(var c=new g,a=0,b=d.length;a<b;a++)c.add(d[a],e);return c};g.prototype.add=function(e,
46
+ l){var c=this.has(e),a=this._array.length;c&&!l||this._array.push(e);c||(this._set[d.toSetString(e)]=a)};g.prototype.has=function(e){return Object.prototype.hasOwnProperty.call(this._set,d.toSetString(e))};g.prototype.indexOf=function(e){if(this.has(e))return this._set[d.toSetString(e)];throw Error('"'+e+'" is not in the set.');};g.prototype.at=function(d){if(0<=d&&d<this._array.length)return this._array[d];throw Error("No element indexed by "+d);};g.prototype.toArray=function(){return this._array.slice()};
47
+ h.ArraySet=g})},{"./util":16,amdefine:17}],10:[function(h,r,m){if("function"!==typeof e)var e=h("amdefine")(r,h);e(function(e,h,m){var g=e("./base64");h.encode=function(d){var e="",l=0>d?(-d<<1)+1:(d<<1)+0;do d=l&31,l>>>=5,0<l&&(d|=32),e+=g.encode(d);while(0<l);return e};h.decode=function(d){var e=0,l=d.length,c=0,a=0,b,h;do{if(e>=l)throw Error("Expected more digits in base 64 VLQ value.");h=g.decode(d.charAt(e++));b=!!(h&32);h&=31;c+=h<<a;a+=5}while(b);l=c>>1;return{value:1===(c&1)?-l:l,rest:d.slice(e)}}})},
48
+ {"./base64":11,amdefine:17}],11:[function(h,r,m){if("function"!==typeof e)var e=h("amdefine")(r,h);e(function(e,h,m){var g={},d={};"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".split("").forEach(function(e,l){g[e]=l;d[l]=e});h.encode=function(e){if(e in d)return d[e];throw new TypeError("Must be between 0 and 63: "+e);};h.decode=function(d){if(d in g)return g[d];throw new TypeError("Not a valid base 64 digit: "+d);}})},{amdefine:17}],12:[function(h,r,m){if("function"!==typeof e)var e=
49
+ h("amdefine")(r,h);e(function(e,h,m){function g(d,e,l,c,a){var b=Math.floor((e-d)/2)+d,h=a(l,c[b],!0);return 0===h?c[b]:0<h?1<e-b?g(b,e,l,c,a):c[b]:1<b-d?g(d,b,l,c,a):0>d?null:c[d]}h.search=function(d,e,l){return 0<e.length?g(-1,e.length,d,e,l):null}})},{amdefine:17}],13:[function(h,r,m){if("function"!==typeof e)var e=h("amdefine")(r,h);e(function(e,h,m){function g(a){var b=a;"string"===typeof a&&(b=JSON.parse(a.replace(/^\)\]\}'/,"")));a=d.getArg(b,"version");var c=d.getArg(b,"sources"),e=d.getArg(b,
50
+ "names",[]),g=d.getArg(b,"sourceRoot",null),h=d.getArg(b,"sourcesContent",null),k=d.getArg(b,"mappings"),b=d.getArg(b,"file",null);if(a!=this._version)throw Error("Unsupported version: "+a);this._names=l.fromArray(e,!0);this._sources=l.fromArray(c,!0);this.sourceRoot=g;this.sourcesContent=h;this._mappings=k;this.file=b}var d=e("./util"),k=e("./binary-search"),l=e("./array-set").ArraySet,c=e("./base64-vlq");g.fromSourceMap=function(a){var b=Object.create(g.prototype);b._names=l.fromArray(a._names.toArray(),
51
+ !0);b._sources=l.fromArray(a._sources.toArray(),!0);b.sourceRoot=a._sourceRoot;b.sourcesContent=a._generateSourcesContent(b._sources.toArray(),b.sourceRoot);b.file=a._file;b.__generatedMappings=a._mappings.slice().sort(d.compareByGeneratedPositions);b.__originalMappings=a._mappings.slice().sort(d.compareByOriginalPositions);return b};g.prototype._version=3;Object.defineProperty(g.prototype,"sources",{get:function(){return this._sources.toArray().map(function(a){return this.sourceRoot?d.join(this.sourceRoot,
52
+ a):a},this)}});g.prototype.__generatedMappings=null;Object.defineProperty(g.prototype,"_generatedMappings",{get:function(){this.__generatedMappings||(this.__generatedMappings=[],this.__originalMappings=[],this._parseMappings(this._mappings,this.sourceRoot));return this.__generatedMappings}});g.prototype.__originalMappings=null;Object.defineProperty(g.prototype,"_originalMappings",{get:function(){this.__originalMappings||(this.__generatedMappings=[],this.__originalMappings=[],this._parseMappings(this._mappings,
53
+ this.sourceRoot));return this.__originalMappings}});g.prototype._parseMappings=function(a,b){for(var e=1,g=0,l=0,h=0,k=0,y=0,m=/^[,;]/,t=a,p;0<t.length;)if(";"===t.charAt(0))e++,t=t.slice(1),g=0;else if(","===t.charAt(0))t=t.slice(1);else{p={};p.generatedLine=e;t=c.decode(t);p.generatedColumn=g+t.value;g=p.generatedColumn;t=t.rest;if(0<t.length&&!m.test(t.charAt(0))){t=c.decode(t);p.source=this._sources.at(k+t.value);k+=t.value;t=t.rest;if(0===t.length||m.test(t.charAt(0)))throw Error("Found a source, but no line and column");
54
+ t=c.decode(t);p.originalLine=l+t.value;l=p.originalLine;p.originalLine+=1;t=t.rest;if(0===t.length||m.test(t.charAt(0)))throw Error("Found a source and line, but no column");t=c.decode(t);p.originalColumn=h+t.value;h=p.originalColumn;t=t.rest;0<t.length&&!m.test(t.charAt(0))&&(t=c.decode(t),p.name=this._names.at(y+t.value),y+=t.value,t=t.rest)}this.__generatedMappings.push(p);"number"===typeof p.originalLine&&this.__originalMappings.push(p)}this.__generatedMappings.sort(d.compareByGeneratedPositions);
55
+ this.__originalMappings.sort(d.compareByOriginalPositions)};g.prototype._findMapping=function(a,b,c,d,e){if(0>=a[c])throw new TypeError("Line must be greater than or equal to 1, got "+a[c]);if(0>a[d])throw new TypeError("Column must be greater than or equal to 0, got "+a[d]);return k.search(a,b,e)};g.prototype.originalPositionFor=function(a){a={generatedLine:d.getArg(a,"line"),generatedColumn:d.getArg(a,"column")};if(a=this._findMapping(a,this._generatedMappings,"generatedLine","generatedColumn",
56
+ d.compareByGeneratedPositions)){var b=d.getArg(a,"source",null);b&&this.sourceRoot&&(b=d.join(this.sourceRoot,b));return{source:b,line:d.getArg(a,"originalLine",null),column:d.getArg(a,"originalColumn",null),name:d.getArg(a,"name",null)}}return{source:null,line:null,column:null,name:null}};g.prototype.sourceContentFor=function(a){if(!this.sourcesContent)return null;this.sourceRoot&&(a=d.relative(this.sourceRoot,a));if(this._sources.has(a))return this.sourcesContent[this._sources.indexOf(a)];var b;
57
+ if(this.sourceRoot&&(b=d.urlParse(this.sourceRoot))){var c=a.replace(/^file:\/\//,"");if("file"==b.scheme&&this._sources.has(c))return this.sourcesContent[this._sources.indexOf(c)];if((!b.path||"/"==b.path)&&this._sources.has("/"+a))return this.sourcesContent[this._sources.indexOf("/"+a)]}throw Error('"'+a+'" is not in the SourceMap.');};g.prototype.generatedPositionFor=function(a){a={source:d.getArg(a,"source"),originalLine:d.getArg(a,"line"),originalColumn:d.getArg(a,"column")};this.sourceRoot&&
58
+ (a.source=d.relative(this.sourceRoot,a.source));return(a=this._findMapping(a,this._originalMappings,"originalLine","originalColumn",d.compareByOriginalPositions))?{line:d.getArg(a,"generatedLine",null),column:d.getArg(a,"generatedColumn",null)}:{line:null,column:null}};g.GENERATED_ORDER=1;g.ORIGINAL_ORDER=2;g.prototype.eachMapping=function(a,b,c){b=b||null;switch(c||g.GENERATED_ORDER){case g.GENERATED_ORDER:c=this._generatedMappings;break;case g.ORIGINAL_ORDER:c=this._originalMappings;break;default:throw Error("Unknown order of iteration.");
59
+ }var e=this.sourceRoot;c.map(function(a){var b=a.source;b&&e&&(b=d.join(e,b));return{source:b,generatedLine:a.generatedLine,generatedColumn:a.generatedColumn,originalLine:a.originalLine,originalColumn:a.originalColumn,name:a.name}}).forEach(a,b)};h.SourceMapConsumer=g})},{"./array-set":9,"./base64-vlq":10,"./binary-search":12,"./util":16,amdefine:17}],14:[function(h,r,m){if("function"!==typeof e)var e=h("amdefine")(r,h);e(function(e,h,m){function g(c){this._file=k.getArg(c,"file");this._sourceRoot=
60
+ k.getArg(c,"sourceRoot",null);this._sources=new l;this._names=new l;this._mappings=[];this._sourcesContents=null}var d=e("./base64-vlq"),k=e("./util"),l=e("./array-set").ArraySet;g.prototype._version=3;g.fromSourceMap=function(c){var a=c.sourceRoot,b=new g({file:c.file,sourceRoot:a});c.eachMapping(function(c){var d={generated:{line:c.generatedLine,column:c.generatedColumn}};c.source&&(d.source=c.source,a&&(d.source=k.relative(a,d.source)),d.original={line:c.originalLine,column:c.originalColumn},c.name&&
61
+ (d.name=c.name));b.addMapping(d)});c.sources.forEach(function(a){var d=c.sourceContentFor(a);d&&b.setSourceContent(a,d)});return b};g.prototype.addMapping=function(c){var a=k.getArg(c,"generated"),b=k.getArg(c,"original",null),d=k.getArg(c,"source",null);c=k.getArg(c,"name",null);this._validateMapping(a,b,d,c);d&&!this._sources.has(d)&&this._sources.add(d);c&&!this._names.has(c)&&this._names.add(c);this._mappings.push({generatedLine:a.line,generatedColumn:a.column,originalLine:null!=b&&b.line,originalColumn:null!=
62
+ b&&b.column,source:d,name:c})};g.prototype.setSourceContent=function(c,a){var b=c;this._sourceRoot&&(b=k.relative(this._sourceRoot,b));null!==a?(this._sourcesContents||(this._sourcesContents={}),this._sourcesContents[k.toSetString(b)]=a):(delete this._sourcesContents[k.toSetString(b)],0===Object.keys(this._sourcesContents).length&&(this._sourcesContents=null))};g.prototype.applySourceMap=function(c,a){a||(a=c.file);var b=this._sourceRoot;b&&(a=k.relative(b,a));var d=new l,e=new l;this._mappings.forEach(function(g){if(g.source===
63
+ a&&g.originalLine){var l=c.originalPositionFor({line:g.originalLine,column:g.originalColumn});null!==l.source&&(g.source=b?k.relative(b,l.source):l.source,g.originalLine=l.line,g.originalColumn=l.column,null!==l.name&&null!==g.name&&(g.name=l.name))}(l=g.source)&&!d.has(l)&&d.add(l);(g=g.name)&&!e.has(g)&&e.add(g)},this);this._sources=d;this._names=e;c.sources.forEach(function(a){var d=c.sourceContentFor(a);d&&(b&&(a=k.relative(b,a)),this.setSourceContent(a,d))},this)};g.prototype._validateMapping=
64
+ function(c,a,b,d){if(!(c&&"line"in c&&"column"in c&&0<c.line&&0<=c.column&&!a&&!b&&!d||c&&"line"in c&&"column"in c&&a&&"line"in a&&"column"in a&&0<c.line&&0<=c.column&&0<a.line&&0<=a.column&&b))throw Error("Invalid mapping: "+JSON.stringify({generated:c,source:b,original:a,name:d}));};g.prototype._serializeMappings=function(){var c=0,a=1,b=0,e=0,g=0,l=0,h="",w;this._mappings.sort(k.compareByGeneratedPositions);for(var y=0,p=this._mappings.length;y<p;y++){w=this._mappings[y];if(w.generatedLine!==a)for(c=
65
+ 0;w.generatedLine!==a;)h+=";",a++;else if(0<y){if(!k.compareByGeneratedPositions(w,this._mappings[y-1]))continue;h+=","}h+=d.encode(w.generatedColumn-c);c=w.generatedColumn;w.source&&(h+=d.encode(this._sources.indexOf(w.source)-l),l=this._sources.indexOf(w.source),h+=d.encode(w.originalLine-1-e),e=w.originalLine-1,h+=d.encode(w.originalColumn-b),b=w.originalColumn,w.name&&(h+=d.encode(this._names.indexOf(w.name)-g),g=this._names.indexOf(w.name)))}return h};g.prototype._generateSourcesContent=function(c,
66
+ a){return c.map(function(b){if(!this._sourcesContents)return null;a&&(b=k.relative(a,b));b=k.toSetString(b);return Object.prototype.hasOwnProperty.call(this._sourcesContents,b)?this._sourcesContents[b]:null},this)};g.prototype.toJSON=function(){var c={version:this._version,file:this._file,sources:this._sources.toArray(),names:this._names.toArray(),mappings:this._serializeMappings()};this._sourceRoot&&(c.sourceRoot=this._sourceRoot);this._sourcesContents&&(c.sourcesContent=this._generateSourcesContent(c.sources,
67
+ c.sourceRoot));return c};g.prototype.toString=function(){return JSON.stringify(this)};h.SourceMapGenerator=g})},{"./array-set":9,"./base64-vlq":10,"./util":16,amdefine:17}],15:[function(h,r,m){if("function"!==typeof e)var e=h("amdefine")(r,h);e(function(e,h,m){function g(d,c,a,b,e){this.children=[];this.sourceContents={};this.line=void 0===d?null:d;this.column=void 0===c?null:c;this.source=void 0===a?null:a;this.name=void 0===e?null:e;null!=b&&this.add(b)}var d=e("./source-map-generator").SourceMapGenerator,
68
+ k=e("./util");g.fromStringWithSourceMap=function(d,c){function a(a,c){null===a||void 0===a.source?b.add(c):b.add(new g(a.originalLine,a.originalColumn,a.source,c,a.name))}var b=new g,e=d.split("\n"),h=1,k=0,p=null;c.eachMapping(function(c){if(null===p){for(;h<c.generatedLine;)b.add(e.shift()+"\n"),h++;if(k<c.generatedColumn){var d=e[0];b.add(d.substr(0,c.generatedColumn));e[0]=d.substr(c.generatedColumn);k=c.generatedColumn}}else{if(h<c.generatedLine){var g="";do g+=e.shift()+"\n",h++,k=0;while(h<
69
+ c.generatedLine);k<c.generatedColumn&&(d=e[0],g+=d.substr(0,c.generatedColumn),e[0]=d.substr(c.generatedColumn),k=c.generatedColumn)}else d=e[0],g=d.substr(0,c.generatedColumn-k),e[0]=d.substr(c.generatedColumn-k),k=c.generatedColumn;a(p,g)}p=c},this);a(p,e.join("\n"));c.sources.forEach(function(a){var d=c.sourceContentFor(a);d&&b.setSourceContent(a,d)});return b};g.prototype.add=function(d){if(Array.isArray(d))d.forEach(function(c){this.add(c)},this);else if(d instanceof g||"string"===typeof d)d&&
70
+ this.children.push(d);else throw new TypeError("Expected a SourceNode, string, or an array of SourceNodes and strings. Got "+d);return this};g.prototype.prepend=function(d){if(Array.isArray(d))for(var c=d.length-1;0<=c;c--)this.prepend(d[c]);else if(d instanceof g||"string"===typeof d)this.children.unshift(d);else throw new TypeError("Expected a SourceNode, string, or an array of SourceNodes and strings. Got "+d);return this};g.prototype.walk=function(d){for(var c,a=0,b=this.children.length;a<b;a++)c=
71
+ this.children[a],c instanceof g?c.walk(d):""!==c&&d(c,{source:this.source,line:this.line,column:this.column,name:this.name})};g.prototype.join=function(d){var c,a,b=this.children.length;if(0<b){c=[];for(a=0;a<b-1;a++)c.push(this.children[a]),c.push(d);c.push(this.children[a]);this.children=c}return this};g.prototype.replaceRight=function(d,c){var a=this.children[this.children.length-1];a instanceof g?a.replaceRight(d,c):"string"===typeof a?this.children[this.children.length-1]=a.replace(d,c):this.children.push("".replace(d,
72
+ c));return this};g.prototype.setSourceContent=function(d,c){this.sourceContents[k.toSetString(d)]=c};g.prototype.walkSourceContents=function(d){for(var c=0,a=this.children.length;c<a;c++)this.children[c]instanceof g&&this.children[c].walkSourceContents(d);for(var b=Object.keys(this.sourceContents),c=0,a=b.length;c<a;c++)d(k.fromSetString(b[c]),this.sourceContents[b[c]])};g.prototype.toString=function(){var d="";this.walk(function(c){d+=c});return d};g.prototype.toStringWithSourceMap=function(e){var c=
73
+ "",a=1,b=0,g=new d(e),h=!1,k=null,p=null,w=null,m=null;this.walk(function(d,e){c+=d;null!==e.source&&null!==e.line&&null!==e.column?(k===e.source&&p===e.line&&w===e.column&&m===e.name||g.addMapping({source:e.source,original:{line:e.line,column:e.column},generated:{line:a,column:b},name:e.name}),k=e.source,p=e.line,w=e.column,m=e.name,h=!0):h&&(g.addMapping({generated:{line:a,column:b}}),k=null,h=!1);d.split("").forEach(function(c){"\n"===c?(a++,b=0):b++})});this.walkSourceContents(function(a,b){g.setSourceContent(a,
74
+ b)});return{code:c,map:g}};h.SourceNode=g})},{"./source-map-generator":14,"./util":16,amdefine:17}],16:[function(h,r,m){if("function"!==typeof e)var e=h("amdefine")(r,h);e(function(e,h,m){function g(a){return(a=a.match(l))?{scheme:a[1],auth:a[3],host:a[4],port:a[6],path:a[7]}:null}function d(a){var b=a.scheme+"://";a.auth&&(b+=a.auth+"@");a.host&&(b+=a.host);a.port&&(b+=":"+a.port);a.path&&(b+=a.path);return b}function k(a,b){var c=a||"",d=b||"";return(c>d)-(c<d)}h.getArg=function(a,b,c){if(b in a)return a[b];
75
+ if(3===arguments.length)return c;throw Error('"'+b+'" is a required argument.');};var l=/([\w+\-.]+):\/\/((\w+:\w+)@)?([\w.]+)?(:(\d+))?(\S+)?/,c=/^data:.+\,.+/;h.urlParse=g;h.urlGenerate=d;h.join=function(a,b){var e;return b.match(l)||b.match(c)?b:"/"===b.charAt(0)&&(e=g(a))?(e.path=b,d(e)):a.replace(/\/$/,"")+"/"+b};h.toSetString=function(a){return"$"+a};h.fromSetString=function(a){return a.substr(1)};h.relative=function(a,b){a=a.replace(/\/$/,"");var c=g(a);return"/"==b.charAt(0)&&c&&"/"==c.path?
76
+ b.slice(1):0===b.indexOf(a+"/")?b.substr(a.length+1):b};h.compareByOriginalPositions=function(a,b,c){var d;return(d=k(a.source,b.source))||(d=a.originalLine-b.originalLine)||(d=a.originalColumn-b.originalColumn)||c||(d=k(a.name,b.name))?d:(d=a.generatedLine-b.generatedLine)?d:a.generatedColumn-b.generatedColumn};h.compareByGeneratedPositions=function(a,b,c){var d;return(d=a.generatedLine-b.generatedLine)||(d=a.generatedColumn-b.generatedColumn)||c||(d=k(a.source,b.source))||(d=a.originalLine-b.originalLine)?
77
+ d:(d=a.originalColumn-b.originalColumn)?d:k(a.name,b.name)}})},{amdefine:17}],17:[function(h,r,m){(function(e,p){r.exports=function(m,r){function g(a,b){var c;if(a&&"."===a.charAt(0)&&b){c=b.split("/");c=c.slice(0,c.length-1);var d=c=c.concat(a.split("/")),e,g;for(e=0;d[e];e+=1)if(g=d[e],"."===g)d.splice(e,1),--e;else if(".."===g)if(1!==e||".."!==d[2]&&".."!==d[0])0<e&&(d.splice(e-1,2),e-=2);else break;a=c.join("/")}return a}function d(a){return function(b){return g(b,a)}}function k(a){function c(d){b[a]=
78
+ d}c.fromText=function(a,b){throw Error("amdefine does not implement load.fromText");};return c}function l(a,c,d){var e,g,h;if(a)g=b[a]={},h={id:a,uri:p,exports:g},e=B(r,g,h,a);else{if(z)throw Error("amdefine with no module ID cannot be called more than once per file.");z=!0;g=m.exports;h=m;e=B(r,g,h,m.id)}c&&(c=c.map(function(a){return e(a)}));c="function"===typeof d?d.apply(h.exports,c):d;void 0!==c&&(h.exports=c,a&&(b[a]=h.exports))}function c(b,c,d){Array.isArray(b)?(d=c,c=b,b=void 0):"string"!==
79
+ typeof b&&(d=b,b=c=void 0);c&&!Array.isArray(c)&&(d=c,c=void 0);c||(c=["require","exports","module"]);b?a[b]=[b,c,d]:l(b,c,d)}var a={},b={},z=!1,D=h("path"),B,E;B=function(a,b,c,d){function h(g,k){if("string"===typeof g)return E(a,b,c,g,d);g=g.map(function(e){return E(a,b,c,e,d)});e.nextTick(function(){k.apply(null,g)})}h.toUrl=function(a){return 0===a.indexOf(".")?g(a,D.dirname(c.filename)):a};return h};r=r||function(){return m.require.apply(m,arguments)};E=function(c,e,h,m,p){var r=m.indexOf("!"),
80
+ G=m;if(-1===r){m=g(m,p);if("require"===m)return B(c,e,h,p);if("exports"===m)return e;if("module"===m)return h;if(b.hasOwnProperty(m))return b[m];if(a[m])return l.apply(null,a[m]),b[m];if(c)return c(G);throw Error("No module with ID: "+m);}G=m.substring(0,r);m=m.substring(r+1,m.length);r=E(c,e,h,G,p);m=r.normalize?r.normalize(m,d(p)):g(m,p);b[m]||r.load(m,B(c,e,h,p),k(m),{});return b[m]};c.require=function(c){if(b[c])return b[c];if(a[c])return l.apply(null,a[c]),b[c]};c.amd={};return c}}).call(this,
81
+ h("node_modules/browserify/node_modules/insert-module-globals/node_modules/process/browser.js"),"/node_modules/source-map/node_modules/amdefine/amdefine.js")},{"node_modules/browserify/node_modules/insert-module-globals/node_modules/process/browser.js":6,path:7}],18:[function(h,r,m){(function(e,p){function r(){return"undefined"!==typeof window&&"function"===typeof XMLHttpRequest}function A(a){if(a in F)return F[a];try{if(r()){var b=new XMLHttpRequest;b.open("GET",a,!1);b.send(null);var c=4===b.readyState?
82
+ b.responseText:null}else c=y.readFileSync(a,"utf8")}catch(d){c=null}return F[a]=c}function g(a,b){if(!a)return b;var c=w.dirname(a),d=/^\w+:\/\/[^\/]*/.exec(c),d=d?d[0]:"";return d+w.resolve(c.slice(d.length),b)}function d(a){var b;a:{if(r()&&(b=new XMLHttpRequest,b.open("GET",a,!1),b.send(null),b=b.getResponseHeader("SourceMap")||b.getResponseHeader("X-SourceMap")))break a;b=A(a);b=(b=/\/\/[#@]\s*sourceMappingURL=(.*)\s*$/m.exec(b))?b[1]:null}if(!b)return null;"data:application/json;base64,"==b.slice(0,
83
+ 29).toLowerCase()?(a=(new p(b.slice(29),"base64")).toString(),b=null):(b=g(a,b),a=A(b,"utf8"));return a?{url:b,map:a}:null}function k(a){var b=C[a.source];if(!b){var c=d(a.source);c?(b=C[a.source]={url:c.url,map:new E(c.map)},b.map.sourcesContent&&b.map.sources.forEach(function(a,c){var d=b.map.sourcesContent[c];if(d){var e=g(b.url,a);F[e]=d}})):b=C[a.source]={url:null,map:null}}return b&&b.map&&(c=b.map.originalPositionFor(a),null!==c.source)?(c.source=g(b.url,c.source),c):a}function l(a){var b=
84
+ /^eval at ([^(]+) \((.+):(\d+):(\d+)\)$/.exec(a);return b?(a=k({source:b[2],line:b[3],column:b[4]-1}),"eval at "+b[1]+" ("+a.source+":"+a.line+":"+(a.column+1)+")"):(b=/^eval at ([^(]+) \((.+)\)$/.exec(a))?"eval at "+b[1]+" ("+l(b[2])+")":a}function c(){var a,b="";this.isNative()?b="native":(a=this.getScriptNameOrSourceURL(),!a&&this.isEval()&&(b=this.getEvalOrigin(),b+=", "),b=a?b+a:b+"<anonymous>",a=this.getLineNumber(),null!=a&&(b+=":"+a,(a=this.getColumnNumber())&&(b+=":"+a)));a="";var c=this.getFunctionName(),
85
+ d=!0,e=this.isConstructor();if(this.isToplevel()||e)e?a+="new "+(c||"<anonymous>"):c?a+=c:(a+=b,d=!1);else{var e=this.getTypeName(),g=this.getMethodName();c?(e&&0!=c.indexOf(e)&&(a+=e+"."),a+=c,g&&c.indexOf("."+g)!=c.length-g.length-1&&(a+=" [as "+g+"]")):a+=e+"."+(g||"<anonymous>")}d&&(a+=" ("+b+")");return a}function a(a){var b={};Object.getOwnPropertyNames(Object.getPrototypeOf(a)).forEach(function(c){b[c]=/^(?:is|get)/.test(c)?function(){return a[c].call(a)}:a[c]});b.toString=c;return b}function b(b){var c=
86
+ b.getFileName()||b.getScriptNameOrSourceURL();if(c){var d=k({source:c,line:b.getLineNumber(),column:b.getColumnNumber()-1});b=a(b);b.getFileName=function(){return d.source};b.getLineNumber=function(){return d.line};b.getColumnNumber=function(){return d.column+1};b.getScriptNameOrSourceURL=function(){return d.source};return b}var e=b.isEval()&&b.getEvalOrigin();e&&(e=l(e),b=a(b),b.getEvalOrigin=function(){return e});return b}function z(a,c){t&&(F={},C={});return a+c.map(function(a){return"\n at "+
87
+ b(a)}).join("")}function D(a){var b=/\n at [^(]+ \((.*):(\d+):(\d+)\)/.exec(a.stack);if(b){a=b[1];var c=+b[2],b=+b[3],d=F[a];!d&&y.existsSync(a)&&(d=y.readFileSync(a,"utf8"));if(d&&(d=d.split(/(?:\r\n|\r|\n)/)[c-1]))return"\n"+a+":"+c+"\n"+d+"\n"+Array(b).join(" ")+"^"}return null}function B(a){if(a&&a.stack){var b=D(a);null!==b&&console.log(b);console.log(a.stack)}else console.log("Uncaught exception:",a);e.exit(1)}var E=h("source-map").SourceMapConsumer,w=h("path"),y=h("fs"),H=!1,t=!1,F={},C=
88
+ {};m.wrapCallSite=b;m.getErrorSource=D;m.mapSourcePosition=k;m.retrieveSourceMap=d;m.install=function(a){if(!H){H=!0;Error.prepareStackTrace=z;a=a||{};var b="handleUncaughtExceptions"in a?a.handleUncaughtExceptions:!0;t="emptyCacheBetweenOperations"in a?a.emptyCacheBetweenOperations:!1;a.retrieveFile&&(A=a.retrieveFile);a.retrieveSourceMap&&(d=a.retrieveSourceMap);if(b&&!r())e.on("uncaughtException",B)}}}).call(this,h("node_modules/browserify/node_modules/insert-module-globals/node_modules/process/browser.js"),
89
+ h("buffer").Buffer)},{"node_modules/browserify/node_modules/insert-module-globals/node_modules/process/browser.js":6,buffer:3,fs:2,path:7,"source-map":8}]},{},[1]);return K});
@@ -0,0 +1,6 @@
1
+ <p>
2
+ Make sure to run build.js.
3
+ This test should say either "Test failed" or "Test passed":
4
+ </p>
5
+ <script src="require.js"></script>
6
+ <script>require(['script']);</script>
@@ -0,0 +1,36 @@
1
+ /*
2
+ RequireJS 2.1.9 Copyright (c) 2010-2012, The Dojo Foundation All Rights Reserved.
3
+ Available via the MIT or new BSD license.
4
+ see: http://github.com/jrburke/requirejs for details
5
+ */
6
+ var requirejs,require,define;
7
+ (function(Z){function H(b){return"[object Function]"===L.call(b)}function I(b){return"[object Array]"===L.call(b)}function y(b,c){if(b){var e;for(e=0;e<b.length&&(!b[e]||!c(b[e],e,b));e+=1);}}function M(b,c){if(b){var e;for(e=b.length-1;-1<e&&(!b[e]||!c(b[e],e,b));e-=1);}}function t(b,c){return ga.call(b,c)}function l(b,c){return t(b,c)&&b[c]}function F(b,c){for(var e in b)if(t(b,e)&&c(b[e],e))break}function Q(b,c,e,h){c&&F(c,function(c,j){if(e||!t(b,j))h&&"string"!==typeof c?(b[j]||(b[j]={}),Q(b[j],
8
+ c,e,h)):b[j]=c});return b}function u(b,c){return function(){return c.apply(b,arguments)}}function aa(b){throw b;}function ba(b){if(!b)return b;var c=Z;y(b.split("."),function(b){c=c[b]});return c}function A(b,c,e,h){c=Error(c+"\nhttp://requirejs.org/docs/errors.html#"+b);c.requireType=b;c.requireModules=h;e&&(c.originalError=e);return c}function ha(b){function c(a,f,b){var d,m,c,g,e,h,j,i=f&&f.split("/");d=i;var n=k.map,p=n&&n["*"];if(a&&"."===a.charAt(0))if(f){d=l(k.pkgs,f)?i=[f]:i.slice(0,i.length-
9
+ 1);f=a=d.concat(a.split("/"));for(d=0;f[d];d+=1)if(m=f[d],"."===m)f.splice(d,1),d-=1;else if(".."===m)if(1===d&&(".."===f[2]||".."===f[0]))break;else 0<d&&(f.splice(d-1,2),d-=2);d=l(k.pkgs,f=a[0]);a=a.join("/");d&&a===f+"/"+d.main&&(a=f)}else 0===a.indexOf("./")&&(a=a.substring(2));if(b&&n&&(i||p)){f=a.split("/");for(d=f.length;0<d;d-=1){c=f.slice(0,d).join("/");if(i)for(m=i.length;0<m;m-=1)if(b=l(n,i.slice(0,m).join("/")))if(b=l(b,c)){g=b;e=d;break}if(g)break;!h&&(p&&l(p,c))&&(h=l(p,c),j=d)}!g&&
10
+ h&&(g=h,e=j);g&&(f.splice(0,e,g),a=f.join("/"))}return a}function e(a){z&&y(document.getElementsByTagName("script"),function(f){if(f.getAttribute("data-requiremodule")===a&&f.getAttribute("data-requirecontext")===i.contextName)return f.parentNode.removeChild(f),!0})}function h(a){var f=l(k.paths,a);if(f&&I(f)&&1<f.length)return f.shift(),i.require.undef(a),i.require([a]),!0}function $(a){var f,b=a?a.indexOf("!"):-1;-1<b&&(f=a.substring(0,b),a=a.substring(b+1,a.length));return[f,a]}function n(a,f,
11
+ b,d){var m,B,g=null,e=f?f.name:null,h=a,j=!0,k="";a||(j=!1,a="_@r"+(L+=1));a=$(a);g=a[0];a=a[1];g&&(g=c(g,e,d),B=l(r,g));a&&(g?k=B&&B.normalize?B.normalize(a,function(a){return c(a,e,d)}):c(a,e,d):(k=c(a,e,d),a=$(k),g=a[0],k=a[1],b=!0,m=i.nameToUrl(k)));b=g&&!B&&!b?"_unnormalized"+(M+=1):"";return{prefix:g,name:k,parentMap:f,unnormalized:!!b,url:m,originalName:h,isDefine:j,id:(g?g+"!"+k:k)+b}}function q(a){var f=a.id,b=l(p,f);b||(b=p[f]=new i.Module(a));return b}function s(a,f,b){var d=a.id,m=l(p,
12
+ d);if(t(r,d)&&(!m||m.defineEmitComplete))"defined"===f&&b(r[d]);else if(m=q(a),m.error&&"error"===f)b(m.error);else m.on(f,b)}function v(a,f){var b=a.requireModules,d=!1;if(f)f(a);else if(y(b,function(f){if(f=l(p,f))f.error=a,f.events.error&&(d=!0,f.emit("error",a))}),!d)j.onError(a)}function w(){R.length&&(ia.apply(G,[G.length-1,0].concat(R)),R=[])}function x(a){delete p[a];delete T[a]}function E(a,f,b){var d=a.map.id;a.error?a.emit("error",a.error):(f[d]=!0,y(a.depMaps,function(d,c){var g=d.id,
13
+ e=l(p,g);e&&(!a.depMatched[c]&&!b[g])&&(l(f,g)?(a.defineDep(c,r[g]),a.check()):E(e,f,b))}),b[d]=!0)}function C(){var a,f,b,d,m=(b=1E3*k.waitSeconds)&&i.startTime+b<(new Date).getTime(),c=[],g=[],j=!1,l=!0;if(!U){U=!0;F(T,function(b){a=b.map;f=a.id;if(b.enabled&&(a.isDefine||g.push(b),!b.error))if(!b.inited&&m)h(f)?j=d=!0:(c.push(f),e(f));else if(!b.inited&&(b.fetched&&a.isDefine)&&(j=!0,!a.prefix))return l=!1});if(m&&c.length)return b=A("timeout","Load timeout for modules: "+c,null,c),b.contextName=
14
+ i.contextName,v(b);l&&y(g,function(a){E(a,{},{})});if((!m||d)&&j)if((z||da)&&!V)V=setTimeout(function(){V=0;C()},50);U=!1}}function D(a){t(r,a[0])||q(n(a[0],null,!0)).init(a[1],a[2])}function J(a){var a=a.currentTarget||a.srcElement,b=i.onScriptLoad;a.detachEvent&&!W?a.detachEvent("onreadystatechange",b):a.removeEventListener("load",b,!1);b=i.onScriptError;(!a.detachEvent||W)&&a.removeEventListener("error",b,!1);return{node:a,id:a&&a.getAttribute("data-requiremodule")}}function K(){var a;for(w();G.length;){a=
15
+ G.shift();if(null===a[0])return v(A("mismatch","Mismatched anonymous define() module: "+a[a.length-1]));D(a)}}var U,X,i,N,V,k={waitSeconds:7,baseUrl:"./",paths:{},pkgs:{},shim:{},config:{}},p={},T={},Y={},G=[],r={},S={},L=1,M=1;N={require:function(a){return a.require?a.require:a.require=i.makeRequire(a.map)},exports:function(a){a.usingExports=!0;if(a.map.isDefine)return a.exports?a.exports:a.exports=r[a.map.id]={}},module:function(a){return a.module?a.module:a.module={id:a.map.id,uri:a.map.url,config:function(){var b=
16
+ l(k.pkgs,a.map.id);return(b?l(k.config,a.map.id+"/"+b.main):l(k.config,a.map.id))||{}},exports:r[a.map.id]}}};X=function(a){this.events=l(Y,a.id)||{};this.map=a;this.shim=l(k.shim,a.id);this.depExports=[];this.depMaps=[];this.depMatched=[];this.pluginMaps={};this.depCount=0};X.prototype={init:function(a,b,c,d){d=d||{};if(!this.inited){this.factory=b;if(c)this.on("error",c);else this.events.error&&(c=u(this,function(a){this.emit("error",a)}));this.depMaps=a&&a.slice(0);this.errback=c;this.inited=!0;
17
+ this.ignore=d.ignore;d.enabled||this.enabled?this.enable():this.check()}},defineDep:function(a,b){this.depMatched[a]||(this.depMatched[a]=!0,this.depCount-=1,this.depExports[a]=b)},fetch:function(){if(!this.fetched){this.fetched=!0;i.startTime=(new Date).getTime();var a=this.map;if(this.shim)i.makeRequire(this.map,{enableBuildCallback:!0})(this.shim.deps||[],u(this,function(){return a.prefix?this.callPlugin():this.load()}));else return a.prefix?this.callPlugin():this.load()}},load:function(){var a=
18
+ this.map.url;S[a]||(S[a]=!0,i.load(this.map.id,a))},check:function(){if(this.enabled&&!this.enabling){var a,b,c=this.map.id;b=this.depExports;var d=this.exports,m=this.factory;if(this.inited)if(this.error)this.emit("error",this.error);else{if(!this.defining){this.defining=!0;if(1>this.depCount&&!this.defined){if(H(m)){if(this.events.error&&this.map.isDefine||j.onError!==aa)try{d=i.execCb(c,m,b,d)}catch(e){a=e}else d=i.execCb(c,m,b,d);this.map.isDefine&&((b=this.module)&&void 0!==b.exports&&b.exports!==
19
+ this.exports?d=b.exports:void 0===d&&this.usingExports&&(d=this.exports));if(a)return a.requireMap=this.map,a.requireModules=this.map.isDefine?[this.map.id]:null,a.requireType=this.map.isDefine?"define":"require",v(this.error=a)}else d=m;this.exports=d;if(this.map.isDefine&&!this.ignore&&(r[c]=d,j.onResourceLoad))j.onResourceLoad(i,this.map,this.depMaps);x(c);this.defined=!0}this.defining=!1;this.defined&&!this.defineEmitted&&(this.defineEmitted=!0,this.emit("defined",this.exports),this.defineEmitComplete=
20
+ !0)}}else this.fetch()}},callPlugin:function(){var a=this.map,b=a.id,e=n(a.prefix);this.depMaps.push(e);s(e,"defined",u(this,function(d){var m,e;e=this.map.name;var g=this.map.parentMap?this.map.parentMap.name:null,h=i.makeRequire(a.parentMap,{enableBuildCallback:!0});if(this.map.unnormalized){if(d.normalize&&(e=d.normalize(e,function(a){return c(a,g,!0)})||""),d=n(a.prefix+"!"+e,this.map.parentMap),s(d,"defined",u(this,function(a){this.init([],function(){return a},null,{enabled:!0,ignore:!0})})),
21
+ e=l(p,d.id)){this.depMaps.push(d);if(this.events.error)e.on("error",u(this,function(a){this.emit("error",a)}));e.enable()}}else m=u(this,function(a){this.init([],function(){return a},null,{enabled:!0})}),m.error=u(this,function(a){this.inited=!0;this.error=a;a.requireModules=[b];F(p,function(a){0===a.map.id.indexOf(b+"_unnormalized")&&x(a.map.id)});v(a)}),m.fromText=u(this,function(d,c){var e=a.name,g=n(e),B=O;c&&(d=c);B&&(O=!1);q(g);t(k.config,b)&&(k.config[e]=k.config[b]);try{j.exec(d)}catch(ca){return v(A("fromtexteval",
22
+ "fromText eval for "+b+" failed: "+ca,ca,[b]))}B&&(O=!0);this.depMaps.push(g);i.completeLoad(e);h([e],m)}),d.load(a.name,h,m,k)}));i.enable(e,this);this.pluginMaps[e.id]=e},enable:function(){T[this.map.id]=this;this.enabling=this.enabled=!0;y(this.depMaps,u(this,function(a,b){var c,d;if("string"===typeof a){a=n(a,this.map.isDefine?this.map:this.map.parentMap,!1,!this.skipMap);this.depMaps[b]=a;if(c=l(N,a.id)){this.depExports[b]=c(this);return}this.depCount+=1;s(a,"defined",u(this,function(a){this.defineDep(b,
23
+ a);this.check()}));this.errback&&s(a,"error",u(this,this.errback))}c=a.id;d=p[c];!t(N,c)&&(d&&!d.enabled)&&i.enable(a,this)}));F(this.pluginMaps,u(this,function(a){var b=l(p,a.id);b&&!b.enabled&&i.enable(a,this)}));this.enabling=!1;this.check()},on:function(a,b){var c=this.events[a];c||(c=this.events[a]=[]);c.push(b)},emit:function(a,b){y(this.events[a],function(a){a(b)});"error"===a&&delete this.events[a]}};i={config:k,contextName:b,registry:p,defined:r,urlFetched:S,defQueue:G,Module:X,makeModuleMap:n,
24
+ nextTick:j.nextTick,onError:v,configure:function(a){a.baseUrl&&"/"!==a.baseUrl.charAt(a.baseUrl.length-1)&&(a.baseUrl+="/");var b=k.pkgs,c=k.shim,d={paths:!0,config:!0,map:!0};F(a,function(a,b){d[b]?"map"===b?(k.map||(k.map={}),Q(k[b],a,!0,!0)):Q(k[b],a,!0):k[b]=a});a.shim&&(F(a.shim,function(a,b){I(a)&&(a={deps:a});if((a.exports||a.init)&&!a.exportsFn)a.exportsFn=i.makeShimExports(a);c[b]=a}),k.shim=c);a.packages&&(y(a.packages,function(a){a="string"===typeof a?{name:a}:a;b[a.name]={name:a.name,
25
+ location:a.location||a.name,main:(a.main||"main").replace(ja,"").replace(ea,"")}}),k.pkgs=b);F(p,function(a,b){!a.inited&&!a.map.unnormalized&&(a.map=n(b))});if(a.deps||a.callback)i.require(a.deps||[],a.callback)},makeShimExports:function(a){return function(){var b;a.init&&(b=a.init.apply(Z,arguments));return b||a.exports&&ba(a.exports)}},makeRequire:function(a,f){function h(d,c,e){var g,k;f.enableBuildCallback&&(c&&H(c))&&(c.__requireJsBuild=!0);if("string"===typeof d){if(H(c))return v(A("requireargs",
26
+ "Invalid require call"),e);if(a&&t(N,d))return N[d](p[a.id]);if(j.get)return j.get(i,d,a,h);g=n(d,a,!1,!0);g=g.id;return!t(r,g)?v(A("notloaded",'Module name "'+g+'" has not been loaded yet for context: '+b+(a?"":". Use require([])"))):r[g]}K();i.nextTick(function(){K();k=q(n(null,a));k.skipMap=f.skipMap;k.init(d,c,e,{enabled:!0});C()});return h}f=f||{};Q(h,{isBrowser:z,toUrl:function(b){var f,e=b.lastIndexOf("."),g=b.split("/")[0];if(-1!==e&&(!("."===g||".."===g)||1<e))f=b.substring(e,b.length),b=
27
+ b.substring(0,e);return i.nameToUrl(c(b,a&&a.id,!0),f,!0)},defined:function(b){return t(r,n(b,a,!1,!0).id)},specified:function(b){b=n(b,a,!1,!0).id;return t(r,b)||t(p,b)}});a||(h.undef=function(b){w();var c=n(b,a,!0),f=l(p,b);e(b);delete r[b];delete S[c.url];delete Y[b];f&&(f.events.defined&&(Y[b]=f.events),x(b))});return h},enable:function(a){l(p,a.id)&&q(a).enable()},completeLoad:function(a){var b,c,d=l(k.shim,a)||{},e=d.exports;for(w();G.length;){c=G.shift();if(null===c[0]){c[0]=a;if(b)break;b=
28
+ !0}else c[0]===a&&(b=!0);D(c)}c=l(p,a);if(!b&&!t(r,a)&&c&&!c.inited){if(k.enforceDefine&&(!e||!ba(e)))return h(a)?void 0:v(A("nodefine","No define call for "+a,null,[a]));D([a,d.deps||[],d.exportsFn])}C()},nameToUrl:function(a,b,c){var d,e,h,g,i,n;if(j.jsExtRegExp.test(a))g=a+(b||"");else{d=k.paths;e=k.pkgs;g=a.split("/");for(i=g.length;0<i;i-=1)if(n=g.slice(0,i).join("/"),h=l(e,n),n=l(d,n)){I(n)&&(n=n[0]);g.splice(0,i,n);break}else if(h){a=a===h.name?h.location+"/"+h.main:h.location;g.splice(0,i,
29
+ a);break}g=g.join("/");g+=b||(/^data\:|\?/.test(g)||c?"":".js");g=("/"===g.charAt(0)||g.match(/^[\w\+\.\-]+:/)?"":k.baseUrl)+g}return k.urlArgs?g+((-1===g.indexOf("?")?"?":"&")+k.urlArgs):g},load:function(a,b){j.load(i,a,b)},execCb:function(a,b,c,d){return b.apply(d,c)},onScriptLoad:function(a){if("load"===a.type||ka.test((a.currentTarget||a.srcElement).readyState))P=null,a=J(a),i.completeLoad(a.id)},onScriptError:function(a){var b=J(a);if(!h(b.id))return v(A("scripterror","Script error for: "+b.id,
30
+ a,[b.id]))}};i.require=i.makeRequire();return i}var j,w,x,C,J,D,P,K,q,fa,la=/(\/\*([\s\S]*?)\*\/|([^:]|^)\/\/(.*)$)/mg,ma=/[^.]\s*require\s*\(\s*["']([^'"\s]+)["']\s*\)/g,ea=/\.js$/,ja=/^\.\//;w=Object.prototype;var L=w.toString,ga=w.hasOwnProperty,ia=Array.prototype.splice,z=!!("undefined"!==typeof window&&"undefined"!==typeof navigator&&window.document),da=!z&&"undefined"!==typeof importScripts,ka=z&&"PLAYSTATION 3"===navigator.platform?/^complete$/:/^(complete|loaded)$/,W="undefined"!==typeof opera&&
31
+ "[object Opera]"===opera.toString(),E={},s={},R=[],O=!1;if("undefined"===typeof define){if("undefined"!==typeof requirejs){if(H(requirejs))return;s=requirejs;requirejs=void 0}"undefined"!==typeof require&&!H(require)&&(s=require,require=void 0);j=requirejs=function(b,c,e,h){var q,n="_";!I(b)&&"string"!==typeof b&&(q=b,I(c)?(b=c,c=e,e=h):b=[]);q&&q.context&&(n=q.context);(h=l(E,n))||(h=E[n]=j.s.newContext(n));q&&h.configure(q);return h.require(b,c,e)};j.config=function(b){return j(b)};j.nextTick="undefined"!==
32
+ typeof setTimeout?function(b){setTimeout(b,4)}:function(b){b()};require||(require=j);j.version="2.1.9";j.jsExtRegExp=/^\/|:|\?|\.js$/;j.isBrowser=z;w=j.s={contexts:E,newContext:ha};j({});y(["toUrl","undef","defined","specified"],function(b){j[b]=function(){var c=E._;return c.require[b].apply(c,arguments)}});if(z&&(x=w.head=document.getElementsByTagName("head")[0],C=document.getElementsByTagName("base")[0]))x=w.head=C.parentNode;j.onError=aa;j.createNode=function(b){var c=b.xhtml?document.createElementNS("http://www.w3.org/1999/xhtml",
33
+ "html:script"):document.createElement("script");c.type=b.scriptType||"text/javascript";c.charset="utf-8";c.async=!0;return c};j.load=function(b,c,e){var h=b&&b.config||{};if(z)return h=j.createNode(h,c,e),h.setAttribute("data-requirecontext",b.contextName),h.setAttribute("data-requiremodule",c),h.attachEvent&&!(h.attachEvent.toString&&0>h.attachEvent.toString().indexOf("[native code"))&&!W?(O=!0,h.attachEvent("onreadystatechange",b.onScriptLoad)):(h.addEventListener("load",b.onScriptLoad,!1),h.addEventListener("error",
34
+ b.onScriptError,!1)),h.src=e,K=h,C?x.insertBefore(h,C):x.appendChild(h),K=null,h;if(da)try{importScripts(e),b.completeLoad(c)}catch(l){b.onError(A("importscripts","importScripts failed for "+c+" at "+e,l,[c]))}};z&&!s.skipDataMain&&M(document.getElementsByTagName("script"),function(b){x||(x=b.parentNode);if(J=b.getAttribute("data-main"))return q=J,s.baseUrl||(D=q.split("/"),q=D.pop(),fa=D.length?D.join("/")+"/":"./",s.baseUrl=fa),q=q.replace(ea,""),j.jsExtRegExp.test(q)&&(q=J),s.deps=s.deps?s.deps.concat(q):
35
+ [q],!0});define=function(b,c,e){var h,j;"string"!==typeof b&&(e=c,c=b,b=null);I(c)||(e=c,c=null);!c&&H(e)&&(c=[],e.length&&(e.toString().replace(la,"").replace(ma,function(b,e){c.push(e)}),c=(1===e.length?["require"]:["require","exports","module"]).concat(c)));if(O){if(!(h=K))P&&"interactive"===P.readyState||M(document.getElementsByTagName("script"),function(b){if("interactive"===b.readyState)return P=b}),h=P;h&&(b||(b=h.getAttribute("data-requiremodule")),j=E[h.getAttribute("data-requirecontext")])}(j?
36
+ j.defQueue:R).push([b,c,e])};define.amd={jQuery:!0};j.exec=function(b){return eval(b)};j(s)}})(this);
@@ -0,0 +1,13 @@
1
+ define ['browser-source-map-support'], (sourceMapSupport) ->
2
+ sourceMapSupport.install()
3
+
4
+ foo = -> throw new Error 'foo'
5
+
6
+ try
7
+ foo()
8
+ catch e
9
+ if /\bscript\.coffee\b/.test e.stack
10
+ document.body.appendChild document.createTextNode 'Test passed'
11
+ else
12
+ document.body.appendChild document.createTextNode 'Test failed'
13
+ console.log e.stack
@@ -0,0 +1,24 @@
1
+ // Generated by CoffeeScript 1.7.1
2
+ (function() {
3
+ define(['browser-source-map-support'], function(sourceMapSupport) {
4
+ var e, foo;
5
+ sourceMapSupport.install();
6
+ foo = function() {
7
+ throw new Error('foo');
8
+ };
9
+ try {
10
+ return foo();
11
+ } catch (_error) {
12
+ e = _error;
13
+ if (/\bscript\.coffee\b/.test(e.stack)) {
14
+ return document.body.appendChild(document.createTextNode('Test passed'));
15
+ } else {
16
+ document.body.appendChild(document.createTextNode('Test failed'));
17
+ return console.log(e.stack);
18
+ }
19
+ }
20
+ });
21
+
22
+ }).call(this);
23
+
24
+ //# sourceMappingURL=script.map
@@ -0,0 +1,10 @@
1
+ {
2
+ "version": 3,
3
+ "file": "script.js",
4
+ "sourceRoot": "..",
5
+ "sources": [
6
+ "amd-test/script.coffee"
7
+ ],
8
+ "names": [],
9
+ "mappings": ";AAAA;AAAA,EAAA,MAAA,CAAO,CAAC,4BAAD,CAAP,EAAuC,SAAC,gBAAD,GAAA;AACrC,QAAA,MAAA;AAAA,IAAA,gBAAgB,CAAC,OAAjB,CAAA,CAAA,CAAA;AAAA,IAEA,GAAA,GAAM,SAAA,GAAA;AAAG,YAAU,IAAA,KAAA,CAAM,KAAN,CAAV,CAAH;IAAA,CAFN,CAAA;AAIA;aACE,GAAA,CAAA,EADF;KAAA,cAAA;AAGE,MADI,UACJ,CAAA;AAAA,MAAA,IAAG,oBAAoB,CAAC,IAArB,CAA0B,CAAC,CAAC,KAA5B,CAAH;eACE,QAAQ,CAAC,IAAI,CAAC,WAAd,CAA0B,QAAQ,CAAC,cAAT,CAAwB,aAAxB,CAA1B,EADF;OAAA,MAAA;AAGE,QAAA,QAAQ,CAAC,IAAI,CAAC,WAAd,CAA0B,QAAQ,CAAC,cAAT,CAAwB,aAAxB,CAA1B,CAAA,CAAA;eACA,OAAO,CAAC,GAAR,CAAY,CAAC,CAAC,KAAd,EAJF;OAHF;KALqC;EAAA,CAAvC,CAAA,CAAA;AAAA"
10
+ }
@@ -0,0 +1,89 @@
1
+ /*
2
+ * Support for source maps in V8 stack traces
3
+ * https://github.com/evanw/node-source-map-support
4
+ */
5
+ (this.define||function(K,O){this.sourceMapSupport=O()})("browser-source-map-support",function(K){(function h(r,m,e){function p(g,d){if(!m[g]){if(!r[g]){var k="function"==typeof require&&require;if(!d&&k)return k(g,!0);if(v)return v(g,!0);throw Error("Cannot find module '"+g+"'");}k=m[g]={exports:{}};r[g][0].call(k.exports,function(d){var c=r[g][1][d];return p(c?c:d)},k,k.exports,h,r,m,e)}return m[g].exports}for(var v="function"==typeof require&&require,A=0;A<e.length;A++)p(e[A]);return p})({1:[function(h,
6
+ r,m){K=h("./source-map-support")},{"./source-map-support":18}],2:[function(h,r,m){},{}],3:[function(h,r,m){function e(f,n,x){if(!(this instanceof e))return new e(f,n,x);var a=typeof f;if("base64"===n&&"string"===a)for(f=f.trim?f.trim():f.replace(/^\s+|\s+$/g,"");0!==f.length%4;)f+="=";var b;if("number"===a)b=w(f);else if("string"===a)b=e.byteLength(f,n);else if("object"===a)b=w(f.length);else throw Error("First argument needs to be a number, array or string.");var c;e._useTypedArrays?c=e._augment(new Uint8Array(b)):
7
+ (c=this,c.length=b,c._isBuffer=!0);if(e._useTypedArrays&&"number"===typeof f.byteLength)c._set(f);else{var d=f;if(y(d)||e.isBuffer(d)||d&&"object"===typeof d&&"number"===typeof d.length)for(n=0;n<b;n++)e.isBuffer(f)?c[n]=f.readUInt8(n):c[n]=f[n];else if("string"===a)c.write(f,0,n);else if("number"===a&&!e._useTypedArrays&&!x)for(n=0;n<b;n++)c[n]=0}return c}function p(f,n,x){var a="";for(x=Math.min(f.length,x);n<x;n++)a+=String.fromCharCode(f[n]);return a}function v(f,n,x,a){a||(q("boolean"===typeof x,
8
+ "missing or invalid endian"),q(void 0!==n&&null!==n,"missing offset"),q(n+1<f.length,"Trying to read beyond buffer length"));a=f.length;if(!(n>=a))return x?(x=f[n],n+1<a&&(x|=f[n+1]<<8)):(x=f[n]<<8,n+1<a&&(x|=f[n+1])),x}function A(f,n,a,c){c||(q("boolean"===typeof a,"missing or invalid endian"),q(void 0!==n&&null!==n,"missing offset"),q(n+3<f.length,"Trying to read beyond buffer length"));c=f.length;if(!(n>=c)){var b;a?(n+2<c&&(b=f[n+2]<<16),n+1<c&&(b|=f[n+1]<<8),b|=f[n],n+3<c&&(b+=f[n+3]<<24>>>0)):
9
+ (n+1<c&&(b=f[n+1]<<16),n+2<c&&(b|=f[n+2]<<8),n+3<c&&(b|=f[n+3]),b+=f[n]<<24>>>0);return b}}function g(f,n,a,b){b||(q("boolean"===typeof a,"missing or invalid endian"),q(void 0!==n&&null!==n,"missing offset"),q(n+1<f.length,"Trying to read beyond buffer length"));if(!(n>=f.length))return f=v(f,n,a,!0),f&32768?-1*(65535-f+1):f}function d(f,n,a,b){b||(q("boolean"===typeof a,"missing or invalid endian"),q(void 0!==n&&null!==n,"missing offset"),q(n+3<f.length,"Trying to read beyond buffer length"));if(!(n>=
10
+ f.length))return f=A(f,n,a,!0),f&2147483648?-1*(4294967295-f+1):f}function k(f,n,a,b){b||(q("boolean"===typeof a,"missing or invalid endian"),q(n+3<f.length,"Trying to read beyond buffer length"));return I.read(f,n,a,23,4)}function l(f,n,a,b){b||(q("boolean"===typeof a,"missing or invalid endian"),q(n+7<f.length,"Trying to read beyond buffer length"));return I.read(f,n,a,52,8)}function c(f,n,a,b,c){c||(q(void 0!==n&&null!==n,"missing value"),q("boolean"===typeof b,"missing or invalid endian"),q(void 0!==
11
+ a&&null!==a,"missing offset"),q(a+1<f.length,"trying to write beyond buffer length"),L(n,65535));var d=f.length;if(!(a>=d))for(c=0,d=Math.min(d-a,2);c<d;c++)f[a+c]=(n&255<<8*(b?c:1-c))>>>8*(b?c:1-c)}function a(f,n,a,b,c){c||(q(void 0!==n&&null!==n,"missing value"),q("boolean"===typeof b,"missing or invalid endian"),q(void 0!==a&&null!==a,"missing offset"),q(a+3<f.length,"trying to write beyond buffer length"),L(n,4294967295));var d=f.length;if(!(a>=d))for(c=0,d=Math.min(d-a,4);c<d;c++)f[a+c]=n>>>
12
+ 8*(b?c:3-c)&255}function b(f,n,a,b,d){d||(q(void 0!==n&&null!==n,"missing value"),q("boolean"===typeof b,"missing or invalid endian"),q(void 0!==a&&null!==a,"missing offset"),q(a+1<f.length,"Trying to write beyond buffer length"),M(n,32767,-32768));a>=f.length||(0<=n?c(f,n,a,b,d):c(f,65535+n+1,a,b,d))}function z(f,n,b,c,d){d||(q(void 0!==n&&null!==n,"missing value"),q("boolean"===typeof c,"missing or invalid endian"),q(void 0!==b&&null!==b,"missing offset"),q(b+3<f.length,"Trying to write beyond buffer length"),
13
+ M(n,2147483647,-2147483648));b>=f.length||(0<=n?a(f,n,b,c,d):a(f,4294967295+n+1,b,c,d))}function D(f,n,a,b,c){c||(q(void 0!==n&&null!==n,"missing value"),q("boolean"===typeof b,"missing or invalid endian"),q(void 0!==a&&null!==a,"missing offset"),q(a+3<f.length,"Trying to write beyond buffer length"),N(n,3.4028234663852886E38,-3.4028234663852886E38));a>=f.length||I.write(f,n,a,b,23,4)}function B(f,n,a,b,c){c||(q(void 0!==n&&null!==n,"missing value"),q("boolean"===typeof b,"missing or invalid endian"),
14
+ q(void 0!==a&&null!==a,"missing offset"),q(a+7<f.length,"Trying to write beyond buffer length"),N(n,1.7976931348623157E308,-1.7976931348623157E308));a>=f.length||I.write(f,n,a,b,52,8)}function E(f,a,b){if("number"!==typeof f)return b;f=~~f;if(f>=a)return a;if(0<=f)return f;f+=a;return 0<=f?f:0}function w(f){f=~~Math.ceil(+f);return 0>f?0:f}function y(f){return(Array.isArray||function(f){return"[object Array]"===Object.prototype.toString.call(f)})(f)}function H(f){return 16>f?"0"+f.toString(16):f.toString(16)}
15
+ function t(f){for(var a=[],b=0;b<f.length;b++){var c=f.charCodeAt(b);if(127>=c)a.push(f.charCodeAt(b));else{var d=b;55296<=c&&57343>=c&&b++;c=encodeURIComponent(f.slice(d,b+1)).substr(1).split("%");for(d=0;d<c.length;d++)a.push(parseInt(c[d],16))}}return a}function F(f){for(var a=[],b=0;b<f.length;b++)a.push(f.charCodeAt(b)&255);return a}function C(f,a,b,c){for(var d=0;d<c&&!(d+b>=a.length||d>=f.length);d++)a[d+b]=f[d];return d}function G(f){try{return decodeURIComponent(f)}catch(a){return String.fromCharCode(65533)}}
16
+ function L(f,a){q("number"===typeof f,"cannot write a non-number as a number");q(0<=f,"specified a negative value for writing an unsigned value");q(f<=a,"value is larger than maximum value for type");q(Math.floor(f)===f,"value has a fractional component")}function M(f,a,b){q("number"===typeof f,"cannot write a non-number as a number");q(f<=a,"value larger than maximum allowed value");q(f>=b,"value smaller than minimum allowed value");q(Math.floor(f)===f,"value has a fractional component")}function N(f,
17
+ a,b){q("number"===typeof f,"cannot write a non-number as a number");q(f<=a,"value larger than maximum allowed value");q(f>=b,"value smaller than minimum allowed value")}function q(f,a){if(!f)throw Error(a||"Failed assertion");}var J=h("base64-js"),I=h("ieee754");m.Buffer=e;m.SlowBuffer=e;m.INSPECT_MAX_BYTES=50;e.poolSize=8192;e._useTypedArrays=function(){try{var f=new ArrayBuffer(0),a=new Uint8Array(f);a.foo=function(){return 42};return 42===a.foo()&&"function"===typeof a.subarray}catch(b){return!1}}();
18
+ e.isEncoding=function(f){switch(String(f).toLowerCase()){case "hex":case "utf8":case "utf-8":case "ascii":case "binary":case "base64":case "raw":case "ucs2":case "ucs-2":case "utf16le":case "utf-16le":return!0;default:return!1}};e.isBuffer=function(f){return!(null===f||void 0===f||!f._isBuffer)};e.byteLength=function(f,a){var b;f+="";switch(a||"utf8"){case "hex":b=f.length/2;break;case "utf8":case "utf-8":b=t(f).length;break;case "ascii":case "binary":case "raw":b=f.length;break;case "base64":b=J.toByteArray(f).length;
19
+ break;case "ucs2":case "ucs-2":case "utf16le":case "utf-16le":b=2*f.length;break;default:throw Error("Unknown encoding");}return b};e.concat=function(f,a){q(y(f),"Usage: Buffer.concat(list, [totalLength])\nlist should be an Array.");if(0===f.length)return new e(0);if(1===f.length)return f[0];var b;if("number"!==typeof a)for(b=a=0;b<f.length;b++)a+=f[b].length;var c=new e(a),d=0;for(b=0;b<f.length;b++){var k=f[b];k.copy(c,d);d+=k.length}return c};e.prototype.write=function(f,a,b,c){if(isFinite(a))isFinite(b)||
20
+ (c=b,b=void 0);else{var d=c;c=a;a=b;b=d}a=Number(a)||0;d=this.length-a;b?(b=Number(b),b>d&&(b=d)):b=d;c=String(c||"utf8").toLowerCase();switch(c){case "hex":a=Number(a)||0;c=this.length-a;b?(b=Number(b),b>c&&(b=c)):b=c;c=f.length;q(0===c%2,"Invalid hex string");b>c/2&&(b=c/2);for(c=0;c<b;c++)d=parseInt(f.substr(2*c,2),16),q(!isNaN(d),"Invalid hex string"),this[a+c]=d;e._charsWritten=2*c;f=c;break;case "utf8":case "utf-8":f=e._charsWritten=C(t(f),this,a,b);break;case "ascii":f=e._charsWritten=C(F(f),
21
+ this,a,b);break;case "binary":f=e._charsWritten=C(F(f),this,a,b);break;case "base64":f=e._charsWritten=C(J.toByteArray(f),this,a,b);break;case "ucs2":case "ucs-2":case "utf16le":case "utf-16le":for(var k,d=[],l=0;l<f.length;l++)k=f.charCodeAt(l),c=k>>8,k%=256,d.push(k),d.push(c);f=e._charsWritten=C(d,this,a,b);break;default:throw Error("Unknown encoding");}return f};e.prototype.toString=function(f,a,b){f=String(f||"utf8").toLowerCase();a=Number(a)||0;b=void 0!==b?Number(b):b=this.length;if(b===a)return"";
22
+ switch(f){case "hex":f=a;a=this.length;if(!f||0>f)f=0;if(!b||0>b||b>a)b=a;for(a="";f<b;f++)a+=H(this[f]);b=a;break;case "utf8":case "utf-8":var c=a;a=f="";for(b=Math.min(this.length,b);c<b;c++)127>=this[c]?(f+=G(a)+String.fromCharCode(this[c]),a=""):a+="%"+this[c].toString(16);b=f+G(a);break;case "ascii":b=p(this,a,b);break;case "binary":b=p(this,a,b);break;case "base64":f=a;b=0===f&&b===this.length?J.fromByteArray(this):J.fromByteArray(this.slice(f,b));break;case "ucs2":case "ucs-2":case "utf16le":case "utf-16le":b=
23
+ this.slice(a,b);f="";for(a=0;a<b.length;a+=2)f+=String.fromCharCode(b[a]+256*b[a+1]);b=f;break;default:throw Error("Unknown encoding");}return b};e.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};e.prototype.copy=function(a,b,c,d){c||(c=0);d||0===d||(d=this.length);b||(b=0);if(d!==c&&0!==a.length&&0!==this.length)if(q(d>=c,"sourceEnd < sourceStart"),q(0<=b&&b<a.length,"targetStart out of bounds"),q(0<=c&&c<this.length,"sourceStart out of bounds"),
24
+ q(0<=d&&d<=this.length,"sourceEnd out of bounds"),d>this.length&&(d=this.length),a.length-b<d-c&&(d=a.length-b+c),d-=c,100>d||!e._useTypedArrays)for(var k=0;k<d;k++)a[k+b]=this[k+c];else a._set(this.subarray(c,c+d),b)};e.prototype.slice=function(a,b){var c=this.length;a=E(a,c,0);b=E(b,c,c);if(e._useTypedArrays)return e._augment(this.subarray(a,b));for(var c=b-a,d=new e(c,void 0,!0),k=0;k<c;k++)d[k]=this[k+a];return d};e.prototype.get=function(a){console.log(".get() is deprecated. Access using array indexes instead.");
25
+ return this.readUInt8(a)};e.prototype.set=function(a,b){console.log(".set() is deprecated. Access using array indexes instead.");return this.writeUInt8(a,b)};e.prototype.readUInt8=function(a,b){b||(q(void 0!==a&&null!==a,"missing offset"),q(a<this.length,"Trying to read beyond buffer length"));if(!(a>=this.length))return this[a]};e.prototype.readUInt16LE=function(a,b){return v(this,a,!0,b)};e.prototype.readUInt16BE=function(a,b){return v(this,a,!1,b)};e.prototype.readUInt32LE=function(a,b){return A(this,
26
+ a,!0,b)};e.prototype.readUInt32BE=function(a,b){return A(this,a,!1,b)};e.prototype.readInt8=function(a,b){b||(q(void 0!==a&&null!==a,"missing offset"),q(a<this.length,"Trying to read beyond buffer length"));if(!(a>=this.length))return this[a]&128?-1*(255-this[a]+1):this[a]};e.prototype.readInt16LE=function(a,b){return g(this,a,!0,b)};e.prototype.readInt16BE=function(a,b){return g(this,a,!1,b)};e.prototype.readInt32LE=function(a,b){return d(this,a,!0,b)};e.prototype.readInt32BE=function(a,b){return d(this,
27
+ a,!1,b)};e.prototype.readFloatLE=function(a,b){return k(this,a,!0,b)};e.prototype.readFloatBE=function(a,b){return k(this,a,!1,b)};e.prototype.readDoubleLE=function(a,b){return l(this,a,!0,b)};e.prototype.readDoubleBE=function(a,b){return l(this,a,!1,b)};e.prototype.writeUInt8=function(a,b,c){c||(q(void 0!==a&&null!==a,"missing value"),q(void 0!==b&&null!==b,"missing offset"),q(b<this.length,"trying to write beyond buffer length"),L(a,255));b>=this.length||(this[b]=a)};e.prototype.writeUInt16LE=function(a,
28
+ b,d){c(this,a,b,!0,d)};e.prototype.writeUInt16BE=function(a,b,d){c(this,a,b,!1,d)};e.prototype.writeUInt32LE=function(b,c,d){a(this,b,c,!0,d)};e.prototype.writeUInt32BE=function(b,c,d){a(this,b,c,!1,d)};e.prototype.writeInt8=function(a,b,c){c||(q(void 0!==a&&null!==a,"missing value"),q(void 0!==b&&null!==b,"missing offset"),q(b<this.length,"Trying to write beyond buffer length"),M(a,127,-128));b>=this.length||(0<=a?this.writeUInt8(a,b,c):this.writeUInt8(255+a+1,b,c))};e.prototype.writeInt16LE=function(a,
29
+ c,d){b(this,a,c,!0,d)};e.prototype.writeInt16BE=function(a,c,d){b(this,a,c,!1,d)};e.prototype.writeInt32LE=function(a,b,c){z(this,a,b,!0,c)};e.prototype.writeInt32BE=function(a,b,c){z(this,a,b,!1,c)};e.prototype.writeFloatLE=function(a,b,c){D(this,a,b,!0,c)};e.prototype.writeFloatBE=function(a,b,c){D(this,a,b,!1,c)};e.prototype.writeDoubleLE=function(a,b,c){B(this,a,b,!0,c)};e.prototype.writeDoubleBE=function(a,b,c){B(this,a,b,!1,c)};e.prototype.fill=function(a,b,c){a||(a=0);b||(b=0);c||(c=this.length);
30
+ "string"===typeof a&&(a=a.charCodeAt(0));q("number"===typeof a&&!isNaN(a),"value is not a number");q(c>=b,"end < start");if(c!==b&&0!==this.length)for(q(0<=b&&b<this.length,"start out of bounds"),q(0<=c&&c<=this.length,"end out of bounds");b<c;b++)this[b]=a};e.prototype.inspect=function(){for(var a=[],b=this.length,c=0;c<b;c++)if(a[c]=H(this[c]),c===m.INSPECT_MAX_BYTES){a[c+1]="...";break}return"<Buffer "+a.join(" ")+">"};e.prototype.toArrayBuffer=function(){if("undefined"!==typeof Uint8Array){if(e._useTypedArrays)return(new e(this)).buffer;
31
+ for(var a=new Uint8Array(this.length),b=0,c=a.length;b<c;b+=1)a[b]=this[b];return a.buffer}throw Error("Buffer.toArrayBuffer not supported in this browser");};var u=e.prototype;e._augment=function(a){a._isBuffer=!0;a._get=a.get;a._set=a.set;a.get=u.get;a.set=u.set;a.write=u.write;a.toString=u.toString;a.toLocaleString=u.toString;a.toJSON=u.toJSON;a.copy=u.copy;a.slice=u.slice;a.readUInt8=u.readUInt8;a.readUInt16LE=u.readUInt16LE;a.readUInt16BE=u.readUInt16BE;a.readUInt32LE=u.readUInt32LE;a.readUInt32BE=
32
+ u.readUInt32BE;a.readInt8=u.readInt8;a.readInt16LE=u.readInt16LE;a.readInt16BE=u.readInt16BE;a.readInt32LE=u.readInt32LE;a.readInt32BE=u.readInt32BE;a.readFloatLE=u.readFloatLE;a.readFloatBE=u.readFloatBE;a.readDoubleLE=u.readDoubleLE;a.readDoubleBE=u.readDoubleBE;a.writeUInt8=u.writeUInt8;a.writeUInt16LE=u.writeUInt16LE;a.writeUInt16BE=u.writeUInt16BE;a.writeUInt32LE=u.writeUInt32LE;a.writeUInt32BE=u.writeUInt32BE;a.writeInt8=u.writeInt8;a.writeInt16LE=u.writeInt16LE;a.writeInt16BE=u.writeInt16BE;
33
+ a.writeInt32LE=u.writeInt32LE;a.writeInt32BE=u.writeInt32BE;a.writeFloatLE=u.writeFloatLE;a.writeFloatBE=u.writeFloatBE;a.writeDoubleLE=u.writeDoubleLE;a.writeDoubleBE=u.writeDoubleBE;a.fill=u.fill;a.inspect=u.inspect;a.toArrayBuffer=u.toArrayBuffer;return a}},{"base64-js":4,ieee754:5}],4:[function(h,r,m){(function(e){function p(e){e=e.charCodeAt(0);if(43===e)return 62;if(47===e)return 63;if(48>e)return-1;if(58>e)return e-48+52;if(91>e)return e-65;if(123>e)return e-97+26}var v="undefined"!==typeof Uint8Array?
34
+ Uint8Array:Array;e.toByteArray=function(e){function g(c){a[b++]=c}var d,k,l,c,a;if(0<e.length%4)throw Error("Invalid string. Length must be a multiple of 4");d=e.length;c="="===e.charAt(d-2)?2:"="===e.charAt(d-1)?1:0;a=new v(3*e.length/4-c);k=0<c?e.length-4:e.length;var b=0;for(d=0;d<k;d+=4)l=p(e.charAt(d))<<18|p(e.charAt(d+1))<<12|p(e.charAt(d+2))<<6|p(e.charAt(d+3)),g((l&16711680)>>16),g((l&65280)>>8),g(l&255);2===c?(l=p(e.charAt(d))<<2|p(e.charAt(d+1))>>4,g(l&255)):1===c&&(l=p(e.charAt(d))<<10|
35
+ p(e.charAt(d+1))<<4|p(e.charAt(d+2))>>2,g(l>>8&255),g(l&255));return a};e.fromByteArray=function(e){var g,d=e.length%3,k="",l,c;g=0;for(c=e.length-d;g<c;g+=3)l=(e[g]<<16)+(e[g+1]<<8)+e[g+2],l="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(l>>18&63)+"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(l>>12&63)+"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(l>>6&63)+"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(l&
36
+ 63),k+=l;switch(d){case 1:l=e[e.length-1];k+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(l>>2);k+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(l<<4&63);k+="==";break;case 2:l=(e[e.length-2]<<8)+e[e.length-1],k+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(l>>10),k+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(l>>4&63),k+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(l<<
37
+ 2&63),k+="="}return k}})("undefined"===typeof m?this.base64js={}:m)},{}],5:[function(h,r,m){m.read=function(e,p,v,h,g){var d;d=8*g-h-1;var k=(1<<d)-1,l=k>>1,c=-7;g=v?g-1:0;var a=v?-1:1,b=e[p+g];g+=a;v=b&(1<<-c)-1;b>>=-c;for(c+=d;0<c;v=256*v+e[p+g],g+=a,c-=8);d=v&(1<<-c)-1;v>>=-c;for(c+=h;0<c;d=256*d+e[p+g],g+=a,c-=8);if(0===v)v=1-l;else{if(v===k)return d?NaN:Infinity*(b?-1:1);d+=Math.pow(2,h);v-=l}return(b?-1:1)*d*Math.pow(2,v-h)};m.write=function(e,p,v,h,g,d){var k,l=8*d-g-1,c=(1<<l)-1,a=c>>1,b=
38
+ 23===g?Math.pow(2,-24)-Math.pow(2,-77):0;d=h?0:d-1;var z=h?1:-1,D=0>p||0===p&&0>1/p?1:0;p=Math.abs(p);isNaN(p)||Infinity===p?(p=isNaN(p)?1:0,h=c):(h=Math.floor(Math.log(p)/Math.LN2),1>p*(k=Math.pow(2,-h))&&(h--,k*=2),p=1<=h+a?p+b/k:p+b*Math.pow(2,1-a),2<=p*k&&(h++,k/=2),h+a>=c?(p=0,h=c):1<=h+a?(p=(p*k-1)*Math.pow(2,g),h+=a):(p=p*Math.pow(2,a-1)*Math.pow(2,g),h=0));for(;8<=g;e[v+d]=p&255,d+=z,p/=256,g-=8);h=h<<g|p;for(l+=g;0<l;e[v+d]=h&255,d+=z,h/=256,l-=8);e[v+d-z]|=128*D}},{}],6:[function(h,r,m){function e(){}
39
+ h=r.exports={};h.nextTick=function(){if("undefined"!==typeof window&&window.setImmediate)return function(e){return window.setImmediate(e)};if("undefined"!==typeof window&&window.postMessage&&window.addEventListener){var e=[];window.addEventListener("message",function(h){var m=h.source;m!==window&&null!==m||"process-tick"!==h.data||(h.stopPropagation(),0<e.length&&e.shift()())},!0);return function(h){e.push(h);window.postMessage("process-tick","*")}}return function(e){setTimeout(e,0)}}();h.title="browser";
40
+ h.browser=!0;h.env={};h.argv=[];h.on=e;h.once=e;h.off=e;h.emit=e;h.binding=function(e){throw Error("process.binding is not supported");};h.cwd=function(){return"/"};h.chdir=function(e){throw Error("process.chdir is not supported");}},{}],7:[function(h,r,m){(function(e){function h(d,k){for(var e=0,c=d.length-1;0<=c;c--){var a=d[c];"."===a?d.splice(c,1):".."===a?(d.splice(c,1),e++):e&&(d.splice(c,1),e--)}if(k)for(;e--;e)d.unshift("..");return d}function v(d,k){if(d.filter)return d.filter(k);for(var e=
41
+ [],c=0;c<d.length;c++)k(d[c],c,d)&&e.push(d[c]);return e}var r=/^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/;m.resolve=function(){for(var d="",k=!1,l=arguments.length-1;-1<=l&&!k;l--){var c=0<=l?arguments[l]:e.cwd();if("string"!==typeof c)throw new TypeError("Arguments to path.resolve must be strings");c&&(d=c+"/"+d,k="/"===c.charAt(0))}d=h(v(d.split("/"),function(a){return!!a}),!k).join("/");return(k?"/":"")+d||"."};m.normalize=function(d){var e=m.isAbsolute(d),l="/"===g(d,-1);
42
+ (d=h(v(d.split("/"),function(c){return!!c}),!e).join("/"))||e||(d=".");d&&l&&(d+="/");return(e?"/":"")+d};m.isAbsolute=function(d){return"/"===d.charAt(0)};m.join=function(){var d=Array.prototype.slice.call(arguments,0);return m.normalize(v(d,function(d,e){if("string"!==typeof d)throw new TypeError("Arguments to path.join must be strings");return d}).join("/"))};m.relative=function(d,e){function l(a){for(var b=0;b<a.length&&""===a[b];b++);for(var c=a.length-1;0<=c&&""===a[c];c--);return b>c?[]:a.slice(b,
43
+ c-b+1)}d=m.resolve(d).substr(1);e=m.resolve(e).substr(1);for(var c=l(d.split("/")),a=l(e.split("/")),b=Math.min(c.length,a.length),g=b,h=0;h<b;h++)if(c[h]!==a[h]){g=h;break}b=[];for(h=g;h<c.length;h++)b.push("..");b=b.concat(a.slice(g));return b.join("/")};m.sep="/";m.delimiter=":";m.dirname=function(d){var e=r.exec(d).slice(1);d=e[0];e=e[1];if(!d&&!e)return".";e&&(e=e.substr(0,e.length-1));return d+e};m.basename=function(d,e){var l=r.exec(d).slice(1)[2];e&&l.substr(-1*e.length)===e&&(l=l.substr(0,
44
+ l.length-e.length));return l};m.extname=function(d){return r.exec(d).slice(1)[3]};var g="b"==="ab".substr(-1)?function(d,e,l){return d.substr(e,l)}:function(d,e,l){0>e&&(e=d.length+e);return d.substr(e,l)}}).call(this,h("node_modules/browserify/node_modules/insert-module-globals/node_modules/process/browser.js"))},{"node_modules/browserify/node_modules/insert-module-globals/node_modules/process/browser.js":6}],8:[function(h,r,m){m.SourceMapGenerator=h("./source-map/source-map-generator").SourceMapGenerator;
45
+ m.SourceMapConsumer=h("./source-map/source-map-consumer").SourceMapConsumer;m.SourceNode=h("./source-map/source-node").SourceNode},{"./source-map/source-map-consumer":13,"./source-map/source-map-generator":14,"./source-map/source-node":15}],9:[function(h,r,m){if("function"!==typeof e)var e=h("amdefine")(r,h);e(function(e,h,m){function g(){this._array=[];this._set={}}var d=e("./util");g.fromArray=function(d,e){for(var c=new g,a=0,b=d.length;a<b;a++)c.add(d[a],e);return c};g.prototype.add=function(e,
46
+ l){var c=this.has(e),a=this._array.length;c&&!l||this._array.push(e);c||(this._set[d.toSetString(e)]=a)};g.prototype.has=function(e){return Object.prototype.hasOwnProperty.call(this._set,d.toSetString(e))};g.prototype.indexOf=function(e){if(this.has(e))return this._set[d.toSetString(e)];throw Error('"'+e+'" is not in the set.');};g.prototype.at=function(d){if(0<=d&&d<this._array.length)return this._array[d];throw Error("No element indexed by "+d);};g.prototype.toArray=function(){return this._array.slice()};
47
+ h.ArraySet=g})},{"./util":16,amdefine:17}],10:[function(h,r,m){if("function"!==typeof e)var e=h("amdefine")(r,h);e(function(e,h,m){var g=e("./base64");h.encode=function(d){var e="",l=0>d?(-d<<1)+1:(d<<1)+0;do d=l&31,l>>>=5,0<l&&(d|=32),e+=g.encode(d);while(0<l);return e};h.decode=function(d){var e=0,l=d.length,c=0,a=0,b,h;do{if(e>=l)throw Error("Expected more digits in base 64 VLQ value.");h=g.decode(d.charAt(e++));b=!!(h&32);h&=31;c+=h<<a;a+=5}while(b);l=c>>1;return{value:1===(c&1)?-l:l,rest:d.slice(e)}}})},
48
+ {"./base64":11,amdefine:17}],11:[function(h,r,m){if("function"!==typeof e)var e=h("amdefine")(r,h);e(function(e,h,m){var g={},d={};"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".split("").forEach(function(e,l){g[e]=l;d[l]=e});h.encode=function(e){if(e in d)return d[e];throw new TypeError("Must be between 0 and 63: "+e);};h.decode=function(d){if(d in g)return g[d];throw new TypeError("Not a valid base 64 digit: "+d);}})},{amdefine:17}],12:[function(h,r,m){if("function"!==typeof e)var e=
49
+ h("amdefine")(r,h);e(function(e,h,m){function g(d,e,l,c,a){var b=Math.floor((e-d)/2)+d,h=a(l,c[b],!0);return 0===h?c[b]:0<h?1<e-b?g(b,e,l,c,a):c[b]:1<b-d?g(d,b,l,c,a):0>d?null:c[d]}h.search=function(d,e,l){return 0<e.length?g(-1,e.length,d,e,l):null}})},{amdefine:17}],13:[function(h,r,m){if("function"!==typeof e)var e=h("amdefine")(r,h);e(function(e,h,m){function g(a){var b=a;"string"===typeof a&&(b=JSON.parse(a.replace(/^\)\]\}'/,"")));a=d.getArg(b,"version");var c=d.getArg(b,"sources"),e=d.getArg(b,
50
+ "names",[]),g=d.getArg(b,"sourceRoot",null),h=d.getArg(b,"sourcesContent",null),k=d.getArg(b,"mappings"),b=d.getArg(b,"file",null);if(a!=this._version)throw Error("Unsupported version: "+a);this._names=l.fromArray(e,!0);this._sources=l.fromArray(c,!0);this.sourceRoot=g;this.sourcesContent=h;this._mappings=k;this.file=b}var d=e("./util"),k=e("./binary-search"),l=e("./array-set").ArraySet,c=e("./base64-vlq");g.fromSourceMap=function(a){var b=Object.create(g.prototype);b._names=l.fromArray(a._names.toArray(),
51
+ !0);b._sources=l.fromArray(a._sources.toArray(),!0);b.sourceRoot=a._sourceRoot;b.sourcesContent=a._generateSourcesContent(b._sources.toArray(),b.sourceRoot);b.file=a._file;b.__generatedMappings=a._mappings.slice().sort(d.compareByGeneratedPositions);b.__originalMappings=a._mappings.slice().sort(d.compareByOriginalPositions);return b};g.prototype._version=3;Object.defineProperty(g.prototype,"sources",{get:function(){return this._sources.toArray().map(function(a){return this.sourceRoot?d.join(this.sourceRoot,
52
+ a):a},this)}});g.prototype.__generatedMappings=null;Object.defineProperty(g.prototype,"_generatedMappings",{get:function(){this.__generatedMappings||(this.__generatedMappings=[],this.__originalMappings=[],this._parseMappings(this._mappings,this.sourceRoot));return this.__generatedMappings}});g.prototype.__originalMappings=null;Object.defineProperty(g.prototype,"_originalMappings",{get:function(){this.__originalMappings||(this.__generatedMappings=[],this.__originalMappings=[],this._parseMappings(this._mappings,
53
+ this.sourceRoot));return this.__originalMappings}});g.prototype._parseMappings=function(a,b){for(var e=1,g=0,l=0,h=0,k=0,y=0,m=/^[,;]/,t=a,p;0<t.length;)if(";"===t.charAt(0))e++,t=t.slice(1),g=0;else if(","===t.charAt(0))t=t.slice(1);else{p={};p.generatedLine=e;t=c.decode(t);p.generatedColumn=g+t.value;g=p.generatedColumn;t=t.rest;if(0<t.length&&!m.test(t.charAt(0))){t=c.decode(t);p.source=this._sources.at(k+t.value);k+=t.value;t=t.rest;if(0===t.length||m.test(t.charAt(0)))throw Error("Found a source, but no line and column");
54
+ t=c.decode(t);p.originalLine=l+t.value;l=p.originalLine;p.originalLine+=1;t=t.rest;if(0===t.length||m.test(t.charAt(0)))throw Error("Found a source and line, but no column");t=c.decode(t);p.originalColumn=h+t.value;h=p.originalColumn;t=t.rest;0<t.length&&!m.test(t.charAt(0))&&(t=c.decode(t),p.name=this._names.at(y+t.value),y+=t.value,t=t.rest)}this.__generatedMappings.push(p);"number"===typeof p.originalLine&&this.__originalMappings.push(p)}this.__generatedMappings.sort(d.compareByGeneratedPositions);
55
+ this.__originalMappings.sort(d.compareByOriginalPositions)};g.prototype._findMapping=function(a,b,c,d,e){if(0>=a[c])throw new TypeError("Line must be greater than or equal to 1, got "+a[c]);if(0>a[d])throw new TypeError("Column must be greater than or equal to 0, got "+a[d]);return k.search(a,b,e)};g.prototype.originalPositionFor=function(a){a={generatedLine:d.getArg(a,"line"),generatedColumn:d.getArg(a,"column")};if(a=this._findMapping(a,this._generatedMappings,"generatedLine","generatedColumn",
56
+ d.compareByGeneratedPositions)){var b=d.getArg(a,"source",null);b&&this.sourceRoot&&(b=d.join(this.sourceRoot,b));return{source:b,line:d.getArg(a,"originalLine",null),column:d.getArg(a,"originalColumn",null),name:d.getArg(a,"name",null)}}return{source:null,line:null,column:null,name:null}};g.prototype.sourceContentFor=function(a){if(!this.sourcesContent)return null;this.sourceRoot&&(a=d.relative(this.sourceRoot,a));if(this._sources.has(a))return this.sourcesContent[this._sources.indexOf(a)];var b;
57
+ if(this.sourceRoot&&(b=d.urlParse(this.sourceRoot))){var c=a.replace(/^file:\/\//,"");if("file"==b.scheme&&this._sources.has(c))return this.sourcesContent[this._sources.indexOf(c)];if((!b.path||"/"==b.path)&&this._sources.has("/"+a))return this.sourcesContent[this._sources.indexOf("/"+a)]}throw Error('"'+a+'" is not in the SourceMap.');};g.prototype.generatedPositionFor=function(a){a={source:d.getArg(a,"source"),originalLine:d.getArg(a,"line"),originalColumn:d.getArg(a,"column")};this.sourceRoot&&
58
+ (a.source=d.relative(this.sourceRoot,a.source));return(a=this._findMapping(a,this._originalMappings,"originalLine","originalColumn",d.compareByOriginalPositions))?{line:d.getArg(a,"generatedLine",null),column:d.getArg(a,"generatedColumn",null)}:{line:null,column:null}};g.GENERATED_ORDER=1;g.ORIGINAL_ORDER=2;g.prototype.eachMapping=function(a,b,c){b=b||null;switch(c||g.GENERATED_ORDER){case g.GENERATED_ORDER:c=this._generatedMappings;break;case g.ORIGINAL_ORDER:c=this._originalMappings;break;default:throw Error("Unknown order of iteration.");
59
+ }var e=this.sourceRoot;c.map(function(a){var b=a.source;b&&e&&(b=d.join(e,b));return{source:b,generatedLine:a.generatedLine,generatedColumn:a.generatedColumn,originalLine:a.originalLine,originalColumn:a.originalColumn,name:a.name}}).forEach(a,b)};h.SourceMapConsumer=g})},{"./array-set":9,"./base64-vlq":10,"./binary-search":12,"./util":16,amdefine:17}],14:[function(h,r,m){if("function"!==typeof e)var e=h("amdefine")(r,h);e(function(e,h,m){function g(c){this._file=k.getArg(c,"file");this._sourceRoot=
60
+ k.getArg(c,"sourceRoot",null);this._sources=new l;this._names=new l;this._mappings=[];this._sourcesContents=null}var d=e("./base64-vlq"),k=e("./util"),l=e("./array-set").ArraySet;g.prototype._version=3;g.fromSourceMap=function(c){var a=c.sourceRoot,b=new g({file:c.file,sourceRoot:a});c.eachMapping(function(c){var d={generated:{line:c.generatedLine,column:c.generatedColumn}};c.source&&(d.source=c.source,a&&(d.source=k.relative(a,d.source)),d.original={line:c.originalLine,column:c.originalColumn},c.name&&
61
+ (d.name=c.name));b.addMapping(d)});c.sources.forEach(function(a){var d=c.sourceContentFor(a);d&&b.setSourceContent(a,d)});return b};g.prototype.addMapping=function(c){var a=k.getArg(c,"generated"),b=k.getArg(c,"original",null),d=k.getArg(c,"source",null);c=k.getArg(c,"name",null);this._validateMapping(a,b,d,c);d&&!this._sources.has(d)&&this._sources.add(d);c&&!this._names.has(c)&&this._names.add(c);this._mappings.push({generatedLine:a.line,generatedColumn:a.column,originalLine:null!=b&&b.line,originalColumn:null!=
62
+ b&&b.column,source:d,name:c})};g.prototype.setSourceContent=function(c,a){var b=c;this._sourceRoot&&(b=k.relative(this._sourceRoot,b));null!==a?(this._sourcesContents||(this._sourcesContents={}),this._sourcesContents[k.toSetString(b)]=a):(delete this._sourcesContents[k.toSetString(b)],0===Object.keys(this._sourcesContents).length&&(this._sourcesContents=null))};g.prototype.applySourceMap=function(c,a){a||(a=c.file);var b=this._sourceRoot;b&&(a=k.relative(b,a));var d=new l,e=new l;this._mappings.forEach(function(g){if(g.source===
63
+ a&&g.originalLine){var l=c.originalPositionFor({line:g.originalLine,column:g.originalColumn});null!==l.source&&(g.source=b?k.relative(b,l.source):l.source,g.originalLine=l.line,g.originalColumn=l.column,null!==l.name&&null!==g.name&&(g.name=l.name))}(l=g.source)&&!d.has(l)&&d.add(l);(g=g.name)&&!e.has(g)&&e.add(g)},this);this._sources=d;this._names=e;c.sources.forEach(function(a){var d=c.sourceContentFor(a);d&&(b&&(a=k.relative(b,a)),this.setSourceContent(a,d))},this)};g.prototype._validateMapping=
64
+ function(c,a,b,d){if(!(c&&"line"in c&&"column"in c&&0<c.line&&0<=c.column&&!a&&!b&&!d||c&&"line"in c&&"column"in c&&a&&"line"in a&&"column"in a&&0<c.line&&0<=c.column&&0<a.line&&0<=a.column&&b))throw Error("Invalid mapping: "+JSON.stringify({generated:c,source:b,original:a,name:d}));};g.prototype._serializeMappings=function(){var c=0,a=1,b=0,e=0,g=0,l=0,h="",w;this._mappings.sort(k.compareByGeneratedPositions);for(var y=0,p=this._mappings.length;y<p;y++){w=this._mappings[y];if(w.generatedLine!==a)for(c=
65
+ 0;w.generatedLine!==a;)h+=";",a++;else if(0<y){if(!k.compareByGeneratedPositions(w,this._mappings[y-1]))continue;h+=","}h+=d.encode(w.generatedColumn-c);c=w.generatedColumn;w.source&&(h+=d.encode(this._sources.indexOf(w.source)-l),l=this._sources.indexOf(w.source),h+=d.encode(w.originalLine-1-e),e=w.originalLine-1,h+=d.encode(w.originalColumn-b),b=w.originalColumn,w.name&&(h+=d.encode(this._names.indexOf(w.name)-g),g=this._names.indexOf(w.name)))}return h};g.prototype._generateSourcesContent=function(c,
66
+ a){return c.map(function(b){if(!this._sourcesContents)return null;a&&(b=k.relative(a,b));b=k.toSetString(b);return Object.prototype.hasOwnProperty.call(this._sourcesContents,b)?this._sourcesContents[b]:null},this)};g.prototype.toJSON=function(){var c={version:this._version,file:this._file,sources:this._sources.toArray(),names:this._names.toArray(),mappings:this._serializeMappings()};this._sourceRoot&&(c.sourceRoot=this._sourceRoot);this._sourcesContents&&(c.sourcesContent=this._generateSourcesContent(c.sources,
67
+ c.sourceRoot));return c};g.prototype.toString=function(){return JSON.stringify(this)};h.SourceMapGenerator=g})},{"./array-set":9,"./base64-vlq":10,"./util":16,amdefine:17}],15:[function(h,r,m){if("function"!==typeof e)var e=h("amdefine")(r,h);e(function(e,h,m){function g(d,c,a,b,e){this.children=[];this.sourceContents={};this.line=void 0===d?null:d;this.column=void 0===c?null:c;this.source=void 0===a?null:a;this.name=void 0===e?null:e;null!=b&&this.add(b)}var d=e("./source-map-generator").SourceMapGenerator,
68
+ k=e("./util");g.fromStringWithSourceMap=function(d,c){function a(a,c){null===a||void 0===a.source?b.add(c):b.add(new g(a.originalLine,a.originalColumn,a.source,c,a.name))}var b=new g,e=d.split("\n"),h=1,k=0,p=null;c.eachMapping(function(c){if(null===p){for(;h<c.generatedLine;)b.add(e.shift()+"\n"),h++;if(k<c.generatedColumn){var d=e[0];b.add(d.substr(0,c.generatedColumn));e[0]=d.substr(c.generatedColumn);k=c.generatedColumn}}else{if(h<c.generatedLine){var g="";do g+=e.shift()+"\n",h++,k=0;while(h<
69
+ c.generatedLine);k<c.generatedColumn&&(d=e[0],g+=d.substr(0,c.generatedColumn),e[0]=d.substr(c.generatedColumn),k=c.generatedColumn)}else d=e[0],g=d.substr(0,c.generatedColumn-k),e[0]=d.substr(c.generatedColumn-k),k=c.generatedColumn;a(p,g)}p=c},this);a(p,e.join("\n"));c.sources.forEach(function(a){var d=c.sourceContentFor(a);d&&b.setSourceContent(a,d)});return b};g.prototype.add=function(d){if(Array.isArray(d))d.forEach(function(c){this.add(c)},this);else if(d instanceof g||"string"===typeof d)d&&
70
+ this.children.push(d);else throw new TypeError("Expected a SourceNode, string, or an array of SourceNodes and strings. Got "+d);return this};g.prototype.prepend=function(d){if(Array.isArray(d))for(var c=d.length-1;0<=c;c--)this.prepend(d[c]);else if(d instanceof g||"string"===typeof d)this.children.unshift(d);else throw new TypeError("Expected a SourceNode, string, or an array of SourceNodes and strings. Got "+d);return this};g.prototype.walk=function(d){for(var c,a=0,b=this.children.length;a<b;a++)c=
71
+ this.children[a],c instanceof g?c.walk(d):""!==c&&d(c,{source:this.source,line:this.line,column:this.column,name:this.name})};g.prototype.join=function(d){var c,a,b=this.children.length;if(0<b){c=[];for(a=0;a<b-1;a++)c.push(this.children[a]),c.push(d);c.push(this.children[a]);this.children=c}return this};g.prototype.replaceRight=function(d,c){var a=this.children[this.children.length-1];a instanceof g?a.replaceRight(d,c):"string"===typeof a?this.children[this.children.length-1]=a.replace(d,c):this.children.push("".replace(d,
72
+ c));return this};g.prototype.setSourceContent=function(d,c){this.sourceContents[k.toSetString(d)]=c};g.prototype.walkSourceContents=function(d){for(var c=0,a=this.children.length;c<a;c++)this.children[c]instanceof g&&this.children[c].walkSourceContents(d);for(var b=Object.keys(this.sourceContents),c=0,a=b.length;c<a;c++)d(k.fromSetString(b[c]),this.sourceContents[b[c]])};g.prototype.toString=function(){var d="";this.walk(function(c){d+=c});return d};g.prototype.toStringWithSourceMap=function(e){var c=
73
+ "",a=1,b=0,g=new d(e),h=!1,k=null,p=null,w=null,m=null;this.walk(function(d,e){c+=d;null!==e.source&&null!==e.line&&null!==e.column?(k===e.source&&p===e.line&&w===e.column&&m===e.name||g.addMapping({source:e.source,original:{line:e.line,column:e.column},generated:{line:a,column:b},name:e.name}),k=e.source,p=e.line,w=e.column,m=e.name,h=!0):h&&(g.addMapping({generated:{line:a,column:b}}),k=null,h=!1);d.split("").forEach(function(c){"\n"===c?(a++,b=0):b++})});this.walkSourceContents(function(a,b){g.setSourceContent(a,
74
+ b)});return{code:c,map:g}};h.SourceNode=g})},{"./source-map-generator":14,"./util":16,amdefine:17}],16:[function(h,r,m){if("function"!==typeof e)var e=h("amdefine")(r,h);e(function(e,h,m){function g(a){return(a=a.match(l))?{scheme:a[1],auth:a[3],host:a[4],port:a[6],path:a[7]}:null}function d(a){var b=a.scheme+"://";a.auth&&(b+=a.auth+"@");a.host&&(b+=a.host);a.port&&(b+=":"+a.port);a.path&&(b+=a.path);return b}function k(a,b){var c=a||"",d=b||"";return(c>d)-(c<d)}h.getArg=function(a,b,c){if(b in a)return a[b];
75
+ if(3===arguments.length)return c;throw Error('"'+b+'" is a required argument.');};var l=/([\w+\-.]+):\/\/((\w+:\w+)@)?([\w.]+)?(:(\d+))?(\S+)?/,c=/^data:.+\,.+/;h.urlParse=g;h.urlGenerate=d;h.join=function(a,b){var e;return b.match(l)||b.match(c)?b:"/"===b.charAt(0)&&(e=g(a))?(e.path=b,d(e)):a.replace(/\/$/,"")+"/"+b};h.toSetString=function(a){return"$"+a};h.fromSetString=function(a){return a.substr(1)};h.relative=function(a,b){a=a.replace(/\/$/,"");var c=g(a);return"/"==b.charAt(0)&&c&&"/"==c.path?
76
+ b.slice(1):0===b.indexOf(a+"/")?b.substr(a.length+1):b};h.compareByOriginalPositions=function(a,b,c){var d;return(d=k(a.source,b.source))||(d=a.originalLine-b.originalLine)||(d=a.originalColumn-b.originalColumn)||c||(d=k(a.name,b.name))?d:(d=a.generatedLine-b.generatedLine)?d:a.generatedColumn-b.generatedColumn};h.compareByGeneratedPositions=function(a,b,c){var d;return(d=a.generatedLine-b.generatedLine)||(d=a.generatedColumn-b.generatedColumn)||c||(d=k(a.source,b.source))||(d=a.originalLine-b.originalLine)?
77
+ d:(d=a.originalColumn-b.originalColumn)?d:k(a.name,b.name)}})},{amdefine:17}],17:[function(h,r,m){(function(e,p){r.exports=function(m,r){function g(a,b){var c;if(a&&"."===a.charAt(0)&&b){c=b.split("/");c=c.slice(0,c.length-1);var d=c=c.concat(a.split("/")),e,g;for(e=0;d[e];e+=1)if(g=d[e],"."===g)d.splice(e,1),--e;else if(".."===g)if(1!==e||".."!==d[2]&&".."!==d[0])0<e&&(d.splice(e-1,2),e-=2);else break;a=c.join("/")}return a}function d(a){return function(b){return g(b,a)}}function k(a){function c(d){b[a]=
78
+ d}c.fromText=function(a,b){throw Error("amdefine does not implement load.fromText");};return c}function l(a,c,d){var e,g,h;if(a)g=b[a]={},h={id:a,uri:p,exports:g},e=B(r,g,h,a);else{if(z)throw Error("amdefine with no module ID cannot be called more than once per file.");z=!0;g=m.exports;h=m;e=B(r,g,h,m.id)}c&&(c=c.map(function(a){return e(a)}));c="function"===typeof d?d.apply(h.exports,c):d;void 0!==c&&(h.exports=c,a&&(b[a]=h.exports))}function c(b,c,d){Array.isArray(b)?(d=c,c=b,b=void 0):"string"!==
79
+ typeof b&&(d=b,b=c=void 0);c&&!Array.isArray(c)&&(d=c,c=void 0);c||(c=["require","exports","module"]);b?a[b]=[b,c,d]:l(b,c,d)}var a={},b={},z=!1,D=h("path"),B,E;B=function(a,b,c,d){function h(g,k){if("string"===typeof g)return E(a,b,c,g,d);g=g.map(function(e){return E(a,b,c,e,d)});e.nextTick(function(){k.apply(null,g)})}h.toUrl=function(a){return 0===a.indexOf(".")?g(a,D.dirname(c.filename)):a};return h};r=r||function(){return m.require.apply(m,arguments)};E=function(c,e,h,m,p){var r=m.indexOf("!"),
80
+ G=m;if(-1===r){m=g(m,p);if("require"===m)return B(c,e,h,p);if("exports"===m)return e;if("module"===m)return h;if(b.hasOwnProperty(m))return b[m];if(a[m])return l.apply(null,a[m]),b[m];if(c)return c(G);throw Error("No module with ID: "+m);}G=m.substring(0,r);m=m.substring(r+1,m.length);r=E(c,e,h,G,p);m=r.normalize?r.normalize(m,d(p)):g(m,p);b[m]||r.load(m,B(c,e,h,p),k(m),{});return b[m]};c.require=function(c){if(b[c])return b[c];if(a[c])return l.apply(null,a[c]),b[c]};c.amd={};return c}}).call(this,
81
+ h("node_modules/browserify/node_modules/insert-module-globals/node_modules/process/browser.js"),"/node_modules/source-map/node_modules/amdefine/amdefine.js")},{"node_modules/browserify/node_modules/insert-module-globals/node_modules/process/browser.js":6,path:7}],18:[function(h,r,m){(function(e,p){function r(){return"undefined"!==typeof window&&"function"===typeof XMLHttpRequest}function A(a){if(a in F)return F[a];try{if(r()){var b=new XMLHttpRequest;b.open("GET",a,!1);b.send(null);var c=4===b.readyState?
82
+ b.responseText:null}else c=y.readFileSync(a,"utf8")}catch(d){c=null}return F[a]=c}function g(a,b){if(!a)return b;var c=w.dirname(a),d=/^\w+:\/\/[^\/]*/.exec(c),d=d?d[0]:"";return d+w.resolve(c.slice(d.length),b)}function d(a){var b;a:{if(r()&&(b=new XMLHttpRequest,b.open("GET",a,!1),b.send(null),b=b.getResponseHeader("SourceMap")||b.getResponseHeader("X-SourceMap")))break a;b=A(a);b=(b=/\/\/[#@]\s*sourceMappingURL=(.*)\s*$/m.exec(b))?b[1]:null}if(!b)return null;"data:application/json;base64,"==b.slice(0,
83
+ 29).toLowerCase()?(a=(new p(b.slice(29),"base64")).toString(),b=null):(b=g(a,b),a=A(b,"utf8"));return a?{url:b,map:a}:null}function k(a){var b=C[a.source];if(!b){var c=d(a.source);c?(b=C[a.source]={url:c.url,map:new E(c.map)},b.map.sourcesContent&&b.map.sources.forEach(function(a,c){var d=b.map.sourcesContent[c];if(d){var e=g(b.url,a);F[e]=d}})):b=C[a.source]={url:null,map:null}}return b&&b.map&&(c=b.map.originalPositionFor(a),null!==c.source)?(c.source=g(b.url,c.source),c):a}function l(a){var b=
84
+ /^eval at ([^(]+) \((.+):(\d+):(\d+)\)$/.exec(a);return b?(a=k({source:b[2],line:b[3],column:b[4]-1}),"eval at "+b[1]+" ("+a.source+":"+a.line+":"+(a.column+1)+")"):(b=/^eval at ([^(]+) \((.+)\)$/.exec(a))?"eval at "+b[1]+" ("+l(b[2])+")":a}function c(){var a,b="";this.isNative()?b="native":(a=this.getScriptNameOrSourceURL(),!a&&this.isEval()&&(b=this.getEvalOrigin(),b+=", "),b=a?b+a:b+"<anonymous>",a=this.getLineNumber(),null!=a&&(b+=":"+a,(a=this.getColumnNumber())&&(b+=":"+a)));a="";var c=this.getFunctionName(),
85
+ d=!0,e=this.isConstructor();if(this.isToplevel()||e)e?a+="new "+(c||"<anonymous>"):c?a+=c:(a+=b,d=!1);else{var e=this.getTypeName(),g=this.getMethodName();c?(e&&0!=c.indexOf(e)&&(a+=e+"."),a+=c,g&&c.indexOf("."+g)!=c.length-g.length-1&&(a+=" [as "+g+"]")):a+=e+"."+(g||"<anonymous>")}d&&(a+=" ("+b+")");return a}function a(a){var b={};Object.getOwnPropertyNames(Object.getPrototypeOf(a)).forEach(function(c){b[c]=/^(?:is|get)/.test(c)?function(){return a[c].call(a)}:a[c]});b.toString=c;return b}function b(b){var c=
86
+ b.getFileName()||b.getScriptNameOrSourceURL();if(c){var d=k({source:c,line:b.getLineNumber(),column:b.getColumnNumber()-1});b=a(b);b.getFileName=function(){return d.source};b.getLineNumber=function(){return d.line};b.getColumnNumber=function(){return d.column+1};b.getScriptNameOrSourceURL=function(){return d.source};return b}var e=b.isEval()&&b.getEvalOrigin();e&&(e=l(e),b=a(b),b.getEvalOrigin=function(){return e});return b}function z(a,c){t&&(F={},C={});return a+c.map(function(a){return"\n at "+
87
+ b(a)}).join("")}function D(a){var b=/\n at [^(]+ \((.*):(\d+):(\d+)\)/.exec(a.stack);if(b){a=b[1];var c=+b[2],b=+b[3],d=F[a];!d&&y.existsSync(a)&&(d=y.readFileSync(a,"utf8"));if(d&&(d=d.split(/(?:\r\n|\r|\n)/)[c-1]))return"\n"+a+":"+c+"\n"+d+"\n"+Array(b).join(" ")+"^"}return null}function B(a){if(a&&a.stack){var b=D(a);null!==b&&console.log(b);console.log(a.stack)}else console.log("Uncaught exception:",a);e.exit(1)}var E=h("source-map").SourceMapConsumer,w=h("path"),y=h("fs"),H=!1,t=!1,F={},C=
88
+ {};m.wrapCallSite=b;m.getErrorSource=D;m.mapSourcePosition=k;m.retrieveSourceMap=d;m.install=function(a){if(!H){H=!0;Error.prepareStackTrace=z;a=a||{};var b="handleUncaughtExceptions"in a?a.handleUncaughtExceptions:!0;t="emptyCacheBetweenOperations"in a?a.emptyCacheBetweenOperations:!1;a.retrieveFile&&(A=a.retrieveFile);a.retrieveSourceMap&&(d=a.retrieveSourceMap);if(b&&!r())e.on("uncaughtException",B)}}}).call(this,h("node_modules/browserify/node_modules/insert-module-globals/node_modules/process/browser.js"),
89
+ h("buffer").Buffer)},{"node_modules/browserify/node_modules/insert-module-globals/node_modules/process/browser.js":6,buffer:3,fs:2,path:7,"source-map":8}]},{},[1]);return K});