Haraka 2.8.27 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (7003) hide show
  1. package/.eslintrc.yaml +2 -10
  2. package/Changes.md +107 -2
  3. package/Dockerfile +1 -1
  4. package/Plugins.md +7 -4
  5. package/README.md +2 -6
  6. package/bin/dkimverify +11 -6
  7. package/config/dkim_verify.ini +7 -0
  8. package/config/outbound.ini +0 -7
  9. package/config/plugins +1 -1
  10. package/config/smtp.ini +1 -1
  11. package/config/smtp_forward.ini +2 -8
  12. package/config/smtp_proxy.ini +0 -6
  13. package/config/spamassassin.ini +10 -4
  14. package/config/tls.ini +19 -0
  15. package/connection.js +203 -237
  16. package/contrib/plugin2npm.sh +3 -3
  17. package/coverage/lcov.info +13863 -0
  18. package/coverage/tmp/coverage-42958-1658373250585-0.json +1 -0
  19. package/coverage/tmp/coverage-42961-1658373250529-0.json +1 -0
  20. package/dkim.js +148 -111
  21. package/docs/Body.md +1 -22
  22. package/docs/CoreConfig.md +2 -2
  23. package/docs/Header.md +1 -47
  24. package/docs/Outbound.md +16 -26
  25. package/docs/Plugins.md +4 -0
  26. package/docs/plugins/dkim_verify.md +6 -1
  27. package/docs/plugins/queue/smtp_forward.md +1 -1
  28. package/docs/plugins/relay_force_routing.md +11 -0
  29. package/docs/plugins/spamassassin.md +26 -0
  30. package/docs/plugins/tls.md +22 -0
  31. package/endpoint.js +1 -1
  32. package/haraka.js +1 -1
  33. package/host_pool.js +8 -12
  34. package/http/html/404.html +62 -0
  35. package/http/html/index.html +7 -5
  36. package/http/package.json +16 -9
  37. package/logger.js +25 -32
  38. package/outbound/client_pool.js +11 -153
  39. package/outbound/config.js +90 -6
  40. package/outbound/hmail.js +153 -147
  41. package/outbound/index.js +13 -25
  42. package/outbound/mx_lookup.js +15 -8
  43. package/outbound/queue.js +8 -12
  44. package/outbound/timer_queue.js +2 -4
  45. package/outbound/tls.js +20 -19
  46. package/outbound/todo.js +1 -0
  47. package/package.json +52 -48
  48. package/plugins/auth/auth_base.js +39 -63
  49. package/plugins/auth/auth_bridge.js +3 -4
  50. package/plugins/auth/auth_proxy.js +16 -16
  51. package/plugins/auth/auth_vpopmaild.js +30 -37
  52. package/plugins/auth/flat_file.js +9 -13
  53. package/plugins/avg.js +9 -11
  54. package/plugins/backscatterer.js +1 -1
  55. package/plugins/block_me.js +2 -6
  56. package/plugins/bounce.js +106 -124
  57. package/plugins/clamd.js +59 -63
  58. package/plugins/data.signatures.js +6 -6
  59. package/plugins/data.uribl.js +1 -415
  60. package/plugins/delay_deny.js +19 -20
  61. package/plugins/dkim_sign.js +56 -62
  62. package/plugins/dkim_verify.js +26 -13
  63. package/plugins/dns_list_base.js +43 -42
  64. package/plugins/dnsbl.js +41 -46
  65. package/plugins/dnswl.js +23 -26
  66. package/plugins/early_talker.js +24 -28
  67. package/plugins/esets.js +8 -11
  68. package/plugins/greylist.js +161 -190
  69. package/plugins/helo.checks.js +175 -197
  70. package/plugins/mail_from.is_resolvable.js +38 -38
  71. package/plugins/messagesniffer.js +33 -40
  72. package/plugins/prevent_credential_leaks.js +7 -5
  73. package/plugins/process_title.js +16 -17
  74. package/plugins/queue/deliver.js +2 -2
  75. package/plugins/queue/lmtp.js +5 -6
  76. package/plugins/queue/qmail-queue.js +11 -13
  77. package/plugins/queue/quarantine.js +25 -34
  78. package/plugins/queue/rabbitmq.js +3 -2
  79. package/plugins/queue/rabbitmq_amqplib.js +9 -9
  80. package/plugins/queue/smtp_bridge.js +5 -4
  81. package/plugins/queue/smtp_forward.js +81 -89
  82. package/plugins/queue/smtp_proxy.js +21 -22
  83. package/plugins/queue/test.js +2 -1
  84. package/plugins/rcpt_to.host_list_base.js +20 -30
  85. package/plugins/rcpt_to.in_host_list.js +12 -14
  86. package/plugins/rcpt_to.max_count.js +7 -5
  87. package/plugins/record_envelope_addresses.js +4 -6
  88. package/plugins/relay.js +67 -74
  89. package/plugins/reseed_rng.js +1 -2
  90. package/plugins/spamassassin.js +83 -89
  91. package/plugins/status.js +2 -3
  92. package/plugins/tarpit.js +8 -11
  93. package/plugins/tls.js +17 -17
  94. package/plugins/toobusy.js +6 -8
  95. package/plugins/xclient.js +14 -25
  96. package/plugins.js +28 -28
  97. package/rfc1869.js +2 -2
  98. package/run_tests +3 -2
  99. package/server.js +9 -21
  100. package/smtp_client.js +138 -215
  101. package/tests/config/smtp_forward.ini +0 -6
  102. package/tests/config/tls/ec.pem +23 -0
  103. package/tests/config/tls.ini +3 -0
  104. package/tests/connection.js +4 -0
  105. package/tests/fixtures/line_socket.js +1 -1
  106. package/tests/fixtures/util_hmailitem.js +5 -7
  107. package/tests/fixtures/vm_harness.js +2 -2
  108. package/tests/host_pool.js +13 -14
  109. package/tests/installation/plugins/inherits.js +1 -2
  110. package/tests/logger.js +2 -2
  111. package/{http/node_modules/bower/lib/node_modules/extsprintf/.gitmodules → tests/loud/config/dhparams.pem} +0 -0
  112. package/tests/{config → loud/config}/tls/goobered.pem +0 -0
  113. package/tests/loud/config/tls.ini +43 -0
  114. package/tests/outbound/index.js +26 -1
  115. package/tests/plugins/bounce.js +6 -8
  116. package/tests/plugins/dkim_signer.js +7 -7
  117. package/tests/plugins/dns_list_base.js +7 -7
  118. package/tests/plugins/helo.checks.js +1 -1
  119. package/tests/plugins/mail_from.is_resolvable.js +10 -54
  120. package/tests/plugins/queue/smtp_forward.js +11 -11
  121. package/tests/plugins/rcpt_to.host_list_base.js +1 -1
  122. package/tests/plugins/rcpt_to.in_host_list.js +1 -1
  123. package/tests/plugins/relay.js +11 -0
  124. package/tests/plugins/spamassassin.js +14 -12
  125. package/tests/plugins.js +24 -25
  126. package/tests/queue/multibyte +0 -0
  127. package/tests/queue/plain +0 -0
  128. package/tests/rfc1869.js +4 -1
  129. package/tests/server.js +25 -12
  130. package/tests/smtp_client/auth.js +4 -14
  131. package/tests/smtp_client/basic.js +5 -15
  132. package/tests/smtp_client.js +7 -3
  133. package/tests/tls_socket.js +105 -14
  134. package/tests/transaction.js +72 -19
  135. package/tls_socket.js +127 -106
  136. package/transaction.js +8 -9
  137. package/attachment_stream.js +0 -118
  138. package/bin/spf +0 -48
  139. package/chunkemitter.js +0 -75
  140. package/config/data.uribl.excludes +0 -202
  141. package/config/data.uribl.ini +0 -37
  142. package/config/spf.ini +0 -1
  143. package/docs/plugins/attachment.md +0 -92
  144. package/docs/plugins/data.uribl.md +0 -120
  145. package/docs/plugins/spf.md +0 -142
  146. package/http/Gruntfile.js +0 -72
  147. package/http/bower.json +0 -24
  148. package/http/node_modules/abbrev/LICENSE +0 -46
  149. package/http/node_modules/abbrev/README.md +0 -23
  150. package/http/node_modules/abbrev/abbrev.js +0 -61
  151. package/http/node_modules/abbrev/package.json +0 -57
  152. package/http/node_modules/accepts/HISTORY.md +0 -236
  153. package/http/node_modules/accepts/LICENSE +0 -23
  154. package/http/node_modules/accepts/README.md +0 -142
  155. package/http/node_modules/accepts/index.js +0 -238
  156. package/http/node_modules/accepts/package.json +0 -86
  157. package/http/node_modules/ansi-regex/index.js +0 -14
  158. package/http/node_modules/ansi-regex/license +0 -9
  159. package/http/node_modules/ansi-regex/package.json +0 -85
  160. package/http/node_modules/ansi-regex/readme.md +0 -87
  161. package/http/node_modules/ansi-styles/index.d.ts +0 -345
  162. package/http/node_modules/ansi-styles/index.js +0 -163
  163. package/http/node_modules/ansi-styles/license +0 -9
  164. package/http/node_modules/ansi-styles/package.json +0 -88
  165. package/http/node_modules/ansi-styles/readme.md +0 -152
  166. package/http/node_modules/argparse/CHANGELOG.md +0 -185
  167. package/http/node_modules/argparse/LICENSE +0 -21
  168. package/http/node_modules/argparse/README.md +0 -257
  169. package/http/node_modules/argparse/index.js +0 -3
  170. package/http/node_modules/argparse/lib/action/append/constant.js +0 -47
  171. package/http/node_modules/argparse/lib/action/append.js +0 -53
  172. package/http/node_modules/argparse/lib/action/count.js +0 -40
  173. package/http/node_modules/argparse/lib/action/help.js +0 -47
  174. package/http/node_modules/argparse/lib/action/store/constant.js +0 -43
  175. package/http/node_modules/argparse/lib/action/store/false.js +0 -27
  176. package/http/node_modules/argparse/lib/action/store/true.js +0 -26
  177. package/http/node_modules/argparse/lib/action/store.js +0 -50
  178. package/http/node_modules/argparse/lib/action/subparsers.js +0 -149
  179. package/http/node_modules/argparse/lib/action/version.js +0 -47
  180. package/http/node_modules/argparse/lib/action.js +0 -146
  181. package/http/node_modules/argparse/lib/action_container.js +0 -482
  182. package/http/node_modules/argparse/lib/argparse.js +0 -14
  183. package/http/node_modules/argparse/lib/argument/error.js +0 -50
  184. package/http/node_modules/argparse/lib/argument/exclusive.js +0 -54
  185. package/http/node_modules/argparse/lib/argument/group.js +0 -75
  186. package/http/node_modules/argparse/lib/argument_parser.js +0 -1161
  187. package/http/node_modules/argparse/lib/const.js +0 -21
  188. package/http/node_modules/argparse/lib/help/added_formatters.js +0 -87
  189. package/http/node_modules/argparse/lib/help/formatter.js +0 -795
  190. package/http/node_modules/argparse/lib/namespace.js +0 -76
  191. package/http/node_modules/argparse/lib/utils.js +0 -57
  192. package/http/node_modules/argparse/package.json +0 -70
  193. package/http/node_modules/arr-diff/LICENSE +0 -21
  194. package/http/node_modules/arr-diff/README.md +0 -130
  195. package/http/node_modules/arr-diff/index.js +0 -47
  196. package/http/node_modules/arr-diff/package.json +0 -109
  197. package/http/node_modules/arr-flatten/LICENSE +0 -21
  198. package/http/node_modules/arr-flatten/README.md +0 -86
  199. package/http/node_modules/arr-flatten/index.js +0 -22
  200. package/http/node_modules/arr-flatten/package.json +0 -113
  201. package/http/node_modules/arr-union/LICENSE +0 -21
  202. package/http/node_modules/arr-union/README.md +0 -99
  203. package/http/node_modules/arr-union/index.js +0 -29
  204. package/http/node_modules/arr-union/package.json +0 -108
  205. package/http/node_modules/array-each/LICENSE +0 -21
  206. package/http/node_modules/array-each/README.md +0 -84
  207. package/http/node_modules/array-each/index.js +0 -46
  208. package/http/node_modules/array-each/package.json +0 -81
  209. package/http/node_modules/array-flatten/LICENSE +0 -21
  210. package/http/node_modules/array-flatten/README.md +0 -43
  211. package/http/node_modules/array-flatten/array-flatten.js +0 -64
  212. package/http/node_modules/array-flatten/package.json +0 -64
  213. package/http/node_modules/array-slice/LICENSE +0 -21
  214. package/http/node_modules/array-slice/README.md +0 -82
  215. package/http/node_modules/array-slice/index.js +0 -33
  216. package/http/node_modules/array-slice/package.json +0 -85
  217. package/http/node_modules/array-unique/LICENSE +0 -21
  218. package/http/node_modules/array-unique/README.md +0 -77
  219. package/http/node_modules/array-unique/index.js +0 -43
  220. package/http/node_modules/array-unique/package.json +0 -96
  221. package/http/node_modules/assign-symbols/LICENSE +0 -21
  222. package/http/node_modules/assign-symbols/README.md +0 -73
  223. package/http/node_modules/assign-symbols/index.js +0 -40
  224. package/http/node_modules/assign-symbols/package.json +0 -71
  225. package/http/node_modules/async/CHANGELOG.md +0 -125
  226. package/http/node_modules/async/LICENSE +0 -19
  227. package/http/node_modules/async/README.md +0 -1877
  228. package/http/node_modules/async/dist/async.js +0 -1265
  229. package/http/node_modules/async/dist/async.min.js +0 -2
  230. package/http/node_modules/async/lib/async.js +0 -1265
  231. package/http/node_modules/async/package.json +0 -113
  232. package/http/node_modules/atob/LICENSE +0 -230
  233. package/http/node_modules/atob/LICENSE.DOCS +0 -319
  234. package/http/node_modules/atob/README.md +0 -49
  235. package/http/node_modules/atob/bin/atob.js +0 -6
  236. package/http/node_modules/atob/bower.json +0 -24
  237. package/http/node_modules/atob/browser-atob.js +0 -44
  238. package/http/node_modules/atob/node-atob.js +0 -7
  239. package/http/node_modules/atob/package.json +0 -53
  240. package/http/node_modules/atob/test.js +0 -18
  241. package/http/node_modules/balanced-match/LICENSE.md +0 -21
  242. package/http/node_modules/balanced-match/README.md +0 -91
  243. package/http/node_modules/balanced-match/index.js +0 -59
  244. package/http/node_modules/balanced-match/package.json +0 -77
  245. package/http/node_modules/base/LICENSE +0 -21
  246. package/http/node_modules/base/README.md +0 -491
  247. package/http/node_modules/base/index.js +0 -435
  248. package/http/node_modules/base/package.json +0 -164
  249. package/http/node_modules/body-parser/HISTORY.md +0 -609
  250. package/http/node_modules/body-parser/LICENSE +0 -23
  251. package/http/node_modules/body-parser/README.md +0 -443
  252. package/http/node_modules/body-parser/index.js +0 -157
  253. package/http/node_modules/body-parser/lib/read.js +0 -181
  254. package/http/node_modules/body-parser/lib/types/json.js +0 -230
  255. package/http/node_modules/body-parser/lib/types/raw.js +0 -101
  256. package/http/node_modules/body-parser/lib/types/text.js +0 -121
  257. package/http/node_modules/body-parser/lib/types/urlencoded.js +0 -284
  258. package/http/node_modules/body-parser/package.json +0 -91
  259. package/http/node_modules/bower/CHANGELOG.md +0 -674
  260. package/http/node_modules/bower/LICENSE +0 -19
  261. package/http/node_modules/bower/README.md +0 -200
  262. package/http/node_modules/bower/bin/bower +0 -3
  263. package/http/node_modules/bower/lib/bin/bower.js +0 -150
  264. package/http/node_modules/bower/lib/commands/cache/clean.js +0 -195
  265. package/http/node_modules/bower/lib/commands/cache/list.js +0 -42
  266. package/http/node_modules/bower/lib/commands/help.js +0 -41
  267. package/http/node_modules/bower/lib/commands/home.js +0 -59
  268. package/http/node_modules/bower/lib/commands/index.js +0 -82
  269. package/http/node_modules/bower/lib/commands/info.js +0 -73
  270. package/http/node_modules/bower/lib/commands/init.js +0 -342
  271. package/http/node_modules/bower/lib/commands/install.js +0 -55
  272. package/http/node_modules/bower/lib/commands/link.js +0 -88
  273. package/http/node_modules/bower/lib/commands/list.js +0 -185
  274. package/http/node_modules/bower/lib/commands/login.js +0 -155
  275. package/http/node_modules/bower/lib/commands/lookup.js +0 -37
  276. package/http/node_modules/bower/lib/commands/prune.js +0 -60
  277. package/http/node_modules/bower/lib/commands/register.js +0 -100
  278. package/http/node_modules/bower/lib/commands/search.js +0 -39
  279. package/http/node_modules/bower/lib/commands/uninstall.js +0 -132
  280. package/http/node_modules/bower/lib/commands/unregister.js +0 -90
  281. package/http/node_modules/bower/lib/commands/update.js +0 -39
  282. package/http/node_modules/bower/lib/commands/version.js +0 -210
  283. package/http/node_modules/bower/lib/config.js +0 -63
  284. package/http/node_modules/bower/lib/core/Manager.js +0 -1284
  285. package/http/node_modules/bower/lib/core/PackageRepository.js +0 -304
  286. package/http/node_modules/bower/lib/core/Project.js +0 -1033
  287. package/http/node_modules/bower/lib/core/ResolveCache.js +0 -440
  288. package/http/node_modules/bower/lib/core/resolverFactory.js +0 -279
  289. package/http/node_modules/bower/lib/core/resolvers/FsResolver.js +0 -154
  290. package/http/node_modules/bower/lib/core/resolvers/GitFsResolver.js +0 -102
  291. package/http/node_modules/bower/lib/core/resolvers/GitHubResolver.js +0 -191
  292. package/http/node_modules/bower/lib/core/resolvers/GitRemoteResolver.js +0 -330
  293. package/http/node_modules/bower/lib/core/resolvers/GitResolver.js +0 -434
  294. package/http/node_modules/bower/lib/core/resolvers/Resolver.js +0 -252
  295. package/http/node_modules/bower/lib/core/resolvers/SvnResolver.js +0 -491
  296. package/http/node_modules/bower/lib/core/resolvers/UrlResolver.js +0 -323
  297. package/http/node_modules/bower/lib/core/resolvers/index.js +0 -8
  298. package/http/node_modules/bower/lib/core/resolvers/pluginResolverFactory.js +0 -385
  299. package/http/node_modules/bower/lib/core/scripts.js +0 -122
  300. package/http/node_modules/bower/lib/index.js +0 -19
  301. package/http/node_modules/bower/lib/node_modules/.yarn-integrity +0 -1000
  302. package/http/node_modules/bower/lib/node_modules/abbrev/LICENSE +0 -15
  303. package/http/node_modules/bower/lib/node_modules/abbrev/README.md +0 -23
  304. package/http/node_modules/bower/lib/node_modules/abbrev/abbrev.js +0 -61
  305. package/http/node_modules/bower/lib/node_modules/abbrev/package.json +0 -21
  306. package/http/node_modules/bower/lib/node_modules/ajv/.tonic_example.js +0 -20
  307. package/http/node_modules/bower/lib/node_modules/ajv/LICENSE +0 -22
  308. package/http/node_modules/bower/lib/node_modules/ajv/README.md +0 -1213
  309. package/http/node_modules/bower/lib/node_modules/ajv/dist/ajv.bundle.js +0 -8023
  310. package/http/node_modules/bower/lib/node_modules/ajv/dist/ajv.min.js +0 -6
  311. package/http/node_modules/bower/lib/node_modules/ajv/dist/ajv.min.js.map +0 -1
  312. package/http/node_modules/bower/lib/node_modules/ajv/dist/nodent.min.js +0 -8
  313. package/http/node_modules/bower/lib/node_modules/ajv/dist/regenerator.min.js +0 -32
  314. package/http/node_modules/bower/lib/node_modules/ajv/lib/ajv.d.ts +0 -284
  315. package/http/node_modules/bower/lib/node_modules/ajv/lib/ajv.js +0 -420
  316. package/http/node_modules/bower/lib/node_modules/ajv/lib/async.js +0 -218
  317. package/http/node_modules/bower/lib/node_modules/ajv/lib/cache.js +0 -26
  318. package/http/node_modules/bower/lib/node_modules/ajv/lib/compile/_rules.js +0 -28
  319. package/http/node_modules/bower/lib/node_modules/ajv/lib/compile/equal.js +0 -45
  320. package/http/node_modules/bower/lib/node_modules/ajv/lib/compile/formats.js +0 -164
  321. package/http/node_modules/bower/lib/node_modules/ajv/lib/compile/index.js +0 -390
  322. package/http/node_modules/bower/lib/node_modules/ajv/lib/compile/resolve.js +0 -267
  323. package/http/node_modules/bower/lib/node_modules/ajv/lib/compile/rules.js +0 -40
  324. package/http/node_modules/bower/lib/node_modules/ajv/lib/compile/schema_obj.js +0 -9
  325. package/http/node_modules/bower/lib/node_modules/ajv/lib/compile/ucs2length.js +0 -20
  326. package/http/node_modules/bower/lib/node_modules/ajv/lib/compile/util.js +0 -257
  327. package/http/node_modules/bower/lib/node_modules/ajv/lib/compile/validation_error.js +0 -14
  328. package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/_limit.jst +0 -49
  329. package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/_limitItems.jst +0 -10
  330. package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/_limitLength.jst +0 -10
  331. package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/_limitProperties.jst +0 -10
  332. package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/allOf.jst +0 -34
  333. package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/anyOf.jst +0 -48
  334. package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/coerce.def +0 -61
  335. package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/custom.jst +0 -184
  336. package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/defaults.def +0 -32
  337. package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/definitions.def +0 -182
  338. package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/dependencies.jst +0 -69
  339. package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/enum.jst +0 -30
  340. package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/errors.def +0 -185
  341. package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/format.jst +0 -100
  342. package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/items.jst +0 -101
  343. package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/missing.def +0 -34
  344. package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/multipleOf.jst +0 -20
  345. package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/not.jst +0 -43
  346. package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/oneOf.jst +0 -44
  347. package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/pattern.jst +0 -14
  348. package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/properties.jst +0 -319
  349. package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/ref.jst +0 -86
  350. package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/required.jst +0 -96
  351. package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/uniqueItems.jst +0 -38
  352. package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/v5/_formatLimit.jst +0 -116
  353. package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/v5/constant.jst +0 -10
  354. package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/v5/patternRequired.jst +0 -28
  355. package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/v5/switch.jst +0 -73
  356. package/http/node_modules/bower/lib/node_modules/ajv/lib/dot/validate.jst +0 -210
  357. package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/README.md +0 -3
  358. package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/_formatLimit.js +0 -176
  359. package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/_limit.js +0 -124
  360. package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/_limitItems.js +0 -76
  361. package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/_limitLength.js +0 -81
  362. package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/_limitProperties.js +0 -76
  363. package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/allOf.js +0 -43
  364. package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/anyOf.js +0 -65
  365. package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/constant.js +0 -52
  366. package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/custom.js +0 -220
  367. package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/dependencies.js +0 -147
  368. package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/enum.js +0 -65
  369. package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/format.js +0 -138
  370. package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/items.js +0 -144
  371. package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/multipleOf.js +0 -76
  372. package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/not.js +0 -83
  373. package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/oneOf.js +0 -76
  374. package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/pattern.js +0 -74
  375. package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/patternRequired.js +0 -51
  376. package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/properties.js +0 -445
  377. package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/ref.js +0 -119
  378. package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/required.js +0 -249
  379. package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/switch.js +0 -128
  380. package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/uniqueItems.js +0 -71
  381. package/http/node_modules/bower/lib/node_modules/ajv/lib/dotjs/validate.js +0 -375
  382. package/http/node_modules/bower/lib/node_modules/ajv/lib/keyword.js +0 -129
  383. package/http/node_modules/bower/lib/node_modules/ajv/lib/refs/json-schema-draft-04.json +0 -150
  384. package/http/node_modules/bower/lib/node_modules/ajv/lib/refs/json-schema-v5.json +0 -328
  385. package/http/node_modules/bower/lib/node_modules/ajv/lib/v5.js +0 -52
  386. package/http/node_modules/bower/lib/node_modules/ajv/package.json +0 -104
  387. package/http/node_modules/bower/lib/node_modules/ajv/scripts/.eslintrc.yml +0 -3
  388. package/http/node_modules/bower/lib/node_modules/ajv/scripts/bundle.js +0 -54
  389. package/http/node_modules/bower/lib/node_modules/ajv/scripts/compile-dots.js +0 -73
  390. package/http/node_modules/bower/lib/node_modules/ajv/scripts/info +0 -10
  391. package/http/node_modules/bower/lib/node_modules/ajv/scripts/prepare-tests +0 -9
  392. package/http/node_modules/bower/lib/node_modules/ajv/scripts/travis-gh-pages +0 -23
  393. package/http/node_modules/bower/lib/node_modules/align-text/LICENSE +0 -21
  394. package/http/node_modules/bower/lib/node_modules/align-text/README.md +0 -236
  395. package/http/node_modules/bower/lib/node_modules/align-text/index.js +0 -52
  396. package/http/node_modules/bower/lib/node_modules/align-text/package.json +0 -52
  397. package/http/node_modules/bower/lib/node_modules/amdefine/LICENSE +0 -58
  398. package/http/node_modules/bower/lib/node_modules/amdefine/README.md +0 -171
  399. package/http/node_modules/bower/lib/node_modules/amdefine/amdefine.js +0 -301
  400. package/http/node_modules/bower/lib/node_modules/amdefine/intercept.js +0 -36
  401. package/http/node_modules/bower/lib/node_modules/amdefine/package.json +0 -16
  402. package/http/node_modules/bower/lib/node_modules/ansi-escapes/index.js +0 -106
  403. package/http/node_modules/bower/lib/node_modules/ansi-escapes/license +0 -21
  404. package/http/node_modules/bower/lib/node_modules/ansi-escapes/package.json +0 -50
  405. package/http/node_modules/bower/lib/node_modules/ansi-escapes/readme.md +0 -176
  406. package/http/node_modules/bower/lib/node_modules/ansi-regex/index.js +0 -4
  407. package/http/node_modules/bower/lib/node_modules/ansi-regex/license +0 -21
  408. package/http/node_modules/bower/lib/node_modules/ansi-regex/package.json +0 -64
  409. package/http/node_modules/bower/lib/node_modules/ansi-regex/readme.md +0 -39
  410. package/http/node_modules/bower/lib/node_modules/ansicolors/.npmignore +0 -15
  411. package/http/node_modules/bower/lib/node_modules/ansicolors/.travis.yml +0 -4
  412. package/http/node_modules/bower/lib/node_modules/ansicolors/LICENSE +0 -23
  413. package/http/node_modules/bower/lib/node_modules/ansicolors/README.md +0 -42
  414. package/http/node_modules/bower/lib/node_modules/ansicolors/ansicolors.js +0 -55
  415. package/http/node_modules/bower/lib/node_modules/ansicolors/package.json +0 -23
  416. package/http/node_modules/bower/lib/node_modules/ansicolors/test/ansicolors.js +0 -55
  417. package/http/node_modules/bower/lib/node_modules/archy/.travis.yml +0 -4
  418. package/http/node_modules/bower/lib/node_modules/archy/LICENSE +0 -18
  419. package/http/node_modules/bower/lib/node_modules/archy/examples/beep.js +0 -24
  420. package/http/node_modules/bower/lib/node_modules/archy/examples/multi_line.js +0 -25
  421. package/http/node_modules/bower/lib/node_modules/archy/index.js +0 -35
  422. package/http/node_modules/bower/lib/node_modules/archy/package.json +0 -40
  423. package/http/node_modules/bower/lib/node_modules/archy/readme.markdown +0 -88
  424. package/http/node_modules/bower/lib/node_modules/archy/test/beep.js +0 -40
  425. package/http/node_modules/bower/lib/node_modules/archy/test/multi_line.js +0 -45
  426. package/http/node_modules/bower/lib/node_modules/archy/test/non_unicode.js +0 -40
  427. package/http/node_modules/bower/lib/node_modules/array-filter/.npmignore +0 -1
  428. package/http/node_modules/bower/lib/node_modules/array-filter/.travis.yml +0 -4
  429. package/http/node_modules/bower/lib/node_modules/array-filter/README.md +0 -54
  430. package/http/node_modules/bower/lib/node_modules/array-filter/index.js +0 -19
  431. package/http/node_modules/bower/lib/node_modules/array-filter/package.json +0 -48
  432. package/http/node_modules/bower/lib/node_modules/array-filter/test/filter.js +0 -12
  433. package/http/node_modules/bower/lib/node_modules/array-filter/test/holes.js +0 -12
  434. package/http/node_modules/bower/lib/node_modules/array-find-index/index.js +0 -25
  435. package/http/node_modules/bower/lib/node_modules/array-find-index/license +0 -21
  436. package/http/node_modules/bower/lib/node_modules/array-find-index/package.json +0 -35
  437. package/http/node_modules/bower/lib/node_modules/array-find-index/readme.md +0 -30
  438. package/http/node_modules/bower/lib/node_modules/array-map/.travis.yml +0 -4
  439. package/http/node_modules/bower/lib/node_modules/array-map/LICENSE +0 -18
  440. package/http/node_modules/bower/lib/node_modules/array-map/example/map.js +0 -5
  441. package/http/node_modules/bower/lib/node_modules/array-map/index.js +0 -11
  442. package/http/node_modules/bower/lib/node_modules/array-map/package.json +0 -46
  443. package/http/node_modules/bower/lib/node_modules/array-map/readme.markdown +0 -46
  444. package/http/node_modules/bower/lib/node_modules/array-map/test/map.js +0 -77
  445. package/http/node_modules/bower/lib/node_modules/array-reduce/.travis.yml +0 -4
  446. package/http/node_modules/bower/lib/node_modules/array-reduce/LICENSE +0 -18
  447. package/http/node_modules/bower/lib/node_modules/array-reduce/example/sum.js +0 -4
  448. package/http/node_modules/bower/lib/node_modules/array-reduce/index.js +0 -18
  449. package/http/node_modules/bower/lib/node_modules/array-reduce/package.json +0 -48
  450. package/http/node_modules/bower/lib/node_modules/array-reduce/readme.markdown +0 -46
  451. package/http/node_modules/bower/lib/node_modules/array-reduce/test/reduce.js +0 -85
  452. package/http/node_modules/bower/lib/node_modules/asn1/.npmignore +0 -2
  453. package/http/node_modules/bower/lib/node_modules/asn1/.travis.yml +0 -4
  454. package/http/node_modules/bower/lib/node_modules/asn1/LICENSE +0 -19
  455. package/http/node_modules/bower/lib/node_modules/asn1/README.md +0 -50
  456. package/http/node_modules/bower/lib/node_modules/asn1/lib/ber/errors.js +0 -13
  457. package/http/node_modules/bower/lib/node_modules/asn1/lib/ber/index.js +0 -27
  458. package/http/node_modules/bower/lib/node_modules/asn1/lib/ber/reader.js +0 -261
  459. package/http/node_modules/bower/lib/node_modules/asn1/lib/ber/types.js +0 -36
  460. package/http/node_modules/bower/lib/node_modules/asn1/lib/ber/writer.js +0 -316
  461. package/http/node_modules/bower/lib/node_modules/asn1/lib/index.js +0 -20
  462. package/http/node_modules/bower/lib/node_modules/asn1/package.json +0 -24
  463. package/http/node_modules/bower/lib/node_modules/asn1/tst/ber/reader.test.js +0 -208
  464. package/http/node_modules/bower/lib/node_modules/asn1/tst/ber/writer.test.js +0 -370
  465. package/http/node_modules/bower/lib/node_modules/assert-plus/AUTHORS +0 -6
  466. package/http/node_modules/bower/lib/node_modules/assert-plus/CHANGES.md +0 -14
  467. package/http/node_modules/bower/lib/node_modules/assert-plus/README.md +0 -162
  468. package/http/node_modules/bower/lib/node_modules/assert-plus/assert.js +0 -211
  469. package/http/node_modules/bower/lib/node_modules/assert-plus/package.json +0 -23
  470. package/http/node_modules/bower/lib/node_modules/async/CHANGELOG.md +0 -125
  471. package/http/node_modules/bower/lib/node_modules/async/LICENSE +0 -19
  472. package/http/node_modules/bower/lib/node_modules/async/README.md +0 -1877
  473. package/http/node_modules/bower/lib/node_modules/async/dist/async.js +0 -1265
  474. package/http/node_modules/bower/lib/node_modules/async/dist/async.min.js +0 -2
  475. package/http/node_modules/bower/lib/node_modules/async/lib/async.js +0 -1265
  476. package/http/node_modules/bower/lib/node_modules/async/package.json +0 -85
  477. package/http/node_modules/bower/lib/node_modules/asynckit/LICENSE +0 -21
  478. package/http/node_modules/bower/lib/node_modules/asynckit/README.md +0 -233
  479. package/http/node_modules/bower/lib/node_modules/asynckit/bench.js +0 -76
  480. package/http/node_modules/bower/lib/node_modules/asynckit/index.js +0 -6
  481. package/http/node_modules/bower/lib/node_modules/asynckit/lib/abort.js +0 -29
  482. package/http/node_modules/bower/lib/node_modules/asynckit/lib/async.js +0 -34
  483. package/http/node_modules/bower/lib/node_modules/asynckit/lib/defer.js +0 -26
  484. package/http/node_modules/bower/lib/node_modules/asynckit/lib/iterate.js +0 -75
  485. package/http/node_modules/bower/lib/node_modules/asynckit/lib/readable_asynckit.js +0 -91
  486. package/http/node_modules/bower/lib/node_modules/asynckit/lib/readable_parallel.js +0 -25
  487. package/http/node_modules/bower/lib/node_modules/asynckit/lib/readable_serial.js +0 -25
  488. package/http/node_modules/bower/lib/node_modules/asynckit/lib/readable_serial_ordered.js +0 -29
  489. package/http/node_modules/bower/lib/node_modules/asynckit/lib/state.js +0 -37
  490. package/http/node_modules/bower/lib/node_modules/asynckit/lib/streamify.js +0 -141
  491. package/http/node_modules/bower/lib/node_modules/asynckit/lib/terminator.js +0 -29
  492. package/http/node_modules/bower/lib/node_modules/asynckit/package.json +0 -63
  493. package/http/node_modules/bower/lib/node_modules/asynckit/parallel.js +0 -43
  494. package/http/node_modules/bower/lib/node_modules/asynckit/serial.js +0 -17
  495. package/http/node_modules/bower/lib/node_modules/asynckit/serialOrdered.js +0 -75
  496. package/http/node_modules/bower/lib/node_modules/asynckit/stream.js +0 -21
  497. package/http/node_modules/bower/lib/node_modules/aws-sign2/LICENSE +0 -55
  498. package/http/node_modules/bower/lib/node_modules/aws-sign2/README.md +0 -4
  499. package/http/node_modules/bower/lib/node_modules/aws-sign2/index.js +0 -212
  500. package/http/node_modules/bower/lib/node_modules/aws-sign2/package.json +0 -17
  501. package/http/node_modules/bower/lib/node_modules/aws4/.npmignore +0 -4
  502. package/http/node_modules/bower/lib/node_modules/aws4/.tern-port +0 -1
  503. package/http/node_modules/bower/lib/node_modules/aws4/.travis.yml +0 -5
  504. package/http/node_modules/bower/lib/node_modules/aws4/LICENSE +0 -19
  505. package/http/node_modules/bower/lib/node_modules/aws4/README.md +0 -523
  506. package/http/node_modules/bower/lib/node_modules/aws4/aws4.js +0 -332
  507. package/http/node_modules/bower/lib/node_modules/aws4/lru.js +0 -96
  508. package/http/node_modules/bower/lib/node_modules/aws4/package.json +0 -71
  509. package/http/node_modules/bower/lib/node_modules/balanced-match/.npmignore +0 -5
  510. package/http/node_modules/bower/lib/node_modules/balanced-match/LICENSE.md +0 -21
  511. package/http/node_modules/bower/lib/node_modules/balanced-match/README.md +0 -91
  512. package/http/node_modules/bower/lib/node_modules/balanced-match/index.js +0 -59
  513. package/http/node_modules/bower/lib/node_modules/balanced-match/package.json +0 -49
  514. package/http/node_modules/bower/lib/node_modules/bcrypt-pbkdf/README.md +0 -39
  515. package/http/node_modules/bower/lib/node_modules/bcrypt-pbkdf/index.js +0 -556
  516. package/http/node_modules/bower/lib/node_modules/bcrypt-pbkdf/package.json +0 -11
  517. package/http/node_modules/bower/lib/node_modules/binary/.npmignore +0 -1
  518. package/http/node_modules/bower/lib/node_modules/binary/.travis.yml +0 -4
  519. package/http/node_modules/bower/lib/node_modules/binary/README.markdown +0 -177
  520. package/http/node_modules/bower/lib/node_modules/binary/example/buf.js +0 -11
  521. package/http/node_modules/bower/lib/node_modules/binary/example/parse.js +0 -10
  522. package/http/node_modules/bower/lib/node_modules/binary/example/stream.js +0 -12
  523. package/http/node_modules/bower/lib/node_modules/binary/index.js +0 -397
  524. package/http/node_modules/bower/lib/node_modules/binary/lib/vars.js +0 -28
  525. package/http/node_modules/bower/lib/node_modules/binary/package.json +0 -38
  526. package/http/node_modules/bower/lib/node_modules/binary/perf/loop.js +0 -92
  527. package/http/node_modules/bower/lib/node_modules/binary/perf/small.js +0 -80
  528. package/http/node_modules/bower/lib/node_modules/binary/test/bu.js +0 -46
  529. package/http/node_modules/bower/lib/node_modules/binary/test/deferred.js +0 -20
  530. package/http/node_modules/bower/lib/node_modules/binary/test/dots.js +0 -23
  531. package/http/node_modules/bower/lib/node_modules/binary/test/eof.js +0 -41
  532. package/http/node_modules/bower/lib/node_modules/binary/test/flush.js +0 -17
  533. package/http/node_modules/bower/lib/node_modules/binary/test/from_buffer.js +0 -14
  534. package/http/node_modules/bower/lib/node_modules/binary/test/get_buffer.js +0 -28
  535. package/http/node_modules/bower/lib/node_modules/binary/test/immediate.js +0 -18
  536. package/http/node_modules/bower/lib/node_modules/binary/test/interval.js +0 -38
  537. package/http/node_modules/bower/lib/node_modules/binary/test/into_buffer.js +0 -35
  538. package/http/node_modules/bower/lib/node_modules/binary/test/into_stream.js +0 -43
  539. package/http/node_modules/bower/lib/node_modules/binary/test/loop.js +0 -44
  540. package/http/node_modules/bower/lib/node_modules/binary/test/loop_scan.js +0 -54
  541. package/http/node_modules/bower/lib/node_modules/binary/test/lu.js +0 -46
  542. package/http/node_modules/bower/lib/node_modules/binary/test/negbs.js +0 -29
  543. package/http/node_modules/bower/lib/node_modules/binary/test/negls.js +0 -29
  544. package/http/node_modules/bower/lib/node_modules/binary/test/nested.js +0 -35
  545. package/http/node_modules/bower/lib/node_modules/binary/test/not_enough_buf.js +0 -17
  546. package/http/node_modules/bower/lib/node_modules/binary/test/not_enough_parse.js +0 -19
  547. package/http/node_modules/bower/lib/node_modules/binary/test/parse.js +0 -54
  548. package/http/node_modules/bower/lib/node_modules/binary/test/peek.js +0 -40
  549. package/http/node_modules/bower/lib/node_modules/binary/test/pipe.js +0 -49
  550. package/http/node_modules/bower/lib/node_modules/binary/test/posbs.js +0 -29
  551. package/http/node_modules/bower/lib/node_modules/binary/test/posls.js +0 -29
  552. package/http/node_modules/bower/lib/node_modules/binary/test/scan.js +0 -33
  553. package/http/node_modules/bower/lib/node_modules/binary/test/scan_buf.js +0 -18
  554. package/http/node_modules/bower/lib/node_modules/binary/test/scan_buf_null.js +0 -16
  555. package/http/node_modules/bower/lib/node_modules/binary/test/skip.js +0 -58
  556. package/http/node_modules/bower/lib/node_modules/binary/test/split.js +0 -34
  557. package/http/node_modules/bower/lib/node_modules/bl/.jshintrc +0 -59
  558. package/http/node_modules/bower/lib/node_modules/bl/.npmignore +0 -1
  559. package/http/node_modules/bower/lib/node_modules/bl/.travis.yml +0 -13
  560. package/http/node_modules/bower/lib/node_modules/bl/LICENSE.md +0 -13
  561. package/http/node_modules/bower/lib/node_modules/bl/README.md +0 -200
  562. package/http/node_modules/bower/lib/node_modules/bl/bl.js +0 -227
  563. package/http/node_modules/bower/lib/node_modules/bl/package.json +0 -34
  564. package/http/node_modules/bower/lib/node_modules/bl/test/test.js +0 -571
  565. package/http/node_modules/bower/lib/node_modules/boom/.npmignore +0 -18
  566. package/http/node_modules/bower/lib/node_modules/boom/.travis.yml +0 -8
  567. package/http/node_modules/bower/lib/node_modules/boom/CONTRIBUTING.md +0 -1
  568. package/http/node_modules/bower/lib/node_modules/boom/LICENSE +0 -28
  569. package/http/node_modules/bower/lib/node_modules/boom/README.md +0 -652
  570. package/http/node_modules/bower/lib/node_modules/boom/images/boom.png +0 -0
  571. package/http/node_modules/bower/lib/node_modules/boom/lib/index.js +0 -318
  572. package/http/node_modules/bower/lib/node_modules/boom/package.json +0 -26
  573. package/http/node_modules/bower/lib/node_modules/boom/test/index.js +0 -654
  574. package/http/node_modules/bower/lib/node_modules/bower-config/CHANGELOG.md +0 -103
  575. package/http/node_modules/bower/lib/node_modules/bower-config/LICENSE +0 -19
  576. package/http/node_modules/bower/lib/node_modules/bower-config/README.md +0 -64
  577. package/http/node_modules/bower/lib/node_modules/bower-config/lib/Config.js +0 -109
  578. package/http/node_modules/bower/lib/node_modules/bower-config/lib/util/defaults.js +0 -45
  579. package/http/node_modules/bower/lib/node_modules/bower-config/lib/util/expand.js +0 -126
  580. package/http/node_modules/bower/lib/node_modules/bower-config/lib/util/paths.js +0 -44
  581. package/http/node_modules/bower/lib/node_modules/bower-config/lib/util/proxy.js +0 -79
  582. package/http/node_modules/bower/lib/node_modules/bower-config/lib/util/rc.js +0 -158
  583. package/http/node_modules/bower/lib/node_modules/bower-config/package.json +0 -45
  584. package/http/node_modules/bower/lib/node_modules/bower-endpoint-parser/.editorconfig +0 -12
  585. package/http/node_modules/bower/lib/node_modules/bower-endpoint-parser/.jshintrc +0 -61
  586. package/http/node_modules/bower/lib/node_modules/bower-endpoint-parser/.npmignore +0 -2
  587. package/http/node_modules/bower/lib/node_modules/bower-endpoint-parser/.travis.yml +0 -4
  588. package/http/node_modules/bower/lib/node_modules/bower-endpoint-parser/LICENSE +0 -19
  589. package/http/node_modules/bower/lib/node_modules/bower-endpoint-parser/README.md +0 -102
  590. package/http/node_modules/bower/lib/node_modules/bower-endpoint-parser/index.js +0 -128
  591. package/http/node_modules/bower/lib/node_modules/bower-endpoint-parser/package.json +0 -28
  592. package/http/node_modules/bower/lib/node_modules/bower-endpoint-parser/test/test.js +0 -263
  593. package/http/node_modules/bower/lib/node_modules/bower-json/CHANGELOG.md +0 -17
  594. package/http/node_modules/bower/lib/node_modules/bower-json/LICENSE +0 -19
  595. package/http/node_modules/bower/lib/node_modules/bower-json/README.md +0 -159
  596. package/http/node_modules/bower/lib/node_modules/bower-json/lib/json.js +0 -297
  597. package/http/node_modules/bower/lib/node_modules/bower-json/lib/util/createError.js +0 -8
  598. package/http/node_modules/bower/lib/node_modules/bower-json/lib/util/isAsset.js +0 -12
  599. package/http/node_modules/bower/lib/node_modules/bower-json/lib/util/isComponent.js +0 -41
  600. package/http/node_modules/bower/lib/node_modules/bower-json/package.json +0 -40
  601. package/http/node_modules/bower/lib/node_modules/bower-logger/.editorconfig +0 -12
  602. package/http/node_modules/bower/lib/node_modules/bower-logger/.jshintrc +0 -62
  603. package/http/node_modules/bower/lib/node_modules/bower-logger/.npmignore +0 -2
  604. package/http/node_modules/bower/lib/node_modules/bower-logger/.travis.yml +0 -4
  605. package/http/node_modules/bower/lib/node_modules/bower-logger/LICENSE +0 -19
  606. package/http/node_modules/bower/lib/node_modules/bower-logger/README.md +0 -120
  607. package/http/node_modules/bower/lib/node_modules/bower-logger/lib/Logger.js +0 -150
  608. package/http/node_modules/bower/lib/node_modules/bower-logger/package.json +0 -27
  609. package/http/node_modules/bower/lib/node_modules/bower-logger/test/test.js +0 -389
  610. package/http/node_modules/bower/lib/node_modules/bower-registry-client/Client.js +0 -70
  611. package/http/node_modules/bower/lib/node_modules/bower-registry-client/LICENSE +0 -19
  612. package/http/node_modules/bower/lib/node_modules/bower-registry-client/README.md +0 -155
  613. package/http/node_modules/bower/lib/node_modules/bower-registry-client/lib/index.js +0 -7
  614. package/http/node_modules/bower/lib/node_modules/bower-registry-client/lib/list.js +0 -184
  615. package/http/node_modules/bower/lib/node_modules/bower-registry-client/lib/lookup.js +0 -202
  616. package/http/node_modules/bower/lib/node_modules/bower-registry-client/lib/register.js +0 -58
  617. package/http/node_modules/bower/lib/node_modules/bower-registry-client/lib/search.js +0 -200
  618. package/http/node_modules/bower/lib/node_modules/bower-registry-client/lib/unregister.js +0 -47
  619. package/http/node_modules/bower/lib/node_modules/bower-registry-client/lib/util/Cache.js +0 -195
  620. package/http/node_modules/bower/lib/node_modules/bower-registry-client/lib/util/createError.js +0 -8
  621. package/http/node_modules/bower/lib/node_modules/bower-registry-client/lib/util/md5.js +0 -7
  622. package/http/node_modules/bower/lib/node_modules/bower-registry-client/package.json +0 -39
  623. package/http/node_modules/bower/lib/node_modules/boxen/border-characters.js +0 -45
  624. package/http/node_modules/bower/lib/node_modules/boxen/index.js +0 -111
  625. package/http/node_modules/bower/lib/node_modules/boxen/license +0 -21
  626. package/http/node_modules/bower/lib/node_modules/boxen/package.json +0 -46
  627. package/http/node_modules/bower/lib/node_modules/boxen/readme.md +0 -139
  628. package/http/node_modules/bower/lib/node_modules/brace-expansion/README.md +0 -123
  629. package/http/node_modules/bower/lib/node_modules/brace-expansion/index.js +0 -201
  630. package/http/node_modules/bower/lib/node_modules/brace-expansion/package.json +0 -47
  631. package/http/node_modules/bower/lib/node_modules/buffers/README.markdown +0 -122
  632. package/http/node_modules/bower/lib/node_modules/buffers/examples/slice.js +0 -9
  633. package/http/node_modules/bower/lib/node_modules/buffers/examples/splice.js +0 -17
  634. package/http/node_modules/bower/lib/node_modules/buffers/index.js +0 -269
  635. package/http/node_modules/bower/lib/node_modules/buffers/package.json +0 -14
  636. package/http/node_modules/bower/lib/node_modules/buffers/test/buffers.js +0 -209
  637. package/http/node_modules/bower/lib/node_modules/builtin-modules/builtin-modules.json +0 -35
  638. package/http/node_modules/bower/lib/node_modules/builtin-modules/index.js +0 -10
  639. package/http/node_modules/bower/lib/node_modules/builtin-modules/license +0 -21
  640. package/http/node_modules/bower/lib/node_modules/builtin-modules/package.json +0 -40
  641. package/http/node_modules/bower/lib/node_modules/builtin-modules/readme.md +0 -41
  642. package/http/node_modules/bower/lib/node_modules/builtin-modules/static.js +0 -2
  643. package/http/node_modules/bower/lib/node_modules/camelcase/index.js +0 -27
  644. package/http/node_modules/bower/lib/node_modules/camelcase/license +0 -21
  645. package/http/node_modules/bower/lib/node_modules/camelcase/package.json +0 -38
  646. package/http/node_modules/bower/lib/node_modules/camelcase/readme.md +0 -56
  647. package/http/node_modules/bower/lib/node_modules/camelcase-keys/index.js +0 -12
  648. package/http/node_modules/bower/lib/node_modules/camelcase-keys/license +0 -21
  649. package/http/node_modules/bower/lib/node_modules/camelcase-keys/package.json +0 -52
  650. package/http/node_modules/bower/lib/node_modules/camelcase-keys/readme.md +0 -54
  651. package/http/node_modules/bower/lib/node_modules/capture-stack-trace/index.js +0 -18
  652. package/http/node_modules/bower/lib/node_modules/capture-stack-trace/package.json +0 -29
  653. package/http/node_modules/bower/lib/node_modules/capture-stack-trace/readme.md +0 -36
  654. package/http/node_modules/bower/lib/node_modules/cardinal/.npmignore +0 -1
  655. package/http/node_modules/bower/lib/node_modules/cardinal/.travis.yml +0 -4
  656. package/http/node_modules/bower/lib/node_modules/cardinal/LICENSE +0 -23
  657. package/http/node_modules/bower/lib/node_modules/cardinal/README.md +0 -132
  658. package/http/node_modules/bower/lib/node_modules/cardinal/bin/cdl.js +0 -74
  659. package/http/node_modules/bower/lib/node_modules/cardinal/cardinal.js +0 -5
  660. package/http/node_modules/bower/lib/node_modules/cardinal/examples/.cardinalrc +0 -3
  661. package/http/node_modules/bower/lib/node_modules/cardinal/examples/README.md +0 -7
  662. package/http/node_modules/bower/lib/node_modules/cardinal/examples/highlight-json.js +0 -10
  663. package/http/node_modules/bower/lib/node_modules/cardinal/examples/highlight-self-hide-semicolons.js +0 -22
  664. package/http/node_modules/bower/lib/node_modules/cardinal/examples/highlight-self.js +0 -16
  665. package/http/node_modules/bower/lib/node_modules/cardinal/examples/highlight-string.js +0 -14
  666. package/http/node_modules/bower/lib/node_modules/cardinal/lib/highlight.js +0 -83
  667. package/http/node_modules/bower/lib/node_modules/cardinal/lib/highlightFile.js +0 -26
  668. package/http/node_modules/bower/lib/node_modules/cardinal/lib/highlightFileSync.js +0 -11
  669. package/http/node_modules/bower/lib/node_modules/cardinal/package.json +0 -38
  670. package/http/node_modules/bower/lib/node_modules/cardinal/settings.js +0 -51
  671. package/http/node_modules/bower/lib/node_modules/cardinal/test/cardinal-highlight-block-comment.js +0 -25
  672. package/http/node_modules/bower/lib/node_modules/cardinal/test/cardinal-highlight-diff-spike.js +0 -95
  673. package/http/node_modules/bower/lib/node_modules/cardinal/test/cardinal-highlight-file-async.js +0 -48
  674. package/http/node_modules/bower/lib/node_modules/cardinal/test/cardinal-highlight-file-sync.js +0 -48
  675. package/http/node_modules/bower/lib/node_modules/cardinal/test/cardinal-highlight-git-diff.js +0 -3
  676. package/http/node_modules/bower/lib/node_modules/cardinal/test/cardinal-highlight-json-file-async.js +0 -31
  677. package/http/node_modules/bower/lib/node_modules/cardinal/test/cardinal-highlight-json-file-sync.js +0 -29
  678. package/http/node_modules/bower/lib/node_modules/cardinal/test/cardinal-highlight-json.js +0 -41
  679. package/http/node_modules/bower/lib/node_modules/cardinal/test/cardinal-highlight-string.js +0 -70
  680. package/http/node_modules/bower/lib/node_modules/cardinal/test/cardinal-smoke.js +0 -44
  681. package/http/node_modules/bower/lib/node_modules/cardinal/test/fixtures/block-comment.js +0 -14
  682. package/http/node_modules/bower/lib/node_modules/cardinal/test/fixtures/custom.js +0 -144
  683. package/http/node_modules/bower/lib/node_modules/cardinal/test/fixtures/foo-with-errors.js +0 -3
  684. package/http/node_modules/bower/lib/node_modules/cardinal/test/fixtures/foo.js +0 -3
  685. package/http/node_modules/bower/lib/node_modules/cardinal/test/fixtures/git-diff.txt +0 -78
  686. package/http/node_modules/bower/lib/node_modules/cardinal/test/fixtures/json.json +0 -1
  687. package/http/node_modules/bower/lib/node_modules/cardinal/test/fixtures/svn-diff.txt +0 -23
  688. package/http/node_modules/bower/lib/node_modules/cardinal/test/settings.js +0 -77
  689. package/http/node_modules/bower/lib/node_modules/cardinal/test/themes.js +0 -22
  690. package/http/node_modules/bower/lib/node_modules/cardinal/themes/README.md +0 -31
  691. package/http/node_modules/bower/lib/node_modules/cardinal/themes/default.js +0 -147
  692. package/http/node_modules/bower/lib/node_modules/cardinal/themes/empty.js +0 -140
  693. package/http/node_modules/bower/lib/node_modules/cardinal/themes/hide-semicolons.js +0 -149
  694. package/http/node_modules/bower/lib/node_modules/cardinal/themes/tomorrow-night.js +0 -161
  695. package/http/node_modules/bower/lib/node_modules/cardinal/utl.js +0 -11
  696. package/http/node_modules/bower/lib/node_modules/caseless/LICENSE +0 -28
  697. package/http/node_modules/bower/lib/node_modules/caseless/README.md +0 -45
  698. package/http/node_modules/bower/lib/node_modules/caseless/index.js +0 -66
  699. package/http/node_modules/bower/lib/node_modules/caseless/package.json +0 -27
  700. package/http/node_modules/bower/lib/node_modules/caseless/test.js +0 -40
  701. package/http/node_modules/bower/lib/node_modules/center-align/LICENSE +0 -21
  702. package/http/node_modules/bower/lib/node_modules/center-align/README.md +0 -74
  703. package/http/node_modules/bower/lib/node_modules/center-align/index.js +0 -16
  704. package/http/node_modules/bower/lib/node_modules/center-align/package.json +0 -51
  705. package/http/node_modules/bower/lib/node_modules/center-align/utils.js +0 -40
  706. package/http/node_modules/bower/lib/node_modules/chainsaw/.npmignore +0 -1
  707. package/http/node_modules/bower/lib/node_modules/chainsaw/README.markdown +0 -157
  708. package/http/node_modules/bower/lib/node_modules/chainsaw/examples/add_do.js +0 -25
  709. package/http/node_modules/bower/lib/node_modules/chainsaw/examples/prompt.js +0 -67
  710. package/http/node_modules/bower/lib/node_modules/chainsaw/index.js +0 -145
  711. package/http/node_modules/bower/lib/node_modules/chainsaw/package.json +0 -23
  712. package/http/node_modules/bower/lib/node_modules/chainsaw/test/chainsaw.js +0 -418
  713. package/http/node_modules/bower/lib/node_modules/chalk/index.js +0 -116
  714. package/http/node_modules/bower/lib/node_modules/chalk/license +0 -21
  715. package/http/node_modules/bower/lib/node_modules/chalk/package.json +0 -70
  716. package/http/node_modules/bower/lib/node_modules/chalk/readme.md +0 -213
  717. package/http/node_modules/bower/lib/node_modules/chmodr/LICENSE +0 -15
  718. package/http/node_modules/bower/lib/node_modules/chmodr/README.md +0 -3
  719. package/http/node_modules/bower/lib/node_modules/chmodr/chmodr.js +0 -76
  720. package/http/node_modules/bower/lib/node_modules/chmodr/package.json +0 -23
  721. package/http/node_modules/bower/lib/node_modules/chownr/LICENSE +0 -15
  722. package/http/node_modules/bower/lib/node_modules/chownr/README.md +0 -3
  723. package/http/node_modules/bower/lib/node_modules/chownr/chownr.js +0 -52
  724. package/http/node_modules/bower/lib/node_modules/chownr/package.json +0 -23
  725. package/http/node_modules/bower/lib/node_modules/cli-cursor/index.js +0 -26
  726. package/http/node_modules/bower/lib/node_modules/cli-cursor/license +0 -21
  727. package/http/node_modules/bower/lib/node_modules/cli-cursor/package.json +0 -43
  728. package/http/node_modules/bower/lib/node_modules/cli-cursor/readme.md +0 -40
  729. package/http/node_modules/bower/lib/node_modules/cli-width/.npmignore +0 -1
  730. package/http/node_modules/bower/lib/node_modules/cli-width/.travis.yml +0 -11
  731. package/http/node_modules/bower/lib/node_modules/cli-width/LICENSE +0 -13
  732. package/http/node_modules/bower/lib/node_modules/cli-width/README.md +0 -36
  733. package/http/node_modules/bower/lib/node_modules/cli-width/coverage/coverage.json +0 -1
  734. package/http/node_modules/bower/lib/node_modules/cli-width/coverage/lcov-report/base.css +0 -182
  735. package/http/node_modules/bower/lib/node_modules/cli-width/coverage/lcov-report/cli-width/index.html +0 -73
  736. package/http/node_modules/bower/lib/node_modules/cli-width/coverage/lcov-report/cli-width/index.js.html +0 -129
  737. package/http/node_modules/bower/lib/node_modules/cli-width/coverage/lcov-report/index.html +0 -73
  738. package/http/node_modules/bower/lib/node_modules/cli-width/coverage/lcov-report/prettify.css +0 -1
  739. package/http/node_modules/bower/lib/node_modules/cli-width/coverage/lcov-report/prettify.js +0 -1
  740. package/http/node_modules/bower/lib/node_modules/cli-width/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  741. package/http/node_modules/bower/lib/node_modules/cli-width/coverage/lcov-report/sorter.js +0 -156
  742. package/http/node_modules/bower/lib/node_modules/cli-width/coverage/lcov.info +0 -32
  743. package/http/node_modules/bower/lib/node_modules/cli-width/index.js +0 -28
  744. package/http/node_modules/bower/lib/node_modules/cli-width/package.json +0 -29
  745. package/http/node_modules/bower/lib/node_modules/cliui/.coveralls.yml +0 -1
  746. package/http/node_modules/bower/lib/node_modules/cliui/.npmignore +0 -2
  747. package/http/node_modules/bower/lib/node_modules/cliui/.travis.yml +0 -7
  748. package/http/node_modules/bower/lib/node_modules/cliui/LICENSE.txt +0 -14
  749. package/http/node_modules/bower/lib/node_modules/cliui/README.md +0 -104
  750. package/http/node_modules/bower/lib/node_modules/cliui/index.js +0 -273
  751. package/http/node_modules/bower/lib/node_modules/cliui/package.json +0 -59
  752. package/http/node_modules/bower/lib/node_modules/cliui/test/cliui.js +0 -349
  753. package/http/node_modules/bower/lib/node_modules/co/History.md +0 -172
  754. package/http/node_modules/bower/lib/node_modules/co/LICENSE +0 -22
  755. package/http/node_modules/bower/lib/node_modules/co/Readme.md +0 -212
  756. package/http/node_modules/bower/lib/node_modules/co/index.js +0 -237
  757. package/http/node_modules/bower/lib/node_modules/co/package.json +0 -34
  758. package/http/node_modules/bower/lib/node_modules/code-point-at/index.js +0 -32
  759. package/http/node_modules/bower/lib/node_modules/code-point-at/license +0 -21
  760. package/http/node_modules/bower/lib/node_modules/code-point-at/package.json +0 -38
  761. package/http/node_modules/bower/lib/node_modules/code-point-at/readme.md +0 -32
  762. package/http/node_modules/bower/lib/node_modules/combined-stream/License +0 -19
  763. package/http/node_modules/bower/lib/node_modules/combined-stream/Readme.md +0 -138
  764. package/http/node_modules/bower/lib/node_modules/combined-stream/lib/combined_stream.js +0 -188
  765. package/http/node_modules/bower/lib/node_modules/combined-stream/package.json +0 -25
  766. package/http/node_modules/bower/lib/node_modules/commander/History.md +0 -298
  767. package/http/node_modules/bower/lib/node_modules/commander/LICENSE +0 -22
  768. package/http/node_modules/bower/lib/node_modules/commander/Readme.md +0 -351
  769. package/http/node_modules/bower/lib/node_modules/commander/index.js +0 -1137
  770. package/http/node_modules/bower/lib/node_modules/commander/package.json +0 -29
  771. package/http/node_modules/bower/lib/node_modules/concat-map/.travis.yml +0 -4
  772. package/http/node_modules/bower/lib/node_modules/concat-map/LICENSE +0 -18
  773. package/http/node_modules/bower/lib/node_modules/concat-map/README.markdown +0 -62
  774. package/http/node_modules/bower/lib/node_modules/concat-map/example/map.js +0 -6
  775. package/http/node_modules/bower/lib/node_modules/concat-map/index.js +0 -13
  776. package/http/node_modules/bower/lib/node_modules/concat-map/package.json +0 -43
  777. package/http/node_modules/bower/lib/node_modules/concat-map/test/map.js +0 -39
  778. package/http/node_modules/bower/lib/node_modules/configstore/index.js +0 -111
  779. package/http/node_modules/bower/lib/node_modules/configstore/package.json +0 -51
  780. package/http/node_modules/bower/lib/node_modules/configstore/readme.md +0 -114
  781. package/http/node_modules/bower/lib/node_modules/core-util-is/LICENSE +0 -19
  782. package/http/node_modules/bower/lib/node_modules/core-util-is/README.md +0 -3
  783. package/http/node_modules/bower/lib/node_modules/core-util-is/float.patch +0 -604
  784. package/http/node_modules/bower/lib/node_modules/core-util-is/lib/util.js +0 -107
  785. package/http/node_modules/bower/lib/node_modules/core-util-is/package.json +0 -32
  786. package/http/node_modules/bower/lib/node_modules/core-util-is/test.js +0 -68
  787. package/http/node_modules/bower/lib/node_modules/create-error-class/index.js +0 -44
  788. package/http/node_modules/bower/lib/node_modules/create-error-class/license +0 -21
  789. package/http/node_modules/bower/lib/node_modules/create-error-class/package.json +0 -30
  790. package/http/node_modules/bower/lib/node_modules/create-error-class/readme.md +0 -54
  791. package/http/node_modules/bower/lib/node_modules/cryptiles/.npmignore +0 -18
  792. package/http/node_modules/bower/lib/node_modules/cryptiles/.travis.yml +0 -8
  793. package/http/node_modules/bower/lib/node_modules/cryptiles/LICENSE +0 -28
  794. package/http/node_modules/bower/lib/node_modules/cryptiles/README.md +0 -16
  795. package/http/node_modules/bower/lib/node_modules/cryptiles/lib/index.js +0 -68
  796. package/http/node_modules/bower/lib/node_modules/cryptiles/package.json +0 -27
  797. package/http/node_modules/bower/lib/node_modules/cryptiles/test/index.js +0 -102
  798. package/http/node_modules/bower/lib/node_modules/currently-unhandled/browser.js +0 -27
  799. package/http/node_modules/bower/lib/node_modules/currently-unhandled/core.js +0 -33
  800. package/http/node_modules/bower/lib/node_modules/currently-unhandled/index.js +0 -12
  801. package/http/node_modules/bower/lib/node_modules/currently-unhandled/license +0 -21
  802. package/http/node_modules/bower/lib/node_modules/currently-unhandled/package.json +0 -71
  803. package/http/node_modules/bower/lib/node_modules/currently-unhandled/readme.md +0 -44
  804. package/http/node_modules/bower/lib/node_modules/dashdash/CHANGES.md +0 -364
  805. package/http/node_modules/bower/lib/node_modules/dashdash/LICENSE.txt +0 -24
  806. package/http/node_modules/bower/lib/node_modules/dashdash/README.md +0 -574
  807. package/http/node_modules/bower/lib/node_modules/dashdash/etc/dashdash.bash_completion.in +0 -389
  808. package/http/node_modules/bower/lib/node_modules/dashdash/lib/dashdash.js +0 -1055
  809. package/http/node_modules/bower/lib/node_modules/dashdash/package.json +0 -26
  810. package/http/node_modules/bower/lib/node_modules/decamelize/index.js +0 -13
  811. package/http/node_modules/bower/lib/node_modules/decamelize/license +0 -21
  812. package/http/node_modules/bower/lib/node_modules/decamelize/package.json +0 -38
  813. package/http/node_modules/bower/lib/node_modules/decamelize/readme.md +0 -48
  814. package/http/node_modules/bower/lib/node_modules/decompress-zip/README.md +0 -74
  815. package/http/node_modules/bower/lib/node_modules/decompress-zip/bin/decompress-zip +0 -83
  816. package/http/node_modules/bower/lib/node_modules/decompress-zip/lib/decompress-zip.js +0 -323
  817. package/http/node_modules/bower/lib/node_modules/decompress-zip/lib/extractors.js +0 -179
  818. package/http/node_modules/bower/lib/node_modules/decompress-zip/lib/file-details.js +0 -37
  819. package/http/node_modules/bower/lib/node_modules/decompress-zip/lib/signatures.js +0 -10
  820. package/http/node_modules/bower/lib/node_modules/decompress-zip/lib/structures.js +0 -228
  821. package/http/node_modules/bower/lib/node_modules/decompress-zip/package.json +0 -54
  822. package/http/node_modules/bower/lib/node_modules/deep-extend/CHANGELOG.md +0 -21
  823. package/http/node_modules/bower/lib/node_modules/deep-extend/LICENSE +0 -20
  824. package/http/node_modules/bower/lib/node_modules/deep-extend/README.md +0 -90
  825. package/http/node_modules/bower/lib/node_modules/deep-extend/index.js +0 -1
  826. package/http/node_modules/bower/lib/node_modules/deep-extend/lib/deep-extend.js +0 -144
  827. package/http/node_modules/bower/lib/node_modules/deep-extend/package.json +0 -63
  828. package/http/node_modules/bower/lib/node_modules/delayed-stream/.npmignore +0 -1
  829. package/http/node_modules/bower/lib/node_modules/delayed-stream/License +0 -19
  830. package/http/node_modules/bower/lib/node_modules/delayed-stream/Makefile +0 -7
  831. package/http/node_modules/bower/lib/node_modules/delayed-stream/Readme.md +0 -141
  832. package/http/node_modules/bower/lib/node_modules/delayed-stream/lib/delayed_stream.js +0 -107
  833. package/http/node_modules/bower/lib/node_modules/delayed-stream/package.json +0 -27
  834. package/http/node_modules/bower/lib/node_modules/destroy/LICENSE +0 -22
  835. package/http/node_modules/bower/lib/node_modules/destroy/README.md +0 -60
  836. package/http/node_modules/bower/lib/node_modules/destroy/index.js +0 -75
  837. package/http/node_modules/bower/lib/node_modules/destroy/package.json +0 -37
  838. package/http/node_modules/bower/lib/node_modules/dot-prop/index.js +0 -111
  839. package/http/node_modules/bower/lib/node_modules/dot-prop/license +0 -21
  840. package/http/node_modules/bower/lib/node_modules/dot-prop/package.json +0 -45
  841. package/http/node_modules/bower/lib/node_modules/dot-prop/readme.md +0 -82
  842. package/http/node_modules/bower/lib/node_modules/duplexer2/LICENSE.md +0 -26
  843. package/http/node_modules/bower/lib/node_modules/duplexer2/README.md +0 -115
  844. package/http/node_modules/bower/lib/node_modules/duplexer2/index.js +0 -76
  845. package/http/node_modules/bower/lib/node_modules/duplexer2/package.json +0 -28
  846. package/http/node_modules/bower/lib/node_modules/ecc-jsbn/.npmignore +0 -15
  847. package/http/node_modules/bower/lib/node_modules/ecc-jsbn/LICENSE +0 -21
  848. package/http/node_modules/bower/lib/node_modules/ecc-jsbn/README.md +0 -8
  849. package/http/node_modules/bower/lib/node_modules/ecc-jsbn/index.js +0 -57
  850. package/http/node_modules/bower/lib/node_modules/ecc-jsbn/lib/LICENSE-jsbn +0 -40
  851. package/http/node_modules/bower/lib/node_modules/ecc-jsbn/lib/ec.js +0 -561
  852. package/http/node_modules/bower/lib/node_modules/ecc-jsbn/lib/sec.js +0 -170
  853. package/http/node_modules/bower/lib/node_modules/ecc-jsbn/package.json +0 -39
  854. package/http/node_modules/bower/lib/node_modules/ecc-jsbn/test.js +0 -14
  855. package/http/node_modules/bower/lib/node_modules/end-of-stream/LICENSE +0 -21
  856. package/http/node_modules/bower/lib/node_modules/end-of-stream/README.md +0 -52
  857. package/http/node_modules/bower/lib/node_modules/end-of-stream/index.js +0 -83
  858. package/http/node_modules/bower/lib/node_modules/end-of-stream/package.json +0 -34
  859. package/http/node_modules/bower/lib/node_modules/ends-with/.gitattributes +0 -14
  860. package/http/node_modules/bower/lib/node_modules/ends-with/.jshintrc +0 -22
  861. package/http/node_modules/bower/lib/node_modules/ends-with/.npmignore +0 -53
  862. package/http/node_modules/bower/lib/node_modules/ends-with/.travis.yml +0 -3
  863. package/http/node_modules/bower/lib/node_modules/ends-with/.verbrc.md +0 -55
  864. package/http/node_modules/bower/lib/node_modules/ends-with/LICENSE-MIT +0 -22
  865. package/http/node_modules/bower/lib/node_modules/ends-with/README.md +0 -64
  866. package/http/node_modules/bower/lib/node_modules/ends-with/benchmark/implementations/index-of.js +0 -7
  867. package/http/node_modules/bower/lib/node_modules/ends-with/benchmark/implementations/last-index-of.js +0 -8
  868. package/http/node_modules/bower/lib/node_modules/ends-with/benchmark/implementations/re-exec.js +0 -8
  869. package/http/node_modules/bower/lib/node_modules/ends-with/benchmark/implementations/re-search.js +0 -8
  870. package/http/node_modules/bower/lib/node_modules/ends-with/benchmark/implementations/re-test.js +0 -8
  871. package/http/node_modules/bower/lib/node_modules/ends-with/benchmark/implementations/slice.js +0 -7
  872. package/http/node_modules/bower/lib/node_modules/ends-with/benchmark/implementations/substr.js +0 -7
  873. package/http/node_modules/bower/lib/node_modules/ends-with/benchmark/implementations/substring.js +0 -7
  874. package/http/node_modules/bower/lib/node_modules/ends-with/benchmark/implementations/while.js +0 -20
  875. package/http/node_modules/bower/lib/node_modules/ends-with/benchmark/index.js +0 -136
  876. package/http/node_modules/bower/lib/node_modules/ends-with/benchmark/samples/lorem1.txt +0 -1
  877. package/http/node_modules/bower/lib/node_modules/ends-with/benchmark/samples/lorem2.txt +0 -13
  878. package/http/node_modules/bower/lib/node_modules/ends-with/index.js +0 -27
  879. package/http/node_modules/bower/lib/node_modules/ends-with/package.json +0 -51
  880. package/http/node_modules/bower/lib/node_modules/ends-with/test.js +0 -42
  881. package/http/node_modules/bower/lib/node_modules/error-ex/LICENSE +0 -21
  882. package/http/node_modules/bower/lib/node_modules/error-ex/README.md +0 -144
  883. package/http/node_modules/bower/lib/node_modules/error-ex/index.js +0 -133
  884. package/http/node_modules/bower/lib/node_modules/error-ex/package.json +0 -46
  885. package/http/node_modules/bower/lib/node_modules/escape-string-regexp/index.js +0 -11
  886. package/http/node_modules/bower/lib/node_modules/escape-string-regexp/license +0 -21
  887. package/http/node_modules/bower/lib/node_modules/escape-string-regexp/package.json +0 -41
  888. package/http/node_modules/bower/lib/node_modules/escape-string-regexp/readme.md +0 -27
  889. package/http/node_modules/bower/lib/node_modules/exit-hook/index.js +0 -30
  890. package/http/node_modules/bower/lib/node_modules/exit-hook/package.json +0 -39
  891. package/http/node_modules/bower/lib/node_modules/exit-hook/readme.md +0 -40
  892. package/http/node_modules/bower/lib/node_modules/ext-list/index.js +0 -18
  893. package/http/node_modules/bower/lib/node_modules/ext-list/license +0 -21
  894. package/http/node_modules/bower/lib/node_modules/ext-list/package.json +0 -32
  895. package/http/node_modules/bower/lib/node_modules/ext-list/readme.md +0 -25
  896. package/http/node_modules/bower/lib/node_modules/ext-name/cli.js +0 -28
  897. package/http/node_modules/bower/lib/node_modules/ext-name/index.js +0 -19
  898. package/http/node_modules/bower/lib/node_modules/ext-name/license +0 -21
  899. package/http/node_modules/bower/lib/node_modules/ext-name/package.json +0 -39
  900. package/http/node_modules/bower/lib/node_modules/ext-name/readme.md +0 -42
  901. package/http/node_modules/bower/lib/node_modules/extend/.eslintrc +0 -17
  902. package/http/node_modules/bower/lib/node_modules/extend/.jscs.json +0 -175
  903. package/http/node_modules/bower/lib/node_modules/extend/.npmignore +0 -1
  904. package/http/node_modules/bower/lib/node_modules/extend/.travis.yml +0 -179
  905. package/http/node_modules/bower/lib/node_modules/extend/CHANGELOG.md +0 -77
  906. package/http/node_modules/bower/lib/node_modules/extend/LICENSE +0 -23
  907. package/http/node_modules/bower/lib/node_modules/extend/README.md +0 -81
  908. package/http/node_modules/bower/lib/node_modules/extend/component.json +0 -32
  909. package/http/node_modules/bower/lib/node_modules/extend/index.js +0 -86
  910. package/http/node_modules/bower/lib/node_modules/extend/package.json +0 -43
  911. package/http/node_modules/bower/lib/node_modules/extsprintf/.npmignore +0 -2
  912. package/http/node_modules/bower/lib/node_modules/extsprintf/LICENSE +0 -19
  913. package/http/node_modules/bower/lib/node_modules/extsprintf/Makefile +0 -24
  914. package/http/node_modules/bower/lib/node_modules/extsprintf/Makefile.targ +0 -285
  915. package/http/node_modules/bower/lib/node_modules/extsprintf/README.md +0 -46
  916. package/http/node_modules/bower/lib/node_modules/extsprintf/jsl.node.conf +0 -137
  917. package/http/node_modules/bower/lib/node_modules/extsprintf/lib/extsprintf.js +0 -183
  918. package/http/node_modules/bower/lib/node_modules/extsprintf/package.json +0 -14
  919. package/http/node_modules/bower/lib/node_modules/figures/index.js +0 -147
  920. package/http/node_modules/bower/lib/node_modules/figures/license +0 -21
  921. package/http/node_modules/bower/lib/node_modules/figures/package.json +0 -45
  922. package/http/node_modules/bower/lib/node_modules/figures/readme.md +0 -115
  923. package/http/node_modules/bower/lib/node_modules/filled-array/index.js +0 -15
  924. package/http/node_modules/bower/lib/node_modules/filled-array/license +0 -21
  925. package/http/node_modules/bower/lib/node_modules/filled-array/package.json +0 -37
  926. package/http/node_modules/bower/lib/node_modules/filled-array/readme.md +0 -52
  927. package/http/node_modules/bower/lib/node_modules/find-up/index.js +0 -53
  928. package/http/node_modules/bower/lib/node_modules/find-up/license +0 -21
  929. package/http/node_modules/bower/lib/node_modules/find-up/package.json +0 -51
  930. package/http/node_modules/bower/lib/node_modules/find-up/readme.md +0 -72
  931. package/http/node_modules/bower/lib/node_modules/findup-sync/.npmignore +0 -4
  932. package/http/node_modules/bower/lib/node_modules/findup-sync/LICENSE-MIT +0 -22
  933. package/http/node_modules/bower/lib/node_modules/findup-sync/README.md +0 -48
  934. package/http/node_modules/bower/lib/node_modules/findup-sync/lib/findup-sync.js +0 -49
  935. package/http/node_modules/bower/lib/node_modules/findup-sync/node_modules/glob/LICENSE +0 -15
  936. package/http/node_modules/bower/lib/node_modules/findup-sync/node_modules/glob/README.md +0 -377
  937. package/http/node_modules/bower/lib/node_modules/findup-sync/node_modules/glob/common.js +0 -245
  938. package/http/node_modules/bower/lib/node_modules/findup-sync/node_modules/glob/glob.js +0 -752
  939. package/http/node_modules/bower/lib/node_modules/findup-sync/node_modules/glob/package.json +0 -42
  940. package/http/node_modules/bower/lib/node_modules/findup-sync/node_modules/glob/sync.js +0 -460
  941. package/http/node_modules/bower/lib/node_modules/findup-sync/package.json +0 -43
  942. package/http/node_modules/bower/lib/node_modules/forever-agent/LICENSE +0 -55
  943. package/http/node_modules/bower/lib/node_modules/forever-agent/README.md +0 -4
  944. package/http/node_modules/bower/lib/node_modules/forever-agent/index.js +0 -138
  945. package/http/node_modules/bower/lib/node_modules/forever-agent/package.json +0 -17
  946. package/http/node_modules/bower/lib/node_modules/form-data/License +0 -19
  947. package/http/node_modules/bower/lib/node_modules/form-data/README.md +0 -217
  948. package/http/node_modules/bower/lib/node_modules/form-data/lib/browser.js +0 -2
  949. package/http/node_modules/bower/lib/node_modules/form-data/lib/form_data.js +0 -444
  950. package/http/node_modules/bower/lib/node_modules/form-data/lib/populate.js +0 -10
  951. package/http/node_modules/bower/lib/node_modules/form-data/package.json +0 -65
  952. package/http/node_modules/bower/lib/node_modules/fs-write-stream-atomic/.npmignore +0 -3
  953. package/http/node_modules/bower/lib/node_modules/fs-write-stream-atomic/.travis.yml +0 -11
  954. package/http/node_modules/bower/lib/node_modules/fs-write-stream-atomic/LICENSE +0 -15
  955. package/http/node_modules/bower/lib/node_modules/fs-write-stream-atomic/README.md +0 -35
  956. package/http/node_modules/bower/lib/node_modules/fs-write-stream-atomic/index.js +0 -124
  957. package/http/node_modules/bower/lib/node_modules/fs-write-stream-atomic/package.json +0 -33
  958. package/http/node_modules/bower/lib/node_modules/fs-write-stream-atomic/test/basic.js +0 -97
  959. package/http/node_modules/bower/lib/node_modules/fs-write-stream-atomic/test/chown.js +0 -44
  960. package/http/node_modules/bower/lib/node_modules/fs-write-stream-atomic/test/rename-fail.js +0 -30
  961. package/http/node_modules/bower/lib/node_modules/fs-write-stream-atomic/test/slow-close.js +0 -40
  962. package/http/node_modules/bower/lib/node_modules/fs-write-stream-atomic/test/toolong.js +0 -29
  963. package/http/node_modules/bower/lib/node_modules/fs.realpath/LICENSE +0 -43
  964. package/http/node_modules/bower/lib/node_modules/fs.realpath/README.md +0 -33
  965. package/http/node_modules/bower/lib/node_modules/fs.realpath/index.js +0 -66
  966. package/http/node_modules/bower/lib/node_modules/fs.realpath/old.js +0 -303
  967. package/http/node_modules/bower/lib/node_modules/fs.realpath/package.json +0 -26
  968. package/http/node_modules/bower/lib/node_modules/fstream/.npmignore +0 -5
  969. package/http/node_modules/bower/lib/node_modules/fstream/.travis.yml +0 -9
  970. package/http/node_modules/bower/lib/node_modules/fstream/LICENSE +0 -15
  971. package/http/node_modules/bower/lib/node_modules/fstream/README.md +0 -76
  972. package/http/node_modules/bower/lib/node_modules/fstream/examples/filter-pipe.js +0 -134
  973. package/http/node_modules/bower/lib/node_modules/fstream/examples/pipe.js +0 -118
  974. package/http/node_modules/bower/lib/node_modules/fstream/examples/reader.js +0 -68
  975. package/http/node_modules/bower/lib/node_modules/fstream/examples/symlink-write.js +0 -27
  976. package/http/node_modules/bower/lib/node_modules/fstream/fstream.js +0 -35
  977. package/http/node_modules/bower/lib/node_modules/fstream/lib/abstract.js +0 -85
  978. package/http/node_modules/bower/lib/node_modules/fstream/lib/collect.js +0 -70
  979. package/http/node_modules/bower/lib/node_modules/fstream/lib/dir-reader.js +0 -252
  980. package/http/node_modules/bower/lib/node_modules/fstream/lib/dir-writer.js +0 -174
  981. package/http/node_modules/bower/lib/node_modules/fstream/lib/file-reader.js +0 -150
  982. package/http/node_modules/bower/lib/node_modules/fstream/lib/file-writer.js +0 -107
  983. package/http/node_modules/bower/lib/node_modules/fstream/lib/get-type.js +0 -33
  984. package/http/node_modules/bower/lib/node_modules/fstream/lib/link-reader.js +0 -53
  985. package/http/node_modules/bower/lib/node_modules/fstream/lib/link-writer.js +0 -95
  986. package/http/node_modules/bower/lib/node_modules/fstream/lib/proxy-reader.js +0 -95
  987. package/http/node_modules/bower/lib/node_modules/fstream/lib/proxy-writer.js +0 -111
  988. package/http/node_modules/bower/lib/node_modules/fstream/lib/reader.js +0 -255
  989. package/http/node_modules/bower/lib/node_modules/fstream/lib/socket-reader.js +0 -36
  990. package/http/node_modules/bower/lib/node_modules/fstream/lib/writer.js +0 -390
  991. package/http/node_modules/bower/lib/node_modules/fstream/package.json +0 -28
  992. package/http/node_modules/bower/lib/node_modules/fstream-ignore/LICENSE +0 -15
  993. package/http/node_modules/bower/lib/node_modules/fstream-ignore/README.md +0 -22
  994. package/http/node_modules/bower/lib/node_modules/fstream-ignore/ignore.js +0 -275
  995. package/http/node_modules/bower/lib/node_modules/fstream-ignore/package.json +0 -28
  996. package/http/node_modules/bower/lib/node_modules/generate-function/.npmignore +0 -1
  997. package/http/node_modules/bower/lib/node_modules/generate-function/.travis.yml +0 -3
  998. package/http/node_modules/bower/lib/node_modules/generate-function/README.md +0 -72
  999. package/http/node_modules/bower/lib/node_modules/generate-function/example.js +0 -27
  1000. package/http/node_modules/bower/lib/node_modules/generate-function/index.js +0 -61
  1001. package/http/node_modules/bower/lib/node_modules/generate-function/package.json +0 -29
  1002. package/http/node_modules/bower/lib/node_modules/generate-function/test.js +0 -33
  1003. package/http/node_modules/bower/lib/node_modules/generate-object-property/.npmignore +0 -1
  1004. package/http/node_modules/bower/lib/node_modules/generate-object-property/.travis.yml +0 -3
  1005. package/http/node_modules/bower/lib/node_modules/generate-object-property/LICENSE +0 -21
  1006. package/http/node_modules/bower/lib/node_modules/generate-object-property/README.md +0 -19
  1007. package/http/node_modules/bower/lib/node_modules/generate-object-property/index.js +0 -12
  1008. package/http/node_modules/bower/lib/node_modules/generate-object-property/package.json +0 -25
  1009. package/http/node_modules/bower/lib/node_modules/generate-object-property/test.js +0 -12
  1010. package/http/node_modules/bower/lib/node_modules/get-stdin/index.js +0 -49
  1011. package/http/node_modules/bower/lib/node_modules/get-stdin/package.json +0 -35
  1012. package/http/node_modules/bower/lib/node_modules/get-stdin/readme.md +0 -44
  1013. package/http/node_modules/bower/lib/node_modules/getpass/.npmignore +0 -8
  1014. package/http/node_modules/bower/lib/node_modules/getpass/.travis.yml +0 -9
  1015. package/http/node_modules/bower/lib/node_modules/getpass/LICENSE +0 -18
  1016. package/http/node_modules/bower/lib/node_modules/getpass/README.md +0 -32
  1017. package/http/node_modules/bower/lib/node_modules/getpass/lib/index.js +0 -123
  1018. package/http/node_modules/bower/lib/node_modules/getpass/package.json +0 -18
  1019. package/http/node_modules/bower/lib/node_modules/github/.npmignore +0 -5
  1020. package/http/node_modules/bower/lib/node_modules/github/LICENSE +0 -21
  1021. package/http/node_modules/bower/lib/node_modules/github/README.md +0 -173
  1022. package/http/node_modules/bower/lib/node_modules/github/api/v2.0.0/routes.json +0 -3
  1023. package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/authorization.js +0 -255
  1024. package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/authorizationTest.js +0 -258
  1025. package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/events.js +0 -495
  1026. package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/eventsTest.js +0 -212
  1027. package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/gists.js +0 -801
  1028. package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/gistsTest.js +0 -605
  1029. package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/gitdata.js +0 -650
  1030. package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/gitdataTest.js +0 -480
  1031. package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/gitignore.js +0 -112
  1032. package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/gitignoreTest.js +0 -54
  1033. package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/index.js +0 -40
  1034. package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/issues.js +0 -1246
  1035. package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/issuesTest.js +0 -423
  1036. package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/markdown.js +0 -114
  1037. package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/markdownTest.js +0 -56
  1038. package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/misc.js +0 -157
  1039. package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/miscTest.js +0 -69
  1040. package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/orgs.js +0 -1140
  1041. package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/orgsTest.js +0 -361
  1042. package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/pullRequests.js +0 -757
  1043. package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/pullRequestsTest.js +0 -281
  1044. package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/releases.js +0 -507
  1045. package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/releasesTest.js +0 -262
  1046. package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/repos.js +0 -3548
  1047. package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/reposTest.js +0 -1126
  1048. package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/routes.json +0 -3914
  1049. package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/search.js +0 -263
  1050. package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/searchTest.js +0 -119
  1051. package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/statuses.js +0 -167
  1052. package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/statusesTest.js +0 -76
  1053. package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/user.js +0 -1035
  1054. package/http/node_modules/bower/lib/node_modules/github/api/v3.0.0/userTest.js +0 -304
  1055. package/http/node_modules/bower/lib/node_modules/github/error.js +0 -117
  1056. package/http/node_modules/bower/lib/node_modules/github/generate.js +0 -295
  1057. package/http/node_modules/bower/lib/node_modules/github/index.js +0 -847
  1058. package/http/node_modules/bower/lib/node_modules/github/package.json +0 -34
  1059. package/http/node_modules/bower/lib/node_modules/github/seed.yml +0 -5
  1060. package/http/node_modules/bower/lib/node_modules/github/templates/after_request.js.tpl +0 -11
  1061. package/http/node_modules/bower/lib/node_modules/github/templates/handler.js.tpl +0 -24
  1062. package/http/node_modules/bower/lib/node_modules/github/templates/index.js.tpl +0 -40
  1063. package/http/node_modules/bower/lib/node_modules/github/templates/section.js.tpl +0 -23
  1064. package/http/node_modules/bower/lib/node_modules/github/templates/test_handler.js.tpl +0 -10
  1065. package/http/node_modules/bower/lib/node_modules/github/templates/test_section.js.tpl +0 -30
  1066. package/http/node_modules/bower/lib/node_modules/github/test/client_test.js +0 -62
  1067. package/http/node_modules/bower/lib/node_modules/github/test/example.js +0 -37
  1068. package/http/node_modules/bower/lib/node_modules/github/test/oauth.js +0 -95
  1069. package/http/node_modules/bower/lib/node_modules/github/test/oauth_server.js +0 -59
  1070. package/http/node_modules/bower/lib/node_modules/github/util.js +0 -140
  1071. package/http/node_modules/bower/lib/node_modules/glob/LICENSE +0 -15
  1072. package/http/node_modules/bower/lib/node_modules/glob/README.md +0 -369
  1073. package/http/node_modules/bower/lib/node_modules/glob/common.js +0 -237
  1074. package/http/node_modules/bower/lib/node_modules/glob/glob.js +0 -740
  1075. package/http/node_modules/bower/lib/node_modules/glob/package.json +0 -41
  1076. package/http/node_modules/bower/lib/node_modules/glob/sync.js +0 -457
  1077. package/http/node_modules/bower/lib/node_modules/got/index.js +0 -401
  1078. package/http/node_modules/bower/lib/node_modules/got/license +0 -21
  1079. package/http/node_modules/bower/lib/node_modules/got/package.json +0 -82
  1080. package/http/node_modules/bower/lib/node_modules/got/readme.md +0 -357
  1081. package/http/node_modules/bower/lib/node_modules/graceful-fs/LICENSE +0 -15
  1082. package/http/node_modules/bower/lib/node_modules/graceful-fs/README.md +0 -133
  1083. package/http/node_modules/bower/lib/node_modules/graceful-fs/fs.js +0 -21
  1084. package/http/node_modules/bower/lib/node_modules/graceful-fs/graceful-fs.js +0 -262
  1085. package/http/node_modules/bower/lib/node_modules/graceful-fs/legacy-streams.js +0 -118
  1086. package/http/node_modules/bower/lib/node_modules/graceful-fs/package.json +0 -47
  1087. package/http/node_modules/bower/lib/node_modules/graceful-fs/polyfills.js +0 -330
  1088. package/http/node_modules/bower/lib/node_modules/handlebars/.gitattributes +0 -6
  1089. package/http/node_modules/bower/lib/node_modules/handlebars/.gitmodules +0 -3
  1090. package/http/node_modules/bower/lib/node_modules/handlebars/.idea/compiler.xml +0 -22
  1091. package/http/node_modules/bower/lib/node_modules/handlebars/.idea/copyright/profiles_settings.xml +0 -3
  1092. package/http/node_modules/bower/lib/node_modules/handlebars/.idea/handlebars.js.iml +0 -16
  1093. package/http/node_modules/bower/lib/node_modules/handlebars/.idea/jsLibraryMappings.xml +0 -6
  1094. package/http/node_modules/bower/lib/node_modules/handlebars/.idea/misc.xml +0 -22
  1095. package/http/node_modules/bower/lib/node_modules/handlebars/.idea/modules.xml +0 -8
  1096. package/http/node_modules/bower/lib/node_modules/handlebars/.idea/vcs.xml +0 -6
  1097. package/http/node_modules/bower/lib/node_modules/handlebars/.idea/watcherTasks.xml +0 -4
  1098. package/http/node_modules/bower/lib/node_modules/handlebars/.idea/workspace.xml +0 -2064
  1099. package/http/node_modules/bower/lib/node_modules/handlebars/.istanbul.yml +0 -2
  1100. package/http/node_modules/bower/lib/node_modules/handlebars/.npmignore +0 -25
  1101. package/http/node_modules/bower/lib/node_modules/handlebars/CONTRIBUTING.md +0 -99
  1102. package/http/node_modules/bower/lib/node_modules/handlebars/FAQ.md +0 -60
  1103. package/http/node_modules/bower/lib/node_modules/handlebars/LICENSE +0 -19
  1104. package/http/node_modules/bower/lib/node_modules/handlebars/README.markdown +0 -167
  1105. package/http/node_modules/bower/lib/node_modules/handlebars/bin/handlebars +0 -128
  1106. package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/base.js +0 -96
  1107. package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/compiler/ast.js +0 -31
  1108. package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/compiler/base.js +0 -36
  1109. package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/compiler/code-gen.js +0 -163
  1110. package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/compiler/compiler.js +0 -569
  1111. package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/compiler/helpers.js +0 -230
  1112. package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/compiler/javascript-compiler.js +0 -1120
  1113. package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/compiler/parser.js +0 -739
  1114. package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/compiler/printer.js +0 -186
  1115. package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/compiler/visitor.js +0 -138
  1116. package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/compiler/whitespace-control.js +0 -219
  1117. package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/decorators/inline.js +0 -25
  1118. package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/decorators.js +0 -16
  1119. package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/exception.js +0 -53
  1120. package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/helpers/block-helper-missing.js +0 -35
  1121. package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/helpers/each.js +0 -89
  1122. package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/helpers/helper-missing.js +0 -22
  1123. package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/helpers/if.js +0 -25
  1124. package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/helpers/log.js +0 -24
  1125. package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/helpers/lookup.js +0 -10
  1126. package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/helpers/with.js +0 -29
  1127. package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/helpers.js +0 -34
  1128. package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/logger.js +0 -44
  1129. package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/no-conflict.js +0 -18
  1130. package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/runtime.js +0 -297
  1131. package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/safe-string.js +0 -15
  1132. package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars/utils.js +0 -126
  1133. package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars.js +0 -51
  1134. package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/handlebars.runtime.js +0 -44
  1135. package/http/node_modules/bower/lib/node_modules/handlebars/dist/amd/precompiler.js +0 -289
  1136. package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/base.js +0 -104
  1137. package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/compiler/ast.js +0 -31
  1138. package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/compiler/base.js +0 -48
  1139. package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/compiler/code-gen.js +0 -166
  1140. package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/compiler/compiler.js +0 -573
  1141. package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/compiler/helpers.js +0 -230
  1142. package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/compiler/javascript-compiler.js +0 -1128
  1143. package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/compiler/parser.js +0 -739
  1144. package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/compiler/printer.js +0 -186
  1145. package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/compiler/visitor.js +0 -140
  1146. package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/compiler/whitespace-control.js +0 -221
  1147. package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/decorators/inline.js +0 -29
  1148. package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/decorators.js +0 -16
  1149. package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/exception.js +0 -54
  1150. package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/helpers/block-helper-missing.js +0 -39
  1151. package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/helpers/each.js +0 -94
  1152. package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/helpers/helper-missing.js +0 -25
  1153. package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/helpers/if.js +0 -29
  1154. package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/helpers/log.js +0 -26
  1155. package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/helpers/lookup.js +0 -12
  1156. package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/helpers/with.js +0 -33
  1157. package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/helpers.js +0 -46
  1158. package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/logger.js +0 -47
  1159. package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/no-conflict.js +0 -20
  1160. package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/runtime.js +0 -307
  1161. package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/safe-string.js +0 -15
  1162. package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars/utils.js +0 -124
  1163. package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars.js +0 -65
  1164. package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/handlebars.runtime.js +0 -66
  1165. package/http/node_modules/bower/lib/node_modules/handlebars/dist/cjs/precompiler.js +0 -305
  1166. package/http/node_modules/bower/lib/node_modules/handlebars/dist/handlebars.amd.js +0 -4352
  1167. package/http/node_modules/bower/lib/node_modules/handlebars/dist/handlebars.amd.min.js +0 -29
  1168. package/http/node_modules/bower/lib/node_modules/handlebars/dist/handlebars.js +0 -4840
  1169. package/http/node_modules/bower/lib/node_modules/handlebars/dist/handlebars.min.js +0 -29
  1170. package/http/node_modules/bower/lib/node_modules/handlebars/dist/handlebars.runtime.amd.js +0 -1046
  1171. package/http/node_modules/bower/lib/node_modules/handlebars/dist/handlebars.runtime.amd.min.js +0 -27
  1172. package/http/node_modules/bower/lib/node_modules/handlebars/dist/handlebars.runtime.js +0 -1468
  1173. package/http/node_modules/bower/lib/node_modules/handlebars/dist/handlebars.runtime.min.js +0 -27
  1174. package/http/node_modules/bower/lib/node_modules/handlebars/docs/compiler-api.md +0 -316
  1175. package/http/node_modules/bower/lib/node_modules/handlebars/docs/decorators-api.md +0 -19
  1176. package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/base.js +0 -78
  1177. package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/compiler/ast.js +0 -28
  1178. package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/compiler/base.js +0 -24
  1179. package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/compiler/code-gen.js +0 -168
  1180. package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/compiler/compiler.js +0 -559
  1181. package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/compiler/helpers.js +0 -212
  1182. package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/compiler/javascript-compiler.js +0 -1137
  1183. package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/compiler/parser.js +0 -622
  1184. package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/compiler/printer.js +0 -171
  1185. package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/compiler/visitor.js +0 -129
  1186. package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/compiler/whitespace-control.js +0 -216
  1187. package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/decorators/inline.js +0 -22
  1188. package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/decorators.js +0 -6
  1189. package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/exception.js +0 -49
  1190. package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/helpers/block-helper-missing.js +0 -32
  1191. package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/helpers/each.js +0 -79
  1192. package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/helpers/helper-missing.js +0 -13
  1193. package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/helpers/if.js +0 -20
  1194. package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/helpers/log.js +0 -19
  1195. package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/helpers/lookup.js +0 -5
  1196. package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/helpers/with.js +0 -24
  1197. package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/helpers.js +0 -17
  1198. package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/logger.js +0 -35
  1199. package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/no-conflict.js +0 -13
  1200. package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/runtime.js +0 -281
  1201. package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/safe-string.js +0 -10
  1202. package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars/utils.js +0 -108
  1203. package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars.js +0 -41
  1204. package/http/node_modules/bower/lib/node_modules/handlebars/lib/handlebars.runtime.js +0 -37
  1205. package/http/node_modules/bower/lib/node_modules/handlebars/lib/index.js +0 -25
  1206. package/http/node_modules/bower/lib/node_modules/handlebars/lib/precompiler.js +0 -273
  1207. package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/README.md +0 -510
  1208. package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/build/assert-shim.js +0 -56
  1209. package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/build/mini-require.js +0 -152
  1210. package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/build/prefix-source-map.jsm +0 -21
  1211. package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/build/prefix-utils.jsm +0 -18
  1212. package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/build/suffix-browser.js +0 -8
  1213. package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/build/suffix-source-map.jsm +0 -6
  1214. package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/build/suffix-utils.jsm +0 -21
  1215. package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/build/test-prefix.js +0 -8
  1216. package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/build/test-suffix.js +0 -3
  1217. package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/lib/source-map/array-set.js +0 -107
  1218. package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/lib/source-map/base64-vlq.js +0 -146
  1219. package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/lib/source-map/base64.js +0 -73
  1220. package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/lib/source-map/binary-search.js +0 -117
  1221. package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/lib/source-map/mapping-list.js +0 -86
  1222. package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/lib/source-map/quick-sort.js +0 -120
  1223. package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/lib/source-map/source-map-consumer.js +0 -1077
  1224. package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/lib/source-map/source-map-generator.js +0 -399
  1225. package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/lib/source-map/source-node.js +0 -414
  1226. package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/lib/source-map/util.js +0 -370
  1227. package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/lib/source-map.js +0 -8
  1228. package/http/node_modules/bower/lib/node_modules/handlebars/node_modules/source-map/package.json +0 -68
  1229. package/http/node_modules/bower/lib/node_modules/handlebars/package.json +0 -77
  1230. package/http/node_modules/bower/lib/node_modules/handlebars/print-script +0 -95
  1231. package/http/node_modules/bower/lib/node_modules/handlebars/release-notes.md +0 -527
  1232. package/http/node_modules/bower/lib/node_modules/handlebars/runtime.js +0 -3
  1233. package/http/node_modules/bower/lib/node_modules/har-schema/LICENSE +0 -13
  1234. package/http/node_modules/bower/lib/node_modules/har-schema/README.md +0 -49
  1235. package/http/node_modules/bower/lib/node_modules/har-schema/lib/afterRequest.json +0 -29
  1236. package/http/node_modules/bower/lib/node_modules/har-schema/lib/beforeRequest.json +0 -29
  1237. package/http/node_modules/bower/lib/node_modules/har-schema/lib/browser.json +0 -19
  1238. package/http/node_modules/bower/lib/node_modules/har-schema/lib/cache.json +0 -20
  1239. package/http/node_modules/bower/lib/node_modules/har-schema/lib/content.json +0 -28
  1240. package/http/node_modules/bower/lib/node_modules/har-schema/lib/cookie.json +0 -35
  1241. package/http/node_modules/bower/lib/node_modules/har-schema/lib/creator.json +0 -19
  1242. package/http/node_modules/bower/lib/node_modules/har-schema/lib/entry.json +0 -52
  1243. package/http/node_modules/bower/lib/node_modules/har-schema/lib/har.json +0 -12
  1244. package/http/node_modules/bower/lib/node_modules/har-schema/lib/header.json +0 -19
  1245. package/http/node_modules/bower/lib/node_modules/har-schema/lib/index.js +0 -22
  1246. package/http/node_modules/bower/lib/node_modules/har-schema/lib/log.json +0 -35
  1247. package/http/node_modules/bower/lib/node_modules/har-schema/lib/page.json +0 -31
  1248. package/http/node_modules/bower/lib/node_modules/har-schema/lib/pageTimings.json +0 -17
  1249. package/http/node_modules/bower/lib/node_modules/har-schema/lib/postData.json +0 -42
  1250. package/http/node_modules/bower/lib/node_modules/har-schema/lib/query.json +0 -19
  1251. package/http/node_modules/bower/lib/node_modules/har-schema/lib/request.json +0 -56
  1252. package/http/node_modules/bower/lib/node_modules/har-schema/lib/response.json +0 -53
  1253. package/http/node_modules/bower/lib/node_modules/har-schema/lib/timings.json +0 -41
  1254. package/http/node_modules/bower/lib/node_modules/har-schema/package.json +0 -54
  1255. package/http/node_modules/bower/lib/node_modules/har-validator/LICENSE +0 -13
  1256. package/http/node_modules/bower/lib/node_modules/har-validator/README.md +0 -309
  1257. package/http/node_modules/bower/lib/node_modules/har-validator/bin/har-validator +0 -56
  1258. package/http/node_modules/bower/lib/node_modules/har-validator/lib/async.js +0 -14
  1259. package/http/node_modules/bower/lib/node_modules/har-validator/lib/error.js +0 -10
  1260. package/http/node_modules/bower/lib/node_modules/har-validator/lib/index.js +0 -22
  1261. package/http/node_modules/bower/lib/node_modules/har-validator/lib/runner.js +0 -29
  1262. package/http/node_modules/bower/lib/node_modules/har-validator/lib/schemas/cache.json +0 -13
  1263. package/http/node_modules/bower/lib/node_modules/har-validator/lib/schemas/cacheEntry.json +0 -31
  1264. package/http/node_modules/bower/lib/node_modules/har-validator/lib/schemas/content.json +0 -27
  1265. package/http/node_modules/bower/lib/node_modules/har-validator/lib/schemas/cookie.json +0 -34
  1266. package/http/node_modules/bower/lib/node_modules/har-validator/lib/schemas/creator.json +0 -18
  1267. package/http/node_modules/bower/lib/node_modules/har-validator/lib/schemas/entry.json +0 -51
  1268. package/http/node_modules/bower/lib/node_modules/har-validator/lib/schemas/har.json +0 -11
  1269. package/http/node_modules/bower/lib/node_modules/har-validator/lib/schemas/index.js +0 -49
  1270. package/http/node_modules/bower/lib/node_modules/har-validator/lib/schemas/log.json +0 -34
  1271. package/http/node_modules/bower/lib/node_modules/har-validator/lib/schemas/page.json +0 -30
  1272. package/http/node_modules/bower/lib/node_modules/har-validator/lib/schemas/pageTimings.json +0 -16
  1273. package/http/node_modules/bower/lib/node_modules/har-validator/lib/schemas/postData.json +0 -41
  1274. package/http/node_modules/bower/lib/node_modules/har-validator/lib/schemas/record.json +0 -18
  1275. package/http/node_modules/bower/lib/node_modules/har-validator/lib/schemas/request.json +0 -55
  1276. package/http/node_modules/bower/lib/node_modules/har-validator/lib/schemas/response.json +0 -52
  1277. package/http/node_modules/bower/lib/node_modules/har-validator/lib/schemas/timings.json +0 -40
  1278. package/http/node_modules/bower/lib/node_modules/har-validator/package.json +0 -55
  1279. package/http/node_modules/bower/lib/node_modules/has-ansi/index.js +0 -4
  1280. package/http/node_modules/bower/lib/node_modules/has-ansi/license +0 -21
  1281. package/http/node_modules/bower/lib/node_modules/has-ansi/package.json +0 -55
  1282. package/http/node_modules/bower/lib/node_modules/has-ansi/readme.md +0 -36
  1283. package/http/node_modules/bower/lib/node_modules/hawk/.npmignore +0 -20
  1284. package/http/node_modules/bower/lib/node_modules/hawk/.travis.yml +0 -5
  1285. package/http/node_modules/bower/lib/node_modules/hawk/LICENSE +0 -28
  1286. package/http/node_modules/bower/lib/node_modules/hawk/README.md +0 -634
  1287. package/http/node_modules/bower/lib/node_modules/hawk/bower.json +0 -24
  1288. package/http/node_modules/bower/lib/node_modules/hawk/component.json +0 -19
  1289. package/http/node_modules/bower/lib/node_modules/hawk/dist/client.js +0 -343
  1290. package/http/node_modules/bower/lib/node_modules/hawk/example/usage.js +0 -78
  1291. package/http/node_modules/bower/lib/node_modules/hawk/images/hawk.png +0 -0
  1292. package/http/node_modules/bower/lib/node_modules/hawk/images/logo.png +0 -0
  1293. package/http/node_modules/bower/lib/node_modules/hawk/lib/browser.js +0 -637
  1294. package/http/node_modules/bower/lib/node_modules/hawk/lib/client.js +0 -369
  1295. package/http/node_modules/bower/lib/node_modules/hawk/lib/crypto.js +0 -126
  1296. package/http/node_modules/bower/lib/node_modules/hawk/lib/index.js +0 -15
  1297. package/http/node_modules/bower/lib/node_modules/hawk/lib/server.js +0 -548
  1298. package/http/node_modules/bower/lib/node_modules/hawk/lib/utils.js +0 -184
  1299. package/http/node_modules/bower/lib/node_modules/hawk/package.json +0 -34
  1300. package/http/node_modules/bower/lib/node_modules/hawk/test/browser.js +0 -1492
  1301. package/http/node_modules/bower/lib/node_modules/hawk/test/client.js +0 -440
  1302. package/http/node_modules/bower/lib/node_modules/hawk/test/crypto.js +0 -70
  1303. package/http/node_modules/bower/lib/node_modules/hawk/test/index.js +0 -378
  1304. package/http/node_modules/bower/lib/node_modules/hawk/test/readme.js +0 -95
  1305. package/http/node_modules/bower/lib/node_modules/hawk/test/server.js +0 -1329
  1306. package/http/node_modules/bower/lib/node_modules/hawk/test/uri.js +0 -838
  1307. package/http/node_modules/bower/lib/node_modules/hawk/test/utils.js +0 -149
  1308. package/http/node_modules/bower/lib/node_modules/hosted-git-info/LICENSE +0 -13
  1309. package/http/node_modules/bower/lib/node_modules/hosted-git-info/README.md +0 -132
  1310. package/http/node_modules/bower/lib/node_modules/hosted-git-info/git-host-info.js +0 -68
  1311. package/http/node_modules/bower/lib/node_modules/hosted-git-info/git-host.js +0 -114
  1312. package/http/node_modules/bower/lib/node_modules/hosted-git-info/index.js +0 -121
  1313. package/http/node_modules/bower/lib/node_modules/hosted-git-info/package.json +0 -34
  1314. package/http/node_modules/bower/lib/node_modules/http-signature/.dir-locals.el +0 -6
  1315. package/http/node_modules/bower/lib/node_modules/http-signature/.npmignore +0 -7
  1316. package/http/node_modules/bower/lib/node_modules/http-signature/CHANGES.md +0 -46
  1317. package/http/node_modules/bower/lib/node_modules/http-signature/LICENSE +0 -18
  1318. package/http/node_modules/bower/lib/node_modules/http-signature/README.md +0 -79
  1319. package/http/node_modules/bower/lib/node_modules/http-signature/http_signing.md +0 -363
  1320. package/http/node_modules/bower/lib/node_modules/http-signature/lib/index.js +0 -29
  1321. package/http/node_modules/bower/lib/node_modules/http-signature/lib/parser.js +0 -318
  1322. package/http/node_modules/bower/lib/node_modules/http-signature/lib/signer.js +0 -399
  1323. package/http/node_modules/bower/lib/node_modules/http-signature/lib/utils.js +0 -112
  1324. package/http/node_modules/bower/lib/node_modules/http-signature/lib/verify.js +0 -88
  1325. package/http/node_modules/bower/lib/node_modules/http-signature/package.json +0 -39
  1326. package/http/node_modules/bower/lib/node_modules/iferr/.npmignore +0 -1
  1327. package/http/node_modules/bower/lib/node_modules/iferr/LICENSE +0 -21
  1328. package/http/node_modules/bower/lib/node_modules/iferr/README.md +0 -40
  1329. package/http/node_modules/bower/lib/node_modules/iferr/index.coffee +0 -24
  1330. package/http/node_modules/bower/lib/node_modules/iferr/index.js +0 -49
  1331. package/http/node_modules/bower/lib/node_modules/iferr/package.json +0 -28
  1332. package/http/node_modules/bower/lib/node_modules/iferr/test/index.coffee +0 -42
  1333. package/http/node_modules/bower/lib/node_modules/iferr/test/mocha.opts +0 -2
  1334. package/http/node_modules/bower/lib/node_modules/imurmurhash/README.md +0 -122
  1335. package/http/node_modules/bower/lib/node_modules/imurmurhash/imurmurhash.js +0 -138
  1336. package/http/node_modules/bower/lib/node_modules/imurmurhash/imurmurhash.min.js +0 -12
  1337. package/http/node_modules/bower/lib/node_modules/imurmurhash/package.json +0 -40
  1338. package/http/node_modules/bower/lib/node_modules/indent-string/index.js +0 -20
  1339. package/http/node_modules/bower/lib/node_modules/indent-string/license +0 -21
  1340. package/http/node_modules/bower/lib/node_modules/indent-string/package.json +0 -36
  1341. package/http/node_modules/bower/lib/node_modules/indent-string/readme.md +0 -58
  1342. package/http/node_modules/bower/lib/node_modules/inflight/LICENSE +0 -15
  1343. package/http/node_modules/bower/lib/node_modules/inflight/README.md +0 -37
  1344. package/http/node_modules/bower/lib/node_modules/inflight/inflight.js +0 -54
  1345. package/http/node_modules/bower/lib/node_modules/inflight/package.json +0 -29
  1346. package/http/node_modules/bower/lib/node_modules/inherits/LICENSE +0 -16
  1347. package/http/node_modules/bower/lib/node_modules/inherits/README.md +0 -42
  1348. package/http/node_modules/bower/lib/node_modules/inherits/inherits.js +0 -7
  1349. package/http/node_modules/bower/lib/node_modules/inherits/inherits_browser.js +0 -23
  1350. package/http/node_modules/bower/lib/node_modules/inherits/package.json +0 -29
  1351. package/http/node_modules/bower/lib/node_modules/ini/LICENSE +0 -15
  1352. package/http/node_modules/bower/lib/node_modules/ini/README.md +0 -102
  1353. package/http/node_modules/bower/lib/node_modules/ini/ini.js +0 -190
  1354. package/http/node_modules/bower/lib/node_modules/ini/package.json +0 -25
  1355. package/http/node_modules/bower/lib/node_modules/inquirer/README.md +0 -300
  1356. package/http/node_modules/bower/lib/node_modules/inquirer/lib/inquirer.js +0 -79
  1357. package/http/node_modules/bower/lib/node_modules/inquirer/lib/objects/choice.js +0 -34
  1358. package/http/node_modules/bower/lib/node_modules/inquirer/lib/objects/choices.js +0 -111
  1359. package/http/node_modules/bower/lib/node_modules/inquirer/lib/objects/separator.js +0 -35
  1360. package/http/node_modules/bower/lib/node_modules/inquirer/lib/prompts/base.js +0 -177
  1361. package/http/node_modules/bower/lib/node_modules/inquirer/lib/prompts/checkbox.js +0 -215
  1362. package/http/node_modules/bower/lib/node_modules/inquirer/lib/prompts/confirm.js +0 -110
  1363. package/http/node_modules/bower/lib/node_modules/inquirer/lib/prompts/expand.js +0 -257
  1364. package/http/node_modules/bower/lib/node_modules/inquirer/lib/prompts/input.js +0 -113
  1365. package/http/node_modules/bower/lib/node_modules/inquirer/lib/prompts/list.js +0 -172
  1366. package/http/node_modules/bower/lib/node_modules/inquirer/lib/prompts/password.js +0 -120
  1367. package/http/node_modules/bower/lib/node_modules/inquirer/lib/prompts/rawlist.js +0 -184
  1368. package/http/node_modules/bower/lib/node_modules/inquirer/lib/ui/baseUI.js +0 -76
  1369. package/http/node_modules/bower/lib/node_modules/inquirer/lib/ui/bottom-bar.js +0 -98
  1370. package/http/node_modules/bower/lib/node_modules/inquirer/lib/ui/prompt.js +0 -126
  1371. package/http/node_modules/bower/lib/node_modules/inquirer/lib/utils/events.js +0 -34
  1372. package/http/node_modules/bower/lib/node_modules/inquirer/lib/utils/paginator.js +0 -38
  1373. package/http/node_modules/bower/lib/node_modules/inquirer/lib/utils/readline.js +0 -51
  1374. package/http/node_modules/bower/lib/node_modules/inquirer/lib/utils/screen-manager.js +0 -112
  1375. package/http/node_modules/bower/lib/node_modules/inquirer/lib/utils/utils.js +0 -47
  1376. package/http/node_modules/bower/lib/node_modules/inquirer/package.json +0 -48
  1377. package/http/node_modules/bower/lib/node_modules/intersect/.npmignore +0 -2
  1378. package/http/node_modules/bower/lib/node_modules/intersect/.travis.yml +0 -4
  1379. package/http/node_modules/bower/lib/node_modules/intersect/Makefile +0 -9
  1380. package/http/node_modules/bower/lib/node_modules/intersect/README.md +0 -75
  1381. package/http/node_modules/bower/lib/node_modules/intersect/bench.js +0 -13
  1382. package/http/node_modules/bower/lib/node_modules/intersect/component.json +0 -16
  1383. package/http/node_modules/bower/lib/node_modules/intersect/index.js +0 -59
  1384. package/http/node_modules/bower/lib/node_modules/intersect/package.json +0 -40
  1385. package/http/node_modules/bower/lib/node_modules/intersect/test/test.js +0 -74
  1386. package/http/node_modules/bower/lib/node_modules/is-arrayish/.editorconfig +0 -18
  1387. package/http/node_modules/bower/lib/node_modules/is-arrayish/.istanbul.yml +0 -4
  1388. package/http/node_modules/bower/lib/node_modules/is-arrayish/.npmignore +0 -5
  1389. package/http/node_modules/bower/lib/node_modules/is-arrayish/.travis.yml +0 -17
  1390. package/http/node_modules/bower/lib/node_modules/is-arrayish/LICENSE +0 -21
  1391. package/http/node_modules/bower/lib/node_modules/is-arrayish/README.md +0 -16
  1392. package/http/node_modules/bower/lib/node_modules/is-arrayish/index.js +0 -10
  1393. package/http/node_modules/bower/lib/node_modules/is-arrayish/package.json +0 -34
  1394. package/http/node_modules/bower/lib/node_modules/is-buffer/.npmignore +0 -2
  1395. package/http/node_modules/bower/lib/node_modules/is-buffer/LICENSE +0 -21
  1396. package/http/node_modules/bower/lib/node_modules/is-buffer/README.md +0 -49
  1397. package/http/node_modules/bower/lib/node_modules/is-buffer/index.js +0 -21
  1398. package/http/node_modules/bower/lib/node_modules/is-buffer/package.json +0 -51
  1399. package/http/node_modules/bower/lib/node_modules/is-buffer/test/basic.js +0 -25
  1400. package/http/node_modules/bower/lib/node_modules/is-builtin-module/index.js +0 -10
  1401. package/http/node_modules/bower/lib/node_modules/is-builtin-module/license +0 -21
  1402. package/http/node_modules/bower/lib/node_modules/is-builtin-module/package.json +0 -43
  1403. package/http/node_modules/bower/lib/node_modules/is-builtin-module/readme.md +0 -33
  1404. package/http/node_modules/bower/lib/node_modules/is-finite/index.js +0 -6
  1405. package/http/node_modules/bower/lib/node_modules/is-finite/license +0 -21
  1406. package/http/node_modules/bower/lib/node_modules/is-finite/package.json +0 -36
  1407. package/http/node_modules/bower/lib/node_modules/is-finite/readme.md +0 -28
  1408. package/http/node_modules/bower/lib/node_modules/is-fullwidth-code-point/index.js +0 -46
  1409. package/http/node_modules/bower/lib/node_modules/is-fullwidth-code-point/license +0 -21
  1410. package/http/node_modules/bower/lib/node_modules/is-fullwidth-code-point/package.json +0 -45
  1411. package/http/node_modules/bower/lib/node_modules/is-fullwidth-code-point/readme.md +0 -39
  1412. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/.npmignore +0 -2
  1413. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/.travis.yml +0 -3
  1414. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/LICENSE +0 -21
  1415. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/README.md +0 -200
  1416. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/example.js +0 -18
  1417. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/formats.js +0 -14
  1418. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/index.js +0 -590
  1419. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/package.json +0 -34
  1420. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/require.js +0 -12
  1421. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/fixtures/cosmic.js +0 -84
  1422. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/additionalItems.json +0 -82
  1423. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/additionalProperties.json +0 -88
  1424. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/allOf.json +0 -112
  1425. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/anyOf.json +0 -68
  1426. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/bignum.json +0 -107
  1427. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/default.json +0 -49
  1428. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/definitions.json +0 -32
  1429. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/dependencies.json +0 -113
  1430. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/enum.json +0 -72
  1431. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/format.json +0 -143
  1432. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/items.json +0 -46
  1433. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/maxItems.json +0 -28
  1434. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/maxLength.json +0 -28
  1435. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/maxProperties.json +0 -28
  1436. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/maximum.json +0 -42
  1437. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/minItems.json +0 -28
  1438. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/minLength.json +0 -28
  1439. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/minProperties.json +0 -28
  1440. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/minimum.json +0 -42
  1441. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/multipleOf.json +0 -96
  1442. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/not.json +0 -96
  1443. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/nullAndFormat.json +0 -18
  1444. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/nullAndObject.json +0 -18
  1445. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/oneOf.json +0 -68
  1446. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/pattern.json +0 -23
  1447. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/patternProperties.json +0 -110
  1448. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/properties.json +0 -92
  1449. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/ref.json +0 -128
  1450. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/refRemote.json +0 -74
  1451. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/required.json +0 -39
  1452. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/type.json +0 -330
  1453. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema-draft4/uniqueItems.json +0 -79
  1454. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/json-schema.js +0 -23
  1455. package/http/node_modules/bower/lib/node_modules/is-my-json-valid/test/misc.js +0 -471
  1456. package/http/node_modules/bower/lib/node_modules/is-npm/index.js +0 -4
  1457. package/http/node_modules/bower/lib/node_modules/is-npm/package.json +0 -32
  1458. package/http/node_modules/bower/lib/node_modules/is-npm/readme.md +0 -30
  1459. package/http/node_modules/bower/lib/node_modules/is-obj/index.js +0 -5
  1460. package/http/node_modules/bower/lib/node_modules/is-obj/license +0 -21
  1461. package/http/node_modules/bower/lib/node_modules/is-obj/package.json +0 -33
  1462. package/http/node_modules/bower/lib/node_modules/is-obj/readme.md +0 -34
  1463. package/http/node_modules/bower/lib/node_modules/is-plain-obj/index.js +0 -7
  1464. package/http/node_modules/bower/lib/node_modules/is-plain-obj/license +0 -21
  1465. package/http/node_modules/bower/lib/node_modules/is-plain-obj/package.json +0 -36
  1466. package/http/node_modules/bower/lib/node_modules/is-plain-obj/readme.md +0 -35
  1467. package/http/node_modules/bower/lib/node_modules/is-property/.npmignore +0 -17
  1468. package/http/node_modules/bower/lib/node_modules/is-property/LICENSE +0 -22
  1469. package/http/node_modules/bower/lib/node_modules/is-property/README.md +0 -28
  1470. package/http/node_modules/bower/lib/node_modules/is-property/is-property.js +0 -5
  1471. package/http/node_modules/bower/lib/node_modules/is-property/package.json +0 -36
  1472. package/http/node_modules/bower/lib/node_modules/is-redirect/index.js +0 -14
  1473. package/http/node_modules/bower/lib/node_modules/is-redirect/license +0 -21
  1474. package/http/node_modules/bower/lib/node_modules/is-redirect/package.json +0 -35
  1475. package/http/node_modules/bower/lib/node_modules/is-redirect/readme.md +0 -28
  1476. package/http/node_modules/bower/lib/node_modules/is-retry-allowed/index.js +0 -60
  1477. package/http/node_modules/bower/lib/node_modules/is-retry-allowed/license +0 -21
  1478. package/http/node_modules/bower/lib/node_modules/is-retry-allowed/package.json +0 -29
  1479. package/http/node_modules/bower/lib/node_modules/is-retry-allowed/readme.md +0 -42
  1480. package/http/node_modules/bower/lib/node_modules/is-root/index.js +0 -4
  1481. package/http/node_modules/bower/lib/node_modules/is-root/package.json +0 -33
  1482. package/http/node_modules/bower/lib/node_modules/is-root/readme.md +0 -30
  1483. package/http/node_modules/bower/lib/node_modules/is-stream/index.js +0 -21
  1484. package/http/node_modules/bower/lib/node_modules/is-stream/license +0 -21
  1485. package/http/node_modules/bower/lib/node_modules/is-stream/package.json +0 -38
  1486. package/http/node_modules/bower/lib/node_modules/is-stream/readme.md +0 -42
  1487. package/http/node_modules/bower/lib/node_modules/is-typedarray/LICENSE.md +0 -18
  1488. package/http/node_modules/bower/lib/node_modules/is-typedarray/README.md +0 -16
  1489. package/http/node_modules/bower/lib/node_modules/is-typedarray/index.js +0 -41
  1490. package/http/node_modules/bower/lib/node_modules/is-typedarray/package.json +0 -30
  1491. package/http/node_modules/bower/lib/node_modules/is-typedarray/test.js +0 -34
  1492. package/http/node_modules/bower/lib/node_modules/is-utf8/LICENSE +0 -9
  1493. package/http/node_modules/bower/lib/node_modules/is-utf8/README.md +0 -16
  1494. package/http/node_modules/bower/lib/node_modules/is-utf8/is-utf8.js +0 -76
  1495. package/http/node_modules/bower/lib/node_modules/is-utf8/package.json +0 -19
  1496. package/http/node_modules/bower/lib/node_modules/isarray/.npmignore +0 -1
  1497. package/http/node_modules/bower/lib/node_modules/isarray/.travis.yml +0 -4
  1498. package/http/node_modules/bower/lib/node_modules/isarray/Makefile +0 -6
  1499. package/http/node_modules/bower/lib/node_modules/isarray/README.md +0 -60
  1500. package/http/node_modules/bower/lib/node_modules/isarray/component.json +0 -19
  1501. package/http/node_modules/bower/lib/node_modules/isarray/index.js +0 -5
  1502. package/http/node_modules/bower/lib/node_modules/isarray/package.json +0 -45
  1503. package/http/node_modules/bower/lib/node_modules/isarray/test.js +0 -20
  1504. package/http/node_modules/bower/lib/node_modules/isexe/.npmignore +0 -2
  1505. package/http/node_modules/bower/lib/node_modules/isexe/LICENSE +0 -15
  1506. package/http/node_modules/bower/lib/node_modules/isexe/README.md +0 -51
  1507. package/http/node_modules/bower/lib/node_modules/isexe/index.js +0 -57
  1508. package/http/node_modules/bower/lib/node_modules/isexe/mode.js +0 -41
  1509. package/http/node_modules/bower/lib/node_modules/isexe/package.json +0 -31
  1510. package/http/node_modules/bower/lib/node_modules/isexe/test/basic.js +0 -221
  1511. package/http/node_modules/bower/lib/node_modules/isexe/windows.js +0 -42
  1512. package/http/node_modules/bower/lib/node_modules/isstream/.jshintrc +0 -59
  1513. package/http/node_modules/bower/lib/node_modules/isstream/.npmignore +0 -1
  1514. package/http/node_modules/bower/lib/node_modules/isstream/.travis.yml +0 -12
  1515. package/http/node_modules/bower/lib/node_modules/isstream/LICENSE.md +0 -11
  1516. package/http/node_modules/bower/lib/node_modules/isstream/README.md +0 -66
  1517. package/http/node_modules/bower/lib/node_modules/isstream/isstream.js +0 -27
  1518. package/http/node_modules/bower/lib/node_modules/isstream/package.json +0 -33
  1519. package/http/node_modules/bower/lib/node_modules/isstream/test.js +0 -168
  1520. package/http/node_modules/bower/lib/node_modules/jsbn/.npmignore +0 -2
  1521. package/http/node_modules/bower/lib/node_modules/jsbn/LICENSE +0 -40
  1522. package/http/node_modules/bower/lib/node_modules/jsbn/README.md +0 -175
  1523. package/http/node_modules/bower/lib/node_modules/jsbn/example.html +0 -12
  1524. package/http/node_modules/bower/lib/node_modules/jsbn/example.js +0 -3
  1525. package/http/node_modules/bower/lib/node_modules/jsbn/index.js +0 -1357
  1526. package/http/node_modules/bower/lib/node_modules/jsbn/package.json +0 -21
  1527. package/http/node_modules/bower/lib/node_modules/json-schema/README.md +0 -5
  1528. package/http/node_modules/bower/lib/node_modules/json-schema/draft-00/hyper-schema +0 -68
  1529. package/http/node_modules/bower/lib/node_modules/json-schema/draft-00/json-ref +0 -26
  1530. package/http/node_modules/bower/lib/node_modules/json-schema/draft-00/links +0 -33
  1531. package/http/node_modules/bower/lib/node_modules/json-schema/draft-00/schema +0 -155
  1532. package/http/node_modules/bower/lib/node_modules/json-schema/draft-01/hyper-schema +0 -68
  1533. package/http/node_modules/bower/lib/node_modules/json-schema/draft-01/json-ref +0 -26
  1534. package/http/node_modules/bower/lib/node_modules/json-schema/draft-01/links +0 -33
  1535. package/http/node_modules/bower/lib/node_modules/json-schema/draft-01/schema +0 -155
  1536. package/http/node_modules/bower/lib/node_modules/json-schema/draft-02/hyper-schema +0 -68
  1537. package/http/node_modules/bower/lib/node_modules/json-schema/draft-02/json-ref +0 -26
  1538. package/http/node_modules/bower/lib/node_modules/json-schema/draft-02/links +0 -35
  1539. package/http/node_modules/bower/lib/node_modules/json-schema/draft-02/schema +0 -166
  1540. package/http/node_modules/bower/lib/node_modules/json-schema/draft-03/examples/address +0 -20
  1541. package/http/node_modules/bower/lib/node_modules/json-schema/draft-03/examples/calendar +0 -53
  1542. package/http/node_modules/bower/lib/node_modules/json-schema/draft-03/examples/card +0 -105
  1543. package/http/node_modules/bower/lib/node_modules/json-schema/draft-03/examples/geo +0 -8
  1544. package/http/node_modules/bower/lib/node_modules/json-schema/draft-03/examples/interfaces +0 -23
  1545. package/http/node_modules/bower/lib/node_modules/json-schema/draft-03/hyper-schema +0 -60
  1546. package/http/node_modules/bower/lib/node_modules/json-schema/draft-03/json-ref +0 -26
  1547. package/http/node_modules/bower/lib/node_modules/json-schema/draft-03/links +0 -35
  1548. package/http/node_modules/bower/lib/node_modules/json-schema/draft-03/schema +0 -174
  1549. package/http/node_modules/bower/lib/node_modules/json-schema/draft-04/hyper-schema +0 -60
  1550. package/http/node_modules/bower/lib/node_modules/json-schema/draft-04/links +0 -41
  1551. package/http/node_modules/bower/lib/node_modules/json-schema/draft-04/schema +0 -189
  1552. package/http/node_modules/bower/lib/node_modules/json-schema/draft-zyp-json-schema-03.xml +0 -1120
  1553. package/http/node_modules/bower/lib/node_modules/json-schema/draft-zyp-json-schema-04.xml +0 -1072
  1554. package/http/node_modules/bower/lib/node_modules/json-schema/lib/links.js +0 -66
  1555. package/http/node_modules/bower/lib/node_modules/json-schema/lib/validate.js +0 -273
  1556. package/http/node_modules/bower/lib/node_modules/json-schema/package.json +0 -31
  1557. package/http/node_modules/bower/lib/node_modules/json-schema/test/tests.js +0 -95
  1558. package/http/node_modules/bower/lib/node_modules/json-stable-stringify/.npmignore +0 -1
  1559. package/http/node_modules/bower/lib/node_modules/json-stable-stringify/.travis.yml +0 -4
  1560. package/http/node_modules/bower/lib/node_modules/json-stable-stringify/LICENSE +0 -18
  1561. package/http/node_modules/bower/lib/node_modules/json-stable-stringify/example/key_cmp.js +0 -7
  1562. package/http/node_modules/bower/lib/node_modules/json-stable-stringify/example/nested.js +0 -3
  1563. package/http/node_modules/bower/lib/node_modules/json-stable-stringify/example/str.js +0 -3
  1564. package/http/node_modules/bower/lib/node_modules/json-stable-stringify/example/value_cmp.js +0 -7
  1565. package/http/node_modules/bower/lib/node_modules/json-stable-stringify/index.js +0 -84
  1566. package/http/node_modules/bower/lib/node_modules/json-stable-stringify/package.json +0 -44
  1567. package/http/node_modules/bower/lib/node_modules/json-stable-stringify/readme.markdown +0 -130
  1568. package/http/node_modules/bower/lib/node_modules/json-stable-stringify/test/cmp.js +0 -11
  1569. package/http/node_modules/bower/lib/node_modules/json-stable-stringify/test/nested.js +0 -35
  1570. package/http/node_modules/bower/lib/node_modules/json-stable-stringify/test/replacer.js +0 -74
  1571. package/http/node_modules/bower/lib/node_modules/json-stable-stringify/test/space.js +0 -59
  1572. package/http/node_modules/bower/lib/node_modules/json-stable-stringify/test/str.js +0 -32
  1573. package/http/node_modules/bower/lib/node_modules/json-stable-stringify/test/to-json.js +0 -20
  1574. package/http/node_modules/bower/lib/node_modules/json-stringify-safe/.npmignore +0 -1
  1575. package/http/node_modules/bower/lib/node_modules/json-stringify-safe/CHANGELOG.md +0 -14
  1576. package/http/node_modules/bower/lib/node_modules/json-stringify-safe/LICENSE +0 -15
  1577. package/http/node_modules/bower/lib/node_modules/json-stringify-safe/Makefile +0 -35
  1578. package/http/node_modules/bower/lib/node_modules/json-stringify-safe/README.md +0 -52
  1579. package/http/node_modules/bower/lib/node_modules/json-stringify-safe/package.json +0 -31
  1580. package/http/node_modules/bower/lib/node_modules/json-stringify-safe/stringify.js +0 -27
  1581. package/http/node_modules/bower/lib/node_modules/json-stringify-safe/test/mocha.opts +0 -2
  1582. package/http/node_modules/bower/lib/node_modules/json-stringify-safe/test/stringify_test.js +0 -246
  1583. package/http/node_modules/bower/lib/node_modules/jsonify/README.markdown +0 -34
  1584. package/http/node_modules/bower/lib/node_modules/jsonify/index.js +0 -2
  1585. package/http/node_modules/bower/lib/node_modules/jsonify/lib/parse.js +0 -273
  1586. package/http/node_modules/bower/lib/node_modules/jsonify/lib/stringify.js +0 -154
  1587. package/http/node_modules/bower/lib/node_modules/jsonify/package.json +0 -30
  1588. package/http/node_modules/bower/lib/node_modules/jsonify/test/parse.js +0 -16
  1589. package/http/node_modules/bower/lib/node_modules/jsonify/test/stringify.js +0 -15
  1590. package/http/node_modules/bower/lib/node_modules/jsonpointer/LICENSE.md +0 -21
  1591. package/http/node_modules/bower/lib/node_modules/jsonpointer/README.md +0 -39
  1592. package/http/node_modules/bower/lib/node_modules/jsonpointer/jsonpointer.js +0 -93
  1593. package/http/node_modules/bower/lib/node_modules/jsonpointer/package.json +0 -37
  1594. package/http/node_modules/bower/lib/node_modules/jsprim/CHANGES.md +0 -49
  1595. package/http/node_modules/bower/lib/node_modules/jsprim/CONTRIBUTING.md +0 -19
  1596. package/http/node_modules/bower/lib/node_modules/jsprim/LICENSE +0 -19
  1597. package/http/node_modules/bower/lib/node_modules/jsprim/README.md +0 -287
  1598. package/http/node_modules/bower/lib/node_modules/jsprim/lib/jsprim.js +0 -735
  1599. package/http/node_modules/bower/lib/node_modules/jsprim/package.json +0 -20
  1600. package/http/node_modules/bower/lib/node_modules/junk/index.js +0 -30
  1601. package/http/node_modules/bower/lib/node_modules/junk/license +0 -21
  1602. package/http/node_modules/bower/lib/node_modules/junk/package.json +0 -37
  1603. package/http/node_modules/bower/lib/node_modules/junk/readme.md +0 -46
  1604. package/http/node_modules/bower/lib/node_modules/kind-of/LICENSE +0 -21
  1605. package/http/node_modules/bower/lib/node_modules/kind-of/README.md +0 -261
  1606. package/http/node_modules/bower/lib/node_modules/kind-of/index.js +0 -116
  1607. package/http/node_modules/bower/lib/node_modules/kind-of/package.json +0 -90
  1608. package/http/node_modules/bower/lib/node_modules/latest-version/index.js +0 -8
  1609. package/http/node_modules/bower/lib/node_modules/latest-version/license +0 -21
  1610. package/http/node_modules/bower/lib/node_modules/latest-version/package.json +0 -43
  1611. package/http/node_modules/bower/lib/node_modules/latest-version/readme.md +0 -40
  1612. package/http/node_modules/bower/lib/node_modules/lazy-cache/LICENSE +0 -21
  1613. package/http/node_modules/bower/lib/node_modules/lazy-cache/README.md +0 -147
  1614. package/http/node_modules/bower/lib/node_modules/lazy-cache/index.js +0 -67
  1615. package/http/node_modules/bower/lib/node_modules/lazy-cache/package.json +0 -58
  1616. package/http/node_modules/bower/lib/node_modules/load-json-file/index.js +0 -21
  1617. package/http/node_modules/bower/lib/node_modules/load-json-file/license +0 -21
  1618. package/http/node_modules/bower/lib/node_modules/load-json-file/package.json +0 -46
  1619. package/http/node_modules/bower/lib/node_modules/load-json-file/readme.md +0 -45
  1620. package/http/node_modules/bower/lib/node_modules/lockfile/.npmignore +0 -3
  1621. package/http/node_modules/bower/lib/node_modules/lockfile/.travis.yml +0 -8
  1622. package/http/node_modules/bower/lib/node_modules/lockfile/CHANGELOG.md +0 -101
  1623. package/http/node_modules/bower/lib/node_modules/lockfile/LICENSE +0 -15
  1624. package/http/node_modules/bower/lib/node_modules/lockfile/README.md +0 -86
  1625. package/http/node_modules/bower/lib/node_modules/lockfile/gen-changelog.sh +0 -9
  1626. package/http/node_modules/bower/lib/node_modules/lockfile/lockfile.js +0 -311
  1627. package/http/node_modules/bower/lib/node_modules/lockfile/package.json +0 -32
  1628. package/http/node_modules/bower/lib/node_modules/lockfile/test/basic.js +0 -292
  1629. package/http/node_modules/bower/lib/node_modules/lockfile/test/fixtures/bad-child.js +0 -5
  1630. package/http/node_modules/bower/lib/node_modules/lockfile/test/fixtures/child.js +0 -3
  1631. package/http/node_modules/bower/lib/node_modules/lockfile/test/retry-time.js +0 -68
  1632. package/http/node_modules/bower/lib/node_modules/lockfile/test/stale-contention.js +0 -85
  1633. package/http/node_modules/bower/lib/node_modules/lockfile/test/unlock-no-cb.js +0 -10
  1634. package/http/node_modules/bower/lib/node_modules/lodash/LICENSE +0 -47
  1635. package/http/node_modules/bower/lib/node_modules/lodash/README.md +0 -39
  1636. package/http/node_modules/bower/lib/node_modules/lodash/_DataView.js +0 -7
  1637. package/http/node_modules/bower/lib/node_modules/lodash/_Hash.js +0 -32
  1638. package/http/node_modules/bower/lib/node_modules/lodash/_LazyWrapper.js +0 -28
  1639. package/http/node_modules/bower/lib/node_modules/lodash/_ListCache.js +0 -32
  1640. package/http/node_modules/bower/lib/node_modules/lodash/_LodashWrapper.js +0 -22
  1641. package/http/node_modules/bower/lib/node_modules/lodash/_Map.js +0 -7
  1642. package/http/node_modules/bower/lib/node_modules/lodash/_MapCache.js +0 -32
  1643. package/http/node_modules/bower/lib/node_modules/lodash/_Promise.js +0 -7
  1644. package/http/node_modules/bower/lib/node_modules/lodash/_Set.js +0 -7
  1645. package/http/node_modules/bower/lib/node_modules/lodash/_SetCache.js +0 -27
  1646. package/http/node_modules/bower/lib/node_modules/lodash/_Stack.js +0 -27
  1647. package/http/node_modules/bower/lib/node_modules/lodash/_Symbol.js +0 -6
  1648. package/http/node_modules/bower/lib/node_modules/lodash/_Uint8Array.js +0 -6
  1649. package/http/node_modules/bower/lib/node_modules/lodash/_WeakMap.js +0 -7
  1650. package/http/node_modules/bower/lib/node_modules/lodash/_addMapEntry.js +0 -15
  1651. package/http/node_modules/bower/lib/node_modules/lodash/_addSetEntry.js +0 -15
  1652. package/http/node_modules/bower/lib/node_modules/lodash/_apply.js +0 -21
  1653. package/http/node_modules/bower/lib/node_modules/lodash/_arrayAggregator.js +0 -22
  1654. package/http/node_modules/bower/lib/node_modules/lodash/_arrayEach.js +0 -22
  1655. package/http/node_modules/bower/lib/node_modules/lodash/_arrayEachRight.js +0 -21
  1656. package/http/node_modules/bower/lib/node_modules/lodash/_arrayEvery.js +0 -23
  1657. package/http/node_modules/bower/lib/node_modules/lodash/_arrayFilter.js +0 -25
  1658. package/http/node_modules/bower/lib/node_modules/lodash/_arrayIncludes.js +0 -17
  1659. package/http/node_modules/bower/lib/node_modules/lodash/_arrayIncludesWith.js +0 -22
  1660. package/http/node_modules/bower/lib/node_modules/lodash/_arrayLikeKeys.js +0 -49
  1661. package/http/node_modules/bower/lib/node_modules/lodash/_arrayMap.js +0 -21
  1662. package/http/node_modules/bower/lib/node_modules/lodash/_arrayPush.js +0 -20
  1663. package/http/node_modules/bower/lib/node_modules/lodash/_arrayReduce.js +0 -26
  1664. package/http/node_modules/bower/lib/node_modules/lodash/_arrayReduceRight.js +0 -24
  1665. package/http/node_modules/bower/lib/node_modules/lodash/_arraySample.js +0 -15
  1666. package/http/node_modules/bower/lib/node_modules/lodash/_arraySampleSize.js +0 -17
  1667. package/http/node_modules/bower/lib/node_modules/lodash/_arrayShuffle.js +0 -15
  1668. package/http/node_modules/bower/lib/node_modules/lodash/_arraySome.js +0 -23
  1669. package/http/node_modules/bower/lib/node_modules/lodash/_asciiSize.js +0 -12
  1670. package/http/node_modules/bower/lib/node_modules/lodash/_asciiToArray.js +0 -12
  1671. package/http/node_modules/bower/lib/node_modules/lodash/_asciiWords.js +0 -15
  1672. package/http/node_modules/bower/lib/node_modules/lodash/_assignMergeValue.js +0 -20
  1673. package/http/node_modules/bower/lib/node_modules/lodash/_assignValue.js +0 -28
  1674. package/http/node_modules/bower/lib/node_modules/lodash/_assocIndexOf.js +0 -21
  1675. package/http/node_modules/bower/lib/node_modules/lodash/_baseAggregator.js +0 -21
  1676. package/http/node_modules/bower/lib/node_modules/lodash/_baseAssign.js +0 -17
  1677. package/http/node_modules/bower/lib/node_modules/lodash/_baseAssignIn.js +0 -17
  1678. package/http/node_modules/bower/lib/node_modules/lodash/_baseAssignValue.js +0 -25
  1679. package/http/node_modules/bower/lib/node_modules/lodash/_baseAt.js +0 -23
  1680. package/http/node_modules/bower/lib/node_modules/lodash/_baseClamp.js +0 -22
  1681. package/http/node_modules/bower/lib/node_modules/lodash/_baseClone.js +0 -153
  1682. package/http/node_modules/bower/lib/node_modules/lodash/_baseConforms.js +0 -18
  1683. package/http/node_modules/bower/lib/node_modules/lodash/_baseConformsTo.js +0 -27
  1684. package/http/node_modules/bower/lib/node_modules/lodash/_baseCreate.js +0 -30
  1685. package/http/node_modules/bower/lib/node_modules/lodash/_baseDelay.js +0 -21
  1686. package/http/node_modules/bower/lib/node_modules/lodash/_baseDifference.js +0 -67
  1687. package/http/node_modules/bower/lib/node_modules/lodash/_baseEach.js +0 -14
  1688. package/http/node_modules/bower/lib/node_modules/lodash/_baseEachRight.js +0 -14
  1689. package/http/node_modules/bower/lib/node_modules/lodash/_baseEvery.js +0 -21
  1690. package/http/node_modules/bower/lib/node_modules/lodash/_baseExtremum.js +0 -32
  1691. package/http/node_modules/bower/lib/node_modules/lodash/_baseFill.js +0 -32
  1692. package/http/node_modules/bower/lib/node_modules/lodash/_baseFilter.js +0 -21
  1693. package/http/node_modules/bower/lib/node_modules/lodash/_baseFindIndex.js +0 -24
  1694. package/http/node_modules/bower/lib/node_modules/lodash/_baseFindKey.js +0 -23
  1695. package/http/node_modules/bower/lib/node_modules/lodash/_baseFlatten.js +0 -38
  1696. package/http/node_modules/bower/lib/node_modules/lodash/_baseFor.js +0 -16
  1697. package/http/node_modules/bower/lib/node_modules/lodash/_baseForOwn.js +0 -16
  1698. package/http/node_modules/bower/lib/node_modules/lodash/_baseForOwnRight.js +0 -16
  1699. package/http/node_modules/bower/lib/node_modules/lodash/_baseForRight.js +0 -15
  1700. package/http/node_modules/bower/lib/node_modules/lodash/_baseFunctions.js +0 -19
  1701. package/http/node_modules/bower/lib/node_modules/lodash/_baseGet.js +0 -24
  1702. package/http/node_modules/bower/lib/node_modules/lodash/_baseGetAllKeys.js +0 -20
  1703. package/http/node_modules/bower/lib/node_modules/lodash/_baseGetTag.js +0 -28
  1704. package/http/node_modules/bower/lib/node_modules/lodash/_baseGt.js +0 -14
  1705. package/http/node_modules/bower/lib/node_modules/lodash/_baseHas.js +0 -19
  1706. package/http/node_modules/bower/lib/node_modules/lodash/_baseHasIn.js +0 -13
  1707. package/http/node_modules/bower/lib/node_modules/lodash/_baseInRange.js +0 -18
  1708. package/http/node_modules/bower/lib/node_modules/lodash/_baseIndexOf.js +0 -20
  1709. package/http/node_modules/bower/lib/node_modules/lodash/_baseIndexOfWith.js +0 -23
  1710. package/http/node_modules/bower/lib/node_modules/lodash/_baseIntersection.js +0 -74
  1711. package/http/node_modules/bower/lib/node_modules/lodash/_baseInverter.js +0 -21
  1712. package/http/node_modules/bower/lib/node_modules/lodash/_baseInvoke.js +0 -24
  1713. package/http/node_modules/bower/lib/node_modules/lodash/_baseIsArguments.js +0 -18
  1714. package/http/node_modules/bower/lib/node_modules/lodash/_baseIsArrayBuffer.js +0 -17
  1715. package/http/node_modules/bower/lib/node_modules/lodash/_baseIsDate.js +0 -18
  1716. package/http/node_modules/bower/lib/node_modules/lodash/_baseIsEqual.js +0 -28
  1717. package/http/node_modules/bower/lib/node_modules/lodash/_baseIsEqualDeep.js +0 -83
  1718. package/http/node_modules/bower/lib/node_modules/lodash/_baseIsMap.js +0 -18
  1719. package/http/node_modules/bower/lib/node_modules/lodash/_baseIsMatch.js +0 -62
  1720. package/http/node_modules/bower/lib/node_modules/lodash/_baseIsNaN.js +0 -12
  1721. package/http/node_modules/bower/lib/node_modules/lodash/_baseIsNative.js +0 -47
  1722. package/http/node_modules/bower/lib/node_modules/lodash/_baseIsRegExp.js +0 -18
  1723. package/http/node_modules/bower/lib/node_modules/lodash/_baseIsSet.js +0 -18
  1724. package/http/node_modules/bower/lib/node_modules/lodash/_baseIsTypedArray.js +0 -60
  1725. package/http/node_modules/bower/lib/node_modules/lodash/_baseIteratee.js +0 -31
  1726. package/http/node_modules/bower/lib/node_modules/lodash/_baseKeys.js +0 -30
  1727. package/http/node_modules/bower/lib/node_modules/lodash/_baseKeysIn.js +0 -33
  1728. package/http/node_modules/bower/lib/node_modules/lodash/_baseLodash.js +0 -10
  1729. package/http/node_modules/bower/lib/node_modules/lodash/_baseLt.js +0 -14
  1730. package/http/node_modules/bower/lib/node_modules/lodash/_baseMap.js +0 -22
  1731. package/http/node_modules/bower/lib/node_modules/lodash/_baseMatches.js +0 -22
  1732. package/http/node_modules/bower/lib/node_modules/lodash/_baseMatchesProperty.js +0 -33
  1733. package/http/node_modules/bower/lib/node_modules/lodash/_baseMean.js +0 -20
  1734. package/http/node_modules/bower/lib/node_modules/lodash/_baseMerge.js +0 -41
  1735. package/http/node_modules/bower/lib/node_modules/lodash/_baseMergeDeep.js +0 -93
  1736. package/http/node_modules/bower/lib/node_modules/lodash/_baseNth.js +0 -20
  1737. package/http/node_modules/bower/lib/node_modules/lodash/_baseOrderBy.js +0 -34
  1738. package/http/node_modules/bower/lib/node_modules/lodash/_basePick.js +0 -19
  1739. package/http/node_modules/bower/lib/node_modules/lodash/_basePickBy.js +0 -30
  1740. package/http/node_modules/bower/lib/node_modules/lodash/_baseProperty.js +0 -14
  1741. package/http/node_modules/bower/lib/node_modules/lodash/_basePropertyDeep.js +0 -16
  1742. package/http/node_modules/bower/lib/node_modules/lodash/_basePropertyOf.js +0 -14
  1743. package/http/node_modules/bower/lib/node_modules/lodash/_basePullAll.js +0 -51
  1744. package/http/node_modules/bower/lib/node_modules/lodash/_basePullAt.js +0 -37
  1745. package/http/node_modules/bower/lib/node_modules/lodash/_baseRandom.js +0 -18
  1746. package/http/node_modules/bower/lib/node_modules/lodash/_baseRange.js +0 -28
  1747. package/http/node_modules/bower/lib/node_modules/lodash/_baseReduce.js +0 -23
  1748. package/http/node_modules/bower/lib/node_modules/lodash/_baseRepeat.js +0 -35
  1749. package/http/node_modules/bower/lib/node_modules/lodash/_baseRest.js +0 -17
  1750. package/http/node_modules/bower/lib/node_modules/lodash/_baseSample.js +0 -15
  1751. package/http/node_modules/bower/lib/node_modules/lodash/_baseSampleSize.js +0 -18
  1752. package/http/node_modules/bower/lib/node_modules/lodash/_baseSet.js +0 -47
  1753. package/http/node_modules/bower/lib/node_modules/lodash/_baseSetData.js +0 -17
  1754. package/http/node_modules/bower/lib/node_modules/lodash/_baseSetToString.js +0 -22
  1755. package/http/node_modules/bower/lib/node_modules/lodash/_baseShuffle.js +0 -15
  1756. package/http/node_modules/bower/lib/node_modules/lodash/_baseSlice.js +0 -31
  1757. package/http/node_modules/bower/lib/node_modules/lodash/_baseSome.js +0 -22
  1758. package/http/node_modules/bower/lib/node_modules/lodash/_baseSortBy.js +0 -21
  1759. package/http/node_modules/bower/lib/node_modules/lodash/_baseSortedIndex.js +0 -42
  1760. package/http/node_modules/bower/lib/node_modules/lodash/_baseSortedIndexBy.js +0 -64
  1761. package/http/node_modules/bower/lib/node_modules/lodash/_baseSortedUniq.js +0 -30
  1762. package/http/node_modules/bower/lib/node_modules/lodash/_baseSum.js +0 -24
  1763. package/http/node_modules/bower/lib/node_modules/lodash/_baseTimes.js +0 -20
  1764. package/http/node_modules/bower/lib/node_modules/lodash/_baseToNumber.js +0 -24
  1765. package/http/node_modules/bower/lib/node_modules/lodash/_baseToPairs.js +0 -18
  1766. package/http/node_modules/bower/lib/node_modules/lodash/_baseToString.js +0 -37
  1767. package/http/node_modules/bower/lib/node_modules/lodash/_baseUnary.js +0 -14
  1768. package/http/node_modules/bower/lib/node_modules/lodash/_baseUniq.js +0 -72
  1769. package/http/node_modules/bower/lib/node_modules/lodash/_baseUnset.js +0 -20
  1770. package/http/node_modules/bower/lib/node_modules/lodash/_baseUpdate.js +0 -18
  1771. package/http/node_modules/bower/lib/node_modules/lodash/_baseValues.js +0 -19
  1772. package/http/node_modules/bower/lib/node_modules/lodash/_baseWhile.js +0 -26
  1773. package/http/node_modules/bower/lib/node_modules/lodash/_baseWrapperValue.js +0 -25
  1774. package/http/node_modules/bower/lib/node_modules/lodash/_baseXor.js +0 -36
  1775. package/http/node_modules/bower/lib/node_modules/lodash/_baseZipObject.js +0 -23
  1776. package/http/node_modules/bower/lib/node_modules/lodash/_cacheHas.js +0 -13
  1777. package/http/node_modules/bower/lib/node_modules/lodash/_castArrayLikeObject.js +0 -14
  1778. package/http/node_modules/bower/lib/node_modules/lodash/_castFunction.js +0 -14
  1779. package/http/node_modules/bower/lib/node_modules/lodash/_castPath.js +0 -21
  1780. package/http/node_modules/bower/lib/node_modules/lodash/_castRest.js +0 -14
  1781. package/http/node_modules/bower/lib/node_modules/lodash/_castSlice.js +0 -18
  1782. package/http/node_modules/bower/lib/node_modules/lodash/_charsEndIndex.js +0 -19
  1783. package/http/node_modules/bower/lib/node_modules/lodash/_charsStartIndex.js +0 -20
  1784. package/http/node_modules/bower/lib/node_modules/lodash/_cloneArrayBuffer.js +0 -16
  1785. package/http/node_modules/bower/lib/node_modules/lodash/_cloneBuffer.js +0 -35
  1786. package/http/node_modules/bower/lib/node_modules/lodash/_cloneDataView.js +0 -16
  1787. package/http/node_modules/bower/lib/node_modules/lodash/_cloneMap.js +0 -22
  1788. package/http/node_modules/bower/lib/node_modules/lodash/_cloneRegExp.js +0 -17
  1789. package/http/node_modules/bower/lib/node_modules/lodash/_cloneSet.js +0 -22
  1790. package/http/node_modules/bower/lib/node_modules/lodash/_cloneSymbol.js +0 -18
  1791. package/http/node_modules/bower/lib/node_modules/lodash/_cloneTypedArray.js +0 -16
  1792. package/http/node_modules/bower/lib/node_modules/lodash/_compareAscending.js +0 -41
  1793. package/http/node_modules/bower/lib/node_modules/lodash/_compareMultiple.js +0 -44
  1794. package/http/node_modules/bower/lib/node_modules/lodash/_composeArgs.js +0 -39
  1795. package/http/node_modules/bower/lib/node_modules/lodash/_composeArgsRight.js +0 -41
  1796. package/http/node_modules/bower/lib/node_modules/lodash/_copyArray.js +0 -20
  1797. package/http/node_modules/bower/lib/node_modules/lodash/_copyObject.js +0 -40
  1798. package/http/node_modules/bower/lib/node_modules/lodash/_copySymbols.js +0 -16
  1799. package/http/node_modules/bower/lib/node_modules/lodash/_copySymbolsIn.js +0 -16
  1800. package/http/node_modules/bower/lib/node_modules/lodash/_coreJsData.js +0 -6
  1801. package/http/node_modules/bower/lib/node_modules/lodash/_countHolders.js +0 -21
  1802. package/http/node_modules/bower/lib/node_modules/lodash/_createAggregator.js +0 -23
  1803. package/http/node_modules/bower/lib/node_modules/lodash/_createAssigner.js +0 -37
  1804. package/http/node_modules/bower/lib/node_modules/lodash/_createBaseEach.js +0 -32
  1805. package/http/node_modules/bower/lib/node_modules/lodash/_createBaseFor.js +0 -25
  1806. package/http/node_modules/bower/lib/node_modules/lodash/_createBind.js +0 -28
  1807. package/http/node_modules/bower/lib/node_modules/lodash/_createCaseFirst.js +0 -33
  1808. package/http/node_modules/bower/lib/node_modules/lodash/_createCompounder.js +0 -24
  1809. package/http/node_modules/bower/lib/node_modules/lodash/_createCtor.js +0 -37
  1810. package/http/node_modules/bower/lib/node_modules/lodash/_createCurry.js +0 -46
  1811. package/http/node_modules/bower/lib/node_modules/lodash/_createFind.js +0 -25
  1812. package/http/node_modules/bower/lib/node_modules/lodash/_createFlow.js +0 -78
  1813. package/http/node_modules/bower/lib/node_modules/lodash/_createHybrid.js +0 -92
  1814. package/http/node_modules/bower/lib/node_modules/lodash/_createInverter.js +0 -17
  1815. package/http/node_modules/bower/lib/node_modules/lodash/_createMathOperation.js +0 -38
  1816. package/http/node_modules/bower/lib/node_modules/lodash/_createOver.js +0 -27
  1817. package/http/node_modules/bower/lib/node_modules/lodash/_createPadding.js +0 -33
  1818. package/http/node_modules/bower/lib/node_modules/lodash/_createPartial.js +0 -43
  1819. package/http/node_modules/bower/lib/node_modules/lodash/_createRange.js +0 -30
  1820. package/http/node_modules/bower/lib/node_modules/lodash/_createRecurry.js +0 -56
  1821. package/http/node_modules/bower/lib/node_modules/lodash/_createRelationalOperation.js +0 -20
  1822. package/http/node_modules/bower/lib/node_modules/lodash/_createRound.js +0 -33
  1823. package/http/node_modules/bower/lib/node_modules/lodash/_createSet.js +0 -19
  1824. package/http/node_modules/bower/lib/node_modules/lodash/_createToPairs.js +0 -30
  1825. package/http/node_modules/bower/lib/node_modules/lodash/_createWrap.js +0 -106
  1826. package/http/node_modules/bower/lib/node_modules/lodash/_customDefaultsAssignIn.js +0 -29
  1827. package/http/node_modules/bower/lib/node_modules/lodash/_customDefaultsMerge.js +0 -28
  1828. package/http/node_modules/bower/lib/node_modules/lodash/_customOmitClone.js +0 -16
  1829. package/http/node_modules/bower/lib/node_modules/lodash/_deburrLetter.js +0 -71
  1830. package/http/node_modules/bower/lib/node_modules/lodash/_defineProperty.js +0 -11
  1831. package/http/node_modules/bower/lib/node_modules/lodash/_equalArrays.js +0 -83
  1832. package/http/node_modules/bower/lib/node_modules/lodash/_equalByTag.js +0 -112
  1833. package/http/node_modules/bower/lib/node_modules/lodash/_equalObjects.js +0 -89
  1834. package/http/node_modules/bower/lib/node_modules/lodash/_escapeHtmlChar.js +0 -21
  1835. package/http/node_modules/bower/lib/node_modules/lodash/_escapeStringChar.js +0 -22
  1836. package/http/node_modules/bower/lib/node_modules/lodash/_flatRest.js +0 -16
  1837. package/http/node_modules/bower/lib/node_modules/lodash/_freeGlobal.js +0 -4
  1838. package/http/node_modules/bower/lib/node_modules/lodash/_getAllKeys.js +0 -16
  1839. package/http/node_modules/bower/lib/node_modules/lodash/_getAllKeysIn.js +0 -17
  1840. package/http/node_modules/bower/lib/node_modules/lodash/_getData.js +0 -15
  1841. package/http/node_modules/bower/lib/node_modules/lodash/_getFuncName.js +0 -31
  1842. package/http/node_modules/bower/lib/node_modules/lodash/_getHolder.js +0 -13
  1843. package/http/node_modules/bower/lib/node_modules/lodash/_getMapData.js +0 -18
  1844. package/http/node_modules/bower/lib/node_modules/lodash/_getMatchData.js +0 -24
  1845. package/http/node_modules/bower/lib/node_modules/lodash/_getNative.js +0 -17
  1846. package/http/node_modules/bower/lib/node_modules/lodash/_getPrototype.js +0 -6
  1847. package/http/node_modules/bower/lib/node_modules/lodash/_getRawTag.js +0 -46
  1848. package/http/node_modules/bower/lib/node_modules/lodash/_getSymbols.js +0 -30
  1849. package/http/node_modules/bower/lib/node_modules/lodash/_getSymbolsIn.js +0 -25
  1850. package/http/node_modules/bower/lib/node_modules/lodash/_getTag.js +0 -58
  1851. package/http/node_modules/bower/lib/node_modules/lodash/_getValue.js +0 -13
  1852. package/http/node_modules/bower/lib/node_modules/lodash/_getView.js +0 -33
  1853. package/http/node_modules/bower/lib/node_modules/lodash/_getWrapDetails.js +0 -17
  1854. package/http/node_modules/bower/lib/node_modules/lodash/_hasPath.js +0 -39
  1855. package/http/node_modules/bower/lib/node_modules/lodash/_hasUnicode.js +0 -26
  1856. package/http/node_modules/bower/lib/node_modules/lodash/_hasUnicodeWord.js +0 -15
  1857. package/http/node_modules/bower/lib/node_modules/lodash/_hashClear.js +0 -15
  1858. package/http/node_modules/bower/lib/node_modules/lodash/_hashDelete.js +0 -17
  1859. package/http/node_modules/bower/lib/node_modules/lodash/_hashGet.js +0 -30
  1860. package/http/node_modules/bower/lib/node_modules/lodash/_hashHas.js +0 -23
  1861. package/http/node_modules/bower/lib/node_modules/lodash/_hashSet.js +0 -23
  1862. package/http/node_modules/bower/lib/node_modules/lodash/_initCloneArray.js +0 -26
  1863. package/http/node_modules/bower/lib/node_modules/lodash/_initCloneByTag.js +0 -80
  1864. package/http/node_modules/bower/lib/node_modules/lodash/_initCloneObject.js +0 -18
  1865. package/http/node_modules/bower/lib/node_modules/lodash/_insertWrapDetails.js +0 -23
  1866. package/http/node_modules/bower/lib/node_modules/lodash/_isFlattenable.js +0 -20
  1867. package/http/node_modules/bower/lib/node_modules/lodash/_isIndex.js +0 -22
  1868. package/http/node_modules/bower/lib/node_modules/lodash/_isIterateeCall.js +0 -30
  1869. package/http/node_modules/bower/lib/node_modules/lodash/_isKey.js +0 -29
  1870. package/http/node_modules/bower/lib/node_modules/lodash/_isKeyable.js +0 -15
  1871. package/http/node_modules/bower/lib/node_modules/lodash/_isLaziable.js +0 -28
  1872. package/http/node_modules/bower/lib/node_modules/lodash/_isMaskable.js +0 -14
  1873. package/http/node_modules/bower/lib/node_modules/lodash/_isMasked.js +0 -20
  1874. package/http/node_modules/bower/lib/node_modules/lodash/_isPrototype.js +0 -18
  1875. package/http/node_modules/bower/lib/node_modules/lodash/_isStrictComparable.js +0 -15
  1876. package/http/node_modules/bower/lib/node_modules/lodash/_iteratorToArray.js +0 -18
  1877. package/http/node_modules/bower/lib/node_modules/lodash/_lazyClone.js +0 -23
  1878. package/http/node_modules/bower/lib/node_modules/lodash/_lazyReverse.js +0 -23
  1879. package/http/node_modules/bower/lib/node_modules/lodash/_lazyValue.js +0 -69
  1880. package/http/node_modules/bower/lib/node_modules/lodash/_listCacheClear.js +0 -13
  1881. package/http/node_modules/bower/lib/node_modules/lodash/_listCacheDelete.js +0 -35
  1882. package/http/node_modules/bower/lib/node_modules/lodash/_listCacheGet.js +0 -19
  1883. package/http/node_modules/bower/lib/node_modules/lodash/_listCacheHas.js +0 -16
  1884. package/http/node_modules/bower/lib/node_modules/lodash/_listCacheSet.js +0 -26
  1885. package/http/node_modules/bower/lib/node_modules/lodash/_mapCacheClear.js +0 -21
  1886. package/http/node_modules/bower/lib/node_modules/lodash/_mapCacheDelete.js +0 -18
  1887. package/http/node_modules/bower/lib/node_modules/lodash/_mapCacheGet.js +0 -16
  1888. package/http/node_modules/bower/lib/node_modules/lodash/_mapCacheHas.js +0 -16
  1889. package/http/node_modules/bower/lib/node_modules/lodash/_mapCacheSet.js +0 -22
  1890. package/http/node_modules/bower/lib/node_modules/lodash/_mapToArray.js +0 -18
  1891. package/http/node_modules/bower/lib/node_modules/lodash/_matchesStrictComparable.js +0 -20
  1892. package/http/node_modules/bower/lib/node_modules/lodash/_memoizeCapped.js +0 -26
  1893. package/http/node_modules/bower/lib/node_modules/lodash/_mergeData.js +0 -90
  1894. package/http/node_modules/bower/lib/node_modules/lodash/_metaMap.js +0 -6
  1895. package/http/node_modules/bower/lib/node_modules/lodash/_nativeCreate.js +0 -6
  1896. package/http/node_modules/bower/lib/node_modules/lodash/_nativeKeys.js +0 -6
  1897. package/http/node_modules/bower/lib/node_modules/lodash/_nativeKeysIn.js +0 -20
  1898. package/http/node_modules/bower/lib/node_modules/lodash/_nodeUtil.js +0 -22
  1899. package/http/node_modules/bower/lib/node_modules/lodash/_objectToString.js +0 -22
  1900. package/http/node_modules/bower/lib/node_modules/lodash/_overArg.js +0 -15
  1901. package/http/node_modules/bower/lib/node_modules/lodash/_overRest.js +0 -36
  1902. package/http/node_modules/bower/lib/node_modules/lodash/_parent.js +0 -16
  1903. package/http/node_modules/bower/lib/node_modules/lodash/_reEscape.js +0 -4
  1904. package/http/node_modules/bower/lib/node_modules/lodash/_reEvaluate.js +0 -4
  1905. package/http/node_modules/bower/lib/node_modules/lodash/_reInterpolate.js +0 -4
  1906. package/http/node_modules/bower/lib/node_modules/lodash/_realNames.js +0 -4
  1907. package/http/node_modules/bower/lib/node_modules/lodash/_reorder.js +0 -29
  1908. package/http/node_modules/bower/lib/node_modules/lodash/_replaceHolders.js +0 -29
  1909. package/http/node_modules/bower/lib/node_modules/lodash/_root.js +0 -9
  1910. package/http/node_modules/bower/lib/node_modules/lodash/_setCacheAdd.js +0 -19
  1911. package/http/node_modules/bower/lib/node_modules/lodash/_setCacheHas.js +0 -14
  1912. package/http/node_modules/bower/lib/node_modules/lodash/_setData.js +0 -20
  1913. package/http/node_modules/bower/lib/node_modules/lodash/_setToArray.js +0 -18
  1914. package/http/node_modules/bower/lib/node_modules/lodash/_setToPairs.js +0 -18
  1915. package/http/node_modules/bower/lib/node_modules/lodash/_setToString.js +0 -14
  1916. package/http/node_modules/bower/lib/node_modules/lodash/_setWrapToString.js +0 -21
  1917. package/http/node_modules/bower/lib/node_modules/lodash/_shortOut.js +0 -37
  1918. package/http/node_modules/bower/lib/node_modules/lodash/_shuffleSelf.js +0 -28
  1919. package/http/node_modules/bower/lib/node_modules/lodash/_stackClear.js +0 -15
  1920. package/http/node_modules/bower/lib/node_modules/lodash/_stackDelete.js +0 -18
  1921. package/http/node_modules/bower/lib/node_modules/lodash/_stackGet.js +0 -14
  1922. package/http/node_modules/bower/lib/node_modules/lodash/_stackHas.js +0 -14
  1923. package/http/node_modules/bower/lib/node_modules/lodash/_stackSet.js +0 -34
  1924. package/http/node_modules/bower/lib/node_modules/lodash/_strictIndexOf.js +0 -23
  1925. package/http/node_modules/bower/lib/node_modules/lodash/_strictLastIndexOf.js +0 -21
  1926. package/http/node_modules/bower/lib/node_modules/lodash/_stringSize.js +0 -18
  1927. package/http/node_modules/bower/lib/node_modules/lodash/_stringToArray.js +0 -18
  1928. package/http/node_modules/bower/lib/node_modules/lodash/_stringToPath.js +0 -28
  1929. package/http/node_modules/bower/lib/node_modules/lodash/_toKey.js +0 -21
  1930. package/http/node_modules/bower/lib/node_modules/lodash/_toSource.js +0 -26
  1931. package/http/node_modules/bower/lib/node_modules/lodash/_unescapeHtmlChar.js +0 -21
  1932. package/http/node_modules/bower/lib/node_modules/lodash/_unicodeSize.js +0 -44
  1933. package/http/node_modules/bower/lib/node_modules/lodash/_unicodeToArray.js +0 -40
  1934. package/http/node_modules/bower/lib/node_modules/lodash/_unicodeWords.js +0 -69
  1935. package/http/node_modules/bower/lib/node_modules/lodash/_updateWrapDetails.js +0 -46
  1936. package/http/node_modules/bower/lib/node_modules/lodash/_wrapperClone.js +0 -23
  1937. package/http/node_modules/bower/lib/node_modules/lodash/add.js +0 -22
  1938. package/http/node_modules/bower/lib/node_modules/lodash/after.js +0 -42
  1939. package/http/node_modules/bower/lib/node_modules/lodash/array.js +0 -67
  1940. package/http/node_modules/bower/lib/node_modules/lodash/ary.js +0 -29
  1941. package/http/node_modules/bower/lib/node_modules/lodash/assign.js +0 -58
  1942. package/http/node_modules/bower/lib/node_modules/lodash/assignIn.js +0 -40
  1943. package/http/node_modules/bower/lib/node_modules/lodash/assignInWith.js +0 -38
  1944. package/http/node_modules/bower/lib/node_modules/lodash/assignWith.js +0 -37
  1945. package/http/node_modules/bower/lib/node_modules/lodash/at.js +0 -23
  1946. package/http/node_modules/bower/lib/node_modules/lodash/attempt.js +0 -35
  1947. package/http/node_modules/bower/lib/node_modules/lodash/before.js +0 -40
  1948. package/http/node_modules/bower/lib/node_modules/lodash/bind.js +0 -57
  1949. package/http/node_modules/bower/lib/node_modules/lodash/bindAll.js +0 -41
  1950. package/http/node_modules/bower/lib/node_modules/lodash/bindKey.js +0 -68
  1951. package/http/node_modules/bower/lib/node_modules/lodash/camelCase.js +0 -29
  1952. package/http/node_modules/bower/lib/node_modules/lodash/capitalize.js +0 -23
  1953. package/http/node_modules/bower/lib/node_modules/lodash/castArray.js +0 -44
  1954. package/http/node_modules/bower/lib/node_modules/lodash/ceil.js +0 -26
  1955. package/http/node_modules/bower/lib/node_modules/lodash/chain.js +0 -38
  1956. package/http/node_modules/bower/lib/node_modules/lodash/chunk.js +0 -50
  1957. package/http/node_modules/bower/lib/node_modules/lodash/clamp.js +0 -39
  1958. package/http/node_modules/bower/lib/node_modules/lodash/clone.js +0 -36
  1959. package/http/node_modules/bower/lib/node_modules/lodash/cloneDeep.js +0 -29
  1960. package/http/node_modules/bower/lib/node_modules/lodash/cloneDeepWith.js +0 -40
  1961. package/http/node_modules/bower/lib/node_modules/lodash/cloneWith.js +0 -42
  1962. package/http/node_modules/bower/lib/node_modules/lodash/collection.js +0 -30
  1963. package/http/node_modules/bower/lib/node_modules/lodash/commit.js +0 -33
  1964. package/http/node_modules/bower/lib/node_modules/lodash/compact.js +0 -31
  1965. package/http/node_modules/bower/lib/node_modules/lodash/concat.js +0 -43
  1966. package/http/node_modules/bower/lib/node_modules/lodash/cond.js +0 -60
  1967. package/http/node_modules/bower/lib/node_modules/lodash/conforms.js +0 -35
  1968. package/http/node_modules/bower/lib/node_modules/lodash/conformsTo.js +0 -32
  1969. package/http/node_modules/bower/lib/node_modules/lodash/constant.js +0 -26
  1970. package/http/node_modules/bower/lib/node_modules/lodash/core.js +0 -3836
  1971. package/http/node_modules/bower/lib/node_modules/lodash/core.min.js +0 -29
  1972. package/http/node_modules/bower/lib/node_modules/lodash/countBy.js +0 -40
  1973. package/http/node_modules/bower/lib/node_modules/lodash/create.js +0 -43
  1974. package/http/node_modules/bower/lib/node_modules/lodash/curry.js +0 -57
  1975. package/http/node_modules/bower/lib/node_modules/lodash/curryRight.js +0 -54
  1976. package/http/node_modules/bower/lib/node_modules/lodash/date.js +0 -3
  1977. package/http/node_modules/bower/lib/node_modules/lodash/debounce.js +0 -188
  1978. package/http/node_modules/bower/lib/node_modules/lodash/deburr.js +0 -45
  1979. package/http/node_modules/bower/lib/node_modules/lodash/defaultTo.js +0 -25
  1980. package/http/node_modules/bower/lib/node_modules/lodash/defaults.js +0 -32
  1981. package/http/node_modules/bower/lib/node_modules/lodash/defaultsDeep.js +0 -30
  1982. package/http/node_modules/bower/lib/node_modules/lodash/defer.js +0 -26
  1983. package/http/node_modules/bower/lib/node_modules/lodash/delay.js +0 -28
  1984. package/http/node_modules/bower/lib/node_modules/lodash/difference.js +0 -33
  1985. package/http/node_modules/bower/lib/node_modules/lodash/differenceBy.js +0 -44
  1986. package/http/node_modules/bower/lib/node_modules/lodash/differenceWith.js +0 -40
  1987. package/http/node_modules/bower/lib/node_modules/lodash/divide.js +0 -22
  1988. package/http/node_modules/bower/lib/node_modules/lodash/drop.js +0 -38
  1989. package/http/node_modules/bower/lib/node_modules/lodash/dropRight.js +0 -39
  1990. package/http/node_modules/bower/lib/node_modules/lodash/dropRightWhile.js +0 -45
  1991. package/http/node_modules/bower/lib/node_modules/lodash/dropWhile.js +0 -45
  1992. package/http/node_modules/bower/lib/node_modules/lodash/each.js +0 -1
  1993. package/http/node_modules/bower/lib/node_modules/lodash/eachRight.js +0 -1
  1994. package/http/node_modules/bower/lib/node_modules/lodash/endsWith.js +0 -43
  1995. package/http/node_modules/bower/lib/node_modules/lodash/entries.js +0 -1
  1996. package/http/node_modules/bower/lib/node_modules/lodash/entriesIn.js +0 -1
  1997. package/http/node_modules/bower/lib/node_modules/lodash/eq.js +0 -37
  1998. package/http/node_modules/bower/lib/node_modules/lodash/escape.js +0 -43
  1999. package/http/node_modules/bower/lib/node_modules/lodash/escapeRegExp.js +0 -32
  2000. package/http/node_modules/bower/lib/node_modules/lodash/every.js +0 -56
  2001. package/http/node_modules/bower/lib/node_modules/lodash/extend.js +0 -1
  2002. package/http/node_modules/bower/lib/node_modules/lodash/extendWith.js +0 -1
  2003. package/http/node_modules/bower/lib/node_modules/lodash/fill.js +0 -45
  2004. package/http/node_modules/bower/lib/node_modules/lodash/filter.js +0 -48
  2005. package/http/node_modules/bower/lib/node_modules/lodash/find.js +0 -42
  2006. package/http/node_modules/bower/lib/node_modules/lodash/findIndex.js +0 -55
  2007. package/http/node_modules/bower/lib/node_modules/lodash/findKey.js +0 -44
  2008. package/http/node_modules/bower/lib/node_modules/lodash/findLast.js +0 -25
  2009. package/http/node_modules/bower/lib/node_modules/lodash/findLastIndex.js +0 -59
  2010. package/http/node_modules/bower/lib/node_modules/lodash/findLastKey.js +0 -44
  2011. package/http/node_modules/bower/lib/node_modules/lodash/first.js +0 -1
  2012. package/http/node_modules/bower/lib/node_modules/lodash/flatMap.js +0 -29
  2013. package/http/node_modules/bower/lib/node_modules/lodash/flatMapDeep.js +0 -31
  2014. package/http/node_modules/bower/lib/node_modules/lodash/flatMapDepth.js +0 -31
  2015. package/http/node_modules/bower/lib/node_modules/lodash/flatten.js +0 -22
  2016. package/http/node_modules/bower/lib/node_modules/lodash/flattenDeep.js +0 -25
  2017. package/http/node_modules/bower/lib/node_modules/lodash/flattenDepth.js +0 -33
  2018. package/http/node_modules/bower/lib/node_modules/lodash/flip.js +0 -28
  2019. package/http/node_modules/bower/lib/node_modules/lodash/floor.js +0 -26
  2020. package/http/node_modules/bower/lib/node_modules/lodash/flow.js +0 -27
  2021. package/http/node_modules/bower/lib/node_modules/lodash/flowRight.js +0 -26
  2022. package/http/node_modules/bower/lib/node_modules/lodash/forEach.js +0 -41
  2023. package/http/node_modules/bower/lib/node_modules/lodash/forEachRight.js +0 -31
  2024. package/http/node_modules/bower/lib/node_modules/lodash/forIn.js +0 -39
  2025. package/http/node_modules/bower/lib/node_modules/lodash/forInRight.js +0 -37
  2026. package/http/node_modules/bower/lib/node_modules/lodash/forOwn.js +0 -36
  2027. package/http/node_modules/bower/lib/node_modules/lodash/forOwnRight.js +0 -34
  2028. package/http/node_modules/bower/lib/node_modules/lodash/fp/F.js +0 -1
  2029. package/http/node_modules/bower/lib/node_modules/lodash/fp/T.js +0 -1
  2030. package/http/node_modules/bower/lib/node_modules/lodash/fp/__.js +0 -1
  2031. package/http/node_modules/bower/lib/node_modules/lodash/fp/_baseConvert.js +0 -568
  2032. package/http/node_modules/bower/lib/node_modules/lodash/fp/_convertBrowser.js +0 -18
  2033. package/http/node_modules/bower/lib/node_modules/lodash/fp/_falseOptions.js +0 -7
  2034. package/http/node_modules/bower/lib/node_modules/lodash/fp/_mapping.js +0 -368
  2035. package/http/node_modules/bower/lib/node_modules/lodash/fp/_util.js +0 -14
  2036. package/http/node_modules/bower/lib/node_modules/lodash/fp/add.js +0 -5
  2037. package/http/node_modules/bower/lib/node_modules/lodash/fp/after.js +0 -5
  2038. package/http/node_modules/bower/lib/node_modules/lodash/fp/all.js +0 -1
  2039. package/http/node_modules/bower/lib/node_modules/lodash/fp/allPass.js +0 -1
  2040. package/http/node_modules/bower/lib/node_modules/lodash/fp/always.js +0 -1
  2041. package/http/node_modules/bower/lib/node_modules/lodash/fp/any.js +0 -1
  2042. package/http/node_modules/bower/lib/node_modules/lodash/fp/anyPass.js +0 -1
  2043. package/http/node_modules/bower/lib/node_modules/lodash/fp/apply.js +0 -1
  2044. package/http/node_modules/bower/lib/node_modules/lodash/fp/array.js +0 -2
  2045. package/http/node_modules/bower/lib/node_modules/lodash/fp/ary.js +0 -5
  2046. package/http/node_modules/bower/lib/node_modules/lodash/fp/assign.js +0 -5
  2047. package/http/node_modules/bower/lib/node_modules/lodash/fp/assignAll.js +0 -5
  2048. package/http/node_modules/bower/lib/node_modules/lodash/fp/assignAllWith.js +0 -5
  2049. package/http/node_modules/bower/lib/node_modules/lodash/fp/assignIn.js +0 -5
  2050. package/http/node_modules/bower/lib/node_modules/lodash/fp/assignInAll.js +0 -5
  2051. package/http/node_modules/bower/lib/node_modules/lodash/fp/assignInAllWith.js +0 -5
  2052. package/http/node_modules/bower/lib/node_modules/lodash/fp/assignInWith.js +0 -5
  2053. package/http/node_modules/bower/lib/node_modules/lodash/fp/assignWith.js +0 -5
  2054. package/http/node_modules/bower/lib/node_modules/lodash/fp/assoc.js +0 -1
  2055. package/http/node_modules/bower/lib/node_modules/lodash/fp/assocPath.js +0 -1
  2056. package/http/node_modules/bower/lib/node_modules/lodash/fp/at.js +0 -5
  2057. package/http/node_modules/bower/lib/node_modules/lodash/fp/attempt.js +0 -5
  2058. package/http/node_modules/bower/lib/node_modules/lodash/fp/before.js +0 -5
  2059. package/http/node_modules/bower/lib/node_modules/lodash/fp/bind.js +0 -5
  2060. package/http/node_modules/bower/lib/node_modules/lodash/fp/bindAll.js +0 -5
  2061. package/http/node_modules/bower/lib/node_modules/lodash/fp/bindKey.js +0 -5
  2062. package/http/node_modules/bower/lib/node_modules/lodash/fp/camelCase.js +0 -5
  2063. package/http/node_modules/bower/lib/node_modules/lodash/fp/capitalize.js +0 -5
  2064. package/http/node_modules/bower/lib/node_modules/lodash/fp/castArray.js +0 -5
  2065. package/http/node_modules/bower/lib/node_modules/lodash/fp/ceil.js +0 -5
  2066. package/http/node_modules/bower/lib/node_modules/lodash/fp/chain.js +0 -5
  2067. package/http/node_modules/bower/lib/node_modules/lodash/fp/chunk.js +0 -5
  2068. package/http/node_modules/bower/lib/node_modules/lodash/fp/clamp.js +0 -5
  2069. package/http/node_modules/bower/lib/node_modules/lodash/fp/clone.js +0 -5
  2070. package/http/node_modules/bower/lib/node_modules/lodash/fp/cloneDeep.js +0 -5
  2071. package/http/node_modules/bower/lib/node_modules/lodash/fp/cloneDeepWith.js +0 -5
  2072. package/http/node_modules/bower/lib/node_modules/lodash/fp/cloneWith.js +0 -5
  2073. package/http/node_modules/bower/lib/node_modules/lodash/fp/collection.js +0 -2
  2074. package/http/node_modules/bower/lib/node_modules/lodash/fp/commit.js +0 -5
  2075. package/http/node_modules/bower/lib/node_modules/lodash/fp/compact.js +0 -5
  2076. package/http/node_modules/bower/lib/node_modules/lodash/fp/complement.js +0 -1
  2077. package/http/node_modules/bower/lib/node_modules/lodash/fp/compose.js +0 -1
  2078. package/http/node_modules/bower/lib/node_modules/lodash/fp/concat.js +0 -5
  2079. package/http/node_modules/bower/lib/node_modules/lodash/fp/cond.js +0 -5
  2080. package/http/node_modules/bower/lib/node_modules/lodash/fp/conforms.js +0 -1
  2081. package/http/node_modules/bower/lib/node_modules/lodash/fp/conformsTo.js +0 -5
  2082. package/http/node_modules/bower/lib/node_modules/lodash/fp/constant.js +0 -5
  2083. package/http/node_modules/bower/lib/node_modules/lodash/fp/contains.js +0 -1
  2084. package/http/node_modules/bower/lib/node_modules/lodash/fp/convert.js +0 -18
  2085. package/http/node_modules/bower/lib/node_modules/lodash/fp/countBy.js +0 -5
  2086. package/http/node_modules/bower/lib/node_modules/lodash/fp/create.js +0 -5
  2087. package/http/node_modules/bower/lib/node_modules/lodash/fp/curry.js +0 -5
  2088. package/http/node_modules/bower/lib/node_modules/lodash/fp/curryN.js +0 -5
  2089. package/http/node_modules/bower/lib/node_modules/lodash/fp/curryRight.js +0 -5
  2090. package/http/node_modules/bower/lib/node_modules/lodash/fp/curryRightN.js +0 -5
  2091. package/http/node_modules/bower/lib/node_modules/lodash/fp/date.js +0 -2
  2092. package/http/node_modules/bower/lib/node_modules/lodash/fp/debounce.js +0 -5
  2093. package/http/node_modules/bower/lib/node_modules/lodash/fp/deburr.js +0 -5
  2094. package/http/node_modules/bower/lib/node_modules/lodash/fp/defaultTo.js +0 -5
  2095. package/http/node_modules/bower/lib/node_modules/lodash/fp/defaults.js +0 -5
  2096. package/http/node_modules/bower/lib/node_modules/lodash/fp/defaultsAll.js +0 -5
  2097. package/http/node_modules/bower/lib/node_modules/lodash/fp/defaultsDeep.js +0 -5
  2098. package/http/node_modules/bower/lib/node_modules/lodash/fp/defaultsDeepAll.js +0 -5
  2099. package/http/node_modules/bower/lib/node_modules/lodash/fp/defer.js +0 -5
  2100. package/http/node_modules/bower/lib/node_modules/lodash/fp/delay.js +0 -5
  2101. package/http/node_modules/bower/lib/node_modules/lodash/fp/difference.js +0 -5
  2102. package/http/node_modules/bower/lib/node_modules/lodash/fp/differenceBy.js +0 -5
  2103. package/http/node_modules/bower/lib/node_modules/lodash/fp/differenceWith.js +0 -5
  2104. package/http/node_modules/bower/lib/node_modules/lodash/fp/dissoc.js +0 -1
  2105. package/http/node_modules/bower/lib/node_modules/lodash/fp/dissocPath.js +0 -1
  2106. package/http/node_modules/bower/lib/node_modules/lodash/fp/divide.js +0 -5
  2107. package/http/node_modules/bower/lib/node_modules/lodash/fp/drop.js +0 -5
  2108. package/http/node_modules/bower/lib/node_modules/lodash/fp/dropLast.js +0 -1
  2109. package/http/node_modules/bower/lib/node_modules/lodash/fp/dropLastWhile.js +0 -1
  2110. package/http/node_modules/bower/lib/node_modules/lodash/fp/dropRight.js +0 -5
  2111. package/http/node_modules/bower/lib/node_modules/lodash/fp/dropRightWhile.js +0 -5
  2112. package/http/node_modules/bower/lib/node_modules/lodash/fp/dropWhile.js +0 -5
  2113. package/http/node_modules/bower/lib/node_modules/lodash/fp/each.js +0 -1
  2114. package/http/node_modules/bower/lib/node_modules/lodash/fp/eachRight.js +0 -1
  2115. package/http/node_modules/bower/lib/node_modules/lodash/fp/endsWith.js +0 -5
  2116. package/http/node_modules/bower/lib/node_modules/lodash/fp/entries.js +0 -1
  2117. package/http/node_modules/bower/lib/node_modules/lodash/fp/entriesIn.js +0 -1
  2118. package/http/node_modules/bower/lib/node_modules/lodash/fp/eq.js +0 -5
  2119. package/http/node_modules/bower/lib/node_modules/lodash/fp/equals.js +0 -1
  2120. package/http/node_modules/bower/lib/node_modules/lodash/fp/escape.js +0 -5
  2121. package/http/node_modules/bower/lib/node_modules/lodash/fp/escapeRegExp.js +0 -5
  2122. package/http/node_modules/bower/lib/node_modules/lodash/fp/every.js +0 -5
  2123. package/http/node_modules/bower/lib/node_modules/lodash/fp/extend.js +0 -1
  2124. package/http/node_modules/bower/lib/node_modules/lodash/fp/extendAll.js +0 -1
  2125. package/http/node_modules/bower/lib/node_modules/lodash/fp/extendAllWith.js +0 -1
  2126. package/http/node_modules/bower/lib/node_modules/lodash/fp/extendWith.js +0 -1
  2127. package/http/node_modules/bower/lib/node_modules/lodash/fp/fill.js +0 -5
  2128. package/http/node_modules/bower/lib/node_modules/lodash/fp/filter.js +0 -5
  2129. package/http/node_modules/bower/lib/node_modules/lodash/fp/find.js +0 -5
  2130. package/http/node_modules/bower/lib/node_modules/lodash/fp/findFrom.js +0 -5
  2131. package/http/node_modules/bower/lib/node_modules/lodash/fp/findIndex.js +0 -5
  2132. package/http/node_modules/bower/lib/node_modules/lodash/fp/findIndexFrom.js +0 -5
  2133. package/http/node_modules/bower/lib/node_modules/lodash/fp/findKey.js +0 -5
  2134. package/http/node_modules/bower/lib/node_modules/lodash/fp/findLast.js +0 -5
  2135. package/http/node_modules/bower/lib/node_modules/lodash/fp/findLastFrom.js +0 -5
  2136. package/http/node_modules/bower/lib/node_modules/lodash/fp/findLastIndex.js +0 -5
  2137. package/http/node_modules/bower/lib/node_modules/lodash/fp/findLastIndexFrom.js +0 -5
  2138. package/http/node_modules/bower/lib/node_modules/lodash/fp/findLastKey.js +0 -5
  2139. package/http/node_modules/bower/lib/node_modules/lodash/fp/first.js +0 -1
  2140. package/http/node_modules/bower/lib/node_modules/lodash/fp/flatMap.js +0 -5
  2141. package/http/node_modules/bower/lib/node_modules/lodash/fp/flatMapDeep.js +0 -5
  2142. package/http/node_modules/bower/lib/node_modules/lodash/fp/flatMapDepth.js +0 -5
  2143. package/http/node_modules/bower/lib/node_modules/lodash/fp/flatten.js +0 -5
  2144. package/http/node_modules/bower/lib/node_modules/lodash/fp/flattenDeep.js +0 -5
  2145. package/http/node_modules/bower/lib/node_modules/lodash/fp/flattenDepth.js +0 -5
  2146. package/http/node_modules/bower/lib/node_modules/lodash/fp/flip.js +0 -5
  2147. package/http/node_modules/bower/lib/node_modules/lodash/fp/floor.js +0 -5
  2148. package/http/node_modules/bower/lib/node_modules/lodash/fp/flow.js +0 -5
  2149. package/http/node_modules/bower/lib/node_modules/lodash/fp/flowRight.js +0 -5
  2150. package/http/node_modules/bower/lib/node_modules/lodash/fp/forEach.js +0 -5
  2151. package/http/node_modules/bower/lib/node_modules/lodash/fp/forEachRight.js +0 -5
  2152. package/http/node_modules/bower/lib/node_modules/lodash/fp/forIn.js +0 -5
  2153. package/http/node_modules/bower/lib/node_modules/lodash/fp/forInRight.js +0 -5
  2154. package/http/node_modules/bower/lib/node_modules/lodash/fp/forOwn.js +0 -5
  2155. package/http/node_modules/bower/lib/node_modules/lodash/fp/forOwnRight.js +0 -5
  2156. package/http/node_modules/bower/lib/node_modules/lodash/fp/fromPairs.js +0 -5
  2157. package/http/node_modules/bower/lib/node_modules/lodash/fp/function.js +0 -2
  2158. package/http/node_modules/bower/lib/node_modules/lodash/fp/functions.js +0 -5
  2159. package/http/node_modules/bower/lib/node_modules/lodash/fp/functionsIn.js +0 -5
  2160. package/http/node_modules/bower/lib/node_modules/lodash/fp/get.js +0 -5
  2161. package/http/node_modules/bower/lib/node_modules/lodash/fp/getOr.js +0 -5
  2162. package/http/node_modules/bower/lib/node_modules/lodash/fp/groupBy.js +0 -5
  2163. package/http/node_modules/bower/lib/node_modules/lodash/fp/gt.js +0 -5
  2164. package/http/node_modules/bower/lib/node_modules/lodash/fp/gte.js +0 -5
  2165. package/http/node_modules/bower/lib/node_modules/lodash/fp/has.js +0 -5
  2166. package/http/node_modules/bower/lib/node_modules/lodash/fp/hasIn.js +0 -5
  2167. package/http/node_modules/bower/lib/node_modules/lodash/fp/head.js +0 -5
  2168. package/http/node_modules/bower/lib/node_modules/lodash/fp/identical.js +0 -1
  2169. package/http/node_modules/bower/lib/node_modules/lodash/fp/identity.js +0 -5
  2170. package/http/node_modules/bower/lib/node_modules/lodash/fp/inRange.js +0 -5
  2171. package/http/node_modules/bower/lib/node_modules/lodash/fp/includes.js +0 -5
  2172. package/http/node_modules/bower/lib/node_modules/lodash/fp/includesFrom.js +0 -5
  2173. package/http/node_modules/bower/lib/node_modules/lodash/fp/indexBy.js +0 -1
  2174. package/http/node_modules/bower/lib/node_modules/lodash/fp/indexOf.js +0 -5
  2175. package/http/node_modules/bower/lib/node_modules/lodash/fp/indexOfFrom.js +0 -5
  2176. package/http/node_modules/bower/lib/node_modules/lodash/fp/init.js +0 -1
  2177. package/http/node_modules/bower/lib/node_modules/lodash/fp/initial.js +0 -5
  2178. package/http/node_modules/bower/lib/node_modules/lodash/fp/intersection.js +0 -5
  2179. package/http/node_modules/bower/lib/node_modules/lodash/fp/intersectionBy.js +0 -5
  2180. package/http/node_modules/bower/lib/node_modules/lodash/fp/intersectionWith.js +0 -5
  2181. package/http/node_modules/bower/lib/node_modules/lodash/fp/invert.js +0 -5
  2182. package/http/node_modules/bower/lib/node_modules/lodash/fp/invertBy.js +0 -5
  2183. package/http/node_modules/bower/lib/node_modules/lodash/fp/invertObj.js +0 -1
  2184. package/http/node_modules/bower/lib/node_modules/lodash/fp/invoke.js +0 -5
  2185. package/http/node_modules/bower/lib/node_modules/lodash/fp/invokeArgs.js +0 -5
  2186. package/http/node_modules/bower/lib/node_modules/lodash/fp/invokeArgsMap.js +0 -5
  2187. package/http/node_modules/bower/lib/node_modules/lodash/fp/invokeMap.js +0 -5
  2188. package/http/node_modules/bower/lib/node_modules/lodash/fp/isArguments.js +0 -5
  2189. package/http/node_modules/bower/lib/node_modules/lodash/fp/isArray.js +0 -5
  2190. package/http/node_modules/bower/lib/node_modules/lodash/fp/isArrayBuffer.js +0 -5
  2191. package/http/node_modules/bower/lib/node_modules/lodash/fp/isArrayLike.js +0 -5
  2192. package/http/node_modules/bower/lib/node_modules/lodash/fp/isArrayLikeObject.js +0 -5
  2193. package/http/node_modules/bower/lib/node_modules/lodash/fp/isBoolean.js +0 -5
  2194. package/http/node_modules/bower/lib/node_modules/lodash/fp/isBuffer.js +0 -5
  2195. package/http/node_modules/bower/lib/node_modules/lodash/fp/isDate.js +0 -5
  2196. package/http/node_modules/bower/lib/node_modules/lodash/fp/isElement.js +0 -5
  2197. package/http/node_modules/bower/lib/node_modules/lodash/fp/isEmpty.js +0 -5
  2198. package/http/node_modules/bower/lib/node_modules/lodash/fp/isEqual.js +0 -5
  2199. package/http/node_modules/bower/lib/node_modules/lodash/fp/isEqualWith.js +0 -5
  2200. package/http/node_modules/bower/lib/node_modules/lodash/fp/isError.js +0 -5
  2201. package/http/node_modules/bower/lib/node_modules/lodash/fp/isFinite.js +0 -5
  2202. package/http/node_modules/bower/lib/node_modules/lodash/fp/isFunction.js +0 -5
  2203. package/http/node_modules/bower/lib/node_modules/lodash/fp/isInteger.js +0 -5
  2204. package/http/node_modules/bower/lib/node_modules/lodash/fp/isLength.js +0 -5
  2205. package/http/node_modules/bower/lib/node_modules/lodash/fp/isMap.js +0 -5
  2206. package/http/node_modules/bower/lib/node_modules/lodash/fp/isMatch.js +0 -5
  2207. package/http/node_modules/bower/lib/node_modules/lodash/fp/isMatchWith.js +0 -5
  2208. package/http/node_modules/bower/lib/node_modules/lodash/fp/isNaN.js +0 -5
  2209. package/http/node_modules/bower/lib/node_modules/lodash/fp/isNative.js +0 -5
  2210. package/http/node_modules/bower/lib/node_modules/lodash/fp/isNil.js +0 -5
  2211. package/http/node_modules/bower/lib/node_modules/lodash/fp/isNull.js +0 -5
  2212. package/http/node_modules/bower/lib/node_modules/lodash/fp/isNumber.js +0 -5
  2213. package/http/node_modules/bower/lib/node_modules/lodash/fp/isObject.js +0 -5
  2214. package/http/node_modules/bower/lib/node_modules/lodash/fp/isObjectLike.js +0 -5
  2215. package/http/node_modules/bower/lib/node_modules/lodash/fp/isPlainObject.js +0 -5
  2216. package/http/node_modules/bower/lib/node_modules/lodash/fp/isRegExp.js +0 -5
  2217. package/http/node_modules/bower/lib/node_modules/lodash/fp/isSafeInteger.js +0 -5
  2218. package/http/node_modules/bower/lib/node_modules/lodash/fp/isSet.js +0 -5
  2219. package/http/node_modules/bower/lib/node_modules/lodash/fp/isString.js +0 -5
  2220. package/http/node_modules/bower/lib/node_modules/lodash/fp/isSymbol.js +0 -5
  2221. package/http/node_modules/bower/lib/node_modules/lodash/fp/isTypedArray.js +0 -5
  2222. package/http/node_modules/bower/lib/node_modules/lodash/fp/isUndefined.js +0 -5
  2223. package/http/node_modules/bower/lib/node_modules/lodash/fp/isWeakMap.js +0 -5
  2224. package/http/node_modules/bower/lib/node_modules/lodash/fp/isWeakSet.js +0 -5
  2225. package/http/node_modules/bower/lib/node_modules/lodash/fp/iteratee.js +0 -5
  2226. package/http/node_modules/bower/lib/node_modules/lodash/fp/join.js +0 -5
  2227. package/http/node_modules/bower/lib/node_modules/lodash/fp/juxt.js +0 -1
  2228. package/http/node_modules/bower/lib/node_modules/lodash/fp/kebabCase.js +0 -5
  2229. package/http/node_modules/bower/lib/node_modules/lodash/fp/keyBy.js +0 -5
  2230. package/http/node_modules/bower/lib/node_modules/lodash/fp/keys.js +0 -5
  2231. package/http/node_modules/bower/lib/node_modules/lodash/fp/keysIn.js +0 -5
  2232. package/http/node_modules/bower/lib/node_modules/lodash/fp/lang.js +0 -2
  2233. package/http/node_modules/bower/lib/node_modules/lodash/fp/last.js +0 -5
  2234. package/http/node_modules/bower/lib/node_modules/lodash/fp/lastIndexOf.js +0 -5
  2235. package/http/node_modules/bower/lib/node_modules/lodash/fp/lastIndexOfFrom.js +0 -5
  2236. package/http/node_modules/bower/lib/node_modules/lodash/fp/lowerCase.js +0 -5
  2237. package/http/node_modules/bower/lib/node_modules/lodash/fp/lowerFirst.js +0 -5
  2238. package/http/node_modules/bower/lib/node_modules/lodash/fp/lt.js +0 -5
  2239. package/http/node_modules/bower/lib/node_modules/lodash/fp/lte.js +0 -5
  2240. package/http/node_modules/bower/lib/node_modules/lodash/fp/map.js +0 -5
  2241. package/http/node_modules/bower/lib/node_modules/lodash/fp/mapKeys.js +0 -5
  2242. package/http/node_modules/bower/lib/node_modules/lodash/fp/mapValues.js +0 -5
  2243. package/http/node_modules/bower/lib/node_modules/lodash/fp/matches.js +0 -1
  2244. package/http/node_modules/bower/lib/node_modules/lodash/fp/matchesProperty.js +0 -5
  2245. package/http/node_modules/bower/lib/node_modules/lodash/fp/math.js +0 -2
  2246. package/http/node_modules/bower/lib/node_modules/lodash/fp/max.js +0 -5
  2247. package/http/node_modules/bower/lib/node_modules/lodash/fp/maxBy.js +0 -5
  2248. package/http/node_modules/bower/lib/node_modules/lodash/fp/mean.js +0 -5
  2249. package/http/node_modules/bower/lib/node_modules/lodash/fp/meanBy.js +0 -5
  2250. package/http/node_modules/bower/lib/node_modules/lodash/fp/memoize.js +0 -5
  2251. package/http/node_modules/bower/lib/node_modules/lodash/fp/merge.js +0 -5
  2252. package/http/node_modules/bower/lib/node_modules/lodash/fp/mergeAll.js +0 -5
  2253. package/http/node_modules/bower/lib/node_modules/lodash/fp/mergeAllWith.js +0 -5
  2254. package/http/node_modules/bower/lib/node_modules/lodash/fp/mergeWith.js +0 -5
  2255. package/http/node_modules/bower/lib/node_modules/lodash/fp/method.js +0 -5
  2256. package/http/node_modules/bower/lib/node_modules/lodash/fp/methodOf.js +0 -5
  2257. package/http/node_modules/bower/lib/node_modules/lodash/fp/min.js +0 -5
  2258. package/http/node_modules/bower/lib/node_modules/lodash/fp/minBy.js +0 -5
  2259. package/http/node_modules/bower/lib/node_modules/lodash/fp/mixin.js +0 -5
  2260. package/http/node_modules/bower/lib/node_modules/lodash/fp/multiply.js +0 -5
  2261. package/http/node_modules/bower/lib/node_modules/lodash/fp/nAry.js +0 -1
  2262. package/http/node_modules/bower/lib/node_modules/lodash/fp/negate.js +0 -5
  2263. package/http/node_modules/bower/lib/node_modules/lodash/fp/next.js +0 -5
  2264. package/http/node_modules/bower/lib/node_modules/lodash/fp/noop.js +0 -5
  2265. package/http/node_modules/bower/lib/node_modules/lodash/fp/now.js +0 -5
  2266. package/http/node_modules/bower/lib/node_modules/lodash/fp/nth.js +0 -5
  2267. package/http/node_modules/bower/lib/node_modules/lodash/fp/nthArg.js +0 -5
  2268. package/http/node_modules/bower/lib/node_modules/lodash/fp/number.js +0 -2
  2269. package/http/node_modules/bower/lib/node_modules/lodash/fp/object.js +0 -2
  2270. package/http/node_modules/bower/lib/node_modules/lodash/fp/omit.js +0 -5
  2271. package/http/node_modules/bower/lib/node_modules/lodash/fp/omitAll.js +0 -1
  2272. package/http/node_modules/bower/lib/node_modules/lodash/fp/omitBy.js +0 -5
  2273. package/http/node_modules/bower/lib/node_modules/lodash/fp/once.js +0 -5
  2274. package/http/node_modules/bower/lib/node_modules/lodash/fp/orderBy.js +0 -5
  2275. package/http/node_modules/bower/lib/node_modules/lodash/fp/over.js +0 -5
  2276. package/http/node_modules/bower/lib/node_modules/lodash/fp/overArgs.js +0 -5
  2277. package/http/node_modules/bower/lib/node_modules/lodash/fp/overEvery.js +0 -5
  2278. package/http/node_modules/bower/lib/node_modules/lodash/fp/overSome.js +0 -5
  2279. package/http/node_modules/bower/lib/node_modules/lodash/fp/pad.js +0 -5
  2280. package/http/node_modules/bower/lib/node_modules/lodash/fp/padChars.js +0 -5
  2281. package/http/node_modules/bower/lib/node_modules/lodash/fp/padCharsEnd.js +0 -5
  2282. package/http/node_modules/bower/lib/node_modules/lodash/fp/padCharsStart.js +0 -5
  2283. package/http/node_modules/bower/lib/node_modules/lodash/fp/padEnd.js +0 -5
  2284. package/http/node_modules/bower/lib/node_modules/lodash/fp/padStart.js +0 -5
  2285. package/http/node_modules/bower/lib/node_modules/lodash/fp/parseInt.js +0 -5
  2286. package/http/node_modules/bower/lib/node_modules/lodash/fp/partial.js +0 -5
  2287. package/http/node_modules/bower/lib/node_modules/lodash/fp/partialRight.js +0 -5
  2288. package/http/node_modules/bower/lib/node_modules/lodash/fp/partition.js +0 -5
  2289. package/http/node_modules/bower/lib/node_modules/lodash/fp/path.js +0 -1
  2290. package/http/node_modules/bower/lib/node_modules/lodash/fp/pathEq.js +0 -1
  2291. package/http/node_modules/bower/lib/node_modules/lodash/fp/pathOr.js +0 -1
  2292. package/http/node_modules/bower/lib/node_modules/lodash/fp/paths.js +0 -1
  2293. package/http/node_modules/bower/lib/node_modules/lodash/fp/pick.js +0 -5
  2294. package/http/node_modules/bower/lib/node_modules/lodash/fp/pickAll.js +0 -1
  2295. package/http/node_modules/bower/lib/node_modules/lodash/fp/pickBy.js +0 -5
  2296. package/http/node_modules/bower/lib/node_modules/lodash/fp/pipe.js +0 -1
  2297. package/http/node_modules/bower/lib/node_modules/lodash/fp/placeholder.js +0 -6
  2298. package/http/node_modules/bower/lib/node_modules/lodash/fp/plant.js +0 -5
  2299. package/http/node_modules/bower/lib/node_modules/lodash/fp/pluck.js +0 -1
  2300. package/http/node_modules/bower/lib/node_modules/lodash/fp/prop.js +0 -1
  2301. package/http/node_modules/bower/lib/node_modules/lodash/fp/propEq.js +0 -1
  2302. package/http/node_modules/bower/lib/node_modules/lodash/fp/propOr.js +0 -1
  2303. package/http/node_modules/bower/lib/node_modules/lodash/fp/property.js +0 -1
  2304. package/http/node_modules/bower/lib/node_modules/lodash/fp/propertyOf.js +0 -5
  2305. package/http/node_modules/bower/lib/node_modules/lodash/fp/props.js +0 -1
  2306. package/http/node_modules/bower/lib/node_modules/lodash/fp/pull.js +0 -5
  2307. package/http/node_modules/bower/lib/node_modules/lodash/fp/pullAll.js +0 -5
  2308. package/http/node_modules/bower/lib/node_modules/lodash/fp/pullAllBy.js +0 -5
  2309. package/http/node_modules/bower/lib/node_modules/lodash/fp/pullAllWith.js +0 -5
  2310. package/http/node_modules/bower/lib/node_modules/lodash/fp/pullAt.js +0 -5
  2311. package/http/node_modules/bower/lib/node_modules/lodash/fp/random.js +0 -5
  2312. package/http/node_modules/bower/lib/node_modules/lodash/fp/range.js +0 -5
  2313. package/http/node_modules/bower/lib/node_modules/lodash/fp/rangeRight.js +0 -5
  2314. package/http/node_modules/bower/lib/node_modules/lodash/fp/rangeStep.js +0 -5
  2315. package/http/node_modules/bower/lib/node_modules/lodash/fp/rangeStepRight.js +0 -5
  2316. package/http/node_modules/bower/lib/node_modules/lodash/fp/rearg.js +0 -5
  2317. package/http/node_modules/bower/lib/node_modules/lodash/fp/reduce.js +0 -5
  2318. package/http/node_modules/bower/lib/node_modules/lodash/fp/reduceRight.js +0 -5
  2319. package/http/node_modules/bower/lib/node_modules/lodash/fp/reject.js +0 -5
  2320. package/http/node_modules/bower/lib/node_modules/lodash/fp/remove.js +0 -5
  2321. package/http/node_modules/bower/lib/node_modules/lodash/fp/repeat.js +0 -5
  2322. package/http/node_modules/bower/lib/node_modules/lodash/fp/replace.js +0 -5
  2323. package/http/node_modules/bower/lib/node_modules/lodash/fp/rest.js +0 -5
  2324. package/http/node_modules/bower/lib/node_modules/lodash/fp/restFrom.js +0 -5
  2325. package/http/node_modules/bower/lib/node_modules/lodash/fp/result.js +0 -5
  2326. package/http/node_modules/bower/lib/node_modules/lodash/fp/reverse.js +0 -5
  2327. package/http/node_modules/bower/lib/node_modules/lodash/fp/round.js +0 -5
  2328. package/http/node_modules/bower/lib/node_modules/lodash/fp/sample.js +0 -5
  2329. package/http/node_modules/bower/lib/node_modules/lodash/fp/sampleSize.js +0 -5
  2330. package/http/node_modules/bower/lib/node_modules/lodash/fp/seq.js +0 -2
  2331. package/http/node_modules/bower/lib/node_modules/lodash/fp/set.js +0 -5
  2332. package/http/node_modules/bower/lib/node_modules/lodash/fp/setWith.js +0 -5
  2333. package/http/node_modules/bower/lib/node_modules/lodash/fp/shuffle.js +0 -5
  2334. package/http/node_modules/bower/lib/node_modules/lodash/fp/size.js +0 -5
  2335. package/http/node_modules/bower/lib/node_modules/lodash/fp/slice.js +0 -5
  2336. package/http/node_modules/bower/lib/node_modules/lodash/fp/snakeCase.js +0 -5
  2337. package/http/node_modules/bower/lib/node_modules/lodash/fp/some.js +0 -5
  2338. package/http/node_modules/bower/lib/node_modules/lodash/fp/sortBy.js +0 -5
  2339. package/http/node_modules/bower/lib/node_modules/lodash/fp/sortedIndex.js +0 -5
  2340. package/http/node_modules/bower/lib/node_modules/lodash/fp/sortedIndexBy.js +0 -5
  2341. package/http/node_modules/bower/lib/node_modules/lodash/fp/sortedIndexOf.js +0 -5
  2342. package/http/node_modules/bower/lib/node_modules/lodash/fp/sortedLastIndex.js +0 -5
  2343. package/http/node_modules/bower/lib/node_modules/lodash/fp/sortedLastIndexBy.js +0 -5
  2344. package/http/node_modules/bower/lib/node_modules/lodash/fp/sortedLastIndexOf.js +0 -5
  2345. package/http/node_modules/bower/lib/node_modules/lodash/fp/sortedUniq.js +0 -5
  2346. package/http/node_modules/bower/lib/node_modules/lodash/fp/sortedUniqBy.js +0 -5
  2347. package/http/node_modules/bower/lib/node_modules/lodash/fp/split.js +0 -5
  2348. package/http/node_modules/bower/lib/node_modules/lodash/fp/spread.js +0 -5
  2349. package/http/node_modules/bower/lib/node_modules/lodash/fp/spreadFrom.js +0 -5
  2350. package/http/node_modules/bower/lib/node_modules/lodash/fp/startCase.js +0 -5
  2351. package/http/node_modules/bower/lib/node_modules/lodash/fp/startsWith.js +0 -5
  2352. package/http/node_modules/bower/lib/node_modules/lodash/fp/string.js +0 -2
  2353. package/http/node_modules/bower/lib/node_modules/lodash/fp/stubArray.js +0 -5
  2354. package/http/node_modules/bower/lib/node_modules/lodash/fp/stubFalse.js +0 -5
  2355. package/http/node_modules/bower/lib/node_modules/lodash/fp/stubObject.js +0 -5
  2356. package/http/node_modules/bower/lib/node_modules/lodash/fp/stubString.js +0 -5
  2357. package/http/node_modules/bower/lib/node_modules/lodash/fp/stubTrue.js +0 -5
  2358. package/http/node_modules/bower/lib/node_modules/lodash/fp/subtract.js +0 -5
  2359. package/http/node_modules/bower/lib/node_modules/lodash/fp/sum.js +0 -5
  2360. package/http/node_modules/bower/lib/node_modules/lodash/fp/sumBy.js +0 -5
  2361. package/http/node_modules/bower/lib/node_modules/lodash/fp/symmetricDifference.js +0 -1
  2362. package/http/node_modules/bower/lib/node_modules/lodash/fp/symmetricDifferenceBy.js +0 -1
  2363. package/http/node_modules/bower/lib/node_modules/lodash/fp/symmetricDifferenceWith.js +0 -1
  2364. package/http/node_modules/bower/lib/node_modules/lodash/fp/tail.js +0 -5
  2365. package/http/node_modules/bower/lib/node_modules/lodash/fp/take.js +0 -5
  2366. package/http/node_modules/bower/lib/node_modules/lodash/fp/takeLast.js +0 -1
  2367. package/http/node_modules/bower/lib/node_modules/lodash/fp/takeLastWhile.js +0 -1
  2368. package/http/node_modules/bower/lib/node_modules/lodash/fp/takeRight.js +0 -5
  2369. package/http/node_modules/bower/lib/node_modules/lodash/fp/takeRightWhile.js +0 -5
  2370. package/http/node_modules/bower/lib/node_modules/lodash/fp/takeWhile.js +0 -5
  2371. package/http/node_modules/bower/lib/node_modules/lodash/fp/tap.js +0 -5
  2372. package/http/node_modules/bower/lib/node_modules/lodash/fp/template.js +0 -5
  2373. package/http/node_modules/bower/lib/node_modules/lodash/fp/templateSettings.js +0 -5
  2374. package/http/node_modules/bower/lib/node_modules/lodash/fp/throttle.js +0 -5
  2375. package/http/node_modules/bower/lib/node_modules/lodash/fp/thru.js +0 -5
  2376. package/http/node_modules/bower/lib/node_modules/lodash/fp/times.js +0 -5
  2377. package/http/node_modules/bower/lib/node_modules/lodash/fp/toArray.js +0 -5
  2378. package/http/node_modules/bower/lib/node_modules/lodash/fp/toFinite.js +0 -5
  2379. package/http/node_modules/bower/lib/node_modules/lodash/fp/toInteger.js +0 -5
  2380. package/http/node_modules/bower/lib/node_modules/lodash/fp/toIterator.js +0 -5
  2381. package/http/node_modules/bower/lib/node_modules/lodash/fp/toJSON.js +0 -5
  2382. package/http/node_modules/bower/lib/node_modules/lodash/fp/toLength.js +0 -5
  2383. package/http/node_modules/bower/lib/node_modules/lodash/fp/toLower.js +0 -5
  2384. package/http/node_modules/bower/lib/node_modules/lodash/fp/toNumber.js +0 -5
  2385. package/http/node_modules/bower/lib/node_modules/lodash/fp/toPairs.js +0 -5
  2386. package/http/node_modules/bower/lib/node_modules/lodash/fp/toPairsIn.js +0 -5
  2387. package/http/node_modules/bower/lib/node_modules/lodash/fp/toPath.js +0 -5
  2388. package/http/node_modules/bower/lib/node_modules/lodash/fp/toPlainObject.js +0 -5
  2389. package/http/node_modules/bower/lib/node_modules/lodash/fp/toSafeInteger.js +0 -5
  2390. package/http/node_modules/bower/lib/node_modules/lodash/fp/toString.js +0 -5
  2391. package/http/node_modules/bower/lib/node_modules/lodash/fp/toUpper.js +0 -5
  2392. package/http/node_modules/bower/lib/node_modules/lodash/fp/transform.js +0 -5
  2393. package/http/node_modules/bower/lib/node_modules/lodash/fp/trim.js +0 -5
  2394. package/http/node_modules/bower/lib/node_modules/lodash/fp/trimChars.js +0 -5
  2395. package/http/node_modules/bower/lib/node_modules/lodash/fp/trimCharsEnd.js +0 -5
  2396. package/http/node_modules/bower/lib/node_modules/lodash/fp/trimCharsStart.js +0 -5
  2397. package/http/node_modules/bower/lib/node_modules/lodash/fp/trimEnd.js +0 -5
  2398. package/http/node_modules/bower/lib/node_modules/lodash/fp/trimStart.js +0 -5
  2399. package/http/node_modules/bower/lib/node_modules/lodash/fp/truncate.js +0 -5
  2400. package/http/node_modules/bower/lib/node_modules/lodash/fp/unapply.js +0 -1
  2401. package/http/node_modules/bower/lib/node_modules/lodash/fp/unary.js +0 -5
  2402. package/http/node_modules/bower/lib/node_modules/lodash/fp/unescape.js +0 -5
  2403. package/http/node_modules/bower/lib/node_modules/lodash/fp/union.js +0 -5
  2404. package/http/node_modules/bower/lib/node_modules/lodash/fp/unionBy.js +0 -5
  2405. package/http/node_modules/bower/lib/node_modules/lodash/fp/unionWith.js +0 -5
  2406. package/http/node_modules/bower/lib/node_modules/lodash/fp/uniq.js +0 -5
  2407. package/http/node_modules/bower/lib/node_modules/lodash/fp/uniqBy.js +0 -5
  2408. package/http/node_modules/bower/lib/node_modules/lodash/fp/uniqWith.js +0 -5
  2409. package/http/node_modules/bower/lib/node_modules/lodash/fp/uniqueId.js +0 -5
  2410. package/http/node_modules/bower/lib/node_modules/lodash/fp/unnest.js +0 -1
  2411. package/http/node_modules/bower/lib/node_modules/lodash/fp/unset.js +0 -5
  2412. package/http/node_modules/bower/lib/node_modules/lodash/fp/unzip.js +0 -5
  2413. package/http/node_modules/bower/lib/node_modules/lodash/fp/unzipWith.js +0 -5
  2414. package/http/node_modules/bower/lib/node_modules/lodash/fp/update.js +0 -5
  2415. package/http/node_modules/bower/lib/node_modules/lodash/fp/updateWith.js +0 -5
  2416. package/http/node_modules/bower/lib/node_modules/lodash/fp/upperCase.js +0 -5
  2417. package/http/node_modules/bower/lib/node_modules/lodash/fp/upperFirst.js +0 -5
  2418. package/http/node_modules/bower/lib/node_modules/lodash/fp/useWith.js +0 -1
  2419. package/http/node_modules/bower/lib/node_modules/lodash/fp/util.js +0 -2
  2420. package/http/node_modules/bower/lib/node_modules/lodash/fp/value.js +0 -5
  2421. package/http/node_modules/bower/lib/node_modules/lodash/fp/valueOf.js +0 -5
  2422. package/http/node_modules/bower/lib/node_modules/lodash/fp/values.js +0 -5
  2423. package/http/node_modules/bower/lib/node_modules/lodash/fp/valuesIn.js +0 -5
  2424. package/http/node_modules/bower/lib/node_modules/lodash/fp/where.js +0 -1
  2425. package/http/node_modules/bower/lib/node_modules/lodash/fp/whereEq.js +0 -1
  2426. package/http/node_modules/bower/lib/node_modules/lodash/fp/without.js +0 -5
  2427. package/http/node_modules/bower/lib/node_modules/lodash/fp/words.js +0 -5
  2428. package/http/node_modules/bower/lib/node_modules/lodash/fp/wrap.js +0 -5
  2429. package/http/node_modules/bower/lib/node_modules/lodash/fp/wrapperAt.js +0 -5
  2430. package/http/node_modules/bower/lib/node_modules/lodash/fp/wrapperChain.js +0 -5
  2431. package/http/node_modules/bower/lib/node_modules/lodash/fp/wrapperLodash.js +0 -5
  2432. package/http/node_modules/bower/lib/node_modules/lodash/fp/wrapperReverse.js +0 -5
  2433. package/http/node_modules/bower/lib/node_modules/lodash/fp/wrapperValue.js +0 -5
  2434. package/http/node_modules/bower/lib/node_modules/lodash/fp/xor.js +0 -5
  2435. package/http/node_modules/bower/lib/node_modules/lodash/fp/xorBy.js +0 -5
  2436. package/http/node_modules/bower/lib/node_modules/lodash/fp/xorWith.js +0 -5
  2437. package/http/node_modules/bower/lib/node_modules/lodash/fp/zip.js +0 -5
  2438. package/http/node_modules/bower/lib/node_modules/lodash/fp/zipAll.js +0 -5
  2439. package/http/node_modules/bower/lib/node_modules/lodash/fp/zipObj.js +0 -1
  2440. package/http/node_modules/bower/lib/node_modules/lodash/fp/zipObject.js +0 -5
  2441. package/http/node_modules/bower/lib/node_modules/lodash/fp/zipObjectDeep.js +0 -5
  2442. package/http/node_modules/bower/lib/node_modules/lodash/fp/zipWith.js +0 -5
  2443. package/http/node_modules/bower/lib/node_modules/lodash/fp.js +0 -2
  2444. package/http/node_modules/bower/lib/node_modules/lodash/fromPairs.js +0 -28
  2445. package/http/node_modules/bower/lib/node_modules/lodash/function.js +0 -25
  2446. package/http/node_modules/bower/lib/node_modules/lodash/functions.js +0 -31
  2447. package/http/node_modules/bower/lib/node_modules/lodash/functionsIn.js +0 -31
  2448. package/http/node_modules/bower/lib/node_modules/lodash/get.js +0 -33
  2449. package/http/node_modules/bower/lib/node_modules/lodash/groupBy.js +0 -41
  2450. package/http/node_modules/bower/lib/node_modules/lodash/gt.js +0 -29
  2451. package/http/node_modules/bower/lib/node_modules/lodash/gte.js +0 -30
  2452. package/http/node_modules/bower/lib/node_modules/lodash/has.js +0 -35
  2453. package/http/node_modules/bower/lib/node_modules/lodash/hasIn.js +0 -34
  2454. package/http/node_modules/bower/lib/node_modules/lodash/head.js +0 -23
  2455. package/http/node_modules/bower/lib/node_modules/lodash/identity.js +0 -21
  2456. package/http/node_modules/bower/lib/node_modules/lodash/inRange.js +0 -55
  2457. package/http/node_modules/bower/lib/node_modules/lodash/includes.js +0 -53
  2458. package/http/node_modules/bower/lib/node_modules/lodash/index.js +0 -1
  2459. package/http/node_modules/bower/lib/node_modules/lodash/indexOf.js +0 -42
  2460. package/http/node_modules/bower/lib/node_modules/lodash/initial.js +0 -22
  2461. package/http/node_modules/bower/lib/node_modules/lodash/intersection.js +0 -30
  2462. package/http/node_modules/bower/lib/node_modules/lodash/intersectionBy.js +0 -45
  2463. package/http/node_modules/bower/lib/node_modules/lodash/intersectionWith.js +0 -41
  2464. package/http/node_modules/bower/lib/node_modules/lodash/invert.js +0 -27
  2465. package/http/node_modules/bower/lib/node_modules/lodash/invertBy.js +0 -44
  2466. package/http/node_modules/bower/lib/node_modules/lodash/invoke.js +0 -24
  2467. package/http/node_modules/bower/lib/node_modules/lodash/invokeMap.js +0 -41
  2468. package/http/node_modules/bower/lib/node_modules/lodash/isArguments.js +0 -36
  2469. package/http/node_modules/bower/lib/node_modules/lodash/isArray.js +0 -26
  2470. package/http/node_modules/bower/lib/node_modules/lodash/isArrayBuffer.js +0 -27
  2471. package/http/node_modules/bower/lib/node_modules/lodash/isArrayLike.js +0 -33
  2472. package/http/node_modules/bower/lib/node_modules/lodash/isArrayLikeObject.js +0 -33
  2473. package/http/node_modules/bower/lib/node_modules/lodash/isBoolean.js +0 -29
  2474. package/http/node_modules/bower/lib/node_modules/lodash/isBuffer.js +0 -38
  2475. package/http/node_modules/bower/lib/node_modules/lodash/isDate.js +0 -27
  2476. package/http/node_modules/bower/lib/node_modules/lodash/isElement.js +0 -25
  2477. package/http/node_modules/bower/lib/node_modules/lodash/isEmpty.js +0 -77
  2478. package/http/node_modules/bower/lib/node_modules/lodash/isEqual.js +0 -35
  2479. package/http/node_modules/bower/lib/node_modules/lodash/isEqualWith.js +0 -41
  2480. package/http/node_modules/bower/lib/node_modules/lodash/isError.js +0 -36
  2481. package/http/node_modules/bower/lib/node_modules/lodash/isFinite.js +0 -36
  2482. package/http/node_modules/bower/lib/node_modules/lodash/isFunction.js +0 -37
  2483. package/http/node_modules/bower/lib/node_modules/lodash/isInteger.js +0 -33
  2484. package/http/node_modules/bower/lib/node_modules/lodash/isLength.js +0 -35
  2485. package/http/node_modules/bower/lib/node_modules/lodash/isMap.js +0 -27
  2486. package/http/node_modules/bower/lib/node_modules/lodash/isMatch.js +0 -36
  2487. package/http/node_modules/bower/lib/node_modules/lodash/isMatchWith.js +0 -41
  2488. package/http/node_modules/bower/lib/node_modules/lodash/isNaN.js +0 -38
  2489. package/http/node_modules/bower/lib/node_modules/lodash/isNative.js +0 -40
  2490. package/http/node_modules/bower/lib/node_modules/lodash/isNil.js +0 -25
  2491. package/http/node_modules/bower/lib/node_modules/lodash/isNull.js +0 -22
  2492. package/http/node_modules/bower/lib/node_modules/lodash/isNumber.js +0 -38
  2493. package/http/node_modules/bower/lib/node_modules/lodash/isObject.js +0 -31
  2494. package/http/node_modules/bower/lib/node_modules/lodash/isObjectLike.js +0 -29
  2495. package/http/node_modules/bower/lib/node_modules/lodash/isPlainObject.js +0 -62
  2496. package/http/node_modules/bower/lib/node_modules/lodash/isRegExp.js +0 -27
  2497. package/http/node_modules/bower/lib/node_modules/lodash/isSafeInteger.js +0 -37
  2498. package/http/node_modules/bower/lib/node_modules/lodash/isSet.js +0 -27
  2499. package/http/node_modules/bower/lib/node_modules/lodash/isString.js +0 -30
  2500. package/http/node_modules/bower/lib/node_modules/lodash/isSymbol.js +0 -29
  2501. package/http/node_modules/bower/lib/node_modules/lodash/isTypedArray.js +0 -27
  2502. package/http/node_modules/bower/lib/node_modules/lodash/isUndefined.js +0 -22
  2503. package/http/node_modules/bower/lib/node_modules/lodash/isWeakMap.js +0 -28
  2504. package/http/node_modules/bower/lib/node_modules/lodash/isWeakSet.js +0 -28
  2505. package/http/node_modules/bower/lib/node_modules/lodash/iteratee.js +0 -53
  2506. package/http/node_modules/bower/lib/node_modules/lodash/join.js +0 -26
  2507. package/http/node_modules/bower/lib/node_modules/lodash/kebabCase.js +0 -28
  2508. package/http/node_modules/bower/lib/node_modules/lodash/keyBy.js +0 -36
  2509. package/http/node_modules/bower/lib/node_modules/lodash/keys.js +0 -37
  2510. package/http/node_modules/bower/lib/node_modules/lodash/keysIn.js +0 -32
  2511. package/http/node_modules/bower/lib/node_modules/lodash/lang.js +0 -58
  2512. package/http/node_modules/bower/lib/node_modules/lodash/last.js +0 -20
  2513. package/http/node_modules/bower/lib/node_modules/lodash/lastIndexOf.js +0 -46
  2514. package/http/node_modules/bower/lib/node_modules/lodash/lodash.js +0 -17084
  2515. package/http/node_modules/bower/lib/node_modules/lodash/lodash.min.js +0 -136
  2516. package/http/node_modules/bower/lib/node_modules/lodash/lowerCase.js +0 -27
  2517. package/http/node_modules/bower/lib/node_modules/lodash/lowerFirst.js +0 -22
  2518. package/http/node_modules/bower/lib/node_modules/lodash/lt.js +0 -29
  2519. package/http/node_modules/bower/lib/node_modules/lodash/lte.js +0 -30
  2520. package/http/node_modules/bower/lib/node_modules/lodash/map.js +0 -53
  2521. package/http/node_modules/bower/lib/node_modules/lodash/mapKeys.js +0 -36
  2522. package/http/node_modules/bower/lib/node_modules/lodash/mapValues.js +0 -43
  2523. package/http/node_modules/bower/lib/node_modules/lodash/matches.js +0 -39
  2524. package/http/node_modules/bower/lib/node_modules/lodash/matchesProperty.js +0 -37
  2525. package/http/node_modules/bower/lib/node_modules/lodash/math.js +0 -17
  2526. package/http/node_modules/bower/lib/node_modules/lodash/max.js +0 -29
  2527. package/http/node_modules/bower/lib/node_modules/lodash/maxBy.js +0 -34
  2528. package/http/node_modules/bower/lib/node_modules/lodash/mean.js +0 -22
  2529. package/http/node_modules/bower/lib/node_modules/lodash/meanBy.js +0 -31
  2530. package/http/node_modules/bower/lib/node_modules/lodash/memoize.js +0 -73
  2531. package/http/node_modules/bower/lib/node_modules/lodash/merge.js +0 -39
  2532. package/http/node_modules/bower/lib/node_modules/lodash/mergeWith.js +0 -39
  2533. package/http/node_modules/bower/lib/node_modules/lodash/method.js +0 -34
  2534. package/http/node_modules/bower/lib/node_modules/lodash/methodOf.js +0 -33
  2535. package/http/node_modules/bower/lib/node_modules/lodash/min.js +0 -29
  2536. package/http/node_modules/bower/lib/node_modules/lodash/minBy.js +0 -34
  2537. package/http/node_modules/bower/lib/node_modules/lodash/mixin.js +0 -74
  2538. package/http/node_modules/bower/lib/node_modules/lodash/multiply.js +0 -22
  2539. package/http/node_modules/bower/lib/node_modules/lodash/negate.js +0 -40
  2540. package/http/node_modules/bower/lib/node_modules/lodash/next.js +0 -35
  2541. package/http/node_modules/bower/lib/node_modules/lodash/noop.js +0 -17
  2542. package/http/node_modules/bower/lib/node_modules/lodash/now.js +0 -23
  2543. package/http/node_modules/bower/lib/node_modules/lodash/nth.js +0 -29
  2544. package/http/node_modules/bower/lib/node_modules/lodash/nthArg.js +0 -32
  2545. package/http/node_modules/bower/lib/node_modules/lodash/number.js +0 -5
  2546. package/http/node_modules/bower/lib/node_modules/lodash/object.js +0 -49
  2547. package/http/node_modules/bower/lib/node_modules/lodash/omit.js +0 -57
  2548. package/http/node_modules/bower/lib/node_modules/lodash/omitBy.js +0 -29
  2549. package/http/node_modules/bower/lib/node_modules/lodash/once.js +0 -25
  2550. package/http/node_modules/bower/lib/node_modules/lodash/orderBy.js +0 -47
  2551. package/http/node_modules/bower/lib/node_modules/lodash/over.js +0 -24
  2552. package/http/node_modules/bower/lib/node_modules/lodash/overArgs.js +0 -61
  2553. package/http/node_modules/bower/lib/node_modules/lodash/overEvery.js +0 -30
  2554. package/http/node_modules/bower/lib/node_modules/lodash/overSome.js +0 -30
  2555. package/http/node_modules/bower/lib/node_modules/lodash/package.json +0 -17
  2556. package/http/node_modules/bower/lib/node_modules/lodash/pad.js +0 -49
  2557. package/http/node_modules/bower/lib/node_modules/lodash/padEnd.js +0 -39
  2558. package/http/node_modules/bower/lib/node_modules/lodash/padStart.js +0 -39
  2559. package/http/node_modules/bower/lib/node_modules/lodash/parseInt.js +0 -43
  2560. package/http/node_modules/bower/lib/node_modules/lodash/partial.js +0 -50
  2561. package/http/node_modules/bower/lib/node_modules/lodash/partialRight.js +0 -49
  2562. package/http/node_modules/bower/lib/node_modules/lodash/partition.js +0 -43
  2563. package/http/node_modules/bower/lib/node_modules/lodash/pick.js +0 -25
  2564. package/http/node_modules/bower/lib/node_modules/lodash/pickBy.js +0 -37
  2565. package/http/node_modules/bower/lib/node_modules/lodash/plant.js +0 -48
  2566. package/http/node_modules/bower/lib/node_modules/lodash/property.js +0 -32
  2567. package/http/node_modules/bower/lib/node_modules/lodash/propertyOf.js +0 -30
  2568. package/http/node_modules/bower/lib/node_modules/lodash/pull.js +0 -29
  2569. package/http/node_modules/bower/lib/node_modules/lodash/pullAll.js +0 -29
  2570. package/http/node_modules/bower/lib/node_modules/lodash/pullAllBy.js +0 -33
  2571. package/http/node_modules/bower/lib/node_modules/lodash/pullAllWith.js +0 -32
  2572. package/http/node_modules/bower/lib/node_modules/lodash/pullAt.js +0 -43
  2573. package/http/node_modules/bower/lib/node_modules/lodash/random.js +0 -82
  2574. package/http/node_modules/bower/lib/node_modules/lodash/range.js +0 -46
  2575. package/http/node_modules/bower/lib/node_modules/lodash/rangeRight.js +0 -41
  2576. package/http/node_modules/bower/lib/node_modules/lodash/rearg.js +0 -33
  2577. package/http/node_modules/bower/lib/node_modules/lodash/reduce.js +0 -51
  2578. package/http/node_modules/bower/lib/node_modules/lodash/reduceRight.js +0 -36
  2579. package/http/node_modules/bower/lib/node_modules/lodash/reject.js +0 -46
  2580. package/http/node_modules/bower/lib/node_modules/lodash/remove.js +0 -53
  2581. package/http/node_modules/bower/lib/node_modules/lodash/repeat.js +0 -37
  2582. package/http/node_modules/bower/lib/node_modules/lodash/replace.js +0 -29
  2583. package/http/node_modules/bower/lib/node_modules/lodash/rest.js +0 -40
  2584. package/http/node_modules/bower/lib/node_modules/lodash/result.js +0 -56
  2585. package/http/node_modules/bower/lib/node_modules/lodash/reverse.js +0 -34
  2586. package/http/node_modules/bower/lib/node_modules/lodash/round.js +0 -26
  2587. package/http/node_modules/bower/lib/node_modules/lodash/sample.js +0 -24
  2588. package/http/node_modules/bower/lib/node_modules/lodash/sampleSize.js +0 -37
  2589. package/http/node_modules/bower/lib/node_modules/lodash/seq.js +0 -16
  2590. package/http/node_modules/bower/lib/node_modules/lodash/set.js +0 -35
  2591. package/http/node_modules/bower/lib/node_modules/lodash/setWith.js +0 -32
  2592. package/http/node_modules/bower/lib/node_modules/lodash/shuffle.js +0 -25
  2593. package/http/node_modules/bower/lib/node_modules/lodash/size.js +0 -46
  2594. package/http/node_modules/bower/lib/node_modules/lodash/slice.js +0 -37
  2595. package/http/node_modules/bower/lib/node_modules/lodash/snakeCase.js +0 -28
  2596. package/http/node_modules/bower/lib/node_modules/lodash/some.js +0 -51
  2597. package/http/node_modules/bower/lib/node_modules/lodash/sortBy.js +0 -48
  2598. package/http/node_modules/bower/lib/node_modules/lodash/sortedIndex.js +0 -24
  2599. package/http/node_modules/bower/lib/node_modules/lodash/sortedIndexBy.js +0 -33
  2600. package/http/node_modules/bower/lib/node_modules/lodash/sortedIndexOf.js +0 -31
  2601. package/http/node_modules/bower/lib/node_modules/lodash/sortedLastIndex.js +0 -25
  2602. package/http/node_modules/bower/lib/node_modules/lodash/sortedLastIndexBy.js +0 -33
  2603. package/http/node_modules/bower/lib/node_modules/lodash/sortedLastIndexOf.js +0 -31
  2604. package/http/node_modules/bower/lib/node_modules/lodash/sortedUniq.js +0 -24
  2605. package/http/node_modules/bower/lib/node_modules/lodash/sortedUniqBy.js +0 -26
  2606. package/http/node_modules/bower/lib/node_modules/lodash/split.js +0 -52
  2607. package/http/node_modules/bower/lib/node_modules/lodash/spread.js +0 -63
  2608. package/http/node_modules/bower/lib/node_modules/lodash/startCase.js +0 -29
  2609. package/http/node_modules/bower/lib/node_modules/lodash/startsWith.js +0 -39
  2610. package/http/node_modules/bower/lib/node_modules/lodash/string.js +0 -33
  2611. package/http/node_modules/bower/lib/node_modules/lodash/stubArray.js +0 -23
  2612. package/http/node_modules/bower/lib/node_modules/lodash/stubFalse.js +0 -18
  2613. package/http/node_modules/bower/lib/node_modules/lodash/stubObject.js +0 -23
  2614. package/http/node_modules/bower/lib/node_modules/lodash/stubString.js +0 -18
  2615. package/http/node_modules/bower/lib/node_modules/lodash/stubTrue.js +0 -18
  2616. package/http/node_modules/bower/lib/node_modules/lodash/subtract.js +0 -22
  2617. package/http/node_modules/bower/lib/node_modules/lodash/sum.js +0 -24
  2618. package/http/node_modules/bower/lib/node_modules/lodash/sumBy.js +0 -33
  2619. package/http/node_modules/bower/lib/node_modules/lodash/tail.js +0 -22
  2620. package/http/node_modules/bower/lib/node_modules/lodash/take.js +0 -37
  2621. package/http/node_modules/bower/lib/node_modules/lodash/takeRight.js +0 -39
  2622. package/http/node_modules/bower/lib/node_modules/lodash/takeRightWhile.js +0 -45
  2623. package/http/node_modules/bower/lib/node_modules/lodash/takeWhile.js +0 -45
  2624. package/http/node_modules/bower/lib/node_modules/lodash/tap.js +0 -29
  2625. package/http/node_modules/bower/lib/node_modules/lodash/template.js +0 -238
  2626. package/http/node_modules/bower/lib/node_modules/lodash/templateSettings.js +0 -67
  2627. package/http/node_modules/bower/lib/node_modules/lodash/throttle.js +0 -69
  2628. package/http/node_modules/bower/lib/node_modules/lodash/thru.js +0 -28
  2629. package/http/node_modules/bower/lib/node_modules/lodash/times.js +0 -51
  2630. package/http/node_modules/bower/lib/node_modules/lodash/toArray.js +0 -58
  2631. package/http/node_modules/bower/lib/node_modules/lodash/toFinite.js +0 -42
  2632. package/http/node_modules/bower/lib/node_modules/lodash/toInteger.js +0 -36
  2633. package/http/node_modules/bower/lib/node_modules/lodash/toIterator.js +0 -23
  2634. package/http/node_modules/bower/lib/node_modules/lodash/toJSON.js +0 -1
  2635. package/http/node_modules/bower/lib/node_modules/lodash/toLength.js +0 -38
  2636. package/http/node_modules/bower/lib/node_modules/lodash/toLower.js +0 -28
  2637. package/http/node_modules/bower/lib/node_modules/lodash/toNumber.js +0 -66
  2638. package/http/node_modules/bower/lib/node_modules/lodash/toPairs.js +0 -30
  2639. package/http/node_modules/bower/lib/node_modules/lodash/toPairsIn.js +0 -30
  2640. package/http/node_modules/bower/lib/node_modules/lodash/toPath.js +0 -33
  2641. package/http/node_modules/bower/lib/node_modules/lodash/toPlainObject.js +0 -32
  2642. package/http/node_modules/bower/lib/node_modules/lodash/toSafeInteger.js +0 -37
  2643. package/http/node_modules/bower/lib/node_modules/lodash/toString.js +0 -28
  2644. package/http/node_modules/bower/lib/node_modules/lodash/toUpper.js +0 -28
  2645. package/http/node_modules/bower/lib/node_modules/lodash/transform.js +0 -65
  2646. package/http/node_modules/bower/lib/node_modules/lodash/trim.js +0 -49
  2647. package/http/node_modules/bower/lib/node_modules/lodash/trimEnd.js +0 -43
  2648. package/http/node_modules/bower/lib/node_modules/lodash/trimStart.js +0 -43
  2649. package/http/node_modules/bower/lib/node_modules/lodash/truncate.js +0 -111
  2650. package/http/node_modules/bower/lib/node_modules/lodash/unary.js +0 -22
  2651. package/http/node_modules/bower/lib/node_modules/lodash/unescape.js +0 -34
  2652. package/http/node_modules/bower/lib/node_modules/lodash/union.js +0 -26
  2653. package/http/node_modules/bower/lib/node_modules/lodash/unionBy.js +0 -39
  2654. package/http/node_modules/bower/lib/node_modules/lodash/unionWith.js +0 -34
  2655. package/http/node_modules/bower/lib/node_modules/lodash/uniq.js +0 -25
  2656. package/http/node_modules/bower/lib/node_modules/lodash/uniqBy.js +0 -31
  2657. package/http/node_modules/bower/lib/node_modules/lodash/uniqWith.js +0 -28
  2658. package/http/node_modules/bower/lib/node_modules/lodash/uniqueId.js +0 -28
  2659. package/http/node_modules/bower/lib/node_modules/lodash/unset.js +0 -34
  2660. package/http/node_modules/bower/lib/node_modules/lodash/unzip.js +0 -45
  2661. package/http/node_modules/bower/lib/node_modules/lodash/unzipWith.js +0 -39
  2662. package/http/node_modules/bower/lib/node_modules/lodash/update.js +0 -35
  2663. package/http/node_modules/bower/lib/node_modules/lodash/updateWith.js +0 -33
  2664. package/http/node_modules/bower/lib/node_modules/lodash/upperCase.js +0 -27
  2665. package/http/node_modules/bower/lib/node_modules/lodash/upperFirst.js +0 -22
  2666. package/http/node_modules/bower/lib/node_modules/lodash/util.js +0 -34
  2667. package/http/node_modules/bower/lib/node_modules/lodash/value.js +0 -1
  2668. package/http/node_modules/bower/lib/node_modules/lodash/valueOf.js +0 -1
  2669. package/http/node_modules/bower/lib/node_modules/lodash/values.js +0 -34
  2670. package/http/node_modules/bower/lib/node_modules/lodash/valuesIn.js +0 -32
  2671. package/http/node_modules/bower/lib/node_modules/lodash/without.js +0 -31
  2672. package/http/node_modules/bower/lib/node_modules/lodash/words.js +0 -35
  2673. package/http/node_modules/bower/lib/node_modules/lodash/wrap.js +0 -30
  2674. package/http/node_modules/bower/lib/node_modules/lodash/wrapperAt.js +0 -48
  2675. package/http/node_modules/bower/lib/node_modules/lodash/wrapperChain.js +0 -34
  2676. package/http/node_modules/bower/lib/node_modules/lodash/wrapperLodash.js +0 -147
  2677. package/http/node_modules/bower/lib/node_modules/lodash/wrapperReverse.js +0 -44
  2678. package/http/node_modules/bower/lib/node_modules/lodash/wrapperValue.js +0 -21
  2679. package/http/node_modules/bower/lib/node_modules/lodash/xor.js +0 -28
  2680. package/http/node_modules/bower/lib/node_modules/lodash/xorBy.js +0 -39
  2681. package/http/node_modules/bower/lib/node_modules/lodash/xorWith.js +0 -34
  2682. package/http/node_modules/bower/lib/node_modules/lodash/zip.js +0 -22
  2683. package/http/node_modules/bower/lib/node_modules/lodash/zipObject.js +0 -24
  2684. package/http/node_modules/bower/lib/node_modules/lodash/zipObjectDeep.js +0 -23
  2685. package/http/node_modules/bower/lib/node_modules/lodash/zipWith.js +0 -32
  2686. package/http/node_modules/bower/lib/node_modules/longest/LICENSE +0 -21
  2687. package/http/node_modules/bower/lib/node_modules/longest/README.md +0 -65
  2688. package/http/node_modules/bower/lib/node_modules/longest/index.js +0 -37
  2689. package/http/node_modules/bower/lib/node_modules/longest/package.json +0 -43
  2690. package/http/node_modules/bower/lib/node_modules/loud-rejection/api.js +0 -11
  2691. package/http/node_modules/bower/lib/node_modules/loud-rejection/index.js +0 -36
  2692. package/http/node_modules/bower/lib/node_modules/loud-rejection/license +0 -21
  2693. package/http/node_modules/bower/lib/node_modules/loud-rejection/package.json +0 -59
  2694. package/http/node_modules/bower/lib/node_modules/loud-rejection/readme.md +0 -68
  2695. package/http/node_modules/bower/lib/node_modules/loud-rejection/register.js +0 -2
  2696. package/http/node_modules/bower/lib/node_modules/lowercase-keys/index.js +0 -11
  2697. package/http/node_modules/bower/lib/node_modules/lowercase-keys/package.json +0 -35
  2698. package/http/node_modules/bower/lib/node_modules/lowercase-keys/readme.md +0 -33
  2699. package/http/node_modules/bower/lib/node_modules/lru-cache/.npmignore +0 -1
  2700. package/http/node_modules/bower/lib/node_modules/lru-cache/.travis.yml +0 -8
  2701. package/http/node_modules/bower/lib/node_modules/lru-cache/CONTRIBUTORS +0 -14
  2702. package/http/node_modules/bower/lib/node_modules/lru-cache/LICENSE +0 -15
  2703. package/http/node_modules/bower/lib/node_modules/lru-cache/README.md +0 -137
  2704. package/http/node_modules/bower/lib/node_modules/lru-cache/lib/lru-cache.js +0 -334
  2705. package/http/node_modules/bower/lib/node_modules/lru-cache/package.json +0 -21
  2706. package/http/node_modules/bower/lib/node_modules/lru-cache/test/basic.js +0 -396
  2707. package/http/node_modules/bower/lib/node_modules/lru-cache/test/foreach.js +0 -120
  2708. package/http/node_modules/bower/lib/node_modules/lru-cache/test/memory-leak.js +0 -51
  2709. package/http/node_modules/bower/lib/node_modules/lru-cache/test/serialize.js +0 -216
  2710. package/http/node_modules/bower/lib/node_modules/map-obj/index.js +0 -13
  2711. package/http/node_modules/bower/lib/node_modules/map-obj/license +0 -21
  2712. package/http/node_modules/bower/lib/node_modules/map-obj/package.json +0 -36
  2713. package/http/node_modules/bower/lib/node_modules/map-obj/readme.md +0 -29
  2714. package/http/node_modules/bower/lib/node_modules/md5-hex/browser.js +0 -10
  2715. package/http/node_modules/bower/lib/node_modules/md5-hex/index.js +0 -23
  2716. package/http/node_modules/bower/lib/node_modules/md5-hex/license +0 -21
  2717. package/http/node_modules/bower/lib/node_modules/md5-hex/package.json +0 -39
  2718. package/http/node_modules/bower/lib/node_modules/md5-hex/readme.md +0 -44
  2719. package/http/node_modules/bower/lib/node_modules/md5-o-matic/.npmignore +0 -25
  2720. package/http/node_modules/bower/lib/node_modules/md5-o-matic/.travis.yml +0 -8
  2721. package/http/node_modules/bower/lib/node_modules/md5-o-matic/LICENSE +0 -21
  2722. package/http/node_modules/bower/lib/node_modules/md5-o-matic/README.md +0 -35
  2723. package/http/node_modules/bower/lib/node_modules/md5-o-matic/lib/md5omatic.js +0 -201
  2724. package/http/node_modules/bower/lib/node_modules/md5-o-matic/package.json +0 -44
  2725. package/http/node_modules/bower/lib/node_modules/md5-o-matic/test/main.js +0 -25
  2726. package/http/node_modules/bower/lib/node_modules/meow/index.js +0 -82
  2727. package/http/node_modules/bower/lib/node_modules/meow/license +0 -21
  2728. package/http/node_modules/bower/lib/node_modules/meow/package.json +0 -58
  2729. package/http/node_modules/bower/lib/node_modules/meow/readme.md +0 -159
  2730. package/http/node_modules/bower/lib/node_modules/mime/.npmignore +0 -0
  2731. package/http/node_modules/bower/lib/node_modules/mime/LICENSE +0 -21
  2732. package/http/node_modules/bower/lib/node_modules/mime/README.md +0 -90
  2733. package/http/node_modules/bower/lib/node_modules/mime/build/build.js +0 -11
  2734. package/http/node_modules/bower/lib/node_modules/mime/build/test.js +0 -60
  2735. package/http/node_modules/bower/lib/node_modules/mime/cli.js +0 -8
  2736. package/http/node_modules/bower/lib/node_modules/mime/mime.js +0 -108
  2737. package/http/node_modules/bower/lib/node_modules/mime/package.json +0 -38
  2738. package/http/node_modules/bower/lib/node_modules/mime/types.json +0 -1
  2739. package/http/node_modules/bower/lib/node_modules/mime-db/HISTORY.md +0 -343
  2740. package/http/node_modules/bower/lib/node_modules/mime-db/LICENSE +0 -22
  2741. package/http/node_modules/bower/lib/node_modules/mime-db/README.md +0 -94
  2742. package/http/node_modules/bower/lib/node_modules/mime-db/db.json +0 -6966
  2743. package/http/node_modules/bower/lib/node_modules/mime-db/index.js +0 -11
  2744. package/http/node_modules/bower/lib/node_modules/mime-db/package.json +0 -57
  2745. package/http/node_modules/bower/lib/node_modules/mime-types/HISTORY.md +0 -247
  2746. package/http/node_modules/bower/lib/node_modules/mime-types/LICENSE +0 -23
  2747. package/http/node_modules/bower/lib/node_modules/mime-types/README.md +0 -108
  2748. package/http/node_modules/bower/lib/node_modules/mime-types/index.js +0 -188
  2749. package/http/node_modules/bower/lib/node_modules/mime-types/package.json +0 -43
  2750. package/http/node_modules/bower/lib/node_modules/minimatch/LICENSE +0 -15
  2751. package/http/node_modules/bower/lib/node_modules/minimatch/README.md +0 -209
  2752. package/http/node_modules/bower/lib/node_modules/minimatch/minimatch.js +0 -923
  2753. package/http/node_modules/bower/lib/node_modules/minimatch/package.json +0 -30
  2754. package/http/node_modules/bower/lib/node_modules/minimist/.travis.yml +0 -8
  2755. package/http/node_modules/bower/lib/node_modules/minimist/LICENSE +0 -18
  2756. package/http/node_modules/bower/lib/node_modules/minimist/example/parse.js +0 -2
  2757. package/http/node_modules/bower/lib/node_modules/minimist/index.js +0 -236
  2758. package/http/node_modules/bower/lib/node_modules/minimist/package.json +0 -45
  2759. package/http/node_modules/bower/lib/node_modules/minimist/readme.markdown +0 -91
  2760. package/http/node_modules/bower/lib/node_modules/minimist/test/all_bool.js +0 -32
  2761. package/http/node_modules/bower/lib/node_modules/minimist/test/bool.js +0 -166
  2762. package/http/node_modules/bower/lib/node_modules/minimist/test/dash.js +0 -31
  2763. package/http/node_modules/bower/lib/node_modules/minimist/test/default_bool.js +0 -35
  2764. package/http/node_modules/bower/lib/node_modules/minimist/test/dotted.js +0 -22
  2765. package/http/node_modules/bower/lib/node_modules/minimist/test/kv_short.js +0 -16
  2766. package/http/node_modules/bower/lib/node_modules/minimist/test/long.js +0 -31
  2767. package/http/node_modules/bower/lib/node_modules/minimist/test/num.js +0 -36
  2768. package/http/node_modules/bower/lib/node_modules/minimist/test/parse.js +0 -197
  2769. package/http/node_modules/bower/lib/node_modules/minimist/test/parse_modified.js +0 -9
  2770. package/http/node_modules/bower/lib/node_modules/minimist/test/short.js +0 -67
  2771. package/http/node_modules/bower/lib/node_modules/minimist/test/stop_early.js +0 -15
  2772. package/http/node_modules/bower/lib/node_modules/minimist/test/unknown.js +0 -102
  2773. package/http/node_modules/bower/lib/node_modules/minimist/test/whitespace.js +0 -8
  2774. package/http/node_modules/bower/lib/node_modules/mkdirp/.npmignore +0 -2
  2775. package/http/node_modules/bower/lib/node_modules/mkdirp/.travis.yml +0 -5
  2776. package/http/node_modules/bower/lib/node_modules/mkdirp/LICENSE +0 -21
  2777. package/http/node_modules/bower/lib/node_modules/mkdirp/bin/cmd.js +0 -33
  2778. package/http/node_modules/bower/lib/node_modules/mkdirp/bin/usage.txt +0 -12
  2779. package/http/node_modules/bower/lib/node_modules/mkdirp/examples/pow.js +0 -6
  2780. package/http/node_modules/bower/lib/node_modules/mkdirp/index.js +0 -97
  2781. package/http/node_modules/bower/lib/node_modules/mkdirp/package.json +0 -27
  2782. package/http/node_modules/bower/lib/node_modules/mkdirp/readme.markdown +0 -100
  2783. package/http/node_modules/bower/lib/node_modules/mkdirp/test/chmod.js +0 -38
  2784. package/http/node_modules/bower/lib/node_modules/mkdirp/test/clobber.js +0 -37
  2785. package/http/node_modules/bower/lib/node_modules/mkdirp/test/mkdirp.js +0 -26
  2786. package/http/node_modules/bower/lib/node_modules/mkdirp/test/opts_fs.js +0 -27
  2787. package/http/node_modules/bower/lib/node_modules/mkdirp/test/opts_fs_sync.js +0 -25
  2788. package/http/node_modules/bower/lib/node_modules/mkdirp/test/perm.js +0 -30
  2789. package/http/node_modules/bower/lib/node_modules/mkdirp/test/perm_sync.js +0 -34
  2790. package/http/node_modules/bower/lib/node_modules/mkdirp/test/race.js +0 -40
  2791. package/http/node_modules/bower/lib/node_modules/mkdirp/test/rel.js +0 -30
  2792. package/http/node_modules/bower/lib/node_modules/mkdirp/test/return.js +0 -25
  2793. package/http/node_modules/bower/lib/node_modules/mkdirp/test/return_sync.js +0 -24
  2794. package/http/node_modules/bower/lib/node_modules/mkdirp/test/root.js +0 -18
  2795. package/http/node_modules/bower/lib/node_modules/mkdirp/test/sync.js +0 -30
  2796. package/http/node_modules/bower/lib/node_modules/mkdirp/test/umask.js +0 -26
  2797. package/http/node_modules/bower/lib/node_modules/mkdirp/test/umask_sync.js +0 -30
  2798. package/http/node_modules/bower/lib/node_modules/mkpath/.npmignore +0 -1
  2799. package/http/node_modules/bower/lib/node_modules/mkpath/LICENSE +0 -7
  2800. package/http/node_modules/bower/lib/node_modules/mkpath/README.md +0 -27
  2801. package/http/node_modules/bower/lib/node_modules/mkpath/mkpath.js +0 -59
  2802. package/http/node_modules/bower/lib/node_modules/mkpath/package.json +0 -25
  2803. package/http/node_modules/bower/lib/node_modules/mkpath/test/chmod.js +0 -42
  2804. package/http/node_modules/bower/lib/node_modules/mkpath/test/clobber.js +0 -41
  2805. package/http/node_modules/bower/lib/node_modules/mkpath/test/mkpath.js +0 -32
  2806. package/http/node_modules/bower/lib/node_modules/mkpath/test/perm.js +0 -36
  2807. package/http/node_modules/bower/lib/node_modules/mkpath/test/perm_sync.js +0 -43
  2808. package/http/node_modules/bower/lib/node_modules/mkpath/test/rel.js +0 -36
  2809. package/http/node_modules/bower/lib/node_modules/mkpath/test/root.js +0 -22
  2810. package/http/node_modules/bower/lib/node_modules/mkpath/test/sync.js +0 -36
  2811. package/http/node_modules/bower/lib/node_modules/mkpath/test/umask.js +0 -32
  2812. package/http/node_modules/bower/lib/node_modules/mkpath/test/umask_sync.js +0 -36
  2813. package/http/node_modules/bower/lib/node_modules/mout/.editorconfig +0 -20
  2814. package/http/node_modules/bower/lib/node_modules/mout/.jshintrc +0 -69
  2815. package/http/node_modules/bower/lib/node_modules/mout/.npmignore +0 -30
  2816. package/http/node_modules/bower/lib/node_modules/mout/.travis.yml +0 -18
  2817. package/http/node_modules/bower/lib/node_modules/mout/CHANGELOG.md +0 -189
  2818. package/http/node_modules/bower/lib/node_modules/mout/CONTRIBUTING.md +0 -61
  2819. package/http/node_modules/bower/lib/node_modules/mout/LICENSE.md +0 -21
  2820. package/http/node_modules/bower/lib/node_modules/mout/README.md +0 -63
  2821. package/http/node_modules/bower/lib/node_modules/mout/array/append.js +0 -21
  2822. package/http/node_modules/bower/lib/node_modules/mout/array/collect.js +0 -27
  2823. package/http/node_modules/bower/lib/node_modules/mout/array/combine.js +0 -22
  2824. package/http/node_modules/bower/lib/node_modules/mout/array/compact.js +0 -13
  2825. package/http/node_modules/bower/lib/node_modules/mout/array/contains.js +0 -10
  2826. package/http/node_modules/bower/lib/node_modules/mout/array/difference.js +0 -23
  2827. package/http/node_modules/bower/lib/node_modules/mout/array/equals.js +0 -30
  2828. package/http/node_modules/bower/lib/node_modules/mout/array/every.js +0 -27
  2829. package/http/node_modules/bower/lib/node_modules/mout/array/filter.js +0 -26
  2830. package/http/node_modules/bower/lib/node_modules/mout/array/find.js +0 -13
  2831. package/http/node_modules/bower/lib/node_modules/mout/array/findIndex.js +0 -23
  2832. package/http/node_modules/bower/lib/node_modules/mout/array/findLast.js +0 -13
  2833. package/http/node_modules/bower/lib/node_modules/mout/array/findLastIndex.js +0 -24
  2834. package/http/node_modules/bower/lib/node_modules/mout/array/flatten.js +0 -45
  2835. package/http/node_modules/bower/lib/node_modules/mout/array/forEach.js +0 -23
  2836. package/http/node_modules/bower/lib/node_modules/mout/array/groupBy.js +0 -30
  2837. package/http/node_modules/bower/lib/node_modules/mout/array/indexOf.js +0 -28
  2838. package/http/node_modules/bower/lib/node_modules/mout/array/insert.js +0 -15
  2839. package/http/node_modules/bower/lib/node_modules/mout/array/intersection.js +0 -24
  2840. package/http/node_modules/bower/lib/node_modules/mout/array/invoke.js +0 -23
  2841. package/http/node_modules/bower/lib/node_modules/mout/array/join.js +0 -17
  2842. package/http/node_modules/bower/lib/node_modules/mout/array/last.js +0 -16
  2843. package/http/node_modules/bower/lib/node_modules/mout/array/lastIndexOf.js +0 -28
  2844. package/http/node_modules/bower/lib/node_modules/mout/array/map.js +0 -22
  2845. package/http/node_modules/bower/lib/node_modules/mout/array/max.js +0 -34
  2846. package/http/node_modules/bower/lib/node_modules/mout/array/min.js +0 -34
  2847. package/http/node_modules/bower/lib/node_modules/mout/array/pick.js +0 -31
  2848. package/http/node_modules/bower/lib/node_modules/mout/array/pluck.js +0 -12
  2849. package/http/node_modules/bower/lib/node_modules/mout/array/range.js +0 -27
  2850. package/http/node_modules/bower/lib/node_modules/mout/array/reduce.js +0 -33
  2851. package/http/node_modules/bower/lib/node_modules/mout/array/reduceRight.js +0 -34
  2852. package/http/node_modules/bower/lib/node_modules/mout/array/reject.js +0 -25
  2853. package/http/node_modules/bower/lib/node_modules/mout/array/remove.js +0 -13
  2854. package/http/node_modules/bower/lib/node_modules/mout/array/removeAll.js +0 -15
  2855. package/http/node_modules/bower/lib/node_modules/mout/array/reverse.js +0 -14
  2856. package/http/node_modules/bower/lib/node_modules/mout/array/shuffle.js +0 -28
  2857. package/http/node_modules/bower/lib/node_modules/mout/array/slice.js +0 -35
  2858. package/http/node_modules/bower/lib/node_modules/mout/array/some.js +0 -27
  2859. package/http/node_modules/bower/lib/node_modules/mout/array/sort.js +0 -55
  2860. package/http/node_modules/bower/lib/node_modules/mout/array/sortBy.js +0 -19
  2861. package/http/node_modules/bower/lib/node_modules/mout/array/split.js +0 -35
  2862. package/http/node_modules/bower/lib/node_modules/mout/array/take.js +0 -24
  2863. package/http/node_modules/bower/lib/node_modules/mout/array/toLookup.js +0 -28
  2864. package/http/node_modules/bower/lib/node_modules/mout/array/union.js +0 -19
  2865. package/http/node_modules/bower/lib/node_modules/mout/array/unique.js +0 -25
  2866. package/http/node_modules/bower/lib/node_modules/mout/array/xor.js +0 -26
  2867. package/http/node_modules/bower/lib/node_modules/mout/array/zip.js +0 -28
  2868. package/http/node_modules/bower/lib/node_modules/mout/array.js +0 -55
  2869. package/http/node_modules/bower/lib/node_modules/mout/collection/contains.js +0 -9
  2870. package/http/node_modules/bower/lib/node_modules/mout/collection/every.js +0 -9
  2871. package/http/node_modules/bower/lib/node_modules/mout/collection/filter.js +0 -23
  2872. package/http/node_modules/bower/lib/node_modules/mout/collection/find.js +0 -10
  2873. package/http/node_modules/bower/lib/node_modules/mout/collection/forEach.js +0 -9
  2874. package/http/node_modules/bower/lib/node_modules/mout/collection/make_.js +0 -19
  2875. package/http/node_modules/bower/lib/node_modules/mout/collection/map.js +0 -23
  2876. package/http/node_modules/bower/lib/node_modules/mout/collection/max.js +0 -10
  2877. package/http/node_modules/bower/lib/node_modules/mout/collection/min.js +0 -10
  2878. package/http/node_modules/bower/lib/node_modules/mout/collection/pluck.js +0 -14
  2879. package/http/node_modules/bower/lib/node_modules/mout/collection/reduce.js +0 -9
  2880. package/http/node_modules/bower/lib/node_modules/mout/collection/reject.js +0 -16
  2881. package/http/node_modules/bower/lib/node_modules/mout/collection/size.js +0 -19
  2882. package/http/node_modules/bower/lib/node_modules/mout/collection/some.js +0 -9
  2883. package/http/node_modules/bower/lib/node_modules/mout/collection.js +0 -22
  2884. package/http/node_modules/bower/lib/node_modules/mout/date/dayOfTheYear.js +0 -13
  2885. package/http/node_modules/bower/lib/node_modules/mout/date/diff.js +0 -130
  2886. package/http/node_modules/bower/lib/node_modules/mout/date/i18n/de-DE.js +0 -61
  2887. package/http/node_modules/bower/lib/node_modules/mout/date/i18n/en-US.js +0 -61
  2888. package/http/node_modules/bower/lib/node_modules/mout/date/i18n/pt-BR.js +0 -61
  2889. package/http/node_modules/bower/lib/node_modules/mout/date/i18n_.js +0 -14
  2890. package/http/node_modules/bower/lib/node_modules/mout/date/isLeapYear.js +0 -15
  2891. package/http/node_modules/bower/lib/node_modules/mout/date/isSame.js +0 -16
  2892. package/http/node_modules/bower/lib/node_modules/mout/date/parseIso.js +0 -146
  2893. package/http/node_modules/bower/lib/node_modules/mout/date/quarter.js +0 -16
  2894. package/http/node_modules/bower/lib/node_modules/mout/date/startOf.js +0 -54
  2895. package/http/node_modules/bower/lib/node_modules/mout/date/strftime.js +0 -121
  2896. package/http/node_modules/bower/lib/node_modules/mout/date/timezoneAbbr.js +0 -17
  2897. package/http/node_modules/bower/lib/node_modules/mout/date/timezoneOffset.js +0 -16
  2898. package/http/node_modules/bower/lib/node_modules/mout/date/totalDaysInMonth.js +0 -23
  2899. package/http/node_modules/bower/lib/node_modules/mout/date/totalDaysInYear.js +0 -13
  2900. package/http/node_modules/bower/lib/node_modules/mout/date/weekOfTheYear.js +0 -16
  2901. package/http/node_modules/bower/lib/node_modules/mout/date.js +0 -22
  2902. package/http/node_modules/bower/lib/node_modules/mout/doc/array.md +0 -982
  2903. package/http/node_modules/bower/lib/node_modules/mout/doc/collection.md +0 -233
  2904. package/http/node_modules/bower/lib/node_modules/mout/doc/date.md +0 -307
  2905. package/http/node_modules/bower/lib/node_modules/mout/doc/function.md +0 -293
  2906. package/http/node_modules/bower/lib/node_modules/mout/doc/lang.md +0 -516
  2907. package/http/node_modules/bower/lib/node_modules/mout/doc/math.md +0 -303
  2908. package/http/node_modules/bower/lib/node_modules/mout/doc/number.md +0 -279
  2909. package/http/node_modules/bower/lib/node_modules/mout/doc/object.md +0 -811
  2910. package/http/node_modules/bower/lib/node_modules/mout/doc/queryString.md +0 -115
  2911. package/http/node_modules/bower/lib/node_modules/mout/doc/random.md +0 -256
  2912. package/http/node_modules/bower/lib/node_modules/mout/doc/string.md +0 -626
  2913. package/http/node_modules/bower/lib/node_modules/mout/doc/time.md +0 -64
  2914. package/http/node_modules/bower/lib/node_modules/mout/function/awaitDelay.js +0 -22
  2915. package/http/node_modules/bower/lib/node_modules/mout/function/bind.js +0 -19
  2916. package/http/node_modules/bower/lib/node_modules/mout/function/compose.js +0 -23
  2917. package/http/node_modules/bower/lib/node_modules/mout/function/constant.js +0 -14
  2918. package/http/node_modules/bower/lib/node_modules/mout/function/debounce.js +0 -32
  2919. package/http/node_modules/bower/lib/node_modules/mout/function/func.js +0 -14
  2920. package/http/node_modules/bower/lib/node_modules/mout/function/identity.js +0 -12
  2921. package/http/node_modules/bower/lib/node_modules/mout/function/makeIterator_.js +0 -34
  2922. package/http/node_modules/bower/lib/node_modules/mout/function/partial.js +0 -23
  2923. package/http/node_modules/bower/lib/node_modules/mout/function/prop.js +0 -14
  2924. package/http/node_modules/bower/lib/node_modules/mout/function/series.js +0 -22
  2925. package/http/node_modules/bower/lib/node_modules/mout/function/throttle.js +0 -33
  2926. package/http/node_modules/bower/lib/node_modules/mout/function/timeout.js +0 -17
  2927. package/http/node_modules/bower/lib/node_modules/mout/function/times.js +0 -17
  2928. package/http/node_modules/bower/lib/node_modules/mout/function/wrap.js +0 -14
  2929. package/http/node_modules/bower/lib/node_modules/mout/function.js +0 -23
  2930. package/http/node_modules/bower/lib/node_modules/mout/index.js +0 -25
  2931. package/http/node_modules/bower/lib/node_modules/mout/lang/GLOBAL.js +0 -7
  2932. package/http/node_modules/bower/lib/node_modules/mout/lang/clone.js +0 -49
  2933. package/http/node_modules/bower/lib/node_modules/mout/lang/createObject.js +0 -18
  2934. package/http/node_modules/bower/lib/node_modules/mout/lang/ctorApply.js +0 -17
  2935. package/http/node_modules/bower/lib/node_modules/mout/lang/deepClone.js +0 -48
  2936. package/http/node_modules/bower/lib/node_modules/mout/lang/deepEquals.js +0 -30
  2937. package/http/node_modules/bower/lib/node_modules/mout/lang/defaults.js +0 -17
  2938. package/http/node_modules/bower/lib/node_modules/mout/lang/inheritPrototype.js +0 -18
  2939. package/http/node_modules/bower/lib/node_modules/mout/lang/is.js +0 -23
  2940. package/http/node_modules/bower/lib/node_modules/mout/lang/isArguments.js +0 -15
  2941. package/http/node_modules/bower/lib/node_modules/mout/lang/isArray.js +0 -8
  2942. package/http/node_modules/bower/lib/node_modules/mout/lang/isBoolean.js +0 -8
  2943. package/http/node_modules/bower/lib/node_modules/mout/lang/isDate.js +0 -8
  2944. package/http/node_modules/bower/lib/node_modules/mout/lang/isEmpty.js +0 -24
  2945. package/http/node_modules/bower/lib/node_modules/mout/lang/isFinite.js +0 -20
  2946. package/http/node_modules/bower/lib/node_modules/mout/lang/isFunction.js +0 -8
  2947. package/http/node_modules/bower/lib/node_modules/mout/lang/isInteger.js +0 -12
  2948. package/http/node_modules/bower/lib/node_modules/mout/lang/isKind.js +0 -9
  2949. package/http/node_modules/bower/lib/node_modules/mout/lang/isNaN.js +0 -16
  2950. package/http/node_modules/bower/lib/node_modules/mout/lang/isNull.js +0 -9
  2951. package/http/node_modules/bower/lib/node_modules/mout/lang/isNumber.js +0 -8
  2952. package/http/node_modules/bower/lib/node_modules/mout/lang/isObject.js +0 -8
  2953. package/http/node_modules/bower/lib/node_modules/mout/lang/isPlainObject.js +0 -13
  2954. package/http/node_modules/bower/lib/node_modules/mout/lang/isPrimitive.js +0 -21
  2955. package/http/node_modules/bower/lib/node_modules/mout/lang/isRegExp.js +0 -8
  2956. package/http/node_modules/bower/lib/node_modules/mout/lang/isString.js +0 -8
  2957. package/http/node_modules/bower/lib/node_modules/mout/lang/isUndefined.js +0 -10
  2958. package/http/node_modules/bower/lib/node_modules/mout/lang/isnt.js +0 -12
  2959. package/http/node_modules/bower/lib/node_modules/mout/lang/kindOf.js +0 -20
  2960. package/http/node_modules/bower/lib/node_modules/mout/lang/toArray.js +0 -30
  2961. package/http/node_modules/bower/lib/node_modules/mout/lang/toNumber.js +0 -20
  2962. package/http/node_modules/bower/lib/node_modules/mout/lang/toString.js +0 -13
  2963. package/http/node_modules/bower/lib/node_modules/mout/lang.js +0 -40
  2964. package/http/node_modules/bower/lib/node_modules/mout/math/ceil.js +0 -11
  2965. package/http/node_modules/bower/lib/node_modules/mout/math/clamp.js +0 -9
  2966. package/http/node_modules/bower/lib/node_modules/mout/math/countSteps.js +0 -16
  2967. package/http/node_modules/bower/lib/node_modules/mout/math/floor.js +0 -10
  2968. package/http/node_modules/bower/lib/node_modules/mout/math/inRange.js +0 -11
  2969. package/http/node_modules/bower/lib/node_modules/mout/math/isNear.js +0 -9
  2970. package/http/node_modules/bower/lib/node_modules/mout/math/lerp.js +0 -11
  2971. package/http/node_modules/bower/lib/node_modules/mout/math/loop.js +0 -10
  2972. package/http/node_modules/bower/lib/node_modules/mout/math/map.js +0 -11
  2973. package/http/node_modules/bower/lib/node_modules/mout/math/norm.js +0 -13
  2974. package/http/node_modules/bower/lib/node_modules/mout/math/round.js +0 -12
  2975. package/http/node_modules/bower/lib/node_modules/mout/math.js +0 -19
  2976. package/http/node_modules/bower/lib/node_modules/mout/number/MAX_INT.js +0 -6
  2977. package/http/node_modules/bower/lib/node_modules/mout/number/MAX_SAFE_INTEGER.js +0 -7
  2978. package/http/node_modules/bower/lib/node_modules/mout/number/MAX_UINT.js +0 -6
  2979. package/http/node_modules/bower/lib/node_modules/mout/number/MIN_INT.js +0 -6
  2980. package/http/node_modules/bower/lib/node_modules/mout/number/abbreviate.js +0 -35
  2981. package/http/node_modules/bower/lib/node_modules/mout/number/currencyFormat.js +0 -27
  2982. package/http/node_modules/bower/lib/node_modules/mout/number/enforcePrecision.js +0 -12
  2983. package/http/node_modules/bower/lib/node_modules/mout/number/isNaN.js +0 -14
  2984. package/http/node_modules/bower/lib/node_modules/mout/number/nth.js +0 -25
  2985. package/http/node_modules/bower/lib/node_modules/mout/number/ordinal.js +0 -14
  2986. package/http/node_modules/bower/lib/node_modules/mout/number/pad.js +0 -14
  2987. package/http/node_modules/bower/lib/node_modules/mout/number/rol.js +0 -10
  2988. package/http/node_modules/bower/lib/node_modules/mout/number/ror.js +0 -10
  2989. package/http/node_modules/bower/lib/node_modules/mout/number/sign.js +0 -15
  2990. package/http/node_modules/bower/lib/node_modules/mout/number/toInt.js +0 -17
  2991. package/http/node_modules/bower/lib/node_modules/mout/number/toUInt.js +0 -15
  2992. package/http/node_modules/bower/lib/node_modules/mout/number/toUInt31.js +0 -15
  2993. package/http/node_modules/bower/lib/node_modules/mout/number.js +0 -25
  2994. package/http/node_modules/bower/lib/node_modules/mout/object/bindAll.js +0 -19
  2995. package/http/node_modules/bower/lib/node_modules/mout/object/contains.js +0 -13
  2996. package/http/node_modules/bower/lib/node_modules/mout/object/deepFillIn.js +0 -33
  2997. package/http/node_modules/bower/lib/node_modules/mout/object/deepMatches.js +0 -55
  2998. package/http/node_modules/bower/lib/node_modules/mout/object/deepMixIn.js +0 -34
  2999. package/http/node_modules/bower/lib/node_modules/mout/object/equals.js +0 -33
  3000. package/http/node_modules/bower/lib/node_modules/mout/object/every.js +0 -23
  3001. package/http/node_modules/bower/lib/node_modules/mout/object/fillIn.js +0 -21
  3002. package/http/node_modules/bower/lib/node_modules/mout/object/filter.js +0 -20
  3003. package/http/node_modules/bower/lib/node_modules/mout/object/find.js +0 -21
  3004. package/http/node_modules/bower/lib/node_modules/mout/object/flatten.js +0 -38
  3005. package/http/node_modules/bower/lib/node_modules/mout/object/forIn.js +0 -76
  3006. package/http/node_modules/bower/lib/node_modules/mout/object/forOwn.js +0 -19
  3007. package/http/node_modules/bower/lib/node_modules/mout/object/functions.js +0 -18
  3008. package/http/node_modules/bower/lib/node_modules/mout/object/get.js +0 -20
  3009. package/http/node_modules/bower/lib/node_modules/mout/object/has.js +0 -15
  3010. package/http/node_modules/bower/lib/node_modules/mout/object/hasOwn.js +0 -12
  3011. package/http/node_modules/bower/lib/node_modules/mout/object/keys.js +0 -16
  3012. package/http/node_modules/bower/lib/node_modules/mout/object/map.js +0 -18
  3013. package/http/node_modules/bower/lib/node_modules/mout/object/matches.js +0 -20
  3014. package/http/node_modules/bower/lib/node_modules/mout/object/max.js +0 -12
  3015. package/http/node_modules/bower/lib/node_modules/mout/object/merge.js +0 -40
  3016. package/http/node_modules/bower/lib/node_modules/mout/object/min.js +0 -12
  3017. package/http/node_modules/bower/lib/node_modules/mout/object/mixIn.js +0 -28
  3018. package/http/node_modules/bower/lib/node_modules/mout/object/namespace.js +0 -19
  3019. package/http/node_modules/bower/lib/node_modules/mout/object/omit.js +0 -21
  3020. package/http/node_modules/bower/lib/node_modules/mout/object/pick.js +0 -18
  3021. package/http/node_modules/bower/lib/node_modules/mout/object/pluck.js +0 -13
  3022. package/http/node_modules/bower/lib/node_modules/mout/object/reduce.js +0 -29
  3023. package/http/node_modules/bower/lib/node_modules/mout/object/reject.js +0 -16
  3024. package/http/node_modules/bower/lib/node_modules/mout/object/result.js +0 -14
  3025. package/http/node_modules/bower/lib/node_modules/mout/object/set.js +0 -17
  3026. package/http/node_modules/bower/lib/node_modules/mout/object/size.js +0 -16
  3027. package/http/node_modules/bower/lib/node_modules/mout/object/some.js +0 -21
  3028. package/http/node_modules/bower/lib/node_modules/mout/object/unset.js +0 -23
  3029. package/http/node_modules/bower/lib/node_modules/mout/object/values.js +0 -16
  3030. package/http/node_modules/bower/lib/node_modules/mout/object.js +0 -44
  3031. package/http/node_modules/bower/lib/node_modules/mout/package.json +0 -94
  3032. package/http/node_modules/bower/lib/node_modules/mout/queryString/contains.js +0 -12
  3033. package/http/node_modules/bower/lib/node_modules/mout/queryString/decode.js +0 -36
  3034. package/http/node_modules/bower/lib/node_modules/mout/queryString/encode.js +0 -27
  3035. package/http/node_modules/bower/lib/node_modules/mout/queryString/getParam.js +0 -15
  3036. package/http/node_modules/bower/lib/node_modules/mout/queryString/getQuery.js +0 -13
  3037. package/http/node_modules/bower/lib/node_modules/mout/queryString/parse.js +0 -13
  3038. package/http/node_modules/bower/lib/node_modules/mout/queryString/setParam.js +0 -28
  3039. package/http/node_modules/bower/lib/node_modules/mout/queryString.js +0 -15
  3040. package/http/node_modules/bower/lib/node_modules/mout/random/choice.js +0 -15
  3041. package/http/node_modules/bower/lib/node_modules/mout/random/guid.js +0 -24
  3042. package/http/node_modules/bower/lib/node_modules/mout/random/rand.js +0 -15
  3043. package/http/node_modules/bower/lib/node_modules/mout/random/randBit.js +0 -11
  3044. package/http/node_modules/bower/lib/node_modules/mout/random/randBool.js +0 -12
  3045. package/http/node_modules/bower/lib/node_modules/mout/random/randHex.js +0 -19
  3046. package/http/node_modules/bower/lib/node_modules/mout/random/randInt.js +0 -18
  3047. package/http/node_modules/bower/lib/node_modules/mout/random/randSign.js +0 -11
  3048. package/http/node_modules/bower/lib/node_modules/mout/random/randString.js +0 -27
  3049. package/http/node_modules/bower/lib/node_modules/mout/random/random.js +0 -18
  3050. package/http/node_modules/bower/lib/node_modules/mout/random.js +0 -18
  3051. package/http/node_modules/bower/lib/node_modules/mout/src/array/append.js +0 -21
  3052. package/http/node_modules/bower/lib/node_modules/mout/src/array/collect.js +0 -26
  3053. package/http/node_modules/bower/lib/node_modules/mout/src/array/combine.js +0 -22
  3054. package/http/node_modules/bower/lib/node_modules/mout/src/array/compact.js +0 -13
  3055. package/http/node_modules/bower/lib/node_modules/mout/src/array/contains.js +0 -10
  3056. package/http/node_modules/bower/lib/node_modules/mout/src/array/difference.js +0 -19
  3057. package/http/node_modules/bower/lib/node_modules/mout/src/array/equals.js +0 -28
  3058. package/http/node_modules/bower/lib/node_modules/mout/src/array/every.js +0 -27
  3059. package/http/node_modules/bower/lib/node_modules/mout/src/array/filter.js +0 -26
  3060. package/http/node_modules/bower/lib/node_modules/mout/src/array/find.js +0 -13
  3061. package/http/node_modules/bower/lib/node_modules/mout/src/array/findIndex.js +0 -23
  3062. package/http/node_modules/bower/lib/node_modules/mout/src/array/findLast.js +0 -13
  3063. package/http/node_modules/bower/lib/node_modules/mout/src/array/findLastIndex.js +0 -24
  3064. package/http/node_modules/bower/lib/node_modules/mout/src/array/flatten.js +0 -44
  3065. package/http/node_modules/bower/lib/node_modules/mout/src/array/forEach.js +0 -23
  3066. package/http/node_modules/bower/lib/node_modules/mout/src/array/groupBy.js +0 -32
  3067. package/http/node_modules/bower/lib/node_modules/mout/src/array/indexOf.js +0 -28
  3068. package/http/node_modules/bower/lib/node_modules/mout/src/array/insert.js +0 -14
  3069. package/http/node_modules/bower/lib/node_modules/mout/src/array/intersection.js +0 -20
  3070. package/http/node_modules/bower/lib/node_modules/mout/src/array/invoke.js +0 -23
  3071. package/http/node_modules/bower/lib/node_modules/mout/src/array/join.js +0 -17
  3072. package/http/node_modules/bower/lib/node_modules/mout/src/array/last.js +0 -16
  3073. package/http/node_modules/bower/lib/node_modules/mout/src/array/lastIndexOf.js +0 -28
  3074. package/http/node_modules/bower/lib/node_modules/mout/src/array/map.js +0 -22
  3075. package/http/node_modules/bower/lib/node_modules/mout/src/array/max.js +0 -34
  3076. package/http/node_modules/bower/lib/node_modules/mout/src/array/min.js +0 -34
  3077. package/http/node_modules/bower/lib/node_modules/mout/src/array/pick.js +0 -31
  3078. package/http/node_modules/bower/lib/node_modules/mout/src/array/pluck.js +0 -12
  3079. package/http/node_modules/bower/lib/node_modules/mout/src/array/range.js +0 -27
  3080. package/http/node_modules/bower/lib/node_modules/mout/src/array/reduce.js +0 -33
  3081. package/http/node_modules/bower/lib/node_modules/mout/src/array/reduceRight.js +0 -34
  3082. package/http/node_modules/bower/lib/node_modules/mout/src/array/reject.js +0 -25
  3083. package/http/node_modules/bower/lib/node_modules/mout/src/array/remove.js +0 -13
  3084. package/http/node_modules/bower/lib/node_modules/mout/src/array/removeAll.js +0 -15
  3085. package/http/node_modules/bower/lib/node_modules/mout/src/array/reverse.js +0 -14
  3086. package/http/node_modules/bower/lib/node_modules/mout/src/array/shuffle.js +0 -28
  3087. package/http/node_modules/bower/lib/node_modules/mout/src/array/slice.js +0 -35
  3088. package/http/node_modules/bower/lib/node_modules/mout/src/array/some.js +0 -27
  3089. package/http/node_modules/bower/lib/node_modules/mout/src/array/sort.js +0 -55
  3090. package/http/node_modules/bower/lib/node_modules/mout/src/array/sortBy.js +0 -18
  3091. package/http/node_modules/bower/lib/node_modules/mout/src/array/split.js +0 -35
  3092. package/http/node_modules/bower/lib/node_modules/mout/src/array/take.js +0 -24
  3093. package/http/node_modules/bower/lib/node_modules/mout/src/array/toLookup.js +0 -28
  3094. package/http/node_modules/bower/lib/node_modules/mout/src/array/union.js +0 -18
  3095. package/http/node_modules/bower/lib/node_modules/mout/src/array/unique.js +0 -25
  3096. package/http/node_modules/bower/lib/node_modules/mout/src/array/xor.js +0 -24
  3097. package/http/node_modules/bower/lib/node_modules/mout/src/array/zip.js +0 -27
  3098. package/http/node_modules/bower/lib/node_modules/mout/src/array.js +0 -55
  3099. package/http/node_modules/bower/lib/node_modules/mout/src/collection/contains.js +0 -7
  3100. package/http/node_modules/bower/lib/node_modules/mout/src/collection/every.js +0 -7
  3101. package/http/node_modules/bower/lib/node_modules/mout/src/collection/filter.js +0 -22
  3102. package/http/node_modules/bower/lib/node_modules/mout/src/collection/find.js +0 -8
  3103. package/http/node_modules/bower/lib/node_modules/mout/src/collection/forEach.js +0 -7
  3104. package/http/node_modules/bower/lib/node_modules/mout/src/collection/make_.js +0 -19
  3105. package/http/node_modules/bower/lib/node_modules/mout/src/collection/map.js +0 -20
  3106. package/http/node_modules/bower/lib/node_modules/mout/src/collection/max.js +0 -8
  3107. package/http/node_modules/bower/lib/node_modules/mout/src/collection/min.js +0 -8
  3108. package/http/node_modules/bower/lib/node_modules/mout/src/collection/pluck.js +0 -14
  3109. package/http/node_modules/bower/lib/node_modules/mout/src/collection/reduce.js +0 -7
  3110. package/http/node_modules/bower/lib/node_modules/mout/src/collection/reject.js +0 -15
  3111. package/http/node_modules/bower/lib/node_modules/mout/src/collection/size.js +0 -18
  3112. package/http/node_modules/bower/lib/node_modules/mout/src/collection/some.js +0 -7
  3113. package/http/node_modules/bower/lib/node_modules/mout/src/collection.js +0 -22
  3114. package/http/node_modules/bower/lib/node_modules/mout/src/date/dayOfTheYear.js +0 -13
  3115. package/http/node_modules/bower/lib/node_modules/mout/src/date/diff.js +0 -128
  3116. package/http/node_modules/bower/lib/node_modules/mout/src/date/i18n/de-DE.js +0 -61
  3117. package/http/node_modules/bower/lib/node_modules/mout/src/date/i18n/en-US.js +0 -61
  3118. package/http/node_modules/bower/lib/node_modules/mout/src/date/i18n/pt-BR.js +0 -61
  3119. package/http/node_modules/bower/lib/node_modules/mout/src/date/i18n_.js +0 -13
  3120. package/http/node_modules/bower/lib/node_modules/mout/src/date/isLeapYear.js +0 -15
  3121. package/http/node_modules/bower/lib/node_modules/mout/src/date/isSame.js +0 -16
  3122. package/http/node_modules/bower/lib/node_modules/mout/src/date/parseIso.js +0 -146
  3123. package/http/node_modules/bower/lib/node_modules/mout/src/date/quarter.js +0 -16
  3124. package/http/node_modules/bower/lib/node_modules/mout/src/date/startOf.js +0 -54
  3125. package/http/node_modules/bower/lib/node_modules/mout/src/date/strftime.js +0 -115
  3126. package/http/node_modules/bower/lib/node_modules/mout/src/date/timezoneAbbr.js +0 -17
  3127. package/http/node_modules/bower/lib/node_modules/mout/src/date/timezoneOffset.js +0 -16
  3128. package/http/node_modules/bower/lib/node_modules/mout/src/date/totalDaysInMonth.js +0 -22
  3129. package/http/node_modules/bower/lib/node_modules/mout/src/date/totalDaysInYear.js +0 -13
  3130. package/http/node_modules/bower/lib/node_modules/mout/src/date/weekOfTheYear.js +0 -16
  3131. package/http/node_modules/bower/lib/node_modules/mout/src/date.js +0 -22
  3132. package/http/node_modules/bower/lib/node_modules/mout/src/function/awaitDelay.js +0 -20
  3133. package/http/node_modules/bower/lib/node_modules/mout/src/function/bind.js +0 -19
  3134. package/http/node_modules/bower/lib/node_modules/mout/src/function/compose.js +0 -23
  3135. package/http/node_modules/bower/lib/node_modules/mout/src/function/constant.js +0 -14
  3136. package/http/node_modules/bower/lib/node_modules/mout/src/function/debounce.js +0 -32
  3137. package/http/node_modules/bower/lib/node_modules/mout/src/function/func.js +0 -14
  3138. package/http/node_modules/bower/lib/node_modules/mout/src/function/identity.js +0 -12
  3139. package/http/node_modules/bower/lib/node_modules/mout/src/function/makeIterator_.js +0 -32
  3140. package/http/node_modules/bower/lib/node_modules/mout/src/function/partial.js +0 -23
  3141. package/http/node_modules/bower/lib/node_modules/mout/src/function/prop.js +0 -14
  3142. package/http/node_modules/bower/lib/node_modules/mout/src/function/series.js +0 -22
  3143. package/http/node_modules/bower/lib/node_modules/mout/src/function/throttle.js +0 -33
  3144. package/http/node_modules/bower/lib/node_modules/mout/src/function/timeout.js +0 -17
  3145. package/http/node_modules/bower/lib/node_modules/mout/src/function/times.js +0 -17
  3146. package/http/node_modules/bower/lib/node_modules/mout/src/function/wrap.js +0 -14
  3147. package/http/node_modules/bower/lib/node_modules/mout/src/function.js +0 -23
  3148. package/http/node_modules/bower/lib/node_modules/mout/src/index.js +0 -25
  3149. package/http/node_modules/bower/lib/node_modules/mout/src/lang/GLOBAL.js +0 -7
  3150. package/http/node_modules/bower/lib/node_modules/mout/src/lang/clone.js +0 -47
  3151. package/http/node_modules/bower/lib/node_modules/mout/src/lang/createObject.js +0 -18
  3152. package/http/node_modules/bower/lib/node_modules/mout/src/lang/ctorApply.js +0 -17
  3153. package/http/node_modules/bower/lib/node_modules/mout/src/lang/deepClone.js +0 -45
  3154. package/http/node_modules/bower/lib/node_modules/mout/src/lang/deepEquals.js +0 -26
  3155. package/http/node_modules/bower/lib/node_modules/mout/src/lang/defaults.js +0 -16
  3156. package/http/node_modules/bower/lib/node_modules/mout/src/lang/inheritPrototype.js +0 -18
  3157. package/http/node_modules/bower/lib/node_modules/mout/src/lang/is.js +0 -23
  3158. package/http/node_modules/bower/lib/node_modules/mout/src/lang/isArguments.js +0 -15
  3159. package/http/node_modules/bower/lib/node_modules/mout/src/lang/isArray.js +0 -8
  3160. package/http/node_modules/bower/lib/node_modules/mout/src/lang/isBoolean.js +0 -8
  3161. package/http/node_modules/bower/lib/node_modules/mout/src/lang/isDate.js +0 -8
  3162. package/http/node_modules/bower/lib/node_modules/mout/src/lang/isEmpty.js +0 -23
  3163. package/http/node_modules/bower/lib/node_modules/mout/src/lang/isFinite.js +0 -19
  3164. package/http/node_modules/bower/lib/node_modules/mout/src/lang/isFunction.js +0 -8
  3165. package/http/node_modules/bower/lib/node_modules/mout/src/lang/isInteger.js +0 -12
  3166. package/http/node_modules/bower/lib/node_modules/mout/src/lang/isKind.js +0 -9
  3167. package/http/node_modules/bower/lib/node_modules/mout/src/lang/isNaN.js +0 -15
  3168. package/http/node_modules/bower/lib/node_modules/mout/src/lang/isNull.js +0 -9
  3169. package/http/node_modules/bower/lib/node_modules/mout/src/lang/isNumber.js +0 -8
  3170. package/http/node_modules/bower/lib/node_modules/mout/src/lang/isObject.js +0 -8
  3171. package/http/node_modules/bower/lib/node_modules/mout/src/lang/isPlainObject.js +0 -13
  3172. package/http/node_modules/bower/lib/node_modules/mout/src/lang/isPrimitive.js +0 -21
  3173. package/http/node_modules/bower/lib/node_modules/mout/src/lang/isRegExp.js +0 -8
  3174. package/http/node_modules/bower/lib/node_modules/mout/src/lang/isString.js +0 -8
  3175. package/http/node_modules/bower/lib/node_modules/mout/src/lang/isUndefined.js +0 -10
  3176. package/http/node_modules/bower/lib/node_modules/mout/src/lang/isnt.js +0 -12
  3177. package/http/node_modules/bower/lib/node_modules/mout/src/lang/kindOf.js +0 -20
  3178. package/http/node_modules/bower/lib/node_modules/mout/src/lang/toArray.js +0 -29
  3179. package/http/node_modules/bower/lib/node_modules/mout/src/lang/toNumber.js +0 -20
  3180. package/http/node_modules/bower/lib/node_modules/mout/src/lang/toString.js +0 -13
  3181. package/http/node_modules/bower/lib/node_modules/mout/src/lang.js +0 -40
  3182. package/http/node_modules/bower/lib/node_modules/mout/src/math/ceil.js +0 -11
  3183. package/http/node_modules/bower/lib/node_modules/mout/src/math/clamp.js +0 -9
  3184. package/http/node_modules/bower/lib/node_modules/mout/src/math/countSteps.js +0 -16
  3185. package/http/node_modules/bower/lib/node_modules/mout/src/math/floor.js +0 -10
  3186. package/http/node_modules/bower/lib/node_modules/mout/src/math/inRange.js +0 -11
  3187. package/http/node_modules/bower/lib/node_modules/mout/src/math/isNear.js +0 -9
  3188. package/http/node_modules/bower/lib/node_modules/mout/src/math/lerp.js +0 -11
  3189. package/http/node_modules/bower/lib/node_modules/mout/src/math/loop.js +0 -10
  3190. package/http/node_modules/bower/lib/node_modules/mout/src/math/map.js +0 -10
  3191. package/http/node_modules/bower/lib/node_modules/mout/src/math/norm.js +0 -13
  3192. package/http/node_modules/bower/lib/node_modules/mout/src/math/round.js +0 -12
  3193. package/http/node_modules/bower/lib/node_modules/mout/src/math.js +0 -19
  3194. package/http/node_modules/bower/lib/node_modules/mout/src/number/MAX_INT.js +0 -6
  3195. package/http/node_modules/bower/lib/node_modules/mout/src/number/MAX_SAFE_INTEGER.js +0 -7
  3196. package/http/node_modules/bower/lib/node_modules/mout/src/number/MAX_UINT.js +0 -6
  3197. package/http/node_modules/bower/lib/node_modules/mout/src/number/MIN_INT.js +0 -6
  3198. package/http/node_modules/bower/lib/node_modules/mout/src/number/abbreviate.js +0 -35
  3199. package/http/node_modules/bower/lib/node_modules/mout/src/number/currencyFormat.js +0 -27
  3200. package/http/node_modules/bower/lib/node_modules/mout/src/number/enforcePrecision.js +0 -12
  3201. package/http/node_modules/bower/lib/node_modules/mout/src/number/isNaN.js +0 -14
  3202. package/http/node_modules/bower/lib/node_modules/mout/src/number/nth.js +0 -25
  3203. package/http/node_modules/bower/lib/node_modules/mout/src/number/ordinal.js +0 -13
  3204. package/http/node_modules/bower/lib/node_modules/mout/src/number/pad.js +0 -13
  3205. package/http/node_modules/bower/lib/node_modules/mout/src/number/rol.js +0 -10
  3206. package/http/node_modules/bower/lib/node_modules/mout/src/number/ror.js +0 -10
  3207. package/http/node_modules/bower/lib/node_modules/mout/src/number/sign.js +0 -15
  3208. package/http/node_modules/bower/lib/node_modules/mout/src/number/toInt.js +0 -17
  3209. package/http/node_modules/bower/lib/node_modules/mout/src/number/toUInt.js +0 -15
  3210. package/http/node_modules/bower/lib/node_modules/mout/src/number/toUInt31.js +0 -15
  3211. package/http/node_modules/bower/lib/node_modules/mout/src/number.js +0 -25
  3212. package/http/node_modules/bower/lib/node_modules/mout/src/object/bindAll.js +0 -16
  3213. package/http/node_modules/bower/lib/node_modules/mout/src/object/contains.js +0 -13
  3214. package/http/node_modules/bower/lib/node_modules/mout/src/object/deepFillIn.js +0 -32
  3215. package/http/node_modules/bower/lib/node_modules/mout/src/object/deepMatches.js +0 -54
  3216. package/http/node_modules/bower/lib/node_modules/mout/src/object/deepMixIn.js +0 -33
  3217. package/http/node_modules/bower/lib/node_modules/mout/src/object/equals.js +0 -30
  3218. package/http/node_modules/bower/lib/node_modules/mout/src/object/every.js +0 -22
  3219. package/http/node_modules/bower/lib/node_modules/mout/src/object/fillIn.js +0 -19
  3220. package/http/node_modules/bower/lib/node_modules/mout/src/object/filter.js +0 -19
  3221. package/http/node_modules/bower/lib/node_modules/mout/src/object/find.js +0 -20
  3222. package/http/node_modules/bower/lib/node_modules/mout/src/object/flatten.js +0 -37
  3223. package/http/node_modules/bower/lib/node_modules/mout/src/object/forIn.js +0 -76
  3224. package/http/node_modules/bower/lib/node_modules/mout/src/object/forOwn.js +0 -18
  3225. package/http/node_modules/bower/lib/node_modules/mout/src/object/functions.js +0 -18
  3226. package/http/node_modules/bower/lib/node_modules/mout/src/object/get.js +0 -20
  3227. package/http/node_modules/bower/lib/node_modules/mout/src/object/has.js +0 -15
  3228. package/http/node_modules/bower/lib/node_modules/mout/src/object/hasOwn.js +0 -12
  3229. package/http/node_modules/bower/lib/node_modules/mout/src/object/keys.js +0 -16
  3230. package/http/node_modules/bower/lib/node_modules/mout/src/object/map.js +0 -17
  3231. package/http/node_modules/bower/lib/node_modules/mout/src/object/matches.js +0 -20
  3232. package/http/node_modules/bower/lib/node_modules/mout/src/object/max.js +0 -11
  3233. package/http/node_modules/bower/lib/node_modules/mout/src/object/merge.js +0 -38
  3234. package/http/node_modules/bower/lib/node_modules/mout/src/object/min.js +0 -11
  3235. package/http/node_modules/bower/lib/node_modules/mout/src/object/mixIn.js +0 -28
  3236. package/http/node_modules/bower/lib/node_modules/mout/src/object/namespace.js +0 -19
  3237. package/http/node_modules/bower/lib/node_modules/mout/src/object/omit.js +0 -20
  3238. package/http/node_modules/bower/lib/node_modules/mout/src/object/pick.js +0 -18
  3239. package/http/node_modules/bower/lib/node_modules/mout/src/object/pluck.js +0 -12
  3240. package/http/node_modules/bower/lib/node_modules/mout/src/object/reduce.js +0 -28
  3241. package/http/node_modules/bower/lib/node_modules/mout/src/object/reject.js +0 -15
  3242. package/http/node_modules/bower/lib/node_modules/mout/src/object/result.js +0 -14
  3243. package/http/node_modules/bower/lib/node_modules/mout/src/object/set.js +0 -17
  3244. package/http/node_modules/bower/lib/node_modules/mout/src/object/size.js +0 -16
  3245. package/http/node_modules/bower/lib/node_modules/mout/src/object/some.js +0 -20
  3246. package/http/node_modules/bower/lib/node_modules/mout/src/object/unset.js +0 -23
  3247. package/http/node_modules/bower/lib/node_modules/mout/src/object/values.js +0 -16
  3248. package/http/node_modules/bower/lib/node_modules/mout/src/object.js +0 -44
  3249. package/http/node_modules/bower/lib/node_modules/mout/src/queryString/contains.js +0 -12
  3250. package/http/node_modules/bower/lib/node_modules/mout/src/queryString/decode.js +0 -34
  3251. package/http/node_modules/bower/lib/node_modules/mout/src/queryString/encode.js +0 -25
  3252. package/http/node_modules/bower/lib/node_modules/mout/src/queryString/getParam.js +0 -14
  3253. package/http/node_modules/bower/lib/node_modules/mout/src/queryString/getQuery.js +0 -13
  3254. package/http/node_modules/bower/lib/node_modules/mout/src/queryString/parse.js +0 -12
  3255. package/http/node_modules/bower/lib/node_modules/mout/src/queryString/setParam.js +0 -28
  3256. package/http/node_modules/bower/lib/node_modules/mout/src/queryString.js +0 -15
  3257. package/http/node_modules/bower/lib/node_modules/mout/src/random/choice.js +0 -14
  3258. package/http/node_modules/bower/lib/node_modules/mout/src/random/guid.js +0 -23
  3259. package/http/node_modules/bower/lib/node_modules/mout/src/random/rand.js +0 -13
  3260. package/http/node_modules/bower/lib/node_modules/mout/src/random/randBit.js +0 -11
  3261. package/http/node_modules/bower/lib/node_modules/mout/src/random/randBool.js +0 -12
  3262. package/http/node_modules/bower/lib/node_modules/mout/src/random/randHex.js +0 -19
  3263. package/http/node_modules/bower/lib/node_modules/mout/src/random/randInt.js +0 -16
  3264. package/http/node_modules/bower/lib/node_modules/mout/src/random/randSign.js +0 -11
  3265. package/http/node_modules/bower/lib/node_modules/mout/src/random/randString.js +0 -29
  3266. package/http/node_modules/bower/lib/node_modules/mout/src/random/random.js +0 -18
  3267. package/http/node_modules/bower/lib/node_modules/mout/src/random.js +0 -18
  3268. package/http/node_modules/bower/lib/node_modules/mout/src/string/WHITE_SPACES.js +0 -12
  3269. package/http/node_modules/bower/lib/node_modules/mout/src/string/camelCase.js +0 -16
  3270. package/http/node_modules/bower/lib/node_modules/mout/src/string/contains.js +0 -14
  3271. package/http/node_modules/bower/lib/node_modules/mout/src/string/crop.js +0 -11
  3272. package/http/node_modules/bower/lib/node_modules/mout/src/string/endsWith.js +0 -13
  3273. package/http/node_modules/bower/lib/node_modules/mout/src/string/escapeHtml.js +0 -18
  3274. package/http/node_modules/bower/lib/node_modules/mout/src/string/escapeRegExp.js +0 -12
  3275. package/http/node_modules/bower/lib/node_modules/mout/src/string/escapeUnicode.js +0 -21
  3276. package/http/node_modules/bower/lib/node_modules/mout/src/string/hyphenate.js +0 -12
  3277. package/http/node_modules/bower/lib/node_modules/mout/src/string/insert.js +0 -20
  3278. package/http/node_modules/bower/lib/node_modules/mout/src/string/interpolate.js +0 -21
  3279. package/http/node_modules/bower/lib/node_modules/mout/src/string/lowerCase.js +0 -11
  3280. package/http/node_modules/bower/lib/node_modules/mout/src/string/lpad.js +0 -16
  3281. package/http/node_modules/bower/lib/node_modules/mout/src/string/ltrim.js +0 -33
  3282. package/http/node_modules/bower/lib/node_modules/mout/src/string/makePath.js +0 -14
  3283. package/http/node_modules/bower/lib/node_modules/mout/src/string/normalizeLineBreaks.js +0 -18
  3284. package/http/node_modules/bower/lib/node_modules/mout/src/string/pascalCase.js +0 -11
  3285. package/http/node_modules/bower/lib/node_modules/mout/src/string/properCase.js +0 -11
  3286. package/http/node_modules/bower/lib/node_modules/mout/src/string/removeNonASCII.js +0 -14
  3287. package/http/node_modules/bower/lib/node_modules/mout/src/string/removeNonWord.js +0 -14
  3288. package/http/node_modules/bower/lib/node_modules/mout/src/string/repeat.js +0 -25
  3289. package/http/node_modules/bower/lib/node_modules/mout/src/string/replace.js +0 -32
  3290. package/http/node_modules/bower/lib/node_modules/mout/src/string/replaceAccents.js +0 -36
  3291. package/http/node_modules/bower/lib/node_modules/mout/src/string/rpad.js +0 -14
  3292. package/http/node_modules/bower/lib/node_modules/mout/src/string/rtrim.js +0 -32
  3293. package/http/node_modules/bower/lib/node_modules/mout/src/string/sentenceCase.js +0 -13
  3294. package/http/node_modules/bower/lib/node_modules/mout/src/string/slugify.js +0 -21
  3295. package/http/node_modules/bower/lib/node_modules/mout/src/string/startsWith.js +0 -13
  3296. package/http/node_modules/bower/lib/node_modules/mout/src/string/stripHtmlTags.js +0 -11
  3297. package/http/node_modules/bower/lib/node_modules/mout/src/string/trim.js +0 -12
  3298. package/http/node_modules/bower/lib/node_modules/mout/src/string/truncate.js +0 -20
  3299. package/http/node_modules/bower/lib/node_modules/mout/src/string/typecast.js +0 -29
  3300. package/http/node_modules/bower/lib/node_modules/mout/src/string/unCamelCase.js +0 -23
  3301. package/http/node_modules/bower/lib/node_modules/mout/src/string/underscore.js +0 -11
  3302. package/http/node_modules/bower/lib/node_modules/mout/src/string/unescapeHtml.js +0 -18
  3303. package/http/node_modules/bower/lib/node_modules/mout/src/string/unescapeUnicode.js +0 -16
  3304. package/http/node_modules/bower/lib/node_modules/mout/src/string/unhyphenate.js +0 -10
  3305. package/http/node_modules/bower/lib/node_modules/mout/src/string/upperCase.js +0 -10
  3306. package/http/node_modules/bower/lib/node_modules/mout/src/string.js +0 -46
  3307. package/http/node_modules/bower/lib/node_modules/mout/src/time/convert.js +0 -41
  3308. package/http/node_modules/bower/lib/node_modules/mout/src/time/now.js +0 -18
  3309. package/http/node_modules/bower/lib/node_modules/mout/src/time/parseMs.js +0 -17
  3310. package/http/node_modules/bower/lib/node_modules/mout/src/time/toTimeString.js +0 -23
  3311. package/http/node_modules/bower/lib/node_modules/mout/src/time.js +0 -12
  3312. package/http/node_modules/bower/lib/node_modules/mout/string/WHITE_SPACES.js +0 -12
  3313. package/http/node_modules/bower/lib/node_modules/mout/string/camelCase.js +0 -20
  3314. package/http/node_modules/bower/lib/node_modules/mout/string/contains.js +0 -14
  3315. package/http/node_modules/bower/lib/node_modules/mout/string/crop.js +0 -12
  3316. package/http/node_modules/bower/lib/node_modules/mout/string/endsWith.js +0 -13
  3317. package/http/node_modules/bower/lib/node_modules/mout/string/escapeHtml.js +0 -18
  3318. package/http/node_modules/bower/lib/node_modules/mout/string/escapeRegExp.js +0 -12
  3319. package/http/node_modules/bower/lib/node_modules/mout/string/escapeUnicode.js +0 -21
  3320. package/http/node_modules/bower/lib/node_modules/mout/string/hyphenate.js +0 -14
  3321. package/http/node_modules/bower/lib/node_modules/mout/string/insert.js +0 -21
  3322. package/http/node_modules/bower/lib/node_modules/mout/string/interpolate.js +0 -19
  3323. package/http/node_modules/bower/lib/node_modules/mout/string/lowerCase.js +0 -11
  3324. package/http/node_modules/bower/lib/node_modules/mout/string/lpad.js +0 -17
  3325. package/http/node_modules/bower/lib/node_modules/mout/string/ltrim.js +0 -34
  3326. package/http/node_modules/bower/lib/node_modules/mout/string/makePath.js +0 -15
  3327. package/http/node_modules/bower/lib/node_modules/mout/string/normalizeLineBreaks.js +0 -18
  3328. package/http/node_modules/bower/lib/node_modules/mout/string/pascalCase.js +0 -13
  3329. package/http/node_modules/bower/lib/node_modules/mout/string/properCase.js +0 -13
  3330. package/http/node_modules/bower/lib/node_modules/mout/string/removeNonASCII.js +0 -14
  3331. package/http/node_modules/bower/lib/node_modules/mout/string/removeNonWord.js +0 -14
  3332. package/http/node_modules/bower/lib/node_modules/mout/string/repeat.js +0 -26
  3333. package/http/node_modules/bower/lib/node_modules/mout/string/replace.js +0 -33
  3334. package/http/node_modules/bower/lib/node_modules/mout/string/replaceAccents.js +0 -36
  3335. package/http/node_modules/bower/lib/node_modules/mout/string/rpad.js +0 -15
  3336. package/http/node_modules/bower/lib/node_modules/mout/string/rtrim.js +0 -33
  3337. package/http/node_modules/bower/lib/node_modules/mout/string/sentenceCase.js +0 -15
  3338. package/http/node_modules/bower/lib/node_modules/mout/string/slugify.js +0 -24
  3339. package/http/node_modules/bower/lib/node_modules/mout/string/startsWith.js +0 -13
  3340. package/http/node_modules/bower/lib/node_modules/mout/string/stripHtmlTags.js +0 -11
  3341. package/http/node_modules/bower/lib/node_modules/mout/string/trim.js +0 -15
  3342. package/http/node_modules/bower/lib/node_modules/mout/string/truncate.js +0 -21
  3343. package/http/node_modules/bower/lib/node_modules/mout/string/typecast.js +0 -29
  3344. package/http/node_modules/bower/lib/node_modules/mout/string/unCamelCase.js +0 -23
  3345. package/http/node_modules/bower/lib/node_modules/mout/string/underscore.js +0 -13
  3346. package/http/node_modules/bower/lib/node_modules/mout/string/unescapeHtml.js +0 -18
  3347. package/http/node_modules/bower/lib/node_modules/mout/string/unescapeUnicode.js +0 -16
  3348. package/http/node_modules/bower/lib/node_modules/mout/string/unhyphenate.js +0 -10
  3349. package/http/node_modules/bower/lib/node_modules/mout/string/upperCase.js +0 -10
  3350. package/http/node_modules/bower/lib/node_modules/mout/string.js +0 -46
  3351. package/http/node_modules/bower/lib/node_modules/mout/time/convert.js +0 -41
  3352. package/http/node_modules/bower/lib/node_modules/mout/time/now.js +0 -18
  3353. package/http/node_modules/bower/lib/node_modules/mout/time/parseMs.js +0 -17
  3354. package/http/node_modules/bower/lib/node_modules/mout/time/toTimeString.js +0 -24
  3355. package/http/node_modules/bower/lib/node_modules/mout/time.js +0 -12
  3356. package/http/node_modules/bower/lib/node_modules/mute-stream/LICENSE +0 -15
  3357. package/http/node_modules/bower/lib/node_modules/mute-stream/README.md +0 -68
  3358. package/http/node_modules/bower/lib/node_modules/mute-stream/mute.js +0 -140
  3359. package/http/node_modules/bower/lib/node_modules/mute-stream/package.json +0 -26
  3360. package/http/node_modules/bower/lib/node_modules/mute-stream/test/basic.js +0 -207
  3361. package/http/node_modules/bower/lib/node_modules/nested-error-stacks/CHANGELOG.md +0 -4
  3362. package/http/node_modules/bower/lib/node_modules/nested-error-stacks/LICENSE +0 -22
  3363. package/http/node_modules/bower/lib/node_modules/nested-error-stacks/README.md +0 -60
  3364. package/http/node_modules/bower/lib/node_modules/nested-error-stacks/index.js +0 -48
  3365. package/http/node_modules/bower/lib/node_modules/nested-error-stacks/package.json +0 -36
  3366. package/http/node_modules/bower/lib/node_modules/node-status-codes/index.js +0 -62
  3367. package/http/node_modules/bower/lib/node_modules/node-status-codes/license +0 -21
  3368. package/http/node_modules/bower/lib/node_modules/node-status-codes/package.json +0 -42
  3369. package/http/node_modules/bower/lib/node_modules/node-status-codes/readme.md +0 -32
  3370. package/http/node_modules/bower/lib/node_modules/node-uuid/.npmignore +0 -4
  3371. package/http/node_modules/bower/lib/node_modules/node-uuid/LICENSE.md +0 -21
  3372. package/http/node_modules/bower/lib/node_modules/node-uuid/README.md +0 -8
  3373. package/http/node_modules/bower/lib/node_modules/node-uuid/benchmark/README.md +0 -53
  3374. package/http/node_modules/bower/lib/node_modules/node-uuid/benchmark/bench.gnu +0 -174
  3375. package/http/node_modules/bower/lib/node_modules/node-uuid/benchmark/bench.sh +0 -34
  3376. package/http/node_modules/bower/lib/node_modules/node-uuid/benchmark/benchmark-native.c +0 -34
  3377. package/http/node_modules/bower/lib/node_modules/node-uuid/benchmark/benchmark.js +0 -84
  3378. package/http/node_modules/bower/lib/node_modules/node-uuid/bin/uuid +0 -26
  3379. package/http/node_modules/bower/lib/node_modules/node-uuid/bower.json +0 -23
  3380. package/http/node_modules/bower/lib/node_modules/node-uuid/component.json +0 -25
  3381. package/http/node_modules/bower/lib/node_modules/node-uuid/lib/sha1-browser.js +0 -120
  3382. package/http/node_modules/bower/lib/node_modules/node-uuid/package.json +0 -61
  3383. package/http/node_modules/bower/lib/node_modules/node-uuid/test/compare_v1.js +0 -63
  3384. package/http/node_modules/bower/lib/node_modules/node-uuid/test/test.html +0 -17
  3385. package/http/node_modules/bower/lib/node_modules/node-uuid/test/test.js +0 -231
  3386. package/http/node_modules/bower/lib/node_modules/node-uuid/uuid.js +0 -272
  3387. package/http/node_modules/bower/lib/node_modules/node-uuid/v3.js +0 -54
  3388. package/http/node_modules/bower/lib/node_modules/nopt/.npmignore +0 -1
  3389. package/http/node_modules/bower/lib/node_modules/nopt/.travis.yml +0 -9
  3390. package/http/node_modules/bower/lib/node_modules/nopt/LICENSE +0 -15
  3391. package/http/node_modules/bower/lib/node_modules/nopt/README.md +0 -211
  3392. package/http/node_modules/bower/lib/node_modules/nopt/bin/nopt.js +0 -54
  3393. package/http/node_modules/bower/lib/node_modules/nopt/examples/my-program.js +0 -30
  3394. package/http/node_modules/bower/lib/node_modules/nopt/lib/nopt.js +0 -415
  3395. package/http/node_modules/bower/lib/node_modules/nopt/package.json +0 -22
  3396. package/http/node_modules/bower/lib/node_modules/nopt/test/basic.js +0 -273
  3397. package/http/node_modules/bower/lib/node_modules/normalize-package-data/AUTHORS +0 -4
  3398. package/http/node_modules/bower/lib/node_modules/normalize-package-data/LICENSE +0 -30
  3399. package/http/node_modules/bower/lib/node_modules/normalize-package-data/README.md +0 -106
  3400. package/http/node_modules/bower/lib/node_modules/normalize-package-data/lib/extract_description.js +0 -14
  3401. package/http/node_modules/bower/lib/node_modules/normalize-package-data/lib/fixer.js +0 -417
  3402. package/http/node_modules/bower/lib/node_modules/normalize-package-data/lib/make_warning.js +0 -23
  3403. package/http/node_modules/bower/lib/node_modules/normalize-package-data/lib/normalize.js +0 -39
  3404. package/http/node_modules/bower/lib/node_modules/normalize-package-data/lib/safe_format.js +0 -9
  3405. package/http/node_modules/bower/lib/node_modules/normalize-package-data/lib/typos.json +0 -25
  3406. package/http/node_modules/bower/lib/node_modules/normalize-package-data/lib/warning_messages.json +0 -30
  3407. package/http/node_modules/bower/lib/node_modules/normalize-package-data/package.json +0 -31
  3408. package/http/node_modules/bower/lib/node_modules/number-is-nan/index.js +0 -4
  3409. package/http/node_modules/bower/lib/node_modules/number-is-nan/license +0 -21
  3410. package/http/node_modules/bower/lib/node_modules/number-is-nan/package.json +0 -35
  3411. package/http/node_modules/bower/lib/node_modules/number-is-nan/readme.md +0 -28
  3412. package/http/node_modules/bower/lib/node_modules/oauth-sign/LICENSE +0 -55
  3413. package/http/node_modules/bower/lib/node_modules/oauth-sign/README.md +0 -4
  3414. package/http/node_modules/bower/lib/node_modules/oauth-sign/index.js +0 -136
  3415. package/http/node_modules/bower/lib/node_modules/oauth-sign/package.json +0 -23
  3416. package/http/node_modules/bower/lib/node_modules/object-assign/index.js +0 -90
  3417. package/http/node_modules/bower/lib/node_modules/object-assign/license +0 -21
  3418. package/http/node_modules/bower/lib/node_modules/object-assign/package.json +0 -42
  3419. package/http/node_modules/bower/lib/node_modules/object-assign/readme.md +0 -61
  3420. package/http/node_modules/bower/lib/node_modules/once/LICENSE +0 -15
  3421. package/http/node_modules/bower/lib/node_modules/once/README.md +0 -79
  3422. package/http/node_modules/bower/lib/node_modules/once/once.js +0 -42
  3423. package/http/node_modules/bower/lib/node_modules/once/package.json +0 -33
  3424. package/http/node_modules/bower/lib/node_modules/onetime/index.js +0 -31
  3425. package/http/node_modules/bower/lib/node_modules/onetime/license +0 -21
  3426. package/http/node_modules/bower/lib/node_modules/onetime/package.json +0 -33
  3427. package/http/node_modules/bower/lib/node_modules/onetime/readme.md +0 -52
  3428. package/http/node_modules/bower/lib/node_modules/opn/index.js +0 -95
  3429. package/http/node_modules/bower/lib/node_modules/opn/license +0 -21
  3430. package/http/node_modules/bower/lib/node_modules/opn/package.json +0 -57
  3431. package/http/node_modules/bower/lib/node_modules/opn/readme.md +0 -89
  3432. package/http/node_modules/bower/lib/node_modules/opn/xdg-open +0 -861
  3433. package/http/node_modules/bower/lib/node_modules/optimist/.travis.yml +0 -4
  3434. package/http/node_modules/bower/lib/node_modules/optimist/LICENSE +0 -21
  3435. package/http/node_modules/bower/lib/node_modules/optimist/example/bool.js +0 -10
  3436. package/http/node_modules/bower/lib/node_modules/optimist/example/boolean_double.js +0 -7
  3437. package/http/node_modules/bower/lib/node_modules/optimist/example/boolean_single.js +0 -7
  3438. package/http/node_modules/bower/lib/node_modules/optimist/example/default_hash.js +0 -8
  3439. package/http/node_modules/bower/lib/node_modules/optimist/example/default_singles.js +0 -7
  3440. package/http/node_modules/bower/lib/node_modules/optimist/example/divide.js +0 -8
  3441. package/http/node_modules/bower/lib/node_modules/optimist/example/line_count.js +0 -20
  3442. package/http/node_modules/bower/lib/node_modules/optimist/example/line_count_options.js +0 -29
  3443. package/http/node_modules/bower/lib/node_modules/optimist/example/line_count_wrap.js +0 -29
  3444. package/http/node_modules/bower/lib/node_modules/optimist/example/nonopt.js +0 -4
  3445. package/http/node_modules/bower/lib/node_modules/optimist/example/reflect.js +0 -2
  3446. package/http/node_modules/bower/lib/node_modules/optimist/example/short.js +0 -3
  3447. package/http/node_modules/bower/lib/node_modules/optimist/example/string.js +0 -11
  3448. package/http/node_modules/bower/lib/node_modules/optimist/example/usage-options.js +0 -19
  3449. package/http/node_modules/bower/lib/node_modules/optimist/example/xup.js +0 -10
  3450. package/http/node_modules/bower/lib/node_modules/optimist/index.js +0 -343
  3451. package/http/node_modules/bower/lib/node_modules/optimist/node_modules/minimist/.travis.yml +0 -4
  3452. package/http/node_modules/bower/lib/node_modules/optimist/node_modules/minimist/LICENSE +0 -18
  3453. package/http/node_modules/bower/lib/node_modules/optimist/node_modules/minimist/example/parse.js +0 -2
  3454. package/http/node_modules/bower/lib/node_modules/optimist/node_modules/minimist/index.js +0 -187
  3455. package/http/node_modules/bower/lib/node_modules/optimist/node_modules/minimist/package.json +0 -40
  3456. package/http/node_modules/bower/lib/node_modules/optimist/node_modules/minimist/readme.markdown +0 -73
  3457. package/http/node_modules/bower/lib/node_modules/optimist/node_modules/minimist/test/bool.js +0 -119
  3458. package/http/node_modules/bower/lib/node_modules/optimist/node_modules/minimist/test/dash.js +0 -24
  3459. package/http/node_modules/bower/lib/node_modules/optimist/node_modules/minimist/test/default_bool.js +0 -20
  3460. package/http/node_modules/bower/lib/node_modules/optimist/node_modules/minimist/test/dotted.js +0 -22
  3461. package/http/node_modules/bower/lib/node_modules/optimist/node_modules/minimist/test/long.js +0 -31
  3462. package/http/node_modules/bower/lib/node_modules/optimist/node_modules/minimist/test/num.js +0 -36
  3463. package/http/node_modules/bower/lib/node_modules/optimist/node_modules/minimist/test/parse.js +0 -197
  3464. package/http/node_modules/bower/lib/node_modules/optimist/node_modules/minimist/test/parse_modified.js +0 -9
  3465. package/http/node_modules/bower/lib/node_modules/optimist/node_modules/minimist/test/short.js +0 -67
  3466. package/http/node_modules/bower/lib/node_modules/optimist/node_modules/minimist/test/whitespace.js +0 -8
  3467. package/http/node_modules/bower/lib/node_modules/optimist/node_modules/wordwrap/LICENSE +0 -18
  3468. package/http/node_modules/bower/lib/node_modules/optimist/node_modules/wordwrap/README.markdown +0 -70
  3469. package/http/node_modules/bower/lib/node_modules/optimist/node_modules/wordwrap/example/center.js +0 -10
  3470. package/http/node_modules/bower/lib/node_modules/optimist/node_modules/wordwrap/example/meat.js +0 -3
  3471. package/http/node_modules/bower/lib/node_modules/optimist/node_modules/wordwrap/index.js +0 -76
  3472. package/http/node_modules/bower/lib/node_modules/optimist/node_modules/wordwrap/package.json +0 -37
  3473. package/http/node_modules/bower/lib/node_modules/optimist/node_modules/wordwrap/test/break.js +0 -30
  3474. package/http/node_modules/bower/lib/node_modules/optimist/node_modules/wordwrap/test/idleness.txt +0 -63
  3475. package/http/node_modules/bower/lib/node_modules/optimist/node_modules/wordwrap/test/wrap.js +0 -31
  3476. package/http/node_modules/bower/lib/node_modules/optimist/package.json +0 -39
  3477. package/http/node_modules/bower/lib/node_modules/optimist/readme.markdown +0 -513
  3478. package/http/node_modules/bower/lib/node_modules/optimist/test/_/argv.js +0 -2
  3479. package/http/node_modules/bower/lib/node_modules/optimist/test/_/bin.js +0 -3
  3480. package/http/node_modules/bower/lib/node_modules/optimist/test/_.js +0 -71
  3481. package/http/node_modules/bower/lib/node_modules/optimist/test/dash.js +0 -31
  3482. package/http/node_modules/bower/lib/node_modules/optimist/test/parse.js +0 -446
  3483. package/http/node_modules/bower/lib/node_modules/optimist/test/parse_modified.js +0 -14
  3484. package/http/node_modules/bower/lib/node_modules/optimist/test/short.js +0 -16
  3485. package/http/node_modules/bower/lib/node_modules/optimist/test/usage.js +0 -292
  3486. package/http/node_modules/bower/lib/node_modules/optimist/test/whitespace.js +0 -8
  3487. package/http/node_modules/bower/lib/node_modules/os-homedir/index.js +0 -24
  3488. package/http/node_modules/bower/lib/node_modules/os-homedir/license +0 -21
  3489. package/http/node_modules/bower/lib/node_modules/os-homedir/package.json +0 -41
  3490. package/http/node_modules/bower/lib/node_modules/os-homedir/readme.md +0 -31
  3491. package/http/node_modules/bower/lib/node_modules/os-tmpdir/index.js +0 -25
  3492. package/http/node_modules/bower/lib/node_modules/os-tmpdir/license +0 -21
  3493. package/http/node_modules/bower/lib/node_modules/os-tmpdir/package.json +0 -41
  3494. package/http/node_modules/bower/lib/node_modules/os-tmpdir/readme.md +0 -32
  3495. package/http/node_modules/bower/lib/node_modules/osenv/.npmignore +0 -13
  3496. package/http/node_modules/bower/lib/node_modules/osenv/.travis.yml +0 -9
  3497. package/http/node_modules/bower/lib/node_modules/osenv/LICENSE +0 -15
  3498. package/http/node_modules/bower/lib/node_modules/osenv/README.md +0 -63
  3499. package/http/node_modules/bower/lib/node_modules/osenv/osenv.js +0 -72
  3500. package/http/node_modules/bower/lib/node_modules/osenv/package.json +0 -31
  3501. package/http/node_modules/bower/lib/node_modules/osenv/test/unix.js +0 -71
  3502. package/http/node_modules/bower/lib/node_modules/osenv/test/windows.js +0 -74
  3503. package/http/node_modules/bower/lib/node_modules/osenv/x.tap +0 -39
  3504. package/http/node_modules/bower/lib/node_modules/p-throttler/.editorconfig +0 -12
  3505. package/http/node_modules/bower/lib/node_modules/p-throttler/.jshintrc +0 -63
  3506. package/http/node_modules/bower/lib/node_modules/p-throttler/.npmignore +0 -2
  3507. package/http/node_modules/bower/lib/node_modules/p-throttler/.travis.yml +0 -4
  3508. package/http/node_modules/bower/lib/node_modules/p-throttler/LICENSE +0 -19
  3509. package/http/node_modules/bower/lib/node_modules/p-throttler/README.md +0 -86
  3510. package/http/node_modules/bower/lib/node_modules/p-throttler/index.js +0 -155
  3511. package/http/node_modules/bower/lib/node_modules/p-throttler/lib/arrayRemove.js +0 -13
  3512. package/http/node_modules/bower/lib/node_modules/p-throttler/package.json +0 -34
  3513. package/http/node_modules/bower/lib/node_modules/p-throttler/test/test.js +0 -304
  3514. package/http/node_modules/bower/lib/node_modules/package-json/index.js +0 -54
  3515. package/http/node_modules/bower/lib/node_modules/package-json/license +0 -21
  3516. package/http/node_modules/bower/lib/node_modules/package-json/package.json +0 -43
  3517. package/http/node_modules/bower/lib/node_modules/package-json/readme.md +0 -63
  3518. package/http/node_modules/bower/lib/node_modules/parse-json/index.js +0 -35
  3519. package/http/node_modules/bower/lib/node_modules/parse-json/license +0 -21
  3520. package/http/node_modules/bower/lib/node_modules/parse-json/package.json +0 -46
  3521. package/http/node_modules/bower/lib/node_modules/parse-json/readme.md +0 -83
  3522. package/http/node_modules/bower/lib/node_modules/parse-json/vendor/parse.js +0 -752
  3523. package/http/node_modules/bower/lib/node_modules/parse-json/vendor/unicode.js +0 -71
  3524. package/http/node_modules/bower/lib/node_modules/path-exists/index.js +0 -24
  3525. package/http/node_modules/bower/lib/node_modules/path-exists/license +0 -21
  3526. package/http/node_modules/bower/lib/node_modules/path-exists/package.json +0 -40
  3527. package/http/node_modules/bower/lib/node_modules/path-exists/readme.md +0 -45
  3528. package/http/node_modules/bower/lib/node_modules/path-is-absolute/index.js +0 -20
  3529. package/http/node_modules/bower/lib/node_modules/path-is-absolute/license +0 -21
  3530. package/http/node_modules/bower/lib/node_modules/path-is-absolute/package.json +0 -43
  3531. package/http/node_modules/bower/lib/node_modules/path-is-absolute/readme.md +0 -59
  3532. package/http/node_modules/bower/lib/node_modules/path-parse/.travis.yml +0 -9
  3533. package/http/node_modules/bower/lib/node_modules/path-parse/README.md +0 -44
  3534. package/http/node_modules/bower/lib/node_modules/path-parse/index.js +0 -93
  3535. package/http/node_modules/bower/lib/node_modules/path-parse/index.min.js +0 -1
  3536. package/http/node_modules/bower/lib/node_modules/path-parse/package.json +0 -33
  3537. package/http/node_modules/bower/lib/node_modules/path-parse/test.js +0 -77
  3538. package/http/node_modules/bower/lib/node_modules/path-parse/test.min.js +0 -1
  3539. package/http/node_modules/bower/lib/node_modules/path-type/index.js +0 -29
  3540. package/http/node_modules/bower/lib/node_modules/path-type/license +0 -21
  3541. package/http/node_modules/bower/lib/node_modules/path-type/package.json +0 -52
  3542. package/http/node_modules/bower/lib/node_modules/path-type/readme.md +0 -42
  3543. package/http/node_modules/bower/lib/node_modules/performance-now/.npmignore +0 -1
  3544. package/http/node_modules/bower/lib/node_modules/performance-now/.tm_properties +0 -7
  3545. package/http/node_modules/bower/lib/node_modules/performance-now/.travis.yml +0 -4
  3546. package/http/node_modules/bower/lib/node_modules/performance-now/Makefile +0 -25
  3547. package/http/node_modules/bower/lib/node_modules/performance-now/README.md +0 -30
  3548. package/http/node_modules/bower/lib/node_modules/performance-now/lib/performance-now.js +0 -32
  3549. package/http/node_modules/bower/lib/node_modules/performance-now/license.txt +0 -7
  3550. package/http/node_modules/bower/lib/node_modules/performance-now/package.json +0 -27
  3551. package/http/node_modules/bower/lib/node_modules/performance-now/src/performance-now.coffee +0 -15
  3552. package/http/node_modules/bower/lib/node_modules/performance-now/test/mocha.opts +0 -3
  3553. package/http/node_modules/bower/lib/node_modules/performance-now/test/performance-now.coffee +0 -38
  3554. package/http/node_modules/bower/lib/node_modules/pify/index.js +0 -68
  3555. package/http/node_modules/bower/lib/node_modules/pify/license +0 -21
  3556. package/http/node_modules/bower/lib/node_modules/pify/package.json +0 -48
  3557. package/http/node_modules/bower/lib/node_modules/pify/readme.md +0 -119
  3558. package/http/node_modules/bower/lib/node_modules/pinkie/index.js +0 -292
  3559. package/http/node_modules/bower/lib/node_modules/pinkie/license +0 -21
  3560. package/http/node_modules/bower/lib/node_modules/pinkie/package.json +0 -36
  3561. package/http/node_modules/bower/lib/node_modules/pinkie/readme.md +0 -83
  3562. package/http/node_modules/bower/lib/node_modules/pinkie-promise/index.js +0 -3
  3563. package/http/node_modules/bower/lib/node_modules/pinkie-promise/license +0 -21
  3564. package/http/node_modules/bower/lib/node_modules/pinkie-promise/package.json +0 -35
  3565. package/http/node_modules/bower/lib/node_modules/pinkie-promise/readme.md +0 -28
  3566. package/http/node_modules/bower/lib/node_modules/prepend-http/index.js +0 -14
  3567. package/http/node_modules/bower/lib/node_modules/prepend-http/license +0 -21
  3568. package/http/node_modules/bower/lib/node_modules/prepend-http/package.json +0 -35
  3569. package/http/node_modules/bower/lib/node_modules/prepend-http/readme.md +0 -31
  3570. package/http/node_modules/bower/lib/node_modules/process-nextick-args/.travis.yml +0 -12
  3571. package/http/node_modules/bower/lib/node_modules/process-nextick-args/index.js +0 -43
  3572. package/http/node_modules/bower/lib/node_modules/process-nextick-args/license.md +0 -19
  3573. package/http/node_modules/bower/lib/node_modules/process-nextick-args/package.json +0 -22
  3574. package/http/node_modules/bower/lib/node_modules/process-nextick-args/readme.md +0 -18
  3575. package/http/node_modules/bower/lib/node_modules/process-nextick-args/test.js +0 -24
  3576. package/http/node_modules/bower/lib/node_modules/promptly/.jshintrc +0 -63
  3577. package/http/node_modules/bower/lib/node_modules/promptly/.npmignore +0 -54
  3578. package/http/node_modules/bower/lib/node_modules/promptly/.travis.yml +0 -4
  3579. package/http/node_modules/bower/lib/node_modules/promptly/LICENSE +0 -19
  3580. package/http/node_modules/bower/lib/node_modules/promptly/README.md +0 -157
  3581. package/http/node_modules/bower/lib/node_modules/promptly/index.js +0 -180
  3582. package/http/node_modules/bower/lib/node_modules/promptly/package.json +0 -34
  3583. package/http/node_modules/bower/lib/node_modules/promptly/test/test.js +0 -330
  3584. package/http/node_modules/bower/lib/node_modules/pump/.npmignore +0 -1
  3585. package/http/node_modules/bower/lib/node_modules/pump/.travis.yml +0 -5
  3586. package/http/node_modules/bower/lib/node_modules/pump/LICENSE +0 -21
  3587. package/http/node_modules/bower/lib/node_modules/pump/README.md +0 -56
  3588. package/http/node_modules/bower/lib/node_modules/pump/index.js +0 -80
  3589. package/http/node_modules/bower/lib/node_modules/pump/package.json +0 -24
  3590. package/http/node_modules/bower/lib/node_modules/pump/test-browser.js +0 -58
  3591. package/http/node_modules/bower/lib/node_modules/pump/test.js +0 -46
  3592. package/http/node_modules/bower/lib/node_modules/punycode/LICENSE-MIT.txt +0 -20
  3593. package/http/node_modules/bower/lib/node_modules/punycode/README.md +0 -176
  3594. package/http/node_modules/bower/lib/node_modules/punycode/package.json +0 -60
  3595. package/http/node_modules/bower/lib/node_modules/punycode/punycode.js +0 -533
  3596. package/http/node_modules/bower/lib/node_modules/q/CHANGES.md +0 -792
  3597. package/http/node_modules/bower/lib/node_modules/q/LICENSE +0 -18
  3598. package/http/node_modules/bower/lib/node_modules/q/README.md +0 -874
  3599. package/http/node_modules/bower/lib/node_modules/q/package.json +0 -76
  3600. package/http/node_modules/bower/lib/node_modules/q/q.js +0 -2073
  3601. package/http/node_modules/bower/lib/node_modules/q/queue.js +0 -35
  3602. package/http/node_modules/bower/lib/node_modules/rc/.npmignore +0 -3
  3603. package/http/node_modules/bower/lib/node_modules/rc/LICENSE.APACHE2 +0 -15
  3604. package/http/node_modules/bower/lib/node_modules/rc/LICENSE.BSD +0 -26
  3605. package/http/node_modules/bower/lib/node_modules/rc/LICENSE.MIT +0 -24
  3606. package/http/node_modules/bower/lib/node_modules/rc/README.md +0 -149
  3607. package/http/node_modules/bower/lib/node_modules/rc/browser.js +0 -7
  3608. package/http/node_modules/bower/lib/node_modules/rc/index.js +0 -60
  3609. package/http/node_modules/bower/lib/node_modules/rc/lib/utils.js +0 -104
  3610. package/http/node_modules/bower/lib/node_modules/rc/package.json +0 -29
  3611. package/http/node_modules/bower/lib/node_modules/rc/test/ini.js +0 -16
  3612. package/http/node_modules/bower/lib/node_modules/rc/test/nested-env-vars.js +0 -50
  3613. package/http/node_modules/bower/lib/node_modules/rc/test/test.js +0 -59
  3614. package/http/node_modules/bower/lib/node_modules/read/LICENSE +0 -15
  3615. package/http/node_modules/bower/lib/node_modules/read/README.md +0 -53
  3616. package/http/node_modules/bower/lib/node_modules/read/lib/read.js +0 -113
  3617. package/http/node_modules/bower/lib/node_modules/read/package.json +0 -27
  3618. package/http/node_modules/bower/lib/node_modules/read-all-stream/index.js +0 -72
  3619. package/http/node_modules/bower/lib/node_modules/read-all-stream/license +0 -21
  3620. package/http/node_modules/bower/lib/node_modules/read-all-stream/package.json +0 -33
  3621. package/http/node_modules/bower/lib/node_modules/read-all-stream/readme.md +0 -72
  3622. package/http/node_modules/bower/lib/node_modules/read-pkg/index.js +0 -48
  3623. package/http/node_modules/bower/lib/node_modules/read-pkg/license +0 -21
  3624. package/http/node_modules/bower/lib/node_modules/read-pkg/package.json +0 -42
  3625. package/http/node_modules/bower/lib/node_modules/read-pkg/readme.md +0 -79
  3626. package/http/node_modules/bower/lib/node_modules/read-pkg-up/index.js +0 -31
  3627. package/http/node_modules/bower/lib/node_modules/read-pkg-up/license +0 -21
  3628. package/http/node_modules/bower/lib/node_modules/read-pkg-up/package.json +0 -59
  3629. package/http/node_modules/bower/lib/node_modules/read-pkg-up/readme.md +0 -79
  3630. package/http/node_modules/bower/lib/node_modules/readable-stream/.npmignore +0 -9
  3631. package/http/node_modules/bower/lib/node_modules/readable-stream/.travis.yml +0 -65
  3632. package/http/node_modules/bower/lib/node_modules/readable-stream/CONTRIBUTING.md +0 -38
  3633. package/http/node_modules/bower/lib/node_modules/readable-stream/GOVERNANCE.md +0 -136
  3634. package/http/node_modules/bower/lib/node_modules/readable-stream/LICENSE +0 -47
  3635. package/http/node_modules/bower/lib/node_modules/readable-stream/README.md +0 -57
  3636. package/http/node_modules/bower/lib/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +0 -60
  3637. package/http/node_modules/bower/lib/node_modules/readable-stream/duplex-browser.js +0 -1
  3638. package/http/node_modules/bower/lib/node_modules/readable-stream/duplex.js +0 -1
  3639. package/http/node_modules/bower/lib/node_modules/readable-stream/lib/_stream_duplex.js +0 -124
  3640. package/http/node_modules/bower/lib/node_modules/readable-stream/lib/_stream_passthrough.js +0 -47
  3641. package/http/node_modules/bower/lib/node_modules/readable-stream/lib/_stream_readable.js +0 -1007
  3642. package/http/node_modules/bower/lib/node_modules/readable-stream/lib/_stream_transform.js +0 -214
  3643. package/http/node_modules/bower/lib/node_modules/readable-stream/lib/_stream_writable.js +0 -664
  3644. package/http/node_modules/bower/lib/node_modules/readable-stream/lib/internal/streams/BufferList.js +0 -74
  3645. package/http/node_modules/bower/lib/node_modules/readable-stream/lib/internal/streams/destroy.js +0 -72
  3646. package/http/node_modules/bower/lib/node_modules/readable-stream/lib/internal/streams/stream-browser.js +0 -1
  3647. package/http/node_modules/bower/lib/node_modules/readable-stream/lib/internal/streams/stream.js +0 -1
  3648. package/http/node_modules/bower/lib/node_modules/readable-stream/node_modules/string_decoder/.npmignore +0 -2
  3649. package/http/node_modules/bower/lib/node_modules/readable-stream/node_modules/string_decoder/LICENSE +0 -48
  3650. package/http/node_modules/bower/lib/node_modules/readable-stream/node_modules/string_decoder/README.md +0 -28
  3651. package/http/node_modules/bower/lib/node_modules/readable-stream/node_modules/string_decoder/lib/string_decoder.js +0 -272
  3652. package/http/node_modules/bower/lib/node_modules/readable-stream/node_modules/string_decoder/package.json +0 -28
  3653. package/http/node_modules/bower/lib/node_modules/readable-stream/package.json +0 -54
  3654. package/http/node_modules/bower/lib/node_modules/readable-stream/passthrough.js +0 -1
  3655. package/http/node_modules/bower/lib/node_modules/readable-stream/readable-browser.js +0 -7
  3656. package/http/node_modules/bower/lib/node_modules/readable-stream/readable.js +0 -19
  3657. package/http/node_modules/bower/lib/node_modules/readable-stream/transform.js +0 -1
  3658. package/http/node_modules/bower/lib/node_modules/readable-stream/writable-browser.js +0 -1
  3659. package/http/node_modules/bower/lib/node_modules/readable-stream/writable.js +0 -8
  3660. package/http/node_modules/bower/lib/node_modules/readline2/README.md +0 -33
  3661. package/http/node_modules/bower/lib/node_modules/readline2/index.js +0 -126
  3662. package/http/node_modules/bower/lib/node_modules/readline2/package.json +0 -31
  3663. package/http/node_modules/bower/lib/node_modules/redent/index.js +0 -7
  3664. package/http/node_modules/bower/lib/node_modules/redent/license +0 -21
  3665. package/http/node_modules/bower/lib/node_modules/redent/package.json +0 -43
  3666. package/http/node_modules/bower/lib/node_modules/redent/readme.md +0 -48
  3667. package/http/node_modules/bower/lib/node_modules/redeyed/.npmignore +0 -15
  3668. package/http/node_modules/bower/lib/node_modules/redeyed/.travis.yml +0 -5
  3669. package/http/node_modules/bower/lib/node_modules/redeyed/Changelog.md +0 -15
  3670. package/http/node_modules/bower/lib/node_modules/redeyed/LICENSE +0 -23
  3671. package/http/node_modules/bower/lib/node_modules/redeyed/README.md +0 -192
  3672. package/http/node_modules/bower/lib/node_modules/redeyed/config.js +0 -137
  3673. package/http/node_modules/bower/lib/node_modules/redeyed/examples/browser/index.css +0 -31
  3674. package/http/node_modules/bower/lib/node_modules/redeyed/examples/browser/index.html +0 -35
  3675. package/http/node_modules/bower/lib/node_modules/redeyed/examples/browser/index.js +0 -33
  3676. package/http/node_modules/bower/lib/node_modules/redeyed/examples/browser/sample-config.js +0 -131
  3677. package/http/node_modules/bower/lib/node_modules/redeyed/examples/replace-log.js +0 -61
  3678. package/http/node_modules/bower/lib/node_modules/redeyed/examples/sources/log.js +0 -8
  3679. package/http/node_modules/bower/lib/node_modules/redeyed/package.json +0 -33
  3680. package/http/node_modules/bower/lib/node_modules/redeyed/redeyed.js +0 -291
  3681. package/http/node_modules/bower/lib/node_modules/redeyed/test/redeyed-before-after-config.js +0 -54
  3682. package/http/node_modules/bower/lib/node_modules/redeyed/test/redeyed-browser.js +0 -69
  3683. package/http/node_modules/bower/lib/node_modules/redeyed/test/redeyed-comments.js +0 -71
  3684. package/http/node_modules/bower/lib/node_modules/redeyed/test/redeyed-config-with-undefineds.js +0 -60
  3685. package/http/node_modules/bower/lib/node_modules/redeyed/test/redeyed-function-config-extra-params.js +0 -57
  3686. package/http/node_modules/bower/lib/node_modules/redeyed/test/redeyed-function-config-skipping-tokens.js +0 -89
  3687. package/http/node_modules/bower/lib/node_modules/redeyed/test/redeyed-function-config.js +0 -142
  3688. package/http/node_modules/bower/lib/node_modules/redeyed/test/redeyed-mixed.js +0 -46
  3689. package/http/node_modules/bower/lib/node_modules/redeyed/test/redeyed-result.js +0 -48
  3690. package/http/node_modules/bower/lib/node_modules/redeyed/test/redeyed-script-level-return.js +0 -22
  3691. package/http/node_modules/bower/lib/node_modules/redeyed/test/redeyed-shebang.js +0 -23
  3692. package/http/node_modules/bower/lib/node_modules/redeyed/test/redeyed-smoke.js +0 -57
  3693. package/http/node_modules/bower/lib/node_modules/redeyed/test/redeyed-string-config.js +0 -124
  3694. package/http/node_modules/bower/lib/node_modules/redeyed/test/redeyed-types.js +0 -71
  3695. package/http/node_modules/bower/lib/node_modules/registry-auth-token/.npmignore +0 -6
  3696. package/http/node_modules/bower/lib/node_modules/registry-auth-token/CHANGELOG.md +0 -94
  3697. package/http/node_modules/bower/lib/node_modules/registry-auth-token/LICENSE +0 -21
  3698. package/http/node_modules/bower/lib/node_modules/registry-auth-token/README.md +0 -65
  3699. package/http/node_modules/bower/lib/node_modules/registry-auth-token/base64.js +0 -14
  3700. package/http/node_modules/bower/lib/node_modules/registry-auth-token/index.js +0 -116
  3701. package/http/node_modules/bower/lib/node_modules/registry-auth-token/package.json +0 -46
  3702. package/http/node_modules/bower/lib/node_modules/registry-auth-token/registry-url.js +0 -5
  3703. package/http/node_modules/bower/lib/node_modules/registry-auth-token/test/auth-token.test.js +0 -369
  3704. package/http/node_modules/bower/lib/node_modules/registry-auth-token/test/registry-url.test.js +0 -64
  3705. package/http/node_modules/bower/lib/node_modules/registry-auth-token/yarn.lock +0 -1466
  3706. package/http/node_modules/bower/lib/node_modules/registry-url/index.js +0 -6
  3707. package/http/node_modules/bower/lib/node_modules/registry-url/license +0 -21
  3708. package/http/node_modules/bower/lib/node_modules/registry-url/package.json +0 -40
  3709. package/http/node_modules/bower/lib/node_modules/registry-url/readme.md +0 -50
  3710. package/http/node_modules/bower/lib/node_modules/repeat-string/LICENSE +0 -21
  3711. package/http/node_modules/bower/lib/node_modules/repeat-string/README.md +0 -136
  3712. package/http/node_modules/bower/lib/node_modules/repeat-string/index.js +0 -70
  3713. package/http/node_modules/bower/lib/node_modules/repeat-string/package.json +0 -77
  3714. package/http/node_modules/bower/lib/node_modules/repeating/index.js +0 -24
  3715. package/http/node_modules/bower/lib/node_modules/repeating/license +0 -21
  3716. package/http/node_modules/bower/lib/node_modules/repeating/package.json +0 -37
  3717. package/http/node_modules/bower/lib/node_modules/repeating/readme.md +0 -30
  3718. package/http/node_modules/bower/lib/node_modules/request/.eslintrc +0 -45
  3719. package/http/node_modules/bower/lib/node_modules/request/.npmignore +0 -6
  3720. package/http/node_modules/bower/lib/node_modules/request/.travis.yml +0 -15
  3721. package/http/node_modules/bower/lib/node_modules/request/CHANGELOG.md +0 -578
  3722. package/http/node_modules/bower/lib/node_modules/request/CONTRIBUTING.md +0 -44
  3723. package/http/node_modules/bower/lib/node_modules/request/LICENSE +0 -55
  3724. package/http/node_modules/bower/lib/node_modules/request/README.md +0 -1094
  3725. package/http/node_modules/bower/lib/node_modules/request/index.js +0 -156
  3726. package/http/node_modules/bower/lib/node_modules/request/lib/auth.js +0 -168
  3727. package/http/node_modules/bower/lib/node_modules/request/lib/cookies.js +0 -39
  3728. package/http/node_modules/bower/lib/node_modules/request/lib/getProxyFromURI.js +0 -79
  3729. package/http/node_modules/bower/lib/node_modules/request/lib/har.js +0 -214
  3730. package/http/node_modules/bower/lib/node_modules/request/lib/helpers.js +0 -74
  3731. package/http/node_modules/bower/lib/node_modules/request/lib/multipart.js +0 -109
  3732. package/http/node_modules/bower/lib/node_modules/request/lib/oauth.js +0 -147
  3733. package/http/node_modules/bower/lib/node_modules/request/lib/querystring.js +0 -51
  3734. package/http/node_modules/bower/lib/node_modules/request/lib/redirect.js +0 -153
  3735. package/http/node_modules/bower/lib/node_modules/request/lib/tunnel.js +0 -178
  3736. package/http/node_modules/bower/lib/node_modules/request/package.json +0 -74
  3737. package/http/node_modules/bower/lib/node_modules/request/request.js +0 -1395
  3738. package/http/node_modules/bower/lib/node_modules/request-progress/.editorconfig +0 -12
  3739. package/http/node_modules/bower/lib/node_modules/request-progress/.jshintrc +0 -63
  3740. package/http/node_modules/bower/lib/node_modules/request-progress/.npmignore +0 -2
  3741. package/http/node_modules/bower/lib/node_modules/request-progress/.travis.yml +0 -4
  3742. package/http/node_modules/bower/lib/node_modules/request-progress/LICENSE +0 -19
  3743. package/http/node_modules/bower/lib/node_modules/request-progress/README.md +0 -47
  3744. package/http/node_modules/bower/lib/node_modules/request-progress/index.js +0 -80
  3745. package/http/node_modules/bower/lib/node_modules/request-progress/package.json +0 -34
  3746. package/http/node_modules/bower/lib/node_modules/request-progress/test/test.js +0 -1
  3747. package/http/node_modules/bower/lib/node_modules/request-replay/.editorconfig +0 -7
  3748. package/http/node_modules/bower/lib/node_modules/request-replay/.jshintrc +0 -63
  3749. package/http/node_modules/bower/lib/node_modules/request-replay/.npmignore +0 -2
  3750. package/http/node_modules/bower/lib/node_modules/request-replay/.travis.yml +0 -4
  3751. package/http/node_modules/bower/lib/node_modules/request-replay/LICENSE +0 -19
  3752. package/http/node_modules/bower/lib/node_modules/request-replay/README.md +0 -50
  3753. package/http/node_modules/bower/lib/node_modules/request-replay/index.js +0 -95
  3754. package/http/node_modules/bower/lib/node_modules/request-replay/package.json +0 -33
  3755. package/http/node_modules/bower/lib/node_modules/request-replay/test/test.js +0 -68
  3756. package/http/node_modules/bower/lib/node_modules/requireg/.npmignore +0 -5
  3757. package/http/node_modules/bower/lib/node_modules/requireg/.travis.yml +0 -12
  3758. package/http/node_modules/bower/lib/node_modules/requireg/LICENSE +0 -23
  3759. package/http/node_modules/bower/lib/node_modules/requireg/Makefile +0 -4
  3760. package/http/node_modules/bower/lib/node_modules/requireg/README.md +0 -85
  3761. package/http/node_modules/bower/lib/node_modules/requireg/lib/requireg.js +0 -35
  3762. package/http/node_modules/bower/lib/node_modules/requireg/lib/resolvers.js +0 -129
  3763. package/http/node_modules/bower/lib/node_modules/requireg/package-lock.json +0 -192
  3764. package/http/node_modules/bower/lib/node_modules/requireg/package.json +0 -52
  3765. package/http/node_modules/bower/lib/node_modules/requireg/test/fixtures/lib/node_modules/beaker/index.js +0 -1
  3766. package/http/node_modules/bower/lib/node_modules/requireg/test/fixtures/lib/node_modules/beaker/package.json +0 -4
  3767. package/http/node_modules/bower/lib/node_modules/requireg/test/requiregSpec.js +0 -145
  3768. package/http/node_modules/bower/lib/node_modules/resolve/.editorconfig +0 -20
  3769. package/http/node_modules/bower/lib/node_modules/resolve/.eslintignore +0 -1
  3770. package/http/node_modules/bower/lib/node_modules/resolve/.eslintrc +0 -30
  3771. package/http/node_modules/bower/lib/node_modules/resolve/.npmignore +0 -7
  3772. package/http/node_modules/bower/lib/node_modules/resolve/.travis.yml +0 -185
  3773. package/http/node_modules/bower/lib/node_modules/resolve/LICENSE +0 -18
  3774. package/http/node_modules/bower/lib/node_modules/resolve/appveyor.yml +0 -44
  3775. package/http/node_modules/bower/lib/node_modules/resolve/example/async.js +0 -5
  3776. package/http/node_modules/bower/lib/node_modules/resolve/example/sync.js +0 -3
  3777. package/http/node_modules/bower/lib/node_modules/resolve/index.js +0 -8
  3778. package/http/node_modules/bower/lib/node_modules/resolve/lib/async.js +0 -203
  3779. package/http/node_modules/bower/lib/node_modules/resolve/lib/caller.js +0 -8
  3780. package/http/node_modules/bower/lib/node_modules/resolve/lib/core.js +0 -22
  3781. package/http/node_modules/bower/lib/node_modules/resolve/lib/core.json +0 -47
  3782. package/http/node_modules/bower/lib/node_modules/resolve/lib/node-modules-paths.js +0 -45
  3783. package/http/node_modules/bower/lib/node_modules/resolve/lib/sync.js +0 -93
  3784. package/http/node_modules/bower/lib/node_modules/resolve/package.json +0 -40
  3785. package/http/node_modules/bower/lib/node_modules/resolve/readme.markdown +0 -160
  3786. package/http/node_modules/bower/lib/node_modules/resolve/test/core.js +0 -29
  3787. package/http/node_modules/bower/lib/node_modules/resolve/test/dotdot/abc/index.js +0 -2
  3788. package/http/node_modules/bower/lib/node_modules/resolve/test/dotdot/index.js +0 -1
  3789. package/http/node_modules/bower/lib/node_modules/resolve/test/dotdot.js +0 -29
  3790. package/http/node_modules/bower/lib/node_modules/resolve/test/faulty_basedir.js +0 -13
  3791. package/http/node_modules/bower/lib/node_modules/resolve/test/filter.js +0 -19
  3792. package/http/node_modules/bower/lib/node_modules/resolve/test/filter_sync.js +0 -16
  3793. package/http/node_modules/bower/lib/node_modules/resolve/test/mock.js +0 -143
  3794. package/http/node_modules/bower/lib/node_modules/resolve/test/mock_sync.js +0 -67
  3795. package/http/node_modules/bower/lib/node_modules/resolve/test/module_dir/xmodules/aaa/index.js +0 -1
  3796. package/http/node_modules/bower/lib/node_modules/resolve/test/module_dir/ymodules/aaa/index.js +0 -1
  3797. package/http/node_modules/bower/lib/node_modules/resolve/test/module_dir/zmodules/bbb/main.js +0 -1
  3798. package/http/node_modules/bower/lib/node_modules/resolve/test/module_dir/zmodules/bbb/package.json +0 -3
  3799. package/http/node_modules/bower/lib/node_modules/resolve/test/module_dir.js +0 -56
  3800. package/http/node_modules/bower/lib/node_modules/resolve/test/node-modules-paths.js +0 -93
  3801. package/http/node_modules/bower/lib/node_modules/resolve/test/node_path/x/aaa/index.js +0 -1
  3802. package/http/node_modules/bower/lib/node_modules/resolve/test/node_path/x/ccc/index.js +0 -1
  3803. package/http/node_modules/bower/lib/node_modules/resolve/test/node_path/y/bbb/index.js +0 -1
  3804. package/http/node_modules/bower/lib/node_modules/resolve/test/node_path/y/ccc/index.js +0 -1
  3805. package/http/node_modules/bower/lib/node_modules/resolve/test/node_path.js +0 -49
  3806. package/http/node_modules/bower/lib/node_modules/resolve/test/nonstring.js +0 -9
  3807. package/http/node_modules/bower/lib/node_modules/resolve/test/pathfilter/deep_ref/main.js +0 -0
  3808. package/http/node_modules/bower/lib/node_modules/resolve/test/pathfilter.js +0 -42
  3809. package/http/node_modules/bower/lib/node_modules/resolve/test/precedence/aaa/index.js +0 -1
  3810. package/http/node_modules/bower/lib/node_modules/resolve/test/precedence/aaa/main.js +0 -1
  3811. package/http/node_modules/bower/lib/node_modules/resolve/test/precedence/aaa.js +0 -1
  3812. package/http/node_modules/bower/lib/node_modules/resolve/test/precedence/bbb/main.js +0 -1
  3813. package/http/node_modules/bower/lib/node_modules/resolve/test/precedence/bbb.js +0 -1
  3814. package/http/node_modules/bower/lib/node_modules/resolve/test/precedence.js +0 -23
  3815. package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/baz/doom.js +0 -0
  3816. package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/baz/package.json +0 -3
  3817. package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/baz/quux.js +0 -1
  3818. package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/cup.coffee +0 -1
  3819. package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/dot_main/index.js +0 -1
  3820. package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/dot_main/package.json +0 -3
  3821. package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/dot_slash_main/index.js +0 -1
  3822. package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/dot_slash_main/package.json +0 -3
  3823. package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/foo.js +0 -1
  3824. package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/incorrect_main/index.js +0 -2
  3825. package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/incorrect_main/package.json +0 -3
  3826. package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/mug.coffee +0 -0
  3827. package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/mug.js +0 -0
  3828. package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/other_path/lib/other-lib.js +0 -0
  3829. package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/other_path/root.js +0 -0
  3830. package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/quux/foo/index.js +0 -1
  3831. package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/same_names/foo/index.js +0 -1
  3832. package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/same_names/foo.js +0 -1
  3833. package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/symlinked/.npmignore +0 -1
  3834. package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/symlinked/_/.npmignore +0 -1
  3835. package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/symlinked/_/node_modules/foo.js +0 -0
  3836. package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/symlinked/_/symlink_target/.gitkeep +0 -0
  3837. package/http/node_modules/bower/lib/node_modules/resolve/test/resolver/without_basedir/main.js +0 -5
  3838. package/http/node_modules/bower/lib/node_modules/resolve/test/resolver.js +0 -349
  3839. package/http/node_modules/bower/lib/node_modules/resolve/test/resolver_sync.js +0 -267
  3840. package/http/node_modules/bower/lib/node_modules/resolve/test/subdirs.js +0 -13
  3841. package/http/node_modules/bower/lib/node_modules/resolve/test/symlinks.js +0 -54
  3842. package/http/node_modules/bower/lib/node_modules/restore-cursor/index.js +0 -9
  3843. package/http/node_modules/bower/lib/node_modules/restore-cursor/license +0 -21
  3844. package/http/node_modules/bower/lib/node_modules/restore-cursor/package.json +0 -44
  3845. package/http/node_modules/bower/lib/node_modules/restore-cursor/readme.md +0 -25
  3846. package/http/node_modules/bower/lib/node_modules/retry/.npmignore +0 -1
  3847. package/http/node_modules/bower/lib/node_modules/retry/License +0 -21
  3848. package/http/node_modules/bower/lib/node_modules/retry/Makefile +0 -7
  3849. package/http/node_modules/bower/lib/node_modules/retry/README.md +0 -167
  3850. package/http/node_modules/bower/lib/node_modules/retry/equation.gif +0 -0
  3851. package/http/node_modules/bower/lib/node_modules/retry/example/dns.js +0 -31
  3852. package/http/node_modules/bower/lib/node_modules/retry/index.js +0 -1
  3853. package/http/node_modules/bower/lib/node_modules/retry/lib/retry.js +0 -50
  3854. package/http/node_modules/bower/lib/node_modules/retry/lib/retry_operation.js +0 -109
  3855. package/http/node_modules/bower/lib/node_modules/retry/package.json +0 -23
  3856. package/http/node_modules/bower/lib/node_modules/retry/test/common.js +0 -10
  3857. package/http/node_modules/bower/lib/node_modules/retry/test/integration/test-retry-operation.js +0 -80
  3858. package/http/node_modules/bower/lib/node_modules/retry/test/integration/test-timeouts.js +0 -69
  3859. package/http/node_modules/bower/lib/node_modules/retry/test/runner.js +0 -5
  3860. package/http/node_modules/bower/lib/node_modules/right-align/LICENSE +0 -21
  3861. package/http/node_modules/bower/lib/node_modules/right-align/README.md +0 -77
  3862. package/http/node_modules/bower/lib/node_modules/right-align/index.js +0 -16
  3863. package/http/node_modules/bower/lib/node_modules/right-align/package.json +0 -45
  3864. package/http/node_modules/bower/lib/node_modules/rimraf/LICENSE +0 -15
  3865. package/http/node_modules/bower/lib/node_modules/rimraf/README.md +0 -101
  3866. package/http/node_modules/bower/lib/node_modules/rimraf/bin.js +0 -50
  3867. package/http/node_modules/bower/lib/node_modules/rimraf/package.json +0 -26
  3868. package/http/node_modules/bower/lib/node_modules/rimraf/rimraf.js +0 -364
  3869. package/http/node_modules/bower/lib/node_modules/run-async/.editorconfig +0 -12
  3870. package/http/node_modules/bower/lib/node_modules/run-async/.gitattributes +0 -1
  3871. package/http/node_modules/bower/lib/node_modules/run-async/.jshintrc +0 -20
  3872. package/http/node_modules/bower/lib/node_modules/run-async/.npmignore +0 -1
  3873. package/http/node_modules/bower/lib/node_modules/run-async/.travis.yml +0 -3
  3874. package/http/node_modules/bower/lib/node_modules/run-async/LICENSE +0 -21
  3875. package/http/node_modules/bower/lib/node_modules/run-async/README.md +0 -50
  3876. package/http/node_modules/bower/lib/node_modules/run-async/index.js +0 -25
  3877. package/http/node_modules/bower/lib/node_modules/run-async/package.json +0 -30
  3878. package/http/node_modules/bower/lib/node_modules/run-async/test.js +0 -51
  3879. package/http/node_modules/bower/lib/node_modules/rx-lite/package.json +0 -38
  3880. package/http/node_modules/bower/lib/node_modules/rx-lite/readme.md +0 -174
  3881. package/http/node_modules/bower/lib/node_modules/rx-lite/rx.lite.js +0 -6366
  3882. package/http/node_modules/bower/lib/node_modules/rx-lite/rx.lite.map +0 -1
  3883. package/http/node_modules/bower/lib/node_modules/rx-lite/rx.lite.min.js +0 -5
  3884. package/http/node_modules/bower/lib/node_modules/safe-buffer/.travis.yml +0 -7
  3885. package/http/node_modules/bower/lib/node_modules/safe-buffer/LICENSE +0 -21
  3886. package/http/node_modules/bower/lib/node_modules/safe-buffer/README.md +0 -584
  3887. package/http/node_modules/bower/lib/node_modules/safe-buffer/index.js +0 -62
  3888. package/http/node_modules/bower/lib/node_modules/safe-buffer/package.json +0 -37
  3889. package/http/node_modules/bower/lib/node_modules/safe-buffer/test.js +0 -101
  3890. package/http/node_modules/bower/lib/node_modules/semver/.npmignore +0 -1
  3891. package/http/node_modules/bower/lib/node_modules/semver/LICENSE +0 -27
  3892. package/http/node_modules/bower/lib/node_modules/semver/Makefile +0 -24
  3893. package/http/node_modules/bower/lib/node_modules/semver/README.md +0 -158
  3894. package/http/node_modules/bower/lib/node_modules/semver/bin/semver +0 -125
  3895. package/http/node_modules/bower/lib/node_modules/semver/foot.js +0 -6
  3896. package/http/node_modules/bower/lib/node_modules/semver/head.js +0 -2
  3897. package/http/node_modules/bower/lib/node_modules/semver/package.json +0 -21
  3898. package/http/node_modules/bower/lib/node_modules/semver/semver.browser.js +0 -1046
  3899. package/http/node_modules/bower/lib/node_modules/semver/semver.browser.js.gz +0 -0
  3900. package/http/node_modules/bower/lib/node_modules/semver/semver.js +0 -1050
  3901. package/http/node_modules/bower/lib/node_modules/semver/semver.min.js +0 -1
  3902. package/http/node_modules/bower/lib/node_modules/semver/semver.min.js.gz +0 -0
  3903. package/http/node_modules/bower/lib/node_modules/semver/test/amd.js +0 -15
  3904. package/http/node_modules/bower/lib/node_modules/semver/test/gtr.js +0 -173
  3905. package/http/node_modules/bower/lib/node_modules/semver/test/index.js +0 -588
  3906. package/http/node_modules/bower/lib/node_modules/semver/test/ltr.js +0 -175
  3907. package/http/node_modules/bower/lib/node_modules/semver/test/no-module.js +0 -19
  3908. package/http/node_modules/bower/lib/node_modules/semver-diff/index.js +0 -27
  3909. package/http/node_modules/bower/lib/node_modules/semver-diff/license +0 -21
  3910. package/http/node_modules/bower/lib/node_modules/semver-diff/package.json +0 -34
  3911. package/http/node_modules/bower/lib/node_modules/semver-diff/readme.md +0 -52
  3912. package/http/node_modules/bower/lib/node_modules/semver-utils/.npmignore +0 -1
  3913. package/http/node_modules/bower/lib/node_modules/semver-utils/README.md +0 -131
  3914. package/http/node_modules/bower/lib/node_modules/semver-utils/package.json +0 -26
  3915. package/http/node_modules/bower/lib/node_modules/semver-utils/semver-utils.js +0 -151
  3916. package/http/node_modules/bower/lib/node_modules/semver-utils/test/deepOwnEqual.js +0 -26
  3917. package/http/node_modules/bower/lib/node_modules/semver-utils/test/spec.js +0 -192
  3918. package/http/node_modules/bower/lib/node_modules/shell-quote/.travis.yml +0 -4
  3919. package/http/node_modules/bower/lib/node_modules/shell-quote/LICENSE +0 -24
  3920. package/http/node_modules/bower/lib/node_modules/shell-quote/example/env.js +0 -3
  3921. package/http/node_modules/bower/lib/node_modules/shell-quote/example/op.js +0 -3
  3922. package/http/node_modules/bower/lib/node_modules/shell-quote/example/parse.js +0 -3
  3923. package/http/node_modules/bower/lib/node_modules/shell-quote/example/quote.js +0 -3
  3924. package/http/node_modules/bower/lib/node_modules/shell-quote/index.js +0 -199
  3925. package/http/node_modules/bower/lib/node_modules/shell-quote/package.json +0 -51
  3926. package/http/node_modules/bower/lib/node_modules/shell-quote/readme.markdown +0 -142
  3927. package/http/node_modules/bower/lib/node_modules/shell-quote/test/comment.js +0 -14
  3928. package/http/node_modules/bower/lib/node_modules/shell-quote/test/env.js +0 -39
  3929. package/http/node_modules/bower/lib/node_modules/shell-quote/test/env_fn.js +0 -19
  3930. package/http/node_modules/bower/lib/node_modules/shell-quote/test/op.js +0 -67
  3931. package/http/node_modules/bower/lib/node_modules/shell-quote/test/parse.js +0 -23
  3932. package/http/node_modules/bower/lib/node_modules/shell-quote/test/quote.js +0 -33
  3933. package/http/node_modules/bower/lib/node_modules/shell-quote/test/set.js +0 -29
  3934. package/http/node_modules/bower/lib/node_modules/signal-exit/CHANGELOG.md +0 -27
  3935. package/http/node_modules/bower/lib/node_modules/signal-exit/LICENSE.txt +0 -16
  3936. package/http/node_modules/bower/lib/node_modules/signal-exit/README.md +0 -40
  3937. package/http/node_modules/bower/lib/node_modules/signal-exit/index.js +0 -157
  3938. package/http/node_modules/bower/lib/node_modules/signal-exit/package.json +0 -38
  3939. package/http/node_modules/bower/lib/node_modules/signal-exit/signals.js +0 -53
  3940. package/http/node_modules/bower/lib/node_modules/slide/LICENSE +0 -15
  3941. package/http/node_modules/bower/lib/node_modules/slide/README.md +0 -143
  3942. package/http/node_modules/bower/lib/node_modules/slide/index.js +0 -1
  3943. package/http/node_modules/bower/lib/node_modules/slide/lib/async-map-ordered.js +0 -65
  3944. package/http/node_modules/bower/lib/node_modules/slide/lib/async-map.js +0 -54
  3945. package/http/node_modules/bower/lib/node_modules/slide/lib/bind-actor.js +0 -16
  3946. package/http/node_modules/bower/lib/node_modules/slide/lib/chain.js +0 -20
  3947. package/http/node_modules/bower/lib/node_modules/slide/lib/slide.js +0 -3
  3948. package/http/node_modules/bower/lib/node_modules/slide/package.json +0 -20
  3949. package/http/node_modules/bower/lib/node_modules/sntp/.npmignore +0 -18
  3950. package/http/node_modules/bower/lib/node_modules/sntp/.travis.yml +0 -5
  3951. package/http/node_modules/bower/lib/node_modules/sntp/LICENSE +0 -28
  3952. package/http/node_modules/bower/lib/node_modules/sntp/Makefile +0 -9
  3953. package/http/node_modules/bower/lib/node_modules/sntp/README.md +0 -68
  3954. package/http/node_modules/bower/lib/node_modules/sntp/examples/offset.js +0 -16
  3955. package/http/node_modules/bower/lib/node_modules/sntp/examples/time.js +0 -25
  3956. package/http/node_modules/bower/lib/node_modules/sntp/index.js +0 -1
  3957. package/http/node_modules/bower/lib/node_modules/sntp/lib/index.js +0 -412
  3958. package/http/node_modules/bower/lib/node_modules/sntp/package.json +0 -32
  3959. package/http/node_modules/bower/lib/node_modules/sntp/test/index.js +0 -435
  3960. package/http/node_modules/bower/lib/node_modules/sort-keys/index.js +0 -44
  3961. package/http/node_modules/bower/lib/node_modules/sort-keys/license +0 -21
  3962. package/http/node_modules/bower/lib/node_modules/sort-keys/package.json +0 -40
  3963. package/http/node_modules/bower/lib/node_modules/sort-keys/readme.md +0 -60
  3964. package/http/node_modules/bower/lib/node_modules/sort-keys-length/LICENSE.md +0 -19
  3965. package/http/node_modules/bower/lib/node_modules/sort-keys-length/README.md +0 -35
  3966. package/http/node_modules/bower/lib/node_modules/sort-keys-length/index.js +0 -22
  3967. package/http/node_modules/bower/lib/node_modules/sort-keys-length/package.json +0 -32
  3968. package/http/node_modules/bower/lib/node_modules/spdx-correct/LICENSE +0 -57
  3969. package/http/node_modules/bower/lib/node_modules/spdx-correct/README.md +0 -10
  3970. package/http/node_modules/bower/lib/node_modules/spdx-correct/index.js +0 -237
  3971. package/http/node_modules/bower/lib/node_modules/spdx-correct/package.json +0 -27
  3972. package/http/node_modules/bower/lib/node_modules/spdx-expression-parse/AUTHORS +0 -3
  3973. package/http/node_modules/bower/lib/node_modules/spdx-expression-parse/LICENSE +0 -22
  3974. package/http/node_modules/bower/lib/node_modules/spdx-expression-parse/README.md +0 -83
  3975. package/http/node_modules/bower/lib/node_modules/spdx-expression-parse/index.js +0 -5
  3976. package/http/node_modules/bower/lib/node_modules/spdx-expression-parse/package.json +0 -37
  3977. package/http/node_modules/bower/lib/node_modules/spdx-expression-parse/parser.js +0 -1357
  3978. package/http/node_modules/bower/lib/node_modules/spdx-license-ids/LICENSE +0 -24
  3979. package/http/node_modules/bower/lib/node_modules/spdx-license-ids/README.md +0 -55
  3980. package/http/node_modules/bower/lib/node_modules/spdx-license-ids/package.json +0 -45
  3981. package/http/node_modules/bower/lib/node_modules/spdx-license-ids/spdx-license-ids.json +0 -334
  3982. package/http/node_modules/bower/lib/node_modules/sshpk/.npmignore +0 -9
  3983. package/http/node_modules/bower/lib/node_modules/sshpk/.travis.yml +0 -11
  3984. package/http/node_modules/bower/lib/node_modules/sshpk/LICENSE +0 -18
  3985. package/http/node_modules/bower/lib/node_modules/sshpk/README.md +0 -698
  3986. package/http/node_modules/bower/lib/node_modules/sshpk/bin/sshpk-conv +0 -201
  3987. package/http/node_modules/bower/lib/node_modules/sshpk/bin/sshpk-sign +0 -191
  3988. package/http/node_modules/bower/lib/node_modules/sshpk/bin/sshpk-verify +0 -166
  3989. package/http/node_modules/bower/lib/node_modules/sshpk/lib/algs.js +0 -168
  3990. package/http/node_modules/bower/lib/node_modules/sshpk/lib/certificate.js +0 -377
  3991. package/http/node_modules/bower/lib/node_modules/sshpk/lib/dhe.js +0 -411
  3992. package/http/node_modules/bower/lib/node_modules/sshpk/lib/ed-compat.js +0 -96
  3993. package/http/node_modules/bower/lib/node_modules/sshpk/lib/errors.js +0 -84
  3994. package/http/node_modules/bower/lib/node_modules/sshpk/lib/fingerprint.js +0 -161
  3995. package/http/node_modules/bower/lib/node_modules/sshpk/lib/formats/auto.js +0 -73
  3996. package/http/node_modules/bower/lib/node_modules/sshpk/lib/formats/openssh-cert.js +0 -322
  3997. package/http/node_modules/bower/lib/node_modules/sshpk/lib/formats/pem.js +0 -186
  3998. package/http/node_modules/bower/lib/node_modules/sshpk/lib/formats/pkcs1.js +0 -320
  3999. package/http/node_modules/bower/lib/node_modules/sshpk/lib/formats/pkcs8.js +0 -505
  4000. package/http/node_modules/bower/lib/node_modules/sshpk/lib/formats/rfc4253.js +0 -146
  4001. package/http/node_modules/bower/lib/node_modules/sshpk/lib/formats/ssh-private.js +0 -261
  4002. package/http/node_modules/bower/lib/node_modules/sshpk/lib/formats/ssh.js +0 -114
  4003. package/http/node_modules/bower/lib/node_modules/sshpk/lib/formats/x509-pem.js +0 -77
  4004. package/http/node_modules/bower/lib/node_modules/sshpk/lib/formats/x509.js +0 -726
  4005. package/http/node_modules/bower/lib/node_modules/sshpk/lib/identity.js +0 -277
  4006. package/http/node_modules/bower/lib/node_modules/sshpk/lib/index.js +0 -39
  4007. package/http/node_modules/bower/lib/node_modules/sshpk/lib/key.js +0 -274
  4008. package/http/node_modules/bower/lib/node_modules/sshpk/lib/private-key.js +0 -254
  4009. package/http/node_modules/bower/lib/node_modules/sshpk/lib/signature.js +0 -313
  4010. package/http/node_modules/bower/lib/node_modules/sshpk/lib/ssh-buffer.js +0 -148
  4011. package/http/node_modules/bower/lib/node_modules/sshpk/lib/utils.js +0 -288
  4012. package/http/node_modules/bower/lib/node_modules/sshpk/man/man1/sshpk-conv.1 +0 -135
  4013. package/http/node_modules/bower/lib/node_modules/sshpk/man/man1/sshpk-sign.1 +0 -81
  4014. package/http/node_modules/bower/lib/node_modules/sshpk/man/man1/sshpk-verify.1 +0 -68
  4015. package/http/node_modules/bower/lib/node_modules/sshpk/package.json +0 -59
  4016. package/http/node_modules/bower/lib/node_modules/string-width/index.js +0 -37
  4017. package/http/node_modules/bower/lib/node_modules/string-width/license +0 -21
  4018. package/http/node_modules/bower/lib/node_modules/string-width/package.json +0 -56
  4019. package/http/node_modules/bower/lib/node_modules/string-width/readme.md +0 -42
  4020. package/http/node_modules/bower/lib/node_modules/string_decoder/.npmignore +0 -2
  4021. package/http/node_modules/bower/lib/node_modules/string_decoder/LICENSE +0 -20
  4022. package/http/node_modules/bower/lib/node_modules/string_decoder/README.md +0 -7
  4023. package/http/node_modules/bower/lib/node_modules/string_decoder/index.js +0 -221
  4024. package/http/node_modules/bower/lib/node_modules/string_decoder/package.json +0 -25
  4025. package/http/node_modules/bower/lib/node_modules/stringify-object/index.js +0 -81
  4026. package/http/node_modules/bower/lib/node_modules/stringify-object/license +0 -21
  4027. package/http/node_modules/bower/lib/node_modules/stringify-object/package.json +0 -32
  4028. package/http/node_modules/bower/lib/node_modules/stringify-object/readme.md +0 -73
  4029. package/http/node_modules/bower/lib/node_modules/stringstream/.npmignore +0 -15
  4030. package/http/node_modules/bower/lib/node_modules/stringstream/.travis.yml +0 -4
  4031. package/http/node_modules/bower/lib/node_modules/stringstream/LICENSE.txt +0 -22
  4032. package/http/node_modules/bower/lib/node_modules/stringstream/README.md +0 -38
  4033. package/http/node_modules/bower/lib/node_modules/stringstream/example.js +0 -27
  4034. package/http/node_modules/bower/lib/node_modules/stringstream/package.json +0 -18
  4035. package/http/node_modules/bower/lib/node_modules/stringstream/stringstream.js +0 -102
  4036. package/http/node_modules/bower/lib/node_modules/strip-ansi/index.js +0 -6
  4037. package/http/node_modules/bower/lib/node_modules/strip-ansi/license +0 -21
  4038. package/http/node_modules/bower/lib/node_modules/strip-ansi/package.json +0 -57
  4039. package/http/node_modules/bower/lib/node_modules/strip-ansi/readme.md +0 -33
  4040. package/http/node_modules/bower/lib/node_modules/strip-bom/index.js +0 -17
  4041. package/http/node_modules/bower/lib/node_modules/strip-bom/license +0 -21
  4042. package/http/node_modules/bower/lib/node_modules/strip-bom/package.json +0 -42
  4043. package/http/node_modules/bower/lib/node_modules/strip-bom/readme.md +0 -39
  4044. package/http/node_modules/bower/lib/node_modules/strip-indent/cli.js +0 -49
  4045. package/http/node_modules/bower/lib/node_modules/strip-indent/index.js +0 -16
  4046. package/http/node_modules/bower/lib/node_modules/strip-indent/license +0 -21
  4047. package/http/node_modules/bower/lib/node_modules/strip-indent/package.json +0 -46
  4048. package/http/node_modules/bower/lib/node_modules/strip-indent/readme.md +0 -61
  4049. package/http/node_modules/bower/lib/node_modules/strip-json-comments/index.js +0 -70
  4050. package/http/node_modules/bower/lib/node_modules/strip-json-comments/license +0 -21
  4051. package/http/node_modules/bower/lib/node_modules/strip-json-comments/package.json +0 -42
  4052. package/http/node_modules/bower/lib/node_modules/strip-json-comments/readme.md +0 -64
  4053. package/http/node_modules/bower/lib/node_modules/tar-fs/.npmignore +0 -2
  4054. package/http/node_modules/bower/lib/node_modules/tar-fs/.travis.yml +0 -3
  4055. package/http/node_modules/bower/lib/node_modules/tar-fs/LICENSE +0 -21
  4056. package/http/node_modules/bower/lib/node_modules/tar-fs/README.md +0 -143
  4057. package/http/node_modules/bower/lib/node_modules/tar-fs/index.js +0 -323
  4058. package/http/node_modules/bower/lib/node_modules/tar-fs/package.json +0 -41
  4059. package/http/node_modules/bower/lib/node_modules/tar-fs/test/fixtures/a/hello.txt +0 -1
  4060. package/http/node_modules/bower/lib/node_modules/tar-fs/test/fixtures/b/a/test.txt +0 -1
  4061. package/http/node_modules/bower/lib/node_modules/tar-fs/test/fixtures/c/.npmignore +0 -1
  4062. package/http/node_modules/bower/lib/node_modules/tar-fs/test/fixtures/d/file1 +0 -0
  4063. package/http/node_modules/bower/lib/node_modules/tar-fs/test/fixtures/d/file2 +0 -0
  4064. package/http/node_modules/bower/lib/node_modules/tar-fs/test/fixtures/d/sub-dir/file5 +0 -0
  4065. package/http/node_modules/bower/lib/node_modules/tar-fs/test/fixtures/d/sub-files/file3 +0 -0
  4066. package/http/node_modules/bower/lib/node_modules/tar-fs/test/fixtures/d/sub-files/file4 +0 -0
  4067. package/http/node_modules/bower/lib/node_modules/tar-fs/test/fixtures/e/directory/.ignore +0 -0
  4068. package/http/node_modules/bower/lib/node_modules/tar-fs/test/fixtures/e/file +0 -0
  4069. package/http/node_modules/bower/lib/node_modules/tar-fs/test/index.js +0 -227
  4070. package/http/node_modules/bower/lib/node_modules/tar-stream/LICENSE +0 -21
  4071. package/http/node_modules/bower/lib/node_modules/tar-stream/README.md +0 -168
  4072. package/http/node_modules/bower/lib/node_modules/tar-stream/extract.js +0 -246
  4073. package/http/node_modules/bower/lib/node_modules/tar-stream/headers.js +0 -286
  4074. package/http/node_modules/bower/lib/node_modules/tar-stream/index.js +0 -2
  4075. package/http/node_modules/bower/lib/node_modules/tar-stream/pack.js +0 -254
  4076. package/http/node_modules/bower/lib/node_modules/tar-stream/package.json +0 -56
  4077. package/http/node_modules/bower/lib/node_modules/throttleit/.npmignore +0 -2
  4078. package/http/node_modules/bower/lib/node_modules/throttleit/History.md +0 -11
  4079. package/http/node_modules/bower/lib/node_modules/throttleit/Makefile +0 -11
  4080. package/http/node_modules/bower/lib/node_modules/throttleit/Readme.md +0 -16
  4081. package/http/node_modules/bower/lib/node_modules/throttleit/component.json +0 -13
  4082. package/http/node_modules/bower/lib/node_modules/throttleit/example.js +0 -14
  4083. package/http/node_modules/bower/lib/node_modules/throttleit/index.js +0 -30
  4084. package/http/node_modules/bower/lib/node_modules/throttleit/package.json +0 -18
  4085. package/http/node_modules/bower/lib/node_modules/through/.travis.yml +0 -5
  4086. package/http/node_modules/bower/lib/node_modules/through/LICENSE.APACHE2 +0 -15
  4087. package/http/node_modules/bower/lib/node_modules/through/LICENSE.MIT +0 -24
  4088. package/http/node_modules/bower/lib/node_modules/through/index.js +0 -108
  4089. package/http/node_modules/bower/lib/node_modules/through/package.json +0 -36
  4090. package/http/node_modules/bower/lib/node_modules/through/readme.markdown +0 -64
  4091. package/http/node_modules/bower/lib/node_modules/through/test/async.js +0 -28
  4092. package/http/node_modules/bower/lib/node_modules/through/test/auto-destroy.js +0 -30
  4093. package/http/node_modules/bower/lib/node_modules/through/test/buffering.js +0 -71
  4094. package/http/node_modules/bower/lib/node_modules/through/test/end.js +0 -45
  4095. package/http/node_modules/bower/lib/node_modules/through/test/index.js +0 -133
  4096. package/http/node_modules/bower/lib/node_modules/timed-out/index.js +0 -55
  4097. package/http/node_modules/bower/lib/node_modules/timed-out/license +0 -21
  4098. package/http/node_modules/bower/lib/node_modules/timed-out/package.json +0 -36
  4099. package/http/node_modules/bower/lib/node_modules/timed-out/readme.md +0 -42
  4100. package/http/node_modules/bower/lib/node_modules/tmp/.npmignore +0 -2
  4101. package/http/node_modules/bower/lib/node_modules/tmp/.travis.yml +0 -8
  4102. package/http/node_modules/bower/lib/node_modules/tmp/Gruntfile.js +0 -18
  4103. package/http/node_modules/bower/lib/node_modules/tmp/LICENSE +0 -21
  4104. package/http/node_modules/bower/lib/node_modules/tmp/README.md +0 -266
  4105. package/http/node_modules/bower/lib/node_modules/tmp/cleanup.sh +0 -3
  4106. package/http/node_modules/bower/lib/node_modules/tmp/lib/tmp.js +0 -462
  4107. package/http/node_modules/bower/lib/node_modules/tmp/package.json +0 -38
  4108. package/http/node_modules/bower/lib/node_modules/tmp/test/base.js +0 -149
  4109. package/http/node_modules/bower/lib/node_modules/tmp/test/dir-sync-test.js +0 -230
  4110. package/http/node_modules/bower/lib/node_modules/tmp/test/dir-test.js +0 -225
  4111. package/http/node_modules/bower/lib/node_modules/tmp/test/file-sync-test.js +0 -190
  4112. package/http/node_modules/bower/lib/node_modules/tmp/test/file-test.js +0 -191
  4113. package/http/node_modules/bower/lib/node_modules/tmp/test/graceful-sync.js +0 -20
  4114. package/http/node_modules/bower/lib/node_modules/tmp/test/graceful.js +0 -15
  4115. package/http/node_modules/bower/lib/node_modules/tmp/test/issue62-sync.js +0 -27
  4116. package/http/node_modules/bower/lib/node_modules/tmp/test/issue62.js +0 -27
  4117. package/http/node_modules/bower/lib/node_modules/tmp/test/keep-sync.js +0 -12
  4118. package/http/node_modules/bower/lib/node_modules/tmp/test/keep.js +0 -11
  4119. package/http/node_modules/bower/lib/node_modules/tmp/test/name-test.js +0 -82
  4120. package/http/node_modules/bower/lib/node_modules/tmp/test/spawn-sync.js +0 -32
  4121. package/http/node_modules/bower/lib/node_modules/tmp/test/spawn.js +0 -32
  4122. package/http/node_modules/bower/lib/node_modules/tmp/test/symlinkme/file.js +0 -0
  4123. package/http/node_modules/bower/lib/node_modules/tmp/test/unsafe-sync.js +0 -30
  4124. package/http/node_modules/bower/lib/node_modules/tmp/test/unsafe.js +0 -30
  4125. package/http/node_modules/bower/lib/node_modules/touch/LICENSE +0 -15
  4126. package/http/node_modules/bower/lib/node_modules/touch/README.md +0 -39
  4127. package/http/node_modules/bower/lib/node_modules/touch/bin/touch.js +0 -31
  4128. package/http/node_modules/bower/lib/node_modules/touch/node_modules/nopt/.npmignore +0 -0
  4129. package/http/node_modules/bower/lib/node_modules/touch/node_modules/nopt/LICENSE +0 -23
  4130. package/http/node_modules/bower/lib/node_modules/touch/node_modules/nopt/README.md +0 -208
  4131. package/http/node_modules/bower/lib/node_modules/touch/node_modules/nopt/bin/nopt.js +0 -44
  4132. package/http/node_modules/bower/lib/node_modules/touch/node_modules/nopt/examples/my-program.js +0 -30
  4133. package/http/node_modules/bower/lib/node_modules/touch/node_modules/nopt/lib/nopt.js +0 -552
  4134. package/http/node_modules/bower/lib/node_modules/touch/node_modules/nopt/package.json +0 -12
  4135. package/http/node_modules/bower/lib/node_modules/touch/package.json +0 -15
  4136. package/http/node_modules/bower/lib/node_modules/touch/test/sanity.js +0 -31
  4137. package/http/node_modules/bower/lib/node_modules/touch/touch.js +0 -154
  4138. package/http/node_modules/bower/lib/node_modules/traverse/.npmignore +0 -1
  4139. package/http/node_modules/bower/lib/node_modules/traverse/LICENSE +0 -24
  4140. package/http/node_modules/bower/lib/node_modules/traverse/README.markdown +0 -247
  4141. package/http/node_modules/bower/lib/node_modules/traverse/examples/json.js +0 -16
  4142. package/http/node_modules/bower/lib/node_modules/traverse/examples/leaves.js +0 -15
  4143. package/http/node_modules/bower/lib/node_modules/traverse/examples/negative.js +0 -8
  4144. package/http/node_modules/bower/lib/node_modules/traverse/examples/stringify.js +0 -38
  4145. package/http/node_modules/bower/lib/node_modules/traverse/index.js +0 -322
  4146. package/http/node_modules/bower/lib/node_modules/traverse/package.json +0 -18
  4147. package/http/node_modules/bower/lib/node_modules/traverse/test/circular.js +0 -114
  4148. package/http/node_modules/bower/lib/node_modules/traverse/test/date.js +0 -35
  4149. package/http/node_modules/bower/lib/node_modules/traverse/test/equal.js +0 -219
  4150. package/http/node_modules/bower/lib/node_modules/traverse/test/instance.js +0 -17
  4151. package/http/node_modules/bower/lib/node_modules/traverse/test/interface.js +0 -42
  4152. package/http/node_modules/bower/lib/node_modules/traverse/test/json.js +0 -47
  4153. package/http/node_modules/bower/lib/node_modules/traverse/test/leaves.js +0 -21
  4154. package/http/node_modules/bower/lib/node_modules/traverse/test/mutability.js +0 -203
  4155. package/http/node_modules/bower/lib/node_modules/traverse/test/negative.js +0 -20
  4156. package/http/node_modules/bower/lib/node_modules/traverse/test/obj.js +0 -15
  4157. package/http/node_modules/bower/lib/node_modules/traverse/test/stop.js +0 -41
  4158. package/http/node_modules/bower/lib/node_modules/traverse/test/stringify.js +0 -36
  4159. package/http/node_modules/bower/lib/node_modules/traverse/test/super_deep.js +0 -54
  4160. package/http/node_modules/bower/lib/node_modules/trim-newlines/index.js +0 -13
  4161. package/http/node_modules/bower/lib/node_modules/trim-newlines/license +0 -21
  4162. package/http/node_modules/bower/lib/node_modules/trim-newlines/package.json +0 -42
  4163. package/http/node_modules/bower/lib/node_modules/trim-newlines/readme.md +0 -46
  4164. package/http/node_modules/bower/lib/node_modules/tunnel-agent/LICENSE +0 -55
  4165. package/http/node_modules/bower/lib/node_modules/tunnel-agent/README.md +0 -4
  4166. package/http/node_modules/bower/lib/node_modules/tunnel-agent/index.js +0 -243
  4167. package/http/node_modules/bower/lib/node_modules/tunnel-agent/package.json +0 -20
  4168. package/http/node_modules/bower/lib/node_modules/tweetnacl/.npmignore +0 -4
  4169. package/http/node_modules/bower/lib/node_modules/tweetnacl/AUTHORS.md +0 -28
  4170. package/http/node_modules/bower/lib/node_modules/tweetnacl/CHANGELOG.md +0 -221
  4171. package/http/node_modules/bower/lib/node_modules/tweetnacl/LICENSE +0 -24
  4172. package/http/node_modules/bower/lib/node_modules/tweetnacl/PULL_REQUEST_TEMPLATE.md +0 -20
  4173. package/http/node_modules/bower/lib/node_modules/tweetnacl/README.md +0 -459
  4174. package/http/node_modules/bower/lib/node_modules/tweetnacl/nacl-fast.js +0 -2388
  4175. package/http/node_modules/bower/lib/node_modules/tweetnacl/nacl-fast.min.js +0 -2
  4176. package/http/node_modules/bower/lib/node_modules/tweetnacl/nacl.d.ts +0 -98
  4177. package/http/node_modules/bower/lib/node_modules/tweetnacl/nacl.js +0 -1175
  4178. package/http/node_modules/bower/lib/node_modules/tweetnacl/nacl.min.js +0 -1
  4179. package/http/node_modules/bower/lib/node_modules/tweetnacl/package.json +0 -58
  4180. package/http/node_modules/bower/lib/node_modules/uglify-js/LICENSE +0 -29
  4181. package/http/node_modules/bower/lib/node_modules/uglify-js/README.md +0 -995
  4182. package/http/node_modules/bower/lib/node_modules/uglify-js/bin/extract-props.js +0 -77
  4183. package/http/node_modules/bower/lib/node_modules/uglify-js/bin/uglifyjs +0 -635
  4184. package/http/node_modules/bower/lib/node_modules/uglify-js/lib/ast.js +0 -1052
  4185. package/http/node_modules/bower/lib/node_modules/uglify-js/lib/compress.js +0 -4101
  4186. package/http/node_modules/bower/lib/node_modules/uglify-js/lib/mozilla-ast.js +0 -611
  4187. package/http/node_modules/bower/lib/node_modules/uglify-js/lib/output.js +0 -1423
  4188. package/http/node_modules/bower/lib/node_modules/uglify-js/lib/parse.js +0 -1599
  4189. package/http/node_modules/bower/lib/node_modules/uglify-js/lib/propmangle.js +0 -264
  4190. package/http/node_modules/bower/lib/node_modules/uglify-js/lib/scope.js +0 -656
  4191. package/http/node_modules/bower/lib/node_modules/uglify-js/lib/sourcemap.js +0 -97
  4192. package/http/node_modules/bower/lib/node_modules/uglify-js/lib/transform.js +0 -218
  4193. package/http/node_modules/bower/lib/node_modules/uglify-js/lib/utils.js +0 -362
  4194. package/http/node_modules/bower/lib/node_modules/uglify-js/package.json +0 -51
  4195. package/http/node_modules/bower/lib/node_modules/uglify-js/tools/domprops.json +0 -5603
  4196. package/http/node_modules/bower/lib/node_modules/uglify-js/tools/exports.js +0 -19
  4197. package/http/node_modules/bower/lib/node_modules/uglify-js/tools/node.js +0 -320
  4198. package/http/node_modules/bower/lib/node_modules/uglify-js/tools/props.html +0 -61
  4199. package/http/node_modules/bower/lib/node_modules/uglify-to-browserify/.npmignore +0 -14
  4200. package/http/node_modules/bower/lib/node_modules/uglify-to-browserify/.travis.yml +0 -3
  4201. package/http/node_modules/bower/lib/node_modules/uglify-to-browserify/LICENSE +0 -19
  4202. package/http/node_modules/bower/lib/node_modules/uglify-to-browserify/README.md +0 -15
  4203. package/http/node_modules/bower/lib/node_modules/uglify-to-browserify/index.js +0 -49
  4204. package/http/node_modules/bower/lib/node_modules/uglify-to-browserify/package.json +0 -20
  4205. package/http/node_modules/bower/lib/node_modules/uglify-to-browserify/test/index.js +0 -22
  4206. package/http/node_modules/bower/lib/node_modules/untildify/index.js +0 -11
  4207. package/http/node_modules/bower/lib/node_modules/untildify/license +0 -21
  4208. package/http/node_modules/bower/lib/node_modules/untildify/package.json +0 -43
  4209. package/http/node_modules/bower/lib/node_modules/untildify/readme.md +0 -30
  4210. package/http/node_modules/bower/lib/node_modules/unzip-response/index.js +0 -36
  4211. package/http/node_modules/bower/lib/node_modules/unzip-response/license +0 -21
  4212. package/http/node_modules/bower/lib/node_modules/unzip-response/package.json +0 -50
  4213. package/http/node_modules/bower/lib/node_modules/unzip-response/readme.md +0 -29
  4214. package/http/node_modules/bower/lib/node_modules/update-notifier/check.js +0 -20
  4215. package/http/node_modules/bower/lib/node_modules/update-notifier/index.js +0 -113
  4216. package/http/node_modules/bower/lib/node_modules/update-notifier/package.json +0 -47
  4217. package/http/node_modules/bower/lib/node_modules/update-notifier/readme.md +0 -149
  4218. package/http/node_modules/bower/lib/node_modules/url-parse-lax/index.js +0 -14
  4219. package/http/node_modules/bower/lib/node_modules/url-parse-lax/license +0 -21
  4220. package/http/node_modules/bower/lib/node_modules/url-parse-lax/package.json +0 -41
  4221. package/http/node_modules/bower/lib/node_modules/url-parse-lax/readme.md +0 -100
  4222. package/http/node_modules/bower/lib/node_modules/user-home/cli.js +0 -26
  4223. package/http/node_modules/bower/lib/node_modules/user-home/index.js +0 -15
  4224. package/http/node_modules/bower/lib/node_modules/user-home/license +0 -21
  4225. package/http/node_modules/bower/lib/node_modules/user-home/package.json +0 -39
  4226. package/http/node_modules/bower/lib/node_modules/user-home/readme.md +0 -42
  4227. package/http/node_modules/bower/lib/node_modules/util-deprecate/History.md +0 -16
  4228. package/http/node_modules/bower/lib/node_modules/util-deprecate/LICENSE +0 -24
  4229. package/http/node_modules/bower/lib/node_modules/util-deprecate/README.md +0 -53
  4230. package/http/node_modules/bower/lib/node_modules/util-deprecate/browser.js +0 -67
  4231. package/http/node_modules/bower/lib/node_modules/util-deprecate/node.js +0 -6
  4232. package/http/node_modules/bower/lib/node_modules/util-deprecate/package.json +0 -27
  4233. package/http/node_modules/bower/lib/node_modules/uuid/.eslintrc.json +0 -46
  4234. package/http/node_modules/bower/lib/node_modules/uuid/AUTHORS +0 -5
  4235. package/http/node_modules/bower/lib/node_modules/uuid/HISTORY.md +0 -28
  4236. package/http/node_modules/bower/lib/node_modules/uuid/LICENSE.md +0 -21
  4237. package/http/node_modules/bower/lib/node_modules/uuid/README.md +0 -227
  4238. package/http/node_modules/bower/lib/node_modules/uuid/bin/uuid +0 -50
  4239. package/http/node_modules/bower/lib/node_modules/uuid/index.js +0 -8
  4240. package/http/node_modules/bower/lib/node_modules/uuid/lib/bytesToUuid.js +0 -23
  4241. package/http/node_modules/bower/lib/node_modules/uuid/lib/rng-browser.js +0 -33
  4242. package/http/node_modules/bower/lib/node_modules/uuid/lib/rng.js +0 -10
  4243. package/http/node_modules/bower/lib/node_modules/uuid/lib/sha1-browser.js +0 -85
  4244. package/http/node_modules/bower/lib/node_modules/uuid/lib/sha1.js +0 -21
  4245. package/http/node_modules/bower/lib/node_modules/uuid/package.json +0 -28
  4246. package/http/node_modules/bower/lib/node_modules/uuid/v1.js +0 -100
  4247. package/http/node_modules/bower/lib/node_modules/uuid/v4.js +0 -29
  4248. package/http/node_modules/bower/lib/node_modules/uuid/v5.js +0 -42
  4249. package/http/node_modules/bower/lib/node_modules/validate-npm-package-license/LICENSE +0 -174
  4250. package/http/node_modules/bower/lib/node_modules/validate-npm-package-license/README.md +0 -113
  4251. package/http/node_modules/bower/lib/node_modules/validate-npm-package-license/index.js +0 -84
  4252. package/http/node_modules/bower/lib/node_modules/validate-npm-package-license/package.json +0 -25
  4253. package/http/node_modules/bower/lib/node_modules/verror/.npmignore +0 -9
  4254. package/http/node_modules/bower/lib/node_modules/verror/CHANGES.md +0 -28
  4255. package/http/node_modules/bower/lib/node_modules/verror/CONTRIBUTING.md +0 -19
  4256. package/http/node_modules/bower/lib/node_modules/verror/LICENSE +0 -19
  4257. package/http/node_modules/bower/lib/node_modules/verror/README.md +0 -528
  4258. package/http/node_modules/bower/lib/node_modules/verror/lib/verror.js +0 -451
  4259. package/http/node_modules/bower/lib/node_modules/verror/package.json +0 -22
  4260. package/http/node_modules/bower/lib/node_modules/which/CHANGELOG.md +0 -147
  4261. package/http/node_modules/bower/lib/node_modules/which/LICENSE +0 -15
  4262. package/http/node_modules/bower/lib/node_modules/which/README.md +0 -51
  4263. package/http/node_modules/bower/lib/node_modules/which/bin/which +0 -52
  4264. package/http/node_modules/bower/lib/node_modules/which/package.json +0 -30
  4265. package/http/node_modules/bower/lib/node_modules/which/which.js +0 -135
  4266. package/http/node_modules/bower/lib/node_modules/widest-line/index.js +0 -9
  4267. package/http/node_modules/bower/lib/node_modules/widest-line/license +0 -21
  4268. package/http/node_modules/bower/lib/node_modules/widest-line/package.json +0 -54
  4269. package/http/node_modules/bower/lib/node_modules/widest-line/readme.md +0 -34
  4270. package/http/node_modules/bower/lib/node_modules/window-size/LICENSE-MIT +0 -22
  4271. package/http/node_modules/bower/lib/node_modules/window-size/README.md +0 -26
  4272. package/http/node_modules/bower/lib/node_modules/window-size/index.js +0 -33
  4273. package/http/node_modules/bower/lib/node_modules/window-size/package.json +0 -33
  4274. package/http/node_modules/bower/lib/node_modules/wrappy/LICENSE +0 -15
  4275. package/http/node_modules/bower/lib/node_modules/wrappy/README.md +0 -36
  4276. package/http/node_modules/bower/lib/node_modules/wrappy/package.json +0 -29
  4277. package/http/node_modules/bower/lib/node_modules/wrappy/wrappy.js +0 -33
  4278. package/http/node_modules/bower/lib/node_modules/write-file-atomic/LICENSE +0 -6
  4279. package/http/node_modules/bower/lib/node_modules/write-file-atomic/README.md +0 -44
  4280. package/http/node_modules/bower/lib/node_modules/write-file-atomic/index.js +0 -129
  4281. package/http/node_modules/bower/lib/node_modules/write-file-atomic/package.json +0 -38
  4282. package/http/node_modules/bower/lib/node_modules/xdg-basedir/index.js +0 -27
  4283. package/http/node_modules/bower/lib/node_modules/xdg-basedir/license +0 -21
  4284. package/http/node_modules/bower/lib/node_modules/xdg-basedir/package.json +0 -42
  4285. package/http/node_modules/bower/lib/node_modules/xdg-basedir/readme.md +0 -60
  4286. package/http/node_modules/bower/lib/node_modules/xtend/.jshintrc +0 -30
  4287. package/http/node_modules/bower/lib/node_modules/xtend/.npmignore +0 -1
  4288. package/http/node_modules/bower/lib/node_modules/xtend/LICENCE +0 -19
  4289. package/http/node_modules/bower/lib/node_modules/xtend/Makefile +0 -4
  4290. package/http/node_modules/bower/lib/node_modules/xtend/README.md +0 -32
  4291. package/http/node_modules/bower/lib/node_modules/xtend/immutable.js +0 -19
  4292. package/http/node_modules/bower/lib/node_modules/xtend/mutable.js +0 -17
  4293. package/http/node_modules/bower/lib/node_modules/xtend/package.json +0 -55
  4294. package/http/node_modules/bower/lib/node_modules/xtend/test.js +0 -83
  4295. package/http/node_modules/bower/lib/node_modules/yargs/CHANGELOG.md +0 -374
  4296. package/http/node_modules/bower/lib/node_modules/yargs/LICENSE +0 -21
  4297. package/http/node_modules/bower/lib/node_modules/yargs/README.md +0 -926
  4298. package/http/node_modules/bower/lib/node_modules/yargs/completion.sh.hbs +0 -22
  4299. package/http/node_modules/bower/lib/node_modules/yargs/index.js +0 -504
  4300. package/http/node_modules/bower/lib/node_modules/yargs/lib/completion.js +0 -71
  4301. package/http/node_modules/bower/lib/node_modules/yargs/lib/parser.js +0 -448
  4302. package/http/node_modules/bower/lib/node_modules/yargs/lib/usage.js +0 -314
  4303. package/http/node_modules/bower/lib/node_modules/yargs/lib/validation.js +0 -196
  4304. package/http/node_modules/bower/lib/node_modules/yargs/package.json +0 -85
  4305. package/http/node_modules/bower/lib/renderers/JsonRenderer.js +0 -136
  4306. package/http/node_modules/bower/lib/renderers/StandardRenderer.js +0 -542
  4307. package/http/node_modules/bower/lib/renderers/index.js +0 -4
  4308. package/http/node_modules/bower/lib/templates/helpers/colors.js +0 -13
  4309. package/http/node_modules/bower/lib/templates/helpers/condense.js +0 -22
  4310. package/http/node_modules/bower/lib/templates/helpers/indent.js +0 -12
  4311. package/http/node_modules/bower/lib/templates/helpers/index.js +0 -7
  4312. package/http/node_modules/bower/lib/templates/helpers/rpad.js +0 -12
  4313. package/http/node_modules/bower/lib/templates/helpers/sum.js +0 -7
  4314. package/http/node_modules/bower/lib/templates/json/help-cache/clean.json +0 -16
  4315. package/http/node_modules/bower/lib/templates/json/help-cache/list.json +0 -15
  4316. package/http/node_modules/bower/lib/templates/json/help-cache.json +0 -11
  4317. package/http/node_modules/bower/lib/templates/json/help-home.json +0 -16
  4318. package/http/node_modules/bower/lib/templates/json/help-info.json +0 -16
  4319. package/http/node_modules/bower/lib/templates/json/help-init.json +0 -14
  4320. package/http/node_modules/bower/lib/templates/json/help-install.json +0 -45
  4321. package/http/node_modules/bower/lib/templates/json/help-link.json +0 -15
  4322. package/http/node_modules/bower/lib/templates/json/help-list.json +0 -24
  4323. package/http/node_modules/bower/lib/templates/json/help-login.json +0 -19
  4324. package/http/node_modules/bower/lib/templates/json/help-lookup.json +0 -14
  4325. package/http/node_modules/bower/lib/templates/json/help-prune.json +0 -14
  4326. package/http/node_modules/bower/lib/templates/json/help-register.json +0 -19
  4327. package/http/node_modules/bower/lib/templates/json/help-search.json +0 -14
  4328. package/http/node_modules/bower/lib/templates/json/help-uninstall.json +0 -29
  4329. package/http/node_modules/bower/lib/templates/json/help-unregister.json +0 -19
  4330. package/http/node_modules/bower/lib/templates/json/help-update.json +0 -34
  4331. package/http/node_modules/bower/lib/templates/json/help-version.json +0 -14
  4332. package/http/node_modules/bower/lib/templates/json/help.json +0 -78
  4333. package/http/node_modules/bower/lib/templates/std/conflict-resolved.std +0 -9
  4334. package/http/node_modules/bower/lib/templates/std/conflict.std +0 -11
  4335. package/http/node_modules/bower/lib/templates/std/help-cache.std +0 -17
  4336. package/http/node_modules/bower/lib/templates/std/help-generic.std +0 -23
  4337. package/http/node_modules/bower/lib/templates/std/help.std +0 -26
  4338. package/http/node_modules/bower/lib/templates/std/info.std +0 -14
  4339. package/http/node_modules/bower/lib/templates/std/lookup.std +0 -8
  4340. package/http/node_modules/bower/lib/templates/std/register.std +0 -5
  4341. package/http/node_modules/bower/lib/templates/std/search-results.std +0 -10
  4342. package/http/node_modules/bower/lib/util/abbreviations.js +0 -30
  4343. package/http/node_modules/bower/lib/util/cli.js +0 -49
  4344. package/http/node_modules/bower/lib/util/cmd.js +0 -129
  4345. package/http/node_modules/bower/lib/util/copy.js +0 -119
  4346. package/http/node_modules/bower/lib/util/createError.js +0 -14
  4347. package/http/node_modules/bower/lib/util/createLink.js +0 -64
  4348. package/http/node_modules/bower/lib/util/download.js +0 -153
  4349. package/http/node_modules/bower/lib/util/extract.js +0 -278
  4350. package/http/node_modules/bower/lib/util/fs.js +0 -34
  4351. package/http/node_modules/bower/lib/util/isPathAbsolute.js +0 -5
  4352. package/http/node_modules/bower/lib/util/readJson.js +0 -55
  4353. package/http/node_modules/bower/lib/util/relativeToBaseDir.js +0 -14
  4354. package/http/node_modules/bower/lib/util/removeIgnores.js +0 -65
  4355. package/http/node_modules/bower/lib/util/resolve.js +0 -22
  4356. package/http/node_modules/bower/lib/util/rimraf.js +0 -46
  4357. package/http/node_modules/bower/lib/util/rootCheck.js +0 -35
  4358. package/http/node_modules/bower/lib/util/semver.js +0 -77
  4359. package/http/node_modules/bower/lib/util/template.js +0 -44
  4360. package/http/node_modules/bower/lib/util/userAgent.js +0 -12
  4361. package/http/node_modules/bower/lib/util/validLink.js +0 -22
  4362. package/http/node_modules/bower/lib/version.js +0 -3
  4363. package/http/node_modules/bower/package.json +0 -63
  4364. package/http/node_modules/brace-expansion/LICENSE +0 -21
  4365. package/http/node_modules/brace-expansion/README.md +0 -129
  4366. package/http/node_modules/brace-expansion/index.js +0 -201
  4367. package/http/node_modules/brace-expansion/package.json +0 -75
  4368. package/http/node_modules/braces/LICENSE +0 -21
  4369. package/http/node_modules/braces/README.md +0 -640
  4370. package/http/node_modules/braces/index.js +0 -318
  4371. package/http/node_modules/braces/lib/braces.js +0 -104
  4372. package/http/node_modules/braces/lib/compilers.js +0 -282
  4373. package/http/node_modules/braces/lib/parsers.js +0 -360
  4374. package/http/node_modules/braces/lib/utils.js +0 -343
  4375. package/http/node_modules/braces/package.json +0 -156
  4376. package/http/node_modules/bytes/History.md +0 -87
  4377. package/http/node_modules/bytes/LICENSE +0 -23
  4378. package/http/node_modules/bytes/Readme.md +0 -126
  4379. package/http/node_modules/bytes/index.js +0 -162
  4380. package/http/node_modules/bytes/package.json +0 -84
  4381. package/http/node_modules/cache-base/LICENSE +0 -21
  4382. package/http/node_modules/cache-base/README.md +0 -291
  4383. package/http/node_modules/cache-base/index.js +0 -261
  4384. package/http/node_modules/cache-base/package.json +0 -118
  4385. package/http/node_modules/chalk/index.d.ts +0 -415
  4386. package/http/node_modules/chalk/license +0 -9
  4387. package/http/node_modules/chalk/package.json +0 -100
  4388. package/http/node_modules/chalk/readme.md +0 -293
  4389. package/http/node_modules/chalk/source/index.js +0 -229
  4390. package/http/node_modules/chalk/source/templates.js +0 -134
  4391. package/http/node_modules/chalk/source/util.js +0 -39
  4392. package/http/node_modules/class-utils/LICENSE +0 -21
  4393. package/http/node_modules/class-utils/README.md +0 -300
  4394. package/http/node_modules/class-utils/index.js +0 -370
  4395. package/http/node_modules/class-utils/package.json +0 -131
  4396. package/http/node_modules/collection-visit/LICENSE +0 -21
  4397. package/http/node_modules/collection-visit/README.md +0 -89
  4398. package/http/node_modules/collection-visit/index.js +0 -30
  4399. package/http/node_modules/collection-visit/package.json +0 -115
  4400. package/http/node_modules/color-convert/CHANGELOG.md +0 -54
  4401. package/http/node_modules/color-convert/LICENSE +0 -21
  4402. package/http/node_modules/color-convert/README.md +0 -68
  4403. package/http/node_modules/color-convert/conversions.js +0 -839
  4404. package/http/node_modules/color-convert/index.js +0 -81
  4405. package/http/node_modules/color-convert/package.json +0 -83
  4406. package/http/node_modules/color-convert/route.js +0 -97
  4407. package/http/node_modules/color-name/LICENSE +0 -8
  4408. package/http/node_modules/color-name/README.md +0 -11
  4409. package/http/node_modules/color-name/index.js +0 -152
  4410. package/http/node_modules/color-name/package.json +0 -56
  4411. package/http/node_modules/colors/LICENSE +0 -23
  4412. package/http/node_modules/colors/ReadMe.md +0 -178
  4413. package/http/node_modules/colors/examples/normal-usage.js +0 -74
  4414. package/http/node_modules/colors/examples/safe-string.js +0 -76
  4415. package/http/node_modules/colors/lib/colors.js +0 -187
  4416. package/http/node_modules/colors/lib/custom/trap.js +0 -45
  4417. package/http/node_modules/colors/lib/custom/zalgo.js +0 -104
  4418. package/http/node_modules/colors/lib/extendStringPrototype.js +0 -113
  4419. package/http/node_modules/colors/lib/index.js +0 -12
  4420. package/http/node_modules/colors/lib/maps/america.js +0 -12
  4421. package/http/node_modules/colors/lib/maps/rainbow.js +0 -13
  4422. package/http/node_modules/colors/lib/maps/random.js +0 -8
  4423. package/http/node_modules/colors/lib/maps/zebra.js +0 -5
  4424. package/http/node_modules/colors/lib/styles.js +0 -77
  4425. package/http/node_modules/colors/lib/system/supports-colors.js +0 -61
  4426. package/http/node_modules/colors/package.json +0 -61
  4427. package/http/node_modules/colors/safe.js +0 -9
  4428. package/http/node_modules/colors/themes/generic-logging.js +0 -12
  4429. package/http/node_modules/component-emitter/History.md +0 -75
  4430. package/http/node_modules/component-emitter/LICENSE +0 -24
  4431. package/http/node_modules/component-emitter/Readme.md +0 -74
  4432. package/http/node_modules/component-emitter/index.js +0 -175
  4433. package/http/node_modules/component-emitter/package.json +0 -57
  4434. package/http/node_modules/concat-map/.travis.yml +0 -4
  4435. package/http/node_modules/concat-map/LICENSE +0 -18
  4436. package/http/node_modules/concat-map/README.markdown +0 -62
  4437. package/http/node_modules/concat-map/example/map.js +0 -6
  4438. package/http/node_modules/concat-map/index.js +0 -13
  4439. package/http/node_modules/concat-map/package.json +0 -88
  4440. package/http/node_modules/concat-map/test/map.js +0 -39
  4441. package/http/node_modules/content-disposition/HISTORY.md +0 -55
  4442. package/http/node_modules/content-disposition/LICENSE +0 -22
  4443. package/http/node_modules/content-disposition/README.md +0 -148
  4444. package/http/node_modules/content-disposition/index.js +0 -458
  4445. package/http/node_modules/content-disposition/package.json +0 -79
  4446. package/http/node_modules/content-type/HISTORY.md +0 -24
  4447. package/http/node_modules/content-type/LICENSE +0 -22
  4448. package/http/node_modules/content-type/README.md +0 -92
  4449. package/http/node_modules/content-type/index.js +0 -222
  4450. package/http/node_modules/content-type/package.json +0 -76
  4451. package/http/node_modules/cookie/HISTORY.md +0 -123
  4452. package/http/node_modules/cookie/LICENSE +0 -24
  4453. package/http/node_modules/cookie/README.md +0 -253
  4454. package/http/node_modules/cookie/index.js +0 -198
  4455. package/http/node_modules/cookie/package.json +0 -79
  4456. package/http/node_modules/cookie-signature/History.md +0 -38
  4457. package/http/node_modules/cookie-signature/Readme.md +0 -42
  4458. package/http/node_modules/cookie-signature/index.js +0 -51
  4459. package/http/node_modules/cookie-signature/package.json +0 -58
  4460. package/http/node_modules/copy-descriptor/LICENSE +0 -21
  4461. package/http/node_modules/copy-descriptor/index.js +0 -81
  4462. package/http/node_modules/copy-descriptor/package.json +0 -87
  4463. package/http/node_modules/dateformat/LICENSE +0 -20
  4464. package/http/node_modules/dateformat/Readme.md +0 -162
  4465. package/http/node_modules/dateformat/lib/dateformat.js +0 -229
  4466. package/http/node_modules/dateformat/package.json +0 -71
  4467. package/http/node_modules/debug/.coveralls.yml +0 -1
  4468. package/http/node_modules/debug/.eslintrc +0 -11
  4469. package/http/node_modules/debug/.travis.yml +0 -14
  4470. package/http/node_modules/debug/CHANGELOG.md +0 -362
  4471. package/http/node_modules/debug/LICENSE +0 -19
  4472. package/http/node_modules/debug/Makefile +0 -50
  4473. package/http/node_modules/debug/README.md +0 -312
  4474. package/http/node_modules/debug/component.json +0 -19
  4475. package/http/node_modules/debug/karma.conf.js +0 -70
  4476. package/http/node_modules/debug/node.js +0 -1
  4477. package/http/node_modules/debug/package.json +0 -94
  4478. package/http/node_modules/debug/src/browser.js +0 -185
  4479. package/http/node_modules/debug/src/debug.js +0 -202
  4480. package/http/node_modules/debug/src/index.js +0 -10
  4481. package/http/node_modules/debug/src/inspector-log.js +0 -15
  4482. package/http/node_modules/debug/src/node.js +0 -248
  4483. package/http/node_modules/decode-uri-component/index.js +0 -94
  4484. package/http/node_modules/decode-uri-component/license +0 -21
  4485. package/http/node_modules/decode-uri-component/package.json +0 -69
  4486. package/http/node_modules/decode-uri-component/readme.md +0 -70
  4487. package/http/node_modules/define-property/CHANGELOG.md +0 -82
  4488. package/http/node_modules/define-property/LICENSE +0 -21
  4489. package/http/node_modules/define-property/README.md +0 -117
  4490. package/http/node_modules/define-property/index.js +0 -38
  4491. package/http/node_modules/define-property/package.json +0 -108
  4492. package/http/node_modules/depd/History.md +0 -96
  4493. package/http/node_modules/depd/LICENSE +0 -22
  4494. package/http/node_modules/depd/Readme.md +0 -280
  4495. package/http/node_modules/depd/index.js +0 -522
  4496. package/http/node_modules/depd/lib/browser/index.js +0 -77
  4497. package/http/node_modules/depd/lib/compat/callsite-tostring.js +0 -103
  4498. package/http/node_modules/depd/lib/compat/event-listener-count.js +0 -22
  4499. package/http/node_modules/depd/lib/compat/index.js +0 -79
  4500. package/http/node_modules/depd/package.json +0 -79
  4501. package/http/node_modules/destroy/LICENSE +0 -22
  4502. package/http/node_modules/destroy/README.md +0 -60
  4503. package/http/node_modules/destroy/index.js +0 -75
  4504. package/http/node_modules/destroy/package.json +0 -71
  4505. package/http/node_modules/detect-file/LICENSE +0 -21
  4506. package/http/node_modules/detect-file/README.md +0 -99
  4507. package/http/node_modules/detect-file/index.js +0 -109
  4508. package/http/node_modules/detect-file/package.json +0 -91
  4509. package/http/node_modules/ee-first/LICENSE +0 -22
  4510. package/http/node_modules/ee-first/README.md +0 -80
  4511. package/http/node_modules/ee-first/index.js +0 -95
  4512. package/http/node_modules/ee-first/package.json +0 -63
  4513. package/http/node_modules/encodeurl/HISTORY.md +0 -14
  4514. package/http/node_modules/encodeurl/LICENSE +0 -22
  4515. package/http/node_modules/encodeurl/README.md +0 -128
  4516. package/http/node_modules/encodeurl/index.js +0 -60
  4517. package/http/node_modules/encodeurl/package.json +0 -78
  4518. package/http/node_modules/escape-html/LICENSE +0 -24
  4519. package/http/node_modules/escape-html/Readme.md +0 -43
  4520. package/http/node_modules/escape-html/index.js +0 -78
  4521. package/http/node_modules/escape-html/package.json +0 -59
  4522. package/http/node_modules/escape-string-regexp/index.js +0 -11
  4523. package/http/node_modules/escape-string-regexp/license +0 -21
  4524. package/http/node_modules/escape-string-regexp/package.json +0 -81
  4525. package/http/node_modules/escape-string-regexp/readme.md +0 -27
  4526. package/http/node_modules/esprima/ChangeLog +0 -235
  4527. package/http/node_modules/esprima/LICENSE.BSD +0 -21
  4528. package/http/node_modules/esprima/README.md +0 -46
  4529. package/http/node_modules/esprima/bin/esparse.js +0 -139
  4530. package/http/node_modules/esprima/bin/esvalidate.js +0 -236
  4531. package/http/node_modules/esprima/dist/esprima.js +0 -6709
  4532. package/http/node_modules/esprima/package.json +0 -137
  4533. package/http/node_modules/etag/HISTORY.md +0 -83
  4534. package/http/node_modules/etag/LICENSE +0 -22
  4535. package/http/node_modules/etag/README.md +0 -159
  4536. package/http/node_modules/etag/index.js +0 -131
  4537. package/http/node_modules/etag/package.json +0 -86
  4538. package/http/node_modules/eventemitter2/README.md +0 -248
  4539. package/http/node_modules/eventemitter2/index.js +0 -1
  4540. package/http/node_modules/eventemitter2/lib/eventemitter2.js +0 -573
  4541. package/http/node_modules/eventemitter2/package.json +0 -83
  4542. package/http/node_modules/exit/.jshintrc +0 -14
  4543. package/http/node_modules/exit/.travis.yml +0 -6
  4544. package/http/node_modules/exit/Gruntfile.js +0 -48
  4545. package/http/node_modules/exit/LICENSE-MIT +0 -22
  4546. package/http/node_modules/exit/README.md +0 -75
  4547. package/http/node_modules/exit/lib/exit.js +0 -41
  4548. package/http/node_modules/exit/package.json +0 -73
  4549. package/http/node_modules/exit/test/exit_test.js +0 -121
  4550. package/http/node_modules/exit/test/fixtures/10-stderr.txt +0 -10
  4551. package/http/node_modules/exit/test/fixtures/10-stdout-stderr.txt +0 -20
  4552. package/http/node_modules/exit/test/fixtures/10-stdout.txt +0 -10
  4553. package/http/node_modules/exit/test/fixtures/100-stderr.txt +0 -100
  4554. package/http/node_modules/exit/test/fixtures/100-stdout-stderr.txt +0 -200
  4555. package/http/node_modules/exit/test/fixtures/100-stdout.txt +0 -100
  4556. package/http/node_modules/exit/test/fixtures/1000-stderr.txt +0 -1000
  4557. package/http/node_modules/exit/test/fixtures/1000-stdout-stderr.txt +0 -2000
  4558. package/http/node_modules/exit/test/fixtures/1000-stdout.txt +0 -1000
  4559. package/http/node_modules/exit/test/fixtures/create-files.sh +0 -8
  4560. package/http/node_modules/exit/test/fixtures/log-broken.js +0 -23
  4561. package/http/node_modules/exit/test/fixtures/log.js +0 -25
  4562. package/http/node_modules/expand-brackets/LICENSE +0 -21
  4563. package/http/node_modules/expand-brackets/README.md +0 -302
  4564. package/http/node_modules/expand-brackets/changelog.md +0 -35
  4565. package/http/node_modules/expand-brackets/index.js +0 -211
  4566. package/http/node_modules/expand-brackets/lib/compilers.js +0 -87
  4567. package/http/node_modules/expand-brackets/lib/parsers.js +0 -219
  4568. package/http/node_modules/expand-brackets/lib/utils.js +0 -34
  4569. package/http/node_modules/expand-brackets/package.json +0 -133
  4570. package/http/node_modules/expand-tilde/LICENSE +0 -21
  4571. package/http/node_modules/expand-tilde/README.md +0 -80
  4572. package/http/node_modules/expand-tilde/index.js +0 -22
  4573. package/http/node_modules/expand-tilde/package.json +0 -100
  4574. package/http/node_modules/express/History.md +0 -3477
  4575. package/http/node_modules/express/LICENSE +0 -24
  4576. package/http/node_modules/express/Readme.md +0 -155
  4577. package/http/node_modules/express/index.js +0 -11
  4578. package/http/node_modules/express/lib/application.js +0 -644
  4579. package/http/node_modules/express/lib/express.js +0 -116
  4580. package/http/node_modules/express/lib/middleware/init.js +0 -43
  4581. package/http/node_modules/express/lib/middleware/query.js +0 -47
  4582. package/http/node_modules/express/lib/request.js +0 -525
  4583. package/http/node_modules/express/lib/response.js +0 -1142
  4584. package/http/node_modules/express/lib/router/index.js +0 -662
  4585. package/http/node_modules/express/lib/router/layer.js +0 -181
  4586. package/http/node_modules/express/lib/router/route.js +0 -216
  4587. package/http/node_modules/express/lib/utils.js +0 -306
  4588. package/http/node_modules/express/lib/view.js +0 -182
  4589. package/http/node_modules/express/package.json +0 -153
  4590. package/http/node_modules/express-session/HISTORY.md +0 -429
  4591. package/http/node_modules/express-session/LICENSE +0 -24
  4592. package/http/node_modules/express-session/README.md +0 -862
  4593. package/http/node_modules/express-session/index.js +0 -681
  4594. package/http/node_modules/express-session/package.json +0 -90
  4595. package/http/node_modules/express-session/session/cookie.js +0 -150
  4596. package/http/node_modules/express-session/session/memory.js +0 -187
  4597. package/http/node_modules/express-session/session/session.js +0 -143
  4598. package/http/node_modules/express-session/session/store.js +0 -102
  4599. package/http/node_modules/extend/.eslintrc +0 -17
  4600. package/http/node_modules/extend/.jscs.json +0 -175
  4601. package/http/node_modules/extend/.travis.yml +0 -230
  4602. package/http/node_modules/extend/CHANGELOG.md +0 -83
  4603. package/http/node_modules/extend/LICENSE +0 -23
  4604. package/http/node_modules/extend/README.md +0 -81
  4605. package/http/node_modules/extend/component.json +0 -32
  4606. package/http/node_modules/extend/index.js +0 -117
  4607. package/http/node_modules/extend/package.json +0 -75
  4608. package/http/node_modules/extend-shallow/LICENSE +0 -21
  4609. package/http/node_modules/extend-shallow/README.md +0 -97
  4610. package/http/node_modules/extend-shallow/index.js +0 -60
  4611. package/http/node_modules/extend-shallow/package.json +0 -126
  4612. package/http/node_modules/extglob/LICENSE +0 -21
  4613. package/http/node_modules/extglob/README.md +0 -362
  4614. package/http/node_modules/extglob/changelog.md +0 -25
  4615. package/http/node_modules/extglob/index.js +0 -331
  4616. package/http/node_modules/extglob/lib/.DS_Store +0 -0
  4617. package/http/node_modules/extglob/lib/compilers.js +0 -169
  4618. package/http/node_modules/extglob/lib/extglob.js +0 -78
  4619. package/http/node_modules/extglob/lib/parsers.js +0 -156
  4620. package/http/node_modules/extglob/lib/utils.js +0 -69
  4621. package/http/node_modules/extglob/package.json +0 -160
  4622. package/http/node_modules/fill-range/LICENSE +0 -21
  4623. package/http/node_modules/fill-range/README.md +0 -250
  4624. package/http/node_modules/fill-range/index.js +0 -208
  4625. package/http/node_modules/fill-range/package.json +0 -130
  4626. package/http/node_modules/finalhandler/HISTORY.md +0 -187
  4627. package/http/node_modules/finalhandler/LICENSE +0 -22
  4628. package/http/node_modules/finalhandler/README.md +0 -148
  4629. package/http/node_modules/finalhandler/index.js +0 -331
  4630. package/http/node_modules/finalhandler/package.json +0 -80
  4631. package/http/node_modules/findup-sync/LICENSE-MIT +0 -22
  4632. package/http/node_modules/findup-sync/README.md +0 -48
  4633. package/http/node_modules/findup-sync/lib/findup-sync.js +0 -49
  4634. package/http/node_modules/findup-sync/node_modules/glob/LICENSE +0 -15
  4635. package/http/node_modules/findup-sync/node_modules/glob/README.md +0 -377
  4636. package/http/node_modules/findup-sync/node_modules/glob/common.js +0 -245
  4637. package/http/node_modules/findup-sync/node_modules/glob/glob.js +0 -752
  4638. package/http/node_modules/findup-sync/node_modules/glob/package.json +0 -75
  4639. package/http/node_modules/findup-sync/node_modules/glob/sync.js +0 -460
  4640. package/http/node_modules/findup-sync/package.json +0 -74
  4641. package/http/node_modules/fined/LICENSE +0 -21
  4642. package/http/node_modules/fined/README.md +0 -81
  4643. package/http/node_modules/fined/index.js +0 -174
  4644. package/http/node_modules/fined/package.json +0 -89
  4645. package/http/node_modules/flagged-respawn/LICENSE +0 -21
  4646. package/http/node_modules/flagged-respawn/README.md +0 -111
  4647. package/http/node_modules/flagged-respawn/index.js +0 -52
  4648. package/http/node_modules/flagged-respawn/lib/is-v8flags.js +0 -13
  4649. package/http/node_modules/flagged-respawn/lib/remover.js +0 -13
  4650. package/http/node_modules/flagged-respawn/lib/reorder.js +0 -18
  4651. package/http/node_modules/flagged-respawn/lib/respawn.js +0 -16
  4652. package/http/node_modules/flagged-respawn/package.json +0 -95
  4653. package/http/node_modules/for-in/LICENSE +0 -21
  4654. package/http/node_modules/for-in/README.md +0 -85
  4655. package/http/node_modules/for-in/index.js +0 -16
  4656. package/http/node_modules/for-in/package.json +0 -107
  4657. package/http/node_modules/for-own/LICENSE +0 -21
  4658. package/http/node_modules/for-own/README.md +0 -85
  4659. package/http/node_modules/for-own/index.js +0 -19
  4660. package/http/node_modules/for-own/package.json +0 -110
  4661. package/http/node_modules/forwarded/HISTORY.md +0 -16
  4662. package/http/node_modules/forwarded/LICENSE +0 -22
  4663. package/http/node_modules/forwarded/README.md +0 -57
  4664. package/http/node_modules/forwarded/index.js +0 -76
  4665. package/http/node_modules/forwarded/package.json +0 -78
  4666. package/http/node_modules/fragment-cache/LICENSE +0 -21
  4667. package/http/node_modules/fragment-cache/README.md +0 -156
  4668. package/http/node_modules/fragment-cache/index.js +0 -128
  4669. package/http/node_modules/fragment-cache/package.json +0 -93
  4670. package/http/node_modules/fresh/HISTORY.md +0 -70
  4671. package/http/node_modules/fresh/LICENSE +0 -23
  4672. package/http/node_modules/fresh/README.md +0 -119
  4673. package/http/node_modules/fresh/index.js +0 -137
  4674. package/http/node_modules/fresh/package.json +0 -90
  4675. package/http/node_modules/fs.realpath/LICENSE +0 -43
  4676. package/http/node_modules/fs.realpath/README.md +0 -33
  4677. package/http/node_modules/fs.realpath/index.js +0 -66
  4678. package/http/node_modules/fs.realpath/old.js +0 -303
  4679. package/http/node_modules/fs.realpath/package.json +0 -59
  4680. package/http/node_modules/function-bind/.eslintrc +0 -15
  4681. package/http/node_modules/function-bind/.jscs.json +0 -176
  4682. package/http/node_modules/function-bind/.travis.yml +0 -168
  4683. package/http/node_modules/function-bind/LICENSE +0 -20
  4684. package/http/node_modules/function-bind/README.md +0 -48
  4685. package/http/node_modules/function-bind/implementation.js +0 -52
  4686. package/http/node_modules/function-bind/index.js +0 -5
  4687. package/http/node_modules/function-bind/package.json +0 -94
  4688. package/http/node_modules/function-bind/test/.eslintrc +0 -9
  4689. package/http/node_modules/function-bind/test/index.js +0 -252
  4690. package/http/node_modules/get-value/LICENSE +0 -21
  4691. package/http/node_modules/get-value/index.js +0 -50
  4692. package/http/node_modules/get-value/package.json +0 -113
  4693. package/http/node_modules/getobject/.jshintrc +0 -15
  4694. package/http/node_modules/getobject/.travis.yml +0 -6
  4695. package/http/node_modules/getobject/Gruntfile.js +0 -48
  4696. package/http/node_modules/getobject/LICENSE-MIT +0 -22
  4697. package/http/node_modules/getobject/README.md +0 -20
  4698. package/http/node_modules/getobject/lib/getobject.js +0 -60
  4699. package/http/node_modules/getobject/package.json +0 -69
  4700. package/http/node_modules/getobject/test/namespace_test.js +0 -51
  4701. package/http/node_modules/glob/LICENSE +0 -21
  4702. package/http/node_modules/glob/README.md +0 -375
  4703. package/http/node_modules/glob/changelog.md +0 -67
  4704. package/http/node_modules/glob/common.js +0 -240
  4705. package/http/node_modules/glob/glob.js +0 -790
  4706. package/http/node_modules/glob/package.json +0 -81
  4707. package/http/node_modules/glob/sync.js +0 -486
  4708. package/http/node_modules/global-modules/LICENSE +0 -21
  4709. package/http/node_modules/global-modules/README.md +0 -75
  4710. package/http/node_modules/global-modules/index.js +0 -31
  4711. package/http/node_modules/global-modules/package.json +0 -112
  4712. package/http/node_modules/global-prefix/LICENSE +0 -21
  4713. package/http/node_modules/global-prefix/README.md +0 -78
  4714. package/http/node_modules/global-prefix/index.js +0 -96
  4715. package/http/node_modules/global-prefix/package.json +0 -130
  4716. package/http/node_modules/grunt/CHANGELOG +0 -171
  4717. package/http/node_modules/grunt/LICENSE +0 -35
  4718. package/http/node_modules/grunt/README.md +0 -25
  4719. package/http/node_modules/grunt/bin/grunt +0 -3
  4720. package/http/node_modules/grunt/lib/grunt/cli.js +0 -55
  4721. package/http/node_modules/grunt/lib/grunt/config.js +0 -115
  4722. package/http/node_modules/grunt/lib/grunt/event.js +0 -7
  4723. package/http/node_modules/grunt/lib/grunt/fail.js +0 -75
  4724. package/http/node_modules/grunt/lib/grunt/file.js +0 -460
  4725. package/http/node_modules/grunt/lib/grunt/help.js +0 -120
  4726. package/http/node_modules/grunt/lib/grunt/option.js +0 -38
  4727. package/http/node_modules/grunt/lib/grunt/task.js +0 -471
  4728. package/http/node_modules/grunt/lib/grunt/template.js +0 -90
  4729. package/http/node_modules/grunt/lib/grunt.js +0 -174
  4730. package/http/node_modules/grunt/lib/util/task.js +0 -335
  4731. package/http/node_modules/grunt/package.json +0 -103
  4732. package/http/node_modules/grunt-bower/CHANGELOG.md +0 -106
  4733. package/http/node_modules/grunt-bower/CONTRIBUTORS.md +0 -17
  4734. package/http/node_modules/grunt-bower/LICENSE-MIT +0 -22
  4735. package/http/node_modules/grunt-bower/README.md +0 -231
  4736. package/http/node_modules/grunt-bower/TODO.md +0 -1
  4737. package/http/node_modules/grunt-bower/package.json +0 -68
  4738. package/http/node_modules/grunt-bower/tasks/bower.js +0 -185
  4739. package/http/node_modules/grunt-bower/tasks/lib/helpers.js +0 -173
  4740. package/http/node_modules/grunt-bower/test/boilerplate/Gruntfile.js +0 -118
  4741. package/http/node_modules/grunt-bower/test/boilerplate/README +0 -1
  4742. package/http/node_modules/grunt-bower/test/boilerplate/bower.json +0 -10
  4743. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/font-awesome/.bower.json +0 -37
  4744. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/font-awesome/css/font-awesome.css +0 -1
  4745. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/font-awesome/css/font-awesome.min.css +0 -1
  4746. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/font-awesome/fonts/FontAwesome.otf +0 -1
  4747. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/font-awesome/fonts/fontawesome-webfont.eot +0 -1
  4748. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/font-awesome/fonts/fontawesome-webfont.svg +0 -1
  4749. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/font-awesome/fonts/fontawesome-webfont.ttf +0 -1
  4750. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/font-awesome/fonts/fontawesome-webfont.woff +0 -1
  4751. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery/.bower.json +0 -38
  4752. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery/MIT-LICENSE.txt +0 -21
  4753. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery/bower.json +0 -27
  4754. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery/dist/jquery.js +0 -1
  4755. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery/dist/jquery.min.js +0 -1
  4756. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery/dist/jquery.min.map +0 -1
  4757. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery/src/event.js +0 -1
  4758. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery/src/intro.js +0 -1
  4759. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery/src/jquery.js +0 -1
  4760. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery/src/manipulation.js +0 -1
  4761. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery/src/offset.js +0 -1
  4762. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery/src/outro.js +0 -1
  4763. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery/src/queue/delay.js +0 -1
  4764. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery/src/queue.js +0 -1
  4765. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery/src/selector-native.js +0 -1
  4766. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery/src/selector-sizzle.js +0 -1
  4767. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery/src/selector.js +0 -1
  4768. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery/src/serialize.js +0 -1
  4769. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery/src/sizzle/dist/sizzle.js +0 -1
  4770. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery/src/sizzle/dist/sizzle.min.js +0 -1
  4771. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery-ui/.bower.json +0 -21
  4772. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery-ui/AUTHORS.txt +0 -260
  4773. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery-ui/MIT-LICENSE.txt +0 -26
  4774. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery-ui/README.md +0 -11
  4775. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery-ui/bower.json +0 -12
  4776. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery-ui/component.json +0 -13
  4777. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery-ui/composer.json +0 -64
  4778. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery-ui/jquery-ui.js +0 -1
  4779. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery-ui/jquery-ui.min.js +0 -1
  4780. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery-ui/package.json +0 -66
  4781. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery-ui/ui/.jshintrc +0 -1
  4782. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery-ui/ui/minified/accordion.min.js +0 -1
  4783. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery-ui/ui/minified/autocomplete.min.js +0 -1
  4784. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery-ui/ui/minified/button.min.js +0 -1
  4785. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery-ui/ui/minified/i18n/datepicker-af.min.js +0 -1
  4786. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery-ui/ui/minified/i18n/datepicker-ar-DZ.min.js +0 -1
  4787. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery-ui/ui/minified/i18n/datepicker-ca.min.js +0 -0
  4788. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery-ui/ui/tabs.js +0 -1
  4789. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery-ui/ui/tooltip.js +0 -1
  4790. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/jquery-ui/ui/widget.js +0 -1
  4791. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/underscore/docs/public/fonts/aller-bold.eot +0 -0
  4792. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/underscore/docs/public/fonts/aller-bold.ttf +0 -0
  4793. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/underscore/docs/public/fonts/aller-bold.woff +0 -0
  4794. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/underscore/docs/public/fonts/aller-light.eot +0 -0
  4795. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/underscore/docs/public/fonts/aller-light.ttf +0 -0
  4796. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/underscore/docs/public/fonts/aller-light.woff +0 -0
  4797. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/underscore/docs/public/fonts/novecento-bold.eot +0 -0
  4798. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/underscore/docs/public/fonts/novecento-bold.ttf +0 -0
  4799. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/underscore/docs/public/fonts/novecento-bold.woff +0 -0
  4800. package/http/node_modules/grunt-bower/test/boilerplate/bower_components/underscore/docs/public/stylesheets/normalize.css +0 -375
  4801. package/http/node_modules/grunt-bower/test/boilerplate/package.json +0 -15
  4802. package/http/node_modules/grunt-bower/test/boilerplate/public/js/lib/FontAwesome.otf +0 -1
  4803. package/http/node_modules/grunt-bower/test/boilerplate/public/js/lib/css/font-awesome.css +0 -1
  4804. package/http/node_modules/grunt-bower/test/boilerplate/public/js/lib/dist/jquery.validate.js +0 -1574
  4805. package/http/node_modules/grunt-bower/test/boilerplate/public/js/lib/font-awesome.css +0 -1
  4806. package/http/node_modules/grunt-bower/test/boilerplate/public/js/lib/fontawesome-webfont.eot +0 -1
  4807. package/http/node_modules/grunt-bower/test/boilerplate/public/js/lib/fontawesome-webfont.svg +0 -1
  4808. package/http/node_modules/grunt-bower/test/boilerplate/public/js/lib/fontawesome-webfont.ttf +0 -1
  4809. package/http/node_modules/grunt-bower/test/boilerplate/public/js/lib/fontawesome-webfont.woff +0 -1
  4810. package/http/node_modules/grunt-bower/test/boilerplate/public/js/lib/fonts/FontAwesome.otf +0 -1
  4811. package/http/node_modules/grunt-bower/test/boilerplate/public/js/lib/fonts/fontawesome-webfont.eot +0 -1
  4812. package/http/node_modules/grunt-bower/test/boilerplate/public/js/lib/fonts/fontawesome-webfont.svg +0 -1
  4813. package/http/node_modules/grunt-bower/test/boilerplate/public/js/lib/fonts/fontawesome-webfont.ttf +0 -1
  4814. package/http/node_modules/grunt-bower/test/boilerplate/public/js/lib/fonts/fontawesome-webfont.woff +0 -1
  4815. package/http/node_modules/grunt-bower/test/boilerplate/public/js/lib/jquery-ui.js +0 -1
  4816. package/http/node_modules/grunt-bower/test/boilerplate/public/js/lib/jquery.js +0 -8829
  4817. package/http/node_modules/grunt-bower/test/boilerplate/public/js/lib/jquery.validate.js +0 -1574
  4818. package/http/node_modules/grunt-bower/test/boilerplate/public/js/lib/underscore.js +0 -1276
  4819. package/http/node_modules/grunt-bower/test/boilerplate/run_test.js +0 -53
  4820. package/http/node_modules/grunt-bower/test/bower_test.js +0 -39
  4821. package/http/node_modules/grunt-bower-install-simple/Gruntfile.js +0 -54
  4822. package/http/node_modules/grunt-bower-install-simple/LICENSE.md +0 -21
  4823. package/http/node_modules/grunt-bower-install-simple/Makefile +0 -45
  4824. package/http/node_modules/grunt-bower-install-simple/README.md +0 -116
  4825. package/http/node_modules/grunt-bower-install-simple/eslint.json +0 -179
  4826. package/http/node_modules/grunt-bower-install-simple/jshint.json +0 -26
  4827. package/http/node_modules/grunt-bower-install-simple/node_modules/ansi-styles/index.js +0 -165
  4828. package/http/node_modules/grunt-bower-install-simple/node_modules/ansi-styles/license +0 -9
  4829. package/http/node_modules/grunt-bower-install-simple/node_modules/ansi-styles/package.json +0 -88
  4830. package/http/node_modules/grunt-bower-install-simple/node_modules/ansi-styles/readme.md +0 -147
  4831. package/http/node_modules/grunt-bower-install-simple/node_modules/chalk/index.js +0 -228
  4832. package/http/node_modules/grunt-bower-install-simple/node_modules/chalk/index.js.flow +0 -93
  4833. package/http/node_modules/grunt-bower-install-simple/node_modules/chalk/license +0 -9
  4834. package/http/node_modules/grunt-bower-install-simple/node_modules/chalk/package.json +0 -103
  4835. package/http/node_modules/grunt-bower-install-simple/node_modules/chalk/readme.md +0 -314
  4836. package/http/node_modules/grunt-bower-install-simple/node_modules/chalk/templates.js +0 -128
  4837. package/http/node_modules/grunt-bower-install-simple/node_modules/chalk/types/index.d.ts +0 -97
  4838. package/http/node_modules/grunt-bower-install-simple/node_modules/color-convert/CHANGELOG.md +0 -54
  4839. package/http/node_modules/grunt-bower-install-simple/node_modules/color-convert/LICENSE +0 -21
  4840. package/http/node_modules/grunt-bower-install-simple/node_modules/color-convert/README.md +0 -68
  4841. package/http/node_modules/grunt-bower-install-simple/node_modules/color-convert/conversions.js +0 -868
  4842. package/http/node_modules/grunt-bower-install-simple/node_modules/color-convert/index.js +0 -78
  4843. package/http/node_modules/grunt-bower-install-simple/node_modules/color-convert/package.json +0 -81
  4844. package/http/node_modules/grunt-bower-install-simple/node_modules/color-convert/route.js +0 -97
  4845. package/http/node_modules/grunt-bower-install-simple/node_modules/color-name/.eslintrc.json +0 -43
  4846. package/http/node_modules/grunt-bower-install-simple/node_modules/color-name/LICENSE +0 -8
  4847. package/http/node_modules/grunt-bower-install-simple/node_modules/color-name/README.md +0 -11
  4848. package/http/node_modules/grunt-bower-install-simple/node_modules/color-name/index.js +0 -152
  4849. package/http/node_modules/grunt-bower-install-simple/node_modules/color-name/package.json +0 -53
  4850. package/http/node_modules/grunt-bower-install-simple/node_modules/color-name/test.js +0 -7
  4851. package/http/node_modules/grunt-bower-install-simple/node_modules/has-flag/index.js +0 -8
  4852. package/http/node_modules/grunt-bower-install-simple/node_modules/has-flag/license +0 -9
  4853. package/http/node_modules/grunt-bower-install-simple/node_modules/has-flag/package.json +0 -76
  4854. package/http/node_modules/grunt-bower-install-simple/node_modules/has-flag/readme.md +0 -70
  4855. package/http/node_modules/grunt-bower-install-simple/node_modules/supports-color/browser.js +0 -5
  4856. package/http/node_modules/grunt-bower-install-simple/node_modules/supports-color/index.js +0 -131
  4857. package/http/node_modules/grunt-bower-install-simple/node_modules/supports-color/license +0 -9
  4858. package/http/node_modules/grunt-bower-install-simple/node_modules/supports-color/package.json +0 -85
  4859. package/http/node_modules/grunt-bower-install-simple/node_modules/supports-color/readme.md +0 -66
  4860. package/http/node_modules/grunt-bower-install-simple/package.json +0 -71
  4861. package/http/node_modules/grunt-bower-install-simple/sample/Gruntfile.js +0 -32
  4862. package/http/node_modules/grunt-bower-install-simple/sample/Makefile +0 -18
  4863. package/http/node_modules/grunt-bower-install-simple/sample/README.md +0 -4
  4864. package/http/node_modules/grunt-bower-install-simple/sample/bower.json +0 -11
  4865. package/http/node_modules/grunt-bower-install-simple/sample/package.json +0 -29
  4866. package/http/node_modules/grunt-bower-install-simple/tasks/grunt-bower-install-simple.js +0 -129
  4867. package/http/node_modules/grunt-cli/CHANGELOG.md +0 -37
  4868. package/http/node_modules/grunt-cli/README.md +0 -31
  4869. package/http/node_modules/grunt-cli/bin/grunt +0 -69
  4870. package/http/node_modules/grunt-cli/completion/bash +0 -49
  4871. package/http/node_modules/grunt-cli/completion/zsh +0 -37
  4872. package/http/node_modules/grunt-cli/lib/completion.js +0 -34
  4873. package/http/node_modules/grunt-cli/lib/info.js +0 -51
  4874. package/http/node_modules/grunt-cli/package.json +0 -73
  4875. package/http/node_modules/grunt-contrib-clean/CHANGELOG +0 -63
  4876. package/http/node_modules/grunt-contrib-clean/README.md +0 -165
  4877. package/http/node_modules/grunt-contrib-clean/package.json +0 -82
  4878. package/http/node_modules/grunt-contrib-clean/tasks/clean.js +0 -67
  4879. package/http/node_modules/grunt-known-options/LICENSE +0 -35
  4880. package/http/node_modules/grunt-known-options/README.md +0 -16
  4881. package/http/node_modules/grunt-known-options/index.js +0 -73
  4882. package/http/node_modules/grunt-known-options/package.json +0 -53
  4883. package/http/node_modules/grunt-legacy-log/.idea/grunt-legacy-log.iml +0 -12
  4884. package/http/node_modules/grunt-legacy-log/.idea/misc.xml +0 -6
  4885. package/http/node_modules/grunt-legacy-log/.idea/modules.xml +0 -8
  4886. package/http/node_modules/grunt-legacy-log/.idea/vcs.xml +0 -6
  4887. package/http/node_modules/grunt-legacy-log/.idea/workspace.xml +0 -53
  4888. package/http/node_modules/grunt-legacy-log/.jshintrc +0 -14
  4889. package/http/node_modules/grunt-legacy-log/CHANGELOG +0 -19
  4890. package/http/node_modules/grunt-legacy-log/Gruntfile.js +0 -30
  4891. package/http/node_modules/grunt-legacy-log/LICENSE-MIT +0 -22
  4892. package/http/node_modules/grunt-legacy-log/README.md +0 -5
  4893. package/http/node_modules/grunt-legacy-log/examples.js +0 -26
  4894. package/http/node_modules/grunt-legacy-log/index.js +0 -299
  4895. package/http/node_modules/grunt-legacy-log/package.json +0 -67
  4896. package/http/node_modules/grunt-legacy-log/test/index.js +0 -519
  4897. package/http/node_modules/grunt-legacy-log-utils/README.md +0 -6
  4898. package/http/node_modules/grunt-legacy-log-utils/index.js +0 -115
  4899. package/http/node_modules/grunt-legacy-log-utils/package.json +0 -68
  4900. package/http/node_modules/grunt-legacy-util/.idea/grunt-legacy-util.iml +0 -12
  4901. package/http/node_modules/grunt-legacy-util/.idea/inspectionProfiles/Project_Default.xml +0 -6
  4902. package/http/node_modules/grunt-legacy-util/.idea/jsLinters/jshint.xml +0 -16
  4903. package/http/node_modules/grunt-legacy-util/.idea/modules.xml +0 -8
  4904. package/http/node_modules/grunt-legacy-util/.idea/vcs.xml +0 -6
  4905. package/http/node_modules/grunt-legacy-util/.idea/workspace.xml +0 -72
  4906. package/http/node_modules/grunt-legacy-util/.jshintrc +0 -14
  4907. package/http/node_modules/grunt-legacy-util/.travis.yml +0 -9
  4908. package/http/node_modules/grunt-legacy-util/CHANGELOG +0 -21
  4909. package/http/node_modules/grunt-legacy-util/Gruntfile.js +0 -30
  4910. package/http/node_modules/grunt-legacy-util/LICENSE-MIT +0 -22
  4911. package/http/node_modules/grunt-legacy-util/README.md +0 -32
  4912. package/http/node_modules/grunt-legacy-util/appveyor.yml +0 -27
  4913. package/http/node_modules/grunt-legacy-util/index.js +0 -202
  4914. package/http/node_modules/grunt-legacy-util/package.json +0 -71
  4915. package/http/node_modules/grunt-legacy-util/test/fixtures/Gruntfile-execArgv-child.js +0 -7
  4916. package/http/node_modules/grunt-legacy-util/test/fixtures/Gruntfile-execArgv.js +0 -17
  4917. package/http/node_modules/grunt-legacy-util/test/fixtures/Gruntfile-print-text.js +0 -8
  4918. package/http/node_modules/grunt-legacy-util/test/fixtures/exec.cmd +0 -1
  4919. package/http/node_modules/grunt-legacy-util/test/fixtures/exec.sh +0 -2
  4920. package/http/node_modules/grunt-legacy-util/test/fixtures/spawn-multibyte.js +0 -17
  4921. package/http/node_modules/grunt-legacy-util/test/fixtures/spawn.js +0 -8
  4922. package/http/node_modules/grunt-legacy-util/test/index.js +0 -554
  4923. package/http/node_modules/has/LICENSE-MIT +0 -22
  4924. package/http/node_modules/has/README.md +0 -18
  4925. package/http/node_modules/has/package.json +0 -73
  4926. package/http/node_modules/has/src/index.js +0 -5
  4927. package/http/node_modules/has/test/index.js +0 -10
  4928. package/http/node_modules/has-flag/index.d.ts +0 -39
  4929. package/http/node_modules/has-flag/index.js +0 -8
  4930. package/http/node_modules/has-flag/license +0 -9
  4931. package/http/node_modules/has-flag/package.json +0 -78
  4932. package/http/node_modules/has-flag/readme.md +0 -89
  4933. package/http/node_modules/has-value/LICENSE +0 -21
  4934. package/http/node_modules/has-value/README.md +0 -149
  4935. package/http/node_modules/has-value/index.js +0 -16
  4936. package/http/node_modules/has-value/package.json +0 -120
  4937. package/http/node_modules/has-values/LICENSE +0 -21
  4938. package/http/node_modules/has-values/README.md +0 -129
  4939. package/http/node_modules/has-values/index.js +0 -60
  4940. package/http/node_modules/has-values/package.json +0 -115
  4941. package/http/node_modules/homedir-polyfill/LICENSE +0 -21
  4942. package/http/node_modules/homedir-polyfill/README.md +0 -96
  4943. package/http/node_modules/homedir-polyfill/index.js +0 -9
  4944. package/http/node_modules/homedir-polyfill/package.json +0 -95
  4945. package/http/node_modules/homedir-polyfill/polyfill.js +0 -81
  4946. package/http/node_modules/hooker/LICENSE-MIT +0 -22
  4947. package/http/node_modules/hooker/README.md +0 -186
  4948. package/http/node_modules/hooker/child.js +0 -101
  4949. package/http/node_modules/hooker/dist/ba-hooker.js +0 -169
  4950. package/http/node_modules/hooker/dist/ba-hooker.min.js +0 -4
  4951. package/http/node_modules/hooker/grunt.js +0 -47
  4952. package/http/node_modules/hooker/lib/hooker.js +0 -174
  4953. package/http/node_modules/hooker/package.json +0 -67
  4954. package/http/node_modules/hooker/parent.js +0 -17
  4955. package/http/node_modules/hooker/test/hooker_test.js +0 -435
  4956. package/http/node_modules/http-errors/HISTORY.md +0 -149
  4957. package/http/node_modules/http-errors/LICENSE +0 -23
  4958. package/http/node_modules/http-errors/README.md +0 -163
  4959. package/http/node_modules/http-errors/index.js +0 -266
  4960. package/http/node_modules/http-errors/package.json +0 -93
  4961. package/http/node_modules/iconv-lite/Changelog.md +0 -162
  4962. package/http/node_modules/iconv-lite/LICENSE +0 -21
  4963. package/http/node_modules/iconv-lite/README.md +0 -156
  4964. package/http/node_modules/iconv-lite/encodings/dbcs-codec.js +0 -555
  4965. package/http/node_modules/iconv-lite/encodings/dbcs-data.js +0 -176
  4966. package/http/node_modules/iconv-lite/encodings/index.js +0 -22
  4967. package/http/node_modules/iconv-lite/encodings/internal.js +0 -188
  4968. package/http/node_modules/iconv-lite/encodings/sbcs-codec.js +0 -72
  4969. package/http/node_modules/iconv-lite/encodings/sbcs-data-generated.js +0 -451
  4970. package/http/node_modules/iconv-lite/encodings/sbcs-data.js +0 -174
  4971. package/http/node_modules/iconv-lite/encodings/tables/big5-added.json +0 -122
  4972. package/http/node_modules/iconv-lite/encodings/tables/cp936.json +0 -264
  4973. package/http/node_modules/iconv-lite/encodings/tables/cp949.json +0 -273
  4974. package/http/node_modules/iconv-lite/encodings/tables/cp950.json +0 -177
  4975. package/http/node_modules/iconv-lite/encodings/tables/eucjp.json +0 -182
  4976. package/http/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +0 -1
  4977. package/http/node_modules/iconv-lite/encodings/tables/gbk-added.json +0 -55
  4978. package/http/node_modules/iconv-lite/encodings/tables/shiftjis.json +0 -125
  4979. package/http/node_modules/iconv-lite/encodings/utf16.js +0 -177
  4980. package/http/node_modules/iconv-lite/encodings/utf7.js +0 -290
  4981. package/http/node_modules/iconv-lite/lib/bom-handling.js +0 -52
  4982. package/http/node_modules/iconv-lite/lib/extend-node.js +0 -217
  4983. package/http/node_modules/iconv-lite/lib/index.d.ts +0 -24
  4984. package/http/node_modules/iconv-lite/lib/index.js +0 -153
  4985. package/http/node_modules/iconv-lite/lib/streams.js +0 -121
  4986. package/http/node_modules/iconv-lite/package.json +0 -78
  4987. package/http/node_modules/inflight/LICENSE +0 -15
  4988. package/http/node_modules/inflight/README.md +0 -37
  4989. package/http/node_modules/inflight/inflight.js +0 -54
  4990. package/http/node_modules/inflight/package.json +0 -59
  4991. package/http/node_modules/inherits/LICENSE +0 -16
  4992. package/http/node_modules/inherits/README.md +0 -42
  4993. package/http/node_modules/inherits/inherits.js +0 -7
  4994. package/http/node_modules/inherits/inherits_browser.js +0 -23
  4995. package/http/node_modules/inherits/package.json +0 -63
  4996. package/http/node_modules/ini/LICENSE +0 -15
  4997. package/http/node_modules/ini/README.md +0 -102
  4998. package/http/node_modules/ini/ini.js +0 -206
  4999. package/http/node_modules/ini/package.json +0 -66
  5000. package/http/node_modules/interpret/CHANGELOG +0 -115
  5001. package/http/node_modules/interpret/LICENSE +0 -22
  5002. package/http/node_modules/interpret/README.md +0 -145
  5003. package/http/node_modules/interpret/index.js +0 -141
  5004. package/http/node_modules/interpret/package.json +0 -78
  5005. package/http/node_modules/ipaddr.js/LICENSE +0 -19
  5006. package/http/node_modules/ipaddr.js/README.md +0 -233
  5007. package/http/node_modules/ipaddr.js/ipaddr.min.js +0 -1
  5008. package/http/node_modules/ipaddr.js/lib/ipaddr.js +0 -673
  5009. package/http/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +0 -68
  5010. package/http/node_modules/ipaddr.js/package.json +0 -70
  5011. package/http/node_modules/is-absolute/LICENSE +0 -22
  5012. package/http/node_modules/is-absolute/README.md +0 -114
  5013. package/http/node_modules/is-absolute/index.js +0 -47
  5014. package/http/node_modules/is-absolute/package.json +0 -133
  5015. package/http/node_modules/is-accessor-descriptor/LICENSE +0 -21
  5016. package/http/node_modules/is-accessor-descriptor/README.md +0 -123
  5017. package/http/node_modules/is-accessor-descriptor/index.js +0 -69
  5018. package/http/node_modules/is-accessor-descriptor/package.json +0 -94
  5019. package/http/node_modules/is-buffer/LICENSE +0 -21
  5020. package/http/node_modules/is-buffer/README.md +0 -53
  5021. package/http/node_modules/is-buffer/index.js +0 -21
  5022. package/http/node_modules/is-buffer/package.json +0 -83
  5023. package/http/node_modules/is-buffer/test/basic.js +0 -24
  5024. package/http/node_modules/is-core-module/.eslintignore +0 -1
  5025. package/http/node_modules/is-core-module/.eslintrc +0 -18
  5026. package/http/node_modules/is-core-module/.nycrc +0 -13
  5027. package/http/node_modules/is-core-module/CHANGELOG.md +0 -58
  5028. package/http/node_modules/is-core-module/LICENSE +0 -20
  5029. package/http/node_modules/is-core-module/README.md +0 -37
  5030. package/http/node_modules/is-core-module/core.json +0 -83
  5031. package/http/node_modules/is-core-module/index.js +0 -69
  5032. package/http/node_modules/is-core-module/package.json +0 -94
  5033. package/http/node_modules/is-core-module/test/index.js +0 -83
  5034. package/http/node_modules/is-data-descriptor/LICENSE +0 -21
  5035. package/http/node_modules/is-data-descriptor/README.md +0 -128
  5036. package/http/node_modules/is-data-descriptor/index.js +0 -55
  5037. package/http/node_modules/is-data-descriptor/package.json +0 -93
  5038. package/http/node_modules/is-descriptor/LICENSE +0 -21
  5039. package/http/node_modules/is-descriptor/README.md +0 -193
  5040. package/http/node_modules/is-descriptor/index.js +0 -22
  5041. package/http/node_modules/is-descriptor/package.json +0 -118
  5042. package/http/node_modules/is-extendable/LICENSE +0 -21
  5043. package/http/node_modules/is-extendable/README.md +0 -72
  5044. package/http/node_modules/is-extendable/index.js +0 -13
  5045. package/http/node_modules/is-extendable/package.json +0 -89
  5046. package/http/node_modules/is-extglob/LICENSE +0 -21
  5047. package/http/node_modules/is-extglob/README.md +0 -107
  5048. package/http/node_modules/is-extglob/index.js +0 -20
  5049. package/http/node_modules/is-extglob/package.json +0 -100
  5050. package/http/node_modules/is-glob/LICENSE +0 -21
  5051. package/http/node_modules/is-glob/README.md +0 -142
  5052. package/http/node_modules/is-glob/index.js +0 -25
  5053. package/http/node_modules/is-glob/package.json +0 -119
  5054. package/http/node_modules/is-number/LICENSE +0 -21
  5055. package/http/node_modules/is-number/README.md +0 -115
  5056. package/http/node_modules/is-number/index.js +0 -22
  5057. package/http/node_modules/is-number/package.json +0 -125
  5058. package/http/node_modules/is-plain-object/LICENSE +0 -21
  5059. package/http/node_modules/is-plain-object/README.md +0 -104
  5060. package/http/node_modules/is-plain-object/index.d.ts +0 -5
  5061. package/http/node_modules/is-plain-object/index.js +0 -37
  5062. package/http/node_modules/is-plain-object/package.json +0 -125
  5063. package/http/node_modules/is-relative/LICENSE +0 -21
  5064. package/http/node_modules/is-relative/README.md +0 -77
  5065. package/http/node_modules/is-relative/index.js +0 -12
  5066. package/http/node_modules/is-relative/package.json +0 -108
  5067. package/http/node_modules/is-unc-path/LICENSE +0 -21
  5068. package/http/node_modules/is-unc-path/README.md +0 -115
  5069. package/http/node_modules/is-unc-path/index.js +0 -10
  5070. package/http/node_modules/is-unc-path/package.json +0 -96
  5071. package/http/node_modules/is-windows/LICENSE +0 -21
  5072. package/http/node_modules/is-windows/README.md +0 -95
  5073. package/http/node_modules/is-windows/index.js +0 -27
  5074. package/http/node_modules/is-windows/package.json +0 -114
  5075. package/http/node_modules/isarray/.travis.yml +0 -4
  5076. package/http/node_modules/isarray/Makefile +0 -6
  5077. package/http/node_modules/isarray/README.md +0 -60
  5078. package/http/node_modules/isarray/component.json +0 -19
  5079. package/http/node_modules/isarray/index.js +0 -5
  5080. package/http/node_modules/isarray/package.json +0 -73
  5081. package/http/node_modules/isarray/test.js +0 -20
  5082. package/http/node_modules/isexe/LICENSE +0 -15
  5083. package/http/node_modules/isexe/README.md +0 -51
  5084. package/http/node_modules/isexe/index.js +0 -57
  5085. package/http/node_modules/isexe/mode.js +0 -41
  5086. package/http/node_modules/isexe/package.json +0 -60
  5087. package/http/node_modules/isexe/test/basic.js +0 -221
  5088. package/http/node_modules/isexe/windows.js +0 -42
  5089. package/http/node_modules/isobject/LICENSE +0 -21
  5090. package/http/node_modules/isobject/README.md +0 -122
  5091. package/http/node_modules/isobject/index.d.ts +0 -5
  5092. package/http/node_modules/isobject/index.js +0 -12
  5093. package/http/node_modules/isobject/package.json +0 -130
  5094. package/http/node_modules/jquery/AUTHORS.txt +0 -327
  5095. package/http/node_modules/jquery/LICENSE.txt +0 -20
  5096. package/http/node_modules/jquery/README.md +0 -62
  5097. package/http/node_modules/jquery/bower.json +0 -14
  5098. package/http/node_modules/jquery/dist/jquery.js +0 -10872
  5099. package/http/node_modules/jquery/dist/jquery.min.js +0 -2
  5100. package/http/node_modules/jquery/dist/jquery.min.map +0 -1
  5101. package/http/node_modules/jquery/dist/jquery.slim.js +0 -8777
  5102. package/http/node_modules/jquery/dist/jquery.slim.min.js +0 -2
  5103. package/http/node_modules/jquery/dist/jquery.slim.min.map +0 -1
  5104. package/http/node_modules/jquery/external/sizzle/LICENSE.txt +0 -36
  5105. package/http/node_modules/jquery/external/sizzle/dist/sizzle.js +0 -2478
  5106. package/http/node_modules/jquery/external/sizzle/dist/sizzle.min.js +0 -3
  5107. package/http/node_modules/jquery/external/sizzle/dist/sizzle.min.map +0 -1
  5108. package/http/node_modules/jquery/package.json +0 -142
  5109. package/http/node_modules/jquery/src/ajax/jsonp.js +0 -103
  5110. package/http/node_modules/jquery/src/ajax/load.js +0 -77
  5111. package/http/node_modules/jquery/src/ajax/script.js +0 -74
  5112. package/http/node_modules/jquery/src/ajax/var/location.js +0 -5
  5113. package/http/node_modules/jquery/src/ajax/var/nonce.js +0 -5
  5114. package/http/node_modules/jquery/src/ajax/var/rquery.js +0 -5
  5115. package/http/node_modules/jquery/src/ajax/xhr.js +0 -170
  5116. package/http/node_modules/jquery/src/ajax.js +0 -873
  5117. package/http/node_modules/jquery/src/attributes/attr.js +0 -141
  5118. package/http/node_modules/jquery/src/attributes/classes.js +0 -186
  5119. package/http/node_modules/jquery/src/attributes/prop.js +0 -143
  5120. package/http/node_modules/jquery/src/attributes/support.js +0 -33
  5121. package/http/node_modules/jquery/src/attributes/val.js +0 -191
  5122. package/http/node_modules/jquery/src/attributes.js +0 -13
  5123. package/http/node_modules/jquery/src/callbacks.js +0 -236
  5124. package/http/node_modules/jquery/src/core/DOMEval.js +0 -43
  5125. package/http/node_modules/jquery/src/core/access.js +0 -72
  5126. package/http/node_modules/jquery/src/core/camelCase.js +0 -23
  5127. package/http/node_modules/jquery/src/core/init.js +0 -129
  5128. package/http/node_modules/jquery/src/core/isAttached.js +0 -26
  5129. package/http/node_modules/jquery/src/core/nodeName.js +0 -13
  5130. package/http/node_modules/jquery/src/core/parseHTML.js +0 -65
  5131. package/http/node_modules/jquery/src/core/parseXML.js +0 -30
  5132. package/http/node_modules/jquery/src/core/ready-no-deferred.js +0 -97
  5133. package/http/node_modules/jquery/src/core/ready.js +0 -86
  5134. package/http/node_modules/jquery/src/core/readyException.js +0 -13
  5135. package/http/node_modules/jquery/src/core/stripAndCollapse.js +0 -14
  5136. package/http/node_modules/jquery/src/core/support.js +0 -20
  5137. package/http/node_modules/jquery/src/core/toType.js +0 -20
  5138. package/http/node_modules/jquery/src/core/var/rsingleTag.js +0 -7
  5139. package/http/node_modules/jquery/src/core.js +0 -400
  5140. package/http/node_modules/jquery/src/css/addGetHookIf.js +0 -26
  5141. package/http/node_modules/jquery/src/css/adjustCSS.js +0 -74
  5142. package/http/node_modules/jquery/src/css/curCSS.js +0 -65
  5143. package/http/node_modules/jquery/src/css/finalPropName.js +0 -42
  5144. package/http/node_modules/jquery/src/css/hiddenVisibleSelectors.js +0 -15
  5145. package/http/node_modules/jquery/src/css/showHide.js +0 -105
  5146. package/http/node_modules/jquery/src/css/support.js +0 -133
  5147. package/http/node_modules/jquery/src/css/var/cssExpand.js +0 -5
  5148. package/http/node_modules/jquery/src/css/var/getStyles.js +0 -17
  5149. package/http/node_modules/jquery/src/css/var/isHiddenWithinTree.js +0 -34
  5150. package/http/node_modules/jquery/src/css/var/rboxStyle.js +0 -7
  5151. package/http/node_modules/jquery/src/css/var/rnumnonpx.js +0 -7
  5152. package/http/node_modules/jquery/src/css/var/swap.js +0 -26
  5153. package/http/node_modules/jquery/src/css.js +0 -494
  5154. package/http/node_modules/jquery/src/data/Data.js +0 -162
  5155. package/http/node_modules/jquery/src/data/var/acceptData.js +0 -19
  5156. package/http/node_modules/jquery/src/data/var/dataPriv.js +0 -7
  5157. package/http/node_modules/jquery/src/data/var/dataUser.js +0 -7
  5158. package/http/node_modules/jquery/src/data.js +0 -180
  5159. package/http/node_modules/jquery/src/deferred/exceptionHook.js +0 -21
  5160. package/http/node_modules/jquery/src/deferred.js +0 -399
  5161. package/http/node_modules/jquery/src/deprecated/ajax-event-alias.js +0 -22
  5162. package/http/node_modules/jquery/src/deprecated/event.js +0 -48
  5163. package/http/node_modules/jquery/src/deprecated.js +0 -87
  5164. package/http/node_modules/jquery/src/dimensions.js +0 -57
  5165. package/http/node_modules/jquery/src/effects/Tween.js +0 -125
  5166. package/http/node_modules/jquery/src/effects/animatedSelector.js +0 -15
  5167. package/http/node_modules/jquery/src/effects.js +0 -701
  5168. package/http/node_modules/jquery/src/event/focusin.js +0 -58
  5169. package/http/node_modules/jquery/src/event/support.js +0 -11
  5170. package/http/node_modules/jquery/src/event/trigger.js +0 -201
  5171. package/http/node_modules/jquery/src/event.js +0 -892
  5172. package/http/node_modules/jquery/src/exports/amd.js +0 -26
  5173. package/http/node_modules/jquery/src/exports/global.js +0 -34
  5174. package/http/node_modules/jquery/src/jquery.js +0 -41
  5175. package/http/node_modules/jquery/src/manipulation/_evalUrl.js +0 -32
  5176. package/http/node_modules/jquery/src/manipulation/buildFragment.js +0 -106
  5177. package/http/node_modules/jquery/src/manipulation/getAll.js +0 -32
  5178. package/http/node_modules/jquery/src/manipulation/setGlobalEval.js +0 -22
  5179. package/http/node_modules/jquery/src/manipulation/support.js +0 -41
  5180. package/http/node_modules/jquery/src/manipulation/var/rscriptType.js +0 -5
  5181. package/http/node_modules/jquery/src/manipulation/var/rtagName.js +0 -8
  5182. package/http/node_modules/jquery/src/manipulation/wrapMap.js +0 -30
  5183. package/http/node_modules/jquery/src/manipulation.js +0 -480
  5184. package/http/node_modules/jquery/src/offset.js +0 -238
  5185. package/http/node_modules/jquery/src/queue/delay.js +0 -24
  5186. package/http/node_modules/jquery/src/queue.js +0 -145
  5187. package/http/node_modules/jquery/src/selector-native.js +0 -241
  5188. package/http/node_modules/jquery/src/selector-sizzle.js +0 -19
  5189. package/http/node_modules/jquery/src/selector.js +0 -3
  5190. package/http/node_modules/jquery/src/serialize.js +0 -136
  5191. package/http/node_modules/jquery/src/traversing/findFilter.js +0 -97
  5192. package/http/node_modules/jquery/src/traversing/var/dir.js +0 -22
  5193. package/http/node_modules/jquery/src/traversing/var/rneedsContext.js +0 -8
  5194. package/http/node_modules/jquery/src/traversing/var/siblings.js +0 -17
  5195. package/http/node_modules/jquery/src/traversing.js +0 -198
  5196. package/http/node_modules/jquery/src/var/ObjectFunctionString.js +0 -7
  5197. package/http/node_modules/jquery/src/var/arr.js +0 -5
  5198. package/http/node_modules/jquery/src/var/class2type.js +0 -6
  5199. package/http/node_modules/jquery/src/var/document.js +0 -5
  5200. package/http/node_modules/jquery/src/var/documentElement.js +0 -7
  5201. package/http/node_modules/jquery/src/var/flat.js +0 -16
  5202. package/http/node_modules/jquery/src/var/fnToString.js +0 -7
  5203. package/http/node_modules/jquery/src/var/getProto.js +0 -5
  5204. package/http/node_modules/jquery/src/var/hasOwn.js +0 -7
  5205. package/http/node_modules/jquery/src/var/indexOf.js +0 -7
  5206. package/http/node_modules/jquery/src/var/isFunction.js +0 -13
  5207. package/http/node_modules/jquery/src/var/isWindow.js +0 -8
  5208. package/http/node_modules/jquery/src/var/pnum.js +0 -5
  5209. package/http/node_modules/jquery/src/var/push.js +0 -7
  5210. package/http/node_modules/jquery/src/var/rcheckableType.js +0 -5
  5211. package/http/node_modules/jquery/src/var/rcssNum.js +0 -9
  5212. package/http/node_modules/jquery/src/var/rnothtmlwhite.js +0 -8
  5213. package/http/node_modules/jquery/src/var/slice.js +0 -7
  5214. package/http/node_modules/jquery/src/var/support.js +0 -6
  5215. package/http/node_modules/jquery/src/var/toString.js +0 -7
  5216. package/http/node_modules/jquery/src/wrap.js +0 -78
  5217. package/http/node_modules/js-yaml/CHANGELOG.md +0 -557
  5218. package/http/node_modules/js-yaml/LICENSE +0 -21
  5219. package/http/node_modules/js-yaml/README.md +0 -299
  5220. package/http/node_modules/js-yaml/bin/js-yaml.js +0 -132
  5221. package/http/node_modules/js-yaml/dist/js-yaml.js +0 -3989
  5222. package/http/node_modules/js-yaml/dist/js-yaml.min.js +0 -1
  5223. package/http/node_modules/js-yaml/index.js +0 -7
  5224. package/http/node_modules/js-yaml/lib/js-yaml/common.js +0 -59
  5225. package/http/node_modules/js-yaml/lib/js-yaml/dumper.js +0 -850
  5226. package/http/node_modules/js-yaml/lib/js-yaml/exception.js +0 -43
  5227. package/http/node_modules/js-yaml/lib/js-yaml/loader.js +0 -1644
  5228. package/http/node_modules/js-yaml/lib/js-yaml/mark.js +0 -76
  5229. package/http/node_modules/js-yaml/lib/js-yaml/schema/core.js +0 -18
  5230. package/http/node_modules/js-yaml/lib/js-yaml/schema/default_full.js +0 -25
  5231. package/http/node_modules/js-yaml/lib/js-yaml/schema/default_safe.js +0 -28
  5232. package/http/node_modules/js-yaml/lib/js-yaml/schema/failsafe.js +0 -17
  5233. package/http/node_modules/js-yaml/lib/js-yaml/schema/json.js +0 -25
  5234. package/http/node_modules/js-yaml/lib/js-yaml/schema.js +0 -108
  5235. package/http/node_modules/js-yaml/lib/js-yaml/type/binary.js +0 -138
  5236. package/http/node_modules/js-yaml/lib/js-yaml/type/bool.js +0 -35
  5237. package/http/node_modules/js-yaml/lib/js-yaml/type/float.js +0 -116
  5238. package/http/node_modules/js-yaml/lib/js-yaml/type/int.js +0 -173
  5239. package/http/node_modules/js-yaml/lib/js-yaml/type/js/function.js +0 -93
  5240. package/http/node_modules/js-yaml/lib/js-yaml/type/js/regexp.js +0 -60
  5241. package/http/node_modules/js-yaml/lib/js-yaml/type/js/undefined.js +0 -28
  5242. package/http/node_modules/js-yaml/lib/js-yaml/type/map.js +0 -8
  5243. package/http/node_modules/js-yaml/lib/js-yaml/type/merge.js +0 -12
  5244. package/http/node_modules/js-yaml/lib/js-yaml/type/null.js +0 -34
  5245. package/http/node_modules/js-yaml/lib/js-yaml/type/omap.js +0 -44
  5246. package/http/node_modules/js-yaml/lib/js-yaml/type/pairs.js +0 -53
  5247. package/http/node_modules/js-yaml/lib/js-yaml/type/seq.js +0 -8
  5248. package/http/node_modules/js-yaml/lib/js-yaml/type/set.js +0 -29
  5249. package/http/node_modules/js-yaml/lib/js-yaml/type/str.js +0 -8
  5250. package/http/node_modules/js-yaml/lib/js-yaml/type/timestamp.js +0 -88
  5251. package/http/node_modules/js-yaml/lib/js-yaml/type.js +0 -61
  5252. package/http/node_modules/js-yaml/lib/js-yaml.js +0 -39
  5253. package/http/node_modules/js-yaml/package.json +0 -95
  5254. package/http/node_modules/kind-of/CHANGELOG.md +0 -160
  5255. package/http/node_modules/kind-of/LICENSE +0 -21
  5256. package/http/node_modules/kind-of/README.md +0 -367
  5257. package/http/node_modules/kind-of/index.js +0 -129
  5258. package/http/node_modules/kind-of/package.json +0 -157
  5259. package/http/node_modules/liftoff/CHANGELOG +0 -127
  5260. package/http/node_modules/liftoff/LICENSE +0 -22
  5261. package/http/node_modules/liftoff/README.md +0 -451
  5262. package/http/node_modules/liftoff/index.js +0 -211
  5263. package/http/node_modules/liftoff/lib/build_config_name.js +0 -17
  5264. package/http/node_modules/liftoff/lib/file_search.js +0 -14
  5265. package/http/node_modules/liftoff/lib/find_config.js +0 -25
  5266. package/http/node_modules/liftoff/lib/find_cwd.js +0 -18
  5267. package/http/node_modules/liftoff/lib/get_node_flags.js +0 -30
  5268. package/http/node_modules/liftoff/lib/parse_options.js +0 -35
  5269. package/http/node_modules/liftoff/lib/register_loader.js +0 -24
  5270. package/http/node_modules/liftoff/lib/silent_require.js +0 -5
  5271. package/http/node_modules/liftoff/package.json +0 -84
  5272. package/http/node_modules/lodash/LICENSE +0 -47
  5273. package/http/node_modules/lodash/README.md +0 -39
  5274. package/http/node_modules/lodash/_DataView.js +0 -7
  5275. package/http/node_modules/lodash/_Hash.js +0 -32
  5276. package/http/node_modules/lodash/_LazyWrapper.js +0 -28
  5277. package/http/node_modules/lodash/_ListCache.js +0 -32
  5278. package/http/node_modules/lodash/_LodashWrapper.js +0 -22
  5279. package/http/node_modules/lodash/_Map.js +0 -7
  5280. package/http/node_modules/lodash/_MapCache.js +0 -32
  5281. package/http/node_modules/lodash/_Promise.js +0 -7
  5282. package/http/node_modules/lodash/_Set.js +0 -7
  5283. package/http/node_modules/lodash/_SetCache.js +0 -27
  5284. package/http/node_modules/lodash/_Stack.js +0 -27
  5285. package/http/node_modules/lodash/_Symbol.js +0 -6
  5286. package/http/node_modules/lodash/_Uint8Array.js +0 -6
  5287. package/http/node_modules/lodash/_WeakMap.js +0 -7
  5288. package/http/node_modules/lodash/_apply.js +0 -21
  5289. package/http/node_modules/lodash/_arrayAggregator.js +0 -22
  5290. package/http/node_modules/lodash/_arrayEach.js +0 -22
  5291. package/http/node_modules/lodash/_arrayEachRight.js +0 -21
  5292. package/http/node_modules/lodash/_arrayEvery.js +0 -23
  5293. package/http/node_modules/lodash/_arrayFilter.js +0 -25
  5294. package/http/node_modules/lodash/_arrayIncludes.js +0 -17
  5295. package/http/node_modules/lodash/_arrayIncludesWith.js +0 -22
  5296. package/http/node_modules/lodash/_arrayLikeKeys.js +0 -49
  5297. package/http/node_modules/lodash/_arrayMap.js +0 -21
  5298. package/http/node_modules/lodash/_arrayPush.js +0 -20
  5299. package/http/node_modules/lodash/_arrayReduce.js +0 -26
  5300. package/http/node_modules/lodash/_arrayReduceRight.js +0 -24
  5301. package/http/node_modules/lodash/_arraySample.js +0 -15
  5302. package/http/node_modules/lodash/_arraySampleSize.js +0 -17
  5303. package/http/node_modules/lodash/_arrayShuffle.js +0 -15
  5304. package/http/node_modules/lodash/_arraySome.js +0 -23
  5305. package/http/node_modules/lodash/_asciiSize.js +0 -12
  5306. package/http/node_modules/lodash/_asciiToArray.js +0 -12
  5307. package/http/node_modules/lodash/_asciiWords.js +0 -15
  5308. package/http/node_modules/lodash/_assignMergeValue.js +0 -20
  5309. package/http/node_modules/lodash/_assignValue.js +0 -28
  5310. package/http/node_modules/lodash/_assocIndexOf.js +0 -21
  5311. package/http/node_modules/lodash/_baseAggregator.js +0 -21
  5312. package/http/node_modules/lodash/_baseAssign.js +0 -17
  5313. package/http/node_modules/lodash/_baseAssignIn.js +0 -17
  5314. package/http/node_modules/lodash/_baseAssignValue.js +0 -25
  5315. package/http/node_modules/lodash/_baseAt.js +0 -23
  5316. package/http/node_modules/lodash/_baseClamp.js +0 -22
  5317. package/http/node_modules/lodash/_baseClone.js +0 -166
  5318. package/http/node_modules/lodash/_baseConforms.js +0 -18
  5319. package/http/node_modules/lodash/_baseConformsTo.js +0 -27
  5320. package/http/node_modules/lodash/_baseCreate.js +0 -30
  5321. package/http/node_modules/lodash/_baseDelay.js +0 -21
  5322. package/http/node_modules/lodash/_baseDifference.js +0 -67
  5323. package/http/node_modules/lodash/_baseEach.js +0 -14
  5324. package/http/node_modules/lodash/_baseEachRight.js +0 -14
  5325. package/http/node_modules/lodash/_baseEvery.js +0 -21
  5326. package/http/node_modules/lodash/_baseExtremum.js +0 -32
  5327. package/http/node_modules/lodash/_baseFill.js +0 -32
  5328. package/http/node_modules/lodash/_baseFilter.js +0 -21
  5329. package/http/node_modules/lodash/_baseFindIndex.js +0 -24
  5330. package/http/node_modules/lodash/_baseFindKey.js +0 -23
  5331. package/http/node_modules/lodash/_baseFlatten.js +0 -38
  5332. package/http/node_modules/lodash/_baseFor.js +0 -16
  5333. package/http/node_modules/lodash/_baseForOwn.js +0 -16
  5334. package/http/node_modules/lodash/_baseForOwnRight.js +0 -16
  5335. package/http/node_modules/lodash/_baseForRight.js +0 -15
  5336. package/http/node_modules/lodash/_baseFunctions.js +0 -19
  5337. package/http/node_modules/lodash/_baseGet.js +0 -24
  5338. package/http/node_modules/lodash/_baseGetAllKeys.js +0 -20
  5339. package/http/node_modules/lodash/_baseGetTag.js +0 -28
  5340. package/http/node_modules/lodash/_baseGt.js +0 -14
  5341. package/http/node_modules/lodash/_baseHas.js +0 -19
  5342. package/http/node_modules/lodash/_baseHasIn.js +0 -13
  5343. package/http/node_modules/lodash/_baseInRange.js +0 -18
  5344. package/http/node_modules/lodash/_baseIndexOf.js +0 -20
  5345. package/http/node_modules/lodash/_baseIndexOfWith.js +0 -23
  5346. package/http/node_modules/lodash/_baseIntersection.js +0 -74
  5347. package/http/node_modules/lodash/_baseInverter.js +0 -21
  5348. package/http/node_modules/lodash/_baseInvoke.js +0 -24
  5349. package/http/node_modules/lodash/_baseIsArguments.js +0 -18
  5350. package/http/node_modules/lodash/_baseIsArrayBuffer.js +0 -17
  5351. package/http/node_modules/lodash/_baseIsDate.js +0 -18
  5352. package/http/node_modules/lodash/_baseIsEqual.js +0 -28
  5353. package/http/node_modules/lodash/_baseIsEqualDeep.js +0 -83
  5354. package/http/node_modules/lodash/_baseIsMap.js +0 -18
  5355. package/http/node_modules/lodash/_baseIsMatch.js +0 -62
  5356. package/http/node_modules/lodash/_baseIsNaN.js +0 -12
  5357. package/http/node_modules/lodash/_baseIsNative.js +0 -47
  5358. package/http/node_modules/lodash/_baseIsRegExp.js +0 -18
  5359. package/http/node_modules/lodash/_baseIsSet.js +0 -18
  5360. package/http/node_modules/lodash/_baseIsTypedArray.js +0 -60
  5361. package/http/node_modules/lodash/_baseIteratee.js +0 -31
  5362. package/http/node_modules/lodash/_baseKeys.js +0 -30
  5363. package/http/node_modules/lodash/_baseKeysIn.js +0 -33
  5364. package/http/node_modules/lodash/_baseLodash.js +0 -10
  5365. package/http/node_modules/lodash/_baseLt.js +0 -14
  5366. package/http/node_modules/lodash/_baseMap.js +0 -22
  5367. package/http/node_modules/lodash/_baseMatches.js +0 -22
  5368. package/http/node_modules/lodash/_baseMatchesProperty.js +0 -33
  5369. package/http/node_modules/lodash/_baseMean.js +0 -20
  5370. package/http/node_modules/lodash/_baseMerge.js +0 -42
  5371. package/http/node_modules/lodash/_baseMergeDeep.js +0 -94
  5372. package/http/node_modules/lodash/_baseNth.js +0 -20
  5373. package/http/node_modules/lodash/_baseOrderBy.js +0 -49
  5374. package/http/node_modules/lodash/_basePick.js +0 -19
  5375. package/http/node_modules/lodash/_basePickBy.js +0 -30
  5376. package/http/node_modules/lodash/_baseProperty.js +0 -14
  5377. package/http/node_modules/lodash/_basePropertyDeep.js +0 -16
  5378. package/http/node_modules/lodash/_basePropertyOf.js +0 -14
  5379. package/http/node_modules/lodash/_basePullAll.js +0 -51
  5380. package/http/node_modules/lodash/_basePullAt.js +0 -37
  5381. package/http/node_modules/lodash/_baseRandom.js +0 -18
  5382. package/http/node_modules/lodash/_baseRange.js +0 -28
  5383. package/http/node_modules/lodash/_baseReduce.js +0 -23
  5384. package/http/node_modules/lodash/_baseRepeat.js +0 -35
  5385. package/http/node_modules/lodash/_baseRest.js +0 -17
  5386. package/http/node_modules/lodash/_baseSample.js +0 -15
  5387. package/http/node_modules/lodash/_baseSampleSize.js +0 -18
  5388. package/http/node_modules/lodash/_baseSet.js +0 -51
  5389. package/http/node_modules/lodash/_baseSetData.js +0 -17
  5390. package/http/node_modules/lodash/_baseSetToString.js +0 -22
  5391. package/http/node_modules/lodash/_baseShuffle.js +0 -15
  5392. package/http/node_modules/lodash/_baseSlice.js +0 -31
  5393. package/http/node_modules/lodash/_baseSome.js +0 -22
  5394. package/http/node_modules/lodash/_baseSortBy.js +0 -21
  5395. package/http/node_modules/lodash/_baseSortedIndex.js +0 -42
  5396. package/http/node_modules/lodash/_baseSortedIndexBy.js +0 -67
  5397. package/http/node_modules/lodash/_baseSortedUniq.js +0 -30
  5398. package/http/node_modules/lodash/_baseSum.js +0 -24
  5399. package/http/node_modules/lodash/_baseTimes.js +0 -20
  5400. package/http/node_modules/lodash/_baseToNumber.js +0 -24
  5401. package/http/node_modules/lodash/_baseToPairs.js +0 -18
  5402. package/http/node_modules/lodash/_baseToString.js +0 -37
  5403. package/http/node_modules/lodash/_baseUnary.js +0 -14
  5404. package/http/node_modules/lodash/_baseUniq.js +0 -72
  5405. package/http/node_modules/lodash/_baseUnset.js +0 -20
  5406. package/http/node_modules/lodash/_baseUpdate.js +0 -18
  5407. package/http/node_modules/lodash/_baseValues.js +0 -19
  5408. package/http/node_modules/lodash/_baseWhile.js +0 -26
  5409. package/http/node_modules/lodash/_baseWrapperValue.js +0 -25
  5410. package/http/node_modules/lodash/_baseXor.js +0 -36
  5411. package/http/node_modules/lodash/_baseZipObject.js +0 -23
  5412. package/http/node_modules/lodash/_cacheHas.js +0 -13
  5413. package/http/node_modules/lodash/_castArrayLikeObject.js +0 -14
  5414. package/http/node_modules/lodash/_castFunction.js +0 -14
  5415. package/http/node_modules/lodash/_castPath.js +0 -21
  5416. package/http/node_modules/lodash/_castRest.js +0 -14
  5417. package/http/node_modules/lodash/_castSlice.js +0 -18
  5418. package/http/node_modules/lodash/_charsEndIndex.js +0 -19
  5419. package/http/node_modules/lodash/_charsStartIndex.js +0 -20
  5420. package/http/node_modules/lodash/_cloneArrayBuffer.js +0 -16
  5421. package/http/node_modules/lodash/_cloneBuffer.js +0 -35
  5422. package/http/node_modules/lodash/_cloneDataView.js +0 -16
  5423. package/http/node_modules/lodash/_cloneRegExp.js +0 -17
  5424. package/http/node_modules/lodash/_cloneSymbol.js +0 -18
  5425. package/http/node_modules/lodash/_cloneTypedArray.js +0 -16
  5426. package/http/node_modules/lodash/_compareAscending.js +0 -41
  5427. package/http/node_modules/lodash/_compareMultiple.js +0 -44
  5428. package/http/node_modules/lodash/_composeArgs.js +0 -39
  5429. package/http/node_modules/lodash/_composeArgsRight.js +0 -41
  5430. package/http/node_modules/lodash/_copyArray.js +0 -20
  5431. package/http/node_modules/lodash/_copyObject.js +0 -40
  5432. package/http/node_modules/lodash/_copySymbols.js +0 -16
  5433. package/http/node_modules/lodash/_copySymbolsIn.js +0 -16
  5434. package/http/node_modules/lodash/_coreJsData.js +0 -6
  5435. package/http/node_modules/lodash/_countHolders.js +0 -21
  5436. package/http/node_modules/lodash/_createAggregator.js +0 -23
  5437. package/http/node_modules/lodash/_createAssigner.js +0 -37
  5438. package/http/node_modules/lodash/_createBaseEach.js +0 -32
  5439. package/http/node_modules/lodash/_createBaseFor.js +0 -25
  5440. package/http/node_modules/lodash/_createBind.js +0 -28
  5441. package/http/node_modules/lodash/_createCaseFirst.js +0 -33
  5442. package/http/node_modules/lodash/_createCompounder.js +0 -24
  5443. package/http/node_modules/lodash/_createCtor.js +0 -37
  5444. package/http/node_modules/lodash/_createCurry.js +0 -46
  5445. package/http/node_modules/lodash/_createFind.js +0 -25
  5446. package/http/node_modules/lodash/_createFlow.js +0 -78
  5447. package/http/node_modules/lodash/_createHybrid.js +0 -92
  5448. package/http/node_modules/lodash/_createInverter.js +0 -17
  5449. package/http/node_modules/lodash/_createMathOperation.js +0 -38
  5450. package/http/node_modules/lodash/_createOver.js +0 -27
  5451. package/http/node_modules/lodash/_createPadding.js +0 -33
  5452. package/http/node_modules/lodash/_createPartial.js +0 -43
  5453. package/http/node_modules/lodash/_createRange.js +0 -30
  5454. package/http/node_modules/lodash/_createRecurry.js +0 -56
  5455. package/http/node_modules/lodash/_createRelationalOperation.js +0 -20
  5456. package/http/node_modules/lodash/_createRound.js +0 -35
  5457. package/http/node_modules/lodash/_createSet.js +0 -19
  5458. package/http/node_modules/lodash/_createToPairs.js +0 -30
  5459. package/http/node_modules/lodash/_createWrap.js +0 -106
  5460. package/http/node_modules/lodash/_customDefaultsAssignIn.js +0 -29
  5461. package/http/node_modules/lodash/_customDefaultsMerge.js +0 -28
  5462. package/http/node_modules/lodash/_customOmitClone.js +0 -16
  5463. package/http/node_modules/lodash/_deburrLetter.js +0 -71
  5464. package/http/node_modules/lodash/_defineProperty.js +0 -11
  5465. package/http/node_modules/lodash/_equalArrays.js +0 -84
  5466. package/http/node_modules/lodash/_equalByTag.js +0 -112
  5467. package/http/node_modules/lodash/_equalObjects.js +0 -90
  5468. package/http/node_modules/lodash/_escapeHtmlChar.js +0 -21
  5469. package/http/node_modules/lodash/_escapeStringChar.js +0 -22
  5470. package/http/node_modules/lodash/_flatRest.js +0 -16
  5471. package/http/node_modules/lodash/_freeGlobal.js +0 -4
  5472. package/http/node_modules/lodash/_getAllKeys.js +0 -16
  5473. package/http/node_modules/lodash/_getAllKeysIn.js +0 -17
  5474. package/http/node_modules/lodash/_getData.js +0 -15
  5475. package/http/node_modules/lodash/_getFuncName.js +0 -31
  5476. package/http/node_modules/lodash/_getHolder.js +0 -13
  5477. package/http/node_modules/lodash/_getMapData.js +0 -18
  5478. package/http/node_modules/lodash/_getMatchData.js +0 -24
  5479. package/http/node_modules/lodash/_getNative.js +0 -17
  5480. package/http/node_modules/lodash/_getPrototype.js +0 -6
  5481. package/http/node_modules/lodash/_getRawTag.js +0 -46
  5482. package/http/node_modules/lodash/_getSymbols.js +0 -30
  5483. package/http/node_modules/lodash/_getSymbolsIn.js +0 -25
  5484. package/http/node_modules/lodash/_getTag.js +0 -58
  5485. package/http/node_modules/lodash/_getValue.js +0 -13
  5486. package/http/node_modules/lodash/_getView.js +0 -33
  5487. package/http/node_modules/lodash/_getWrapDetails.js +0 -17
  5488. package/http/node_modules/lodash/_hasPath.js +0 -39
  5489. package/http/node_modules/lodash/_hasUnicode.js +0 -26
  5490. package/http/node_modules/lodash/_hasUnicodeWord.js +0 -15
  5491. package/http/node_modules/lodash/_hashClear.js +0 -15
  5492. package/http/node_modules/lodash/_hashDelete.js +0 -17
  5493. package/http/node_modules/lodash/_hashGet.js +0 -30
  5494. package/http/node_modules/lodash/_hashHas.js +0 -23
  5495. package/http/node_modules/lodash/_hashSet.js +0 -23
  5496. package/http/node_modules/lodash/_initCloneArray.js +0 -26
  5497. package/http/node_modules/lodash/_initCloneByTag.js +0 -77
  5498. package/http/node_modules/lodash/_initCloneObject.js +0 -18
  5499. package/http/node_modules/lodash/_insertWrapDetails.js +0 -23
  5500. package/http/node_modules/lodash/_isFlattenable.js +0 -20
  5501. package/http/node_modules/lodash/_isIndex.js +0 -25
  5502. package/http/node_modules/lodash/_isIterateeCall.js +0 -30
  5503. package/http/node_modules/lodash/_isKey.js +0 -29
  5504. package/http/node_modules/lodash/_isKeyable.js +0 -15
  5505. package/http/node_modules/lodash/_isLaziable.js +0 -28
  5506. package/http/node_modules/lodash/_isMaskable.js +0 -14
  5507. package/http/node_modules/lodash/_isMasked.js +0 -20
  5508. package/http/node_modules/lodash/_isPrototype.js +0 -18
  5509. package/http/node_modules/lodash/_isStrictComparable.js +0 -15
  5510. package/http/node_modules/lodash/_iteratorToArray.js +0 -18
  5511. package/http/node_modules/lodash/_lazyClone.js +0 -23
  5512. package/http/node_modules/lodash/_lazyReverse.js +0 -23
  5513. package/http/node_modules/lodash/_lazyValue.js +0 -69
  5514. package/http/node_modules/lodash/_listCacheClear.js +0 -13
  5515. package/http/node_modules/lodash/_listCacheDelete.js +0 -35
  5516. package/http/node_modules/lodash/_listCacheGet.js +0 -19
  5517. package/http/node_modules/lodash/_listCacheHas.js +0 -16
  5518. package/http/node_modules/lodash/_listCacheSet.js +0 -26
  5519. package/http/node_modules/lodash/_mapCacheClear.js +0 -21
  5520. package/http/node_modules/lodash/_mapCacheDelete.js +0 -18
  5521. package/http/node_modules/lodash/_mapCacheGet.js +0 -16
  5522. package/http/node_modules/lodash/_mapCacheHas.js +0 -16
  5523. package/http/node_modules/lodash/_mapCacheSet.js +0 -22
  5524. package/http/node_modules/lodash/_mapToArray.js +0 -18
  5525. package/http/node_modules/lodash/_matchesStrictComparable.js +0 -20
  5526. package/http/node_modules/lodash/_memoizeCapped.js +0 -26
  5527. package/http/node_modules/lodash/_mergeData.js +0 -90
  5528. package/http/node_modules/lodash/_metaMap.js +0 -6
  5529. package/http/node_modules/lodash/_nativeCreate.js +0 -6
  5530. package/http/node_modules/lodash/_nativeKeys.js +0 -6
  5531. package/http/node_modules/lodash/_nativeKeysIn.js +0 -20
  5532. package/http/node_modules/lodash/_nodeUtil.js +0 -30
  5533. package/http/node_modules/lodash/_objectToString.js +0 -22
  5534. package/http/node_modules/lodash/_overArg.js +0 -15
  5535. package/http/node_modules/lodash/_overRest.js +0 -36
  5536. package/http/node_modules/lodash/_parent.js +0 -16
  5537. package/http/node_modules/lodash/_reEscape.js +0 -4
  5538. package/http/node_modules/lodash/_reEvaluate.js +0 -4
  5539. package/http/node_modules/lodash/_reInterpolate.js +0 -4
  5540. package/http/node_modules/lodash/_realNames.js +0 -4
  5541. package/http/node_modules/lodash/_reorder.js +0 -29
  5542. package/http/node_modules/lodash/_replaceHolders.js +0 -29
  5543. package/http/node_modules/lodash/_root.js +0 -9
  5544. package/http/node_modules/lodash/_safeGet.js +0 -21
  5545. package/http/node_modules/lodash/_setCacheAdd.js +0 -19
  5546. package/http/node_modules/lodash/_setCacheHas.js +0 -14
  5547. package/http/node_modules/lodash/_setData.js +0 -20
  5548. package/http/node_modules/lodash/_setToArray.js +0 -18
  5549. package/http/node_modules/lodash/_setToPairs.js +0 -18
  5550. package/http/node_modules/lodash/_setToString.js +0 -14
  5551. package/http/node_modules/lodash/_setWrapToString.js +0 -21
  5552. package/http/node_modules/lodash/_shortOut.js +0 -37
  5553. package/http/node_modules/lodash/_shuffleSelf.js +0 -28
  5554. package/http/node_modules/lodash/_stackClear.js +0 -15
  5555. package/http/node_modules/lodash/_stackDelete.js +0 -18
  5556. package/http/node_modules/lodash/_stackGet.js +0 -14
  5557. package/http/node_modules/lodash/_stackHas.js +0 -14
  5558. package/http/node_modules/lodash/_stackSet.js +0 -34
  5559. package/http/node_modules/lodash/_strictIndexOf.js +0 -23
  5560. package/http/node_modules/lodash/_strictLastIndexOf.js +0 -21
  5561. package/http/node_modules/lodash/_stringSize.js +0 -18
  5562. package/http/node_modules/lodash/_stringToArray.js +0 -18
  5563. package/http/node_modules/lodash/_stringToPath.js +0 -27
  5564. package/http/node_modules/lodash/_toKey.js +0 -21
  5565. package/http/node_modules/lodash/_toSource.js +0 -26
  5566. package/http/node_modules/lodash/_unescapeHtmlChar.js +0 -21
  5567. package/http/node_modules/lodash/_unicodeSize.js +0 -44
  5568. package/http/node_modules/lodash/_unicodeToArray.js +0 -40
  5569. package/http/node_modules/lodash/_unicodeWords.js +0 -69
  5570. package/http/node_modules/lodash/_updateWrapDetails.js +0 -46
  5571. package/http/node_modules/lodash/_wrapperClone.js +0 -23
  5572. package/http/node_modules/lodash/add.js +0 -22
  5573. package/http/node_modules/lodash/after.js +0 -42
  5574. package/http/node_modules/lodash/array.js +0 -67
  5575. package/http/node_modules/lodash/ary.js +0 -29
  5576. package/http/node_modules/lodash/assign.js +0 -58
  5577. package/http/node_modules/lodash/assignIn.js +0 -40
  5578. package/http/node_modules/lodash/assignInWith.js +0 -38
  5579. package/http/node_modules/lodash/assignWith.js +0 -37
  5580. package/http/node_modules/lodash/at.js +0 -23
  5581. package/http/node_modules/lodash/attempt.js +0 -35
  5582. package/http/node_modules/lodash/before.js +0 -40
  5583. package/http/node_modules/lodash/bind.js +0 -57
  5584. package/http/node_modules/lodash/bindAll.js +0 -41
  5585. package/http/node_modules/lodash/bindKey.js +0 -68
  5586. package/http/node_modules/lodash/camelCase.js +0 -29
  5587. package/http/node_modules/lodash/capitalize.js +0 -23
  5588. package/http/node_modules/lodash/castArray.js +0 -44
  5589. package/http/node_modules/lodash/ceil.js +0 -26
  5590. package/http/node_modules/lodash/chain.js +0 -38
  5591. package/http/node_modules/lodash/chunk.js +0 -50
  5592. package/http/node_modules/lodash/clamp.js +0 -39
  5593. package/http/node_modules/lodash/clone.js +0 -36
  5594. package/http/node_modules/lodash/cloneDeep.js +0 -29
  5595. package/http/node_modules/lodash/cloneDeepWith.js +0 -40
  5596. package/http/node_modules/lodash/cloneWith.js +0 -42
  5597. package/http/node_modules/lodash/collection.js +0 -30
  5598. package/http/node_modules/lodash/commit.js +0 -33
  5599. package/http/node_modules/lodash/compact.js +0 -31
  5600. package/http/node_modules/lodash/concat.js +0 -43
  5601. package/http/node_modules/lodash/cond.js +0 -60
  5602. package/http/node_modules/lodash/conforms.js +0 -35
  5603. package/http/node_modules/lodash/conformsTo.js +0 -32
  5604. package/http/node_modules/lodash/constant.js +0 -26
  5605. package/http/node_modules/lodash/core.js +0 -3877
  5606. package/http/node_modules/lodash/core.min.js +0 -30
  5607. package/http/node_modules/lodash/countBy.js +0 -40
  5608. package/http/node_modules/lodash/create.js +0 -43
  5609. package/http/node_modules/lodash/curry.js +0 -57
  5610. package/http/node_modules/lodash/curryRight.js +0 -54
  5611. package/http/node_modules/lodash/date.js +0 -3
  5612. package/http/node_modules/lodash/debounce.js +0 -191
  5613. package/http/node_modules/lodash/deburr.js +0 -45
  5614. package/http/node_modules/lodash/defaultTo.js +0 -25
  5615. package/http/node_modules/lodash/defaults.js +0 -64
  5616. package/http/node_modules/lodash/defaultsDeep.js +0 -30
  5617. package/http/node_modules/lodash/defer.js +0 -26
  5618. package/http/node_modules/lodash/delay.js +0 -28
  5619. package/http/node_modules/lodash/difference.js +0 -33
  5620. package/http/node_modules/lodash/differenceBy.js +0 -44
  5621. package/http/node_modules/lodash/differenceWith.js +0 -40
  5622. package/http/node_modules/lodash/divide.js +0 -22
  5623. package/http/node_modules/lodash/drop.js +0 -38
  5624. package/http/node_modules/lodash/dropRight.js +0 -39
  5625. package/http/node_modules/lodash/dropRightWhile.js +0 -45
  5626. package/http/node_modules/lodash/dropWhile.js +0 -45
  5627. package/http/node_modules/lodash/each.js +0 -1
  5628. package/http/node_modules/lodash/eachRight.js +0 -1
  5629. package/http/node_modules/lodash/endsWith.js +0 -43
  5630. package/http/node_modules/lodash/entries.js +0 -1
  5631. package/http/node_modules/lodash/entriesIn.js +0 -1
  5632. package/http/node_modules/lodash/eq.js +0 -37
  5633. package/http/node_modules/lodash/escape.js +0 -43
  5634. package/http/node_modules/lodash/escapeRegExp.js +0 -32
  5635. package/http/node_modules/lodash/every.js +0 -56
  5636. package/http/node_modules/lodash/extend.js +0 -1
  5637. package/http/node_modules/lodash/extendWith.js +0 -1
  5638. package/http/node_modules/lodash/fill.js +0 -45
  5639. package/http/node_modules/lodash/filter.js +0 -52
  5640. package/http/node_modules/lodash/find.js +0 -42
  5641. package/http/node_modules/lodash/findIndex.js +0 -55
  5642. package/http/node_modules/lodash/findKey.js +0 -44
  5643. package/http/node_modules/lodash/findLast.js +0 -25
  5644. package/http/node_modules/lodash/findLastIndex.js +0 -59
  5645. package/http/node_modules/lodash/findLastKey.js +0 -44
  5646. package/http/node_modules/lodash/first.js +0 -1
  5647. package/http/node_modules/lodash/flatMap.js +0 -29
  5648. package/http/node_modules/lodash/flatMapDeep.js +0 -31
  5649. package/http/node_modules/lodash/flatMapDepth.js +0 -31
  5650. package/http/node_modules/lodash/flatten.js +0 -22
  5651. package/http/node_modules/lodash/flattenDeep.js +0 -25
  5652. package/http/node_modules/lodash/flattenDepth.js +0 -33
  5653. package/http/node_modules/lodash/flip.js +0 -28
  5654. package/http/node_modules/lodash/floor.js +0 -26
  5655. package/http/node_modules/lodash/flow.js +0 -27
  5656. package/http/node_modules/lodash/flowRight.js +0 -26
  5657. package/http/node_modules/lodash/forEach.js +0 -41
  5658. package/http/node_modules/lodash/forEachRight.js +0 -31
  5659. package/http/node_modules/lodash/forIn.js +0 -39
  5660. package/http/node_modules/lodash/forInRight.js +0 -37
  5661. package/http/node_modules/lodash/forOwn.js +0 -36
  5662. package/http/node_modules/lodash/forOwnRight.js +0 -34
  5663. package/http/node_modules/lodash/fp/F.js +0 -1
  5664. package/http/node_modules/lodash/fp/T.js +0 -1
  5665. package/http/node_modules/lodash/fp/__.js +0 -1
  5666. package/http/node_modules/lodash/fp/_baseConvert.js +0 -569
  5667. package/http/node_modules/lodash/fp/_convertBrowser.js +0 -18
  5668. package/http/node_modules/lodash/fp/_falseOptions.js +0 -7
  5669. package/http/node_modules/lodash/fp/_mapping.js +0 -358
  5670. package/http/node_modules/lodash/fp/_util.js +0 -16
  5671. package/http/node_modules/lodash/fp/add.js +0 -5
  5672. package/http/node_modules/lodash/fp/after.js +0 -5
  5673. package/http/node_modules/lodash/fp/all.js +0 -1
  5674. package/http/node_modules/lodash/fp/allPass.js +0 -1
  5675. package/http/node_modules/lodash/fp/always.js +0 -1
  5676. package/http/node_modules/lodash/fp/any.js +0 -1
  5677. package/http/node_modules/lodash/fp/anyPass.js +0 -1
  5678. package/http/node_modules/lodash/fp/apply.js +0 -1
  5679. package/http/node_modules/lodash/fp/array.js +0 -2
  5680. package/http/node_modules/lodash/fp/ary.js +0 -5
  5681. package/http/node_modules/lodash/fp/assign.js +0 -5
  5682. package/http/node_modules/lodash/fp/assignAll.js +0 -5
  5683. package/http/node_modules/lodash/fp/assignAllWith.js +0 -5
  5684. package/http/node_modules/lodash/fp/assignIn.js +0 -5
  5685. package/http/node_modules/lodash/fp/assignInAll.js +0 -5
  5686. package/http/node_modules/lodash/fp/assignInAllWith.js +0 -5
  5687. package/http/node_modules/lodash/fp/assignInWith.js +0 -5
  5688. package/http/node_modules/lodash/fp/assignWith.js +0 -5
  5689. package/http/node_modules/lodash/fp/assoc.js +0 -1
  5690. package/http/node_modules/lodash/fp/assocPath.js +0 -1
  5691. package/http/node_modules/lodash/fp/at.js +0 -5
  5692. package/http/node_modules/lodash/fp/attempt.js +0 -5
  5693. package/http/node_modules/lodash/fp/before.js +0 -5
  5694. package/http/node_modules/lodash/fp/bind.js +0 -5
  5695. package/http/node_modules/lodash/fp/bindAll.js +0 -5
  5696. package/http/node_modules/lodash/fp/bindKey.js +0 -5
  5697. package/http/node_modules/lodash/fp/camelCase.js +0 -5
  5698. package/http/node_modules/lodash/fp/capitalize.js +0 -5
  5699. package/http/node_modules/lodash/fp/castArray.js +0 -5
  5700. package/http/node_modules/lodash/fp/ceil.js +0 -5
  5701. package/http/node_modules/lodash/fp/chain.js +0 -5
  5702. package/http/node_modules/lodash/fp/chunk.js +0 -5
  5703. package/http/node_modules/lodash/fp/clamp.js +0 -5
  5704. package/http/node_modules/lodash/fp/clone.js +0 -5
  5705. package/http/node_modules/lodash/fp/cloneDeep.js +0 -5
  5706. package/http/node_modules/lodash/fp/cloneDeepWith.js +0 -5
  5707. package/http/node_modules/lodash/fp/cloneWith.js +0 -5
  5708. package/http/node_modules/lodash/fp/collection.js +0 -2
  5709. package/http/node_modules/lodash/fp/commit.js +0 -5
  5710. package/http/node_modules/lodash/fp/compact.js +0 -5
  5711. package/http/node_modules/lodash/fp/complement.js +0 -1
  5712. package/http/node_modules/lodash/fp/compose.js +0 -1
  5713. package/http/node_modules/lodash/fp/concat.js +0 -5
  5714. package/http/node_modules/lodash/fp/cond.js +0 -5
  5715. package/http/node_modules/lodash/fp/conforms.js +0 -1
  5716. package/http/node_modules/lodash/fp/conformsTo.js +0 -5
  5717. package/http/node_modules/lodash/fp/constant.js +0 -5
  5718. package/http/node_modules/lodash/fp/contains.js +0 -1
  5719. package/http/node_modules/lodash/fp/convert.js +0 -18
  5720. package/http/node_modules/lodash/fp/countBy.js +0 -5
  5721. package/http/node_modules/lodash/fp/create.js +0 -5
  5722. package/http/node_modules/lodash/fp/curry.js +0 -5
  5723. package/http/node_modules/lodash/fp/curryN.js +0 -5
  5724. package/http/node_modules/lodash/fp/curryRight.js +0 -5
  5725. package/http/node_modules/lodash/fp/curryRightN.js +0 -5
  5726. package/http/node_modules/lodash/fp/date.js +0 -2
  5727. package/http/node_modules/lodash/fp/debounce.js +0 -5
  5728. package/http/node_modules/lodash/fp/deburr.js +0 -5
  5729. package/http/node_modules/lodash/fp/defaultTo.js +0 -5
  5730. package/http/node_modules/lodash/fp/defaults.js +0 -5
  5731. package/http/node_modules/lodash/fp/defaultsAll.js +0 -5
  5732. package/http/node_modules/lodash/fp/defaultsDeep.js +0 -5
  5733. package/http/node_modules/lodash/fp/defaultsDeepAll.js +0 -5
  5734. package/http/node_modules/lodash/fp/defer.js +0 -5
  5735. package/http/node_modules/lodash/fp/delay.js +0 -5
  5736. package/http/node_modules/lodash/fp/difference.js +0 -5
  5737. package/http/node_modules/lodash/fp/differenceBy.js +0 -5
  5738. package/http/node_modules/lodash/fp/differenceWith.js +0 -5
  5739. package/http/node_modules/lodash/fp/dissoc.js +0 -1
  5740. package/http/node_modules/lodash/fp/dissocPath.js +0 -1
  5741. package/http/node_modules/lodash/fp/divide.js +0 -5
  5742. package/http/node_modules/lodash/fp/drop.js +0 -5
  5743. package/http/node_modules/lodash/fp/dropLast.js +0 -1
  5744. package/http/node_modules/lodash/fp/dropLastWhile.js +0 -1
  5745. package/http/node_modules/lodash/fp/dropRight.js +0 -5
  5746. package/http/node_modules/lodash/fp/dropRightWhile.js +0 -5
  5747. package/http/node_modules/lodash/fp/dropWhile.js +0 -5
  5748. package/http/node_modules/lodash/fp/each.js +0 -1
  5749. package/http/node_modules/lodash/fp/eachRight.js +0 -1
  5750. package/http/node_modules/lodash/fp/endsWith.js +0 -5
  5751. package/http/node_modules/lodash/fp/entries.js +0 -1
  5752. package/http/node_modules/lodash/fp/entriesIn.js +0 -1
  5753. package/http/node_modules/lodash/fp/eq.js +0 -5
  5754. package/http/node_modules/lodash/fp/equals.js +0 -1
  5755. package/http/node_modules/lodash/fp/escape.js +0 -5
  5756. package/http/node_modules/lodash/fp/escapeRegExp.js +0 -5
  5757. package/http/node_modules/lodash/fp/every.js +0 -5
  5758. package/http/node_modules/lodash/fp/extend.js +0 -1
  5759. package/http/node_modules/lodash/fp/extendAll.js +0 -1
  5760. package/http/node_modules/lodash/fp/extendAllWith.js +0 -1
  5761. package/http/node_modules/lodash/fp/extendWith.js +0 -1
  5762. package/http/node_modules/lodash/fp/fill.js +0 -5
  5763. package/http/node_modules/lodash/fp/filter.js +0 -5
  5764. package/http/node_modules/lodash/fp/find.js +0 -5
  5765. package/http/node_modules/lodash/fp/findFrom.js +0 -5
  5766. package/http/node_modules/lodash/fp/findIndex.js +0 -5
  5767. package/http/node_modules/lodash/fp/findIndexFrom.js +0 -5
  5768. package/http/node_modules/lodash/fp/findKey.js +0 -5
  5769. package/http/node_modules/lodash/fp/findLast.js +0 -5
  5770. package/http/node_modules/lodash/fp/findLastFrom.js +0 -5
  5771. package/http/node_modules/lodash/fp/findLastIndex.js +0 -5
  5772. package/http/node_modules/lodash/fp/findLastIndexFrom.js +0 -5
  5773. package/http/node_modules/lodash/fp/findLastKey.js +0 -5
  5774. package/http/node_modules/lodash/fp/first.js +0 -1
  5775. package/http/node_modules/lodash/fp/flatMap.js +0 -5
  5776. package/http/node_modules/lodash/fp/flatMapDeep.js +0 -5
  5777. package/http/node_modules/lodash/fp/flatMapDepth.js +0 -5
  5778. package/http/node_modules/lodash/fp/flatten.js +0 -5
  5779. package/http/node_modules/lodash/fp/flattenDeep.js +0 -5
  5780. package/http/node_modules/lodash/fp/flattenDepth.js +0 -5
  5781. package/http/node_modules/lodash/fp/flip.js +0 -5
  5782. package/http/node_modules/lodash/fp/floor.js +0 -5
  5783. package/http/node_modules/lodash/fp/flow.js +0 -5
  5784. package/http/node_modules/lodash/fp/flowRight.js +0 -5
  5785. package/http/node_modules/lodash/fp/forEach.js +0 -5
  5786. package/http/node_modules/lodash/fp/forEachRight.js +0 -5
  5787. package/http/node_modules/lodash/fp/forIn.js +0 -5
  5788. package/http/node_modules/lodash/fp/forInRight.js +0 -5
  5789. package/http/node_modules/lodash/fp/forOwn.js +0 -5
  5790. package/http/node_modules/lodash/fp/forOwnRight.js +0 -5
  5791. package/http/node_modules/lodash/fp/fromPairs.js +0 -5
  5792. package/http/node_modules/lodash/fp/function.js +0 -2
  5793. package/http/node_modules/lodash/fp/functions.js +0 -5
  5794. package/http/node_modules/lodash/fp/functionsIn.js +0 -5
  5795. package/http/node_modules/lodash/fp/get.js +0 -5
  5796. package/http/node_modules/lodash/fp/getOr.js +0 -5
  5797. package/http/node_modules/lodash/fp/groupBy.js +0 -5
  5798. package/http/node_modules/lodash/fp/gt.js +0 -5
  5799. package/http/node_modules/lodash/fp/gte.js +0 -5
  5800. package/http/node_modules/lodash/fp/has.js +0 -5
  5801. package/http/node_modules/lodash/fp/hasIn.js +0 -5
  5802. package/http/node_modules/lodash/fp/head.js +0 -5
  5803. package/http/node_modules/lodash/fp/identical.js +0 -1
  5804. package/http/node_modules/lodash/fp/identity.js +0 -5
  5805. package/http/node_modules/lodash/fp/inRange.js +0 -5
  5806. package/http/node_modules/lodash/fp/includes.js +0 -5
  5807. package/http/node_modules/lodash/fp/includesFrom.js +0 -5
  5808. package/http/node_modules/lodash/fp/indexBy.js +0 -1
  5809. package/http/node_modules/lodash/fp/indexOf.js +0 -5
  5810. package/http/node_modules/lodash/fp/indexOfFrom.js +0 -5
  5811. package/http/node_modules/lodash/fp/init.js +0 -1
  5812. package/http/node_modules/lodash/fp/initial.js +0 -5
  5813. package/http/node_modules/lodash/fp/intersection.js +0 -5
  5814. package/http/node_modules/lodash/fp/intersectionBy.js +0 -5
  5815. package/http/node_modules/lodash/fp/intersectionWith.js +0 -5
  5816. package/http/node_modules/lodash/fp/invert.js +0 -5
  5817. package/http/node_modules/lodash/fp/invertBy.js +0 -5
  5818. package/http/node_modules/lodash/fp/invertObj.js +0 -1
  5819. package/http/node_modules/lodash/fp/invoke.js +0 -5
  5820. package/http/node_modules/lodash/fp/invokeArgs.js +0 -5
  5821. package/http/node_modules/lodash/fp/invokeArgsMap.js +0 -5
  5822. package/http/node_modules/lodash/fp/invokeMap.js +0 -5
  5823. package/http/node_modules/lodash/fp/isArguments.js +0 -5
  5824. package/http/node_modules/lodash/fp/isArray.js +0 -5
  5825. package/http/node_modules/lodash/fp/isArrayBuffer.js +0 -5
  5826. package/http/node_modules/lodash/fp/isArrayLike.js +0 -5
  5827. package/http/node_modules/lodash/fp/isArrayLikeObject.js +0 -5
  5828. package/http/node_modules/lodash/fp/isBoolean.js +0 -5
  5829. package/http/node_modules/lodash/fp/isBuffer.js +0 -5
  5830. package/http/node_modules/lodash/fp/isDate.js +0 -5
  5831. package/http/node_modules/lodash/fp/isElement.js +0 -5
  5832. package/http/node_modules/lodash/fp/isEmpty.js +0 -5
  5833. package/http/node_modules/lodash/fp/isEqual.js +0 -5
  5834. package/http/node_modules/lodash/fp/isEqualWith.js +0 -5
  5835. package/http/node_modules/lodash/fp/isError.js +0 -5
  5836. package/http/node_modules/lodash/fp/isFinite.js +0 -5
  5837. package/http/node_modules/lodash/fp/isFunction.js +0 -5
  5838. package/http/node_modules/lodash/fp/isInteger.js +0 -5
  5839. package/http/node_modules/lodash/fp/isLength.js +0 -5
  5840. package/http/node_modules/lodash/fp/isMap.js +0 -5
  5841. package/http/node_modules/lodash/fp/isMatch.js +0 -5
  5842. package/http/node_modules/lodash/fp/isMatchWith.js +0 -5
  5843. package/http/node_modules/lodash/fp/isNaN.js +0 -5
  5844. package/http/node_modules/lodash/fp/isNative.js +0 -5
  5845. package/http/node_modules/lodash/fp/isNil.js +0 -5
  5846. package/http/node_modules/lodash/fp/isNull.js +0 -5
  5847. package/http/node_modules/lodash/fp/isNumber.js +0 -5
  5848. package/http/node_modules/lodash/fp/isObject.js +0 -5
  5849. package/http/node_modules/lodash/fp/isObjectLike.js +0 -5
  5850. package/http/node_modules/lodash/fp/isPlainObject.js +0 -5
  5851. package/http/node_modules/lodash/fp/isRegExp.js +0 -5
  5852. package/http/node_modules/lodash/fp/isSafeInteger.js +0 -5
  5853. package/http/node_modules/lodash/fp/isSet.js +0 -5
  5854. package/http/node_modules/lodash/fp/isString.js +0 -5
  5855. package/http/node_modules/lodash/fp/isSymbol.js +0 -5
  5856. package/http/node_modules/lodash/fp/isTypedArray.js +0 -5
  5857. package/http/node_modules/lodash/fp/isUndefined.js +0 -5
  5858. package/http/node_modules/lodash/fp/isWeakMap.js +0 -5
  5859. package/http/node_modules/lodash/fp/isWeakSet.js +0 -5
  5860. package/http/node_modules/lodash/fp/iteratee.js +0 -5
  5861. package/http/node_modules/lodash/fp/join.js +0 -5
  5862. package/http/node_modules/lodash/fp/juxt.js +0 -1
  5863. package/http/node_modules/lodash/fp/kebabCase.js +0 -5
  5864. package/http/node_modules/lodash/fp/keyBy.js +0 -5
  5865. package/http/node_modules/lodash/fp/keys.js +0 -5
  5866. package/http/node_modules/lodash/fp/keysIn.js +0 -5
  5867. package/http/node_modules/lodash/fp/lang.js +0 -2
  5868. package/http/node_modules/lodash/fp/last.js +0 -5
  5869. package/http/node_modules/lodash/fp/lastIndexOf.js +0 -5
  5870. package/http/node_modules/lodash/fp/lastIndexOfFrom.js +0 -5
  5871. package/http/node_modules/lodash/fp/lowerCase.js +0 -5
  5872. package/http/node_modules/lodash/fp/lowerFirst.js +0 -5
  5873. package/http/node_modules/lodash/fp/lt.js +0 -5
  5874. package/http/node_modules/lodash/fp/lte.js +0 -5
  5875. package/http/node_modules/lodash/fp/map.js +0 -5
  5876. package/http/node_modules/lodash/fp/mapKeys.js +0 -5
  5877. package/http/node_modules/lodash/fp/mapValues.js +0 -5
  5878. package/http/node_modules/lodash/fp/matches.js +0 -1
  5879. package/http/node_modules/lodash/fp/matchesProperty.js +0 -5
  5880. package/http/node_modules/lodash/fp/math.js +0 -2
  5881. package/http/node_modules/lodash/fp/max.js +0 -5
  5882. package/http/node_modules/lodash/fp/maxBy.js +0 -5
  5883. package/http/node_modules/lodash/fp/mean.js +0 -5
  5884. package/http/node_modules/lodash/fp/meanBy.js +0 -5
  5885. package/http/node_modules/lodash/fp/memoize.js +0 -5
  5886. package/http/node_modules/lodash/fp/merge.js +0 -5
  5887. package/http/node_modules/lodash/fp/mergeAll.js +0 -5
  5888. package/http/node_modules/lodash/fp/mergeAllWith.js +0 -5
  5889. package/http/node_modules/lodash/fp/mergeWith.js +0 -5
  5890. package/http/node_modules/lodash/fp/method.js +0 -5
  5891. package/http/node_modules/lodash/fp/methodOf.js +0 -5
  5892. package/http/node_modules/lodash/fp/min.js +0 -5
  5893. package/http/node_modules/lodash/fp/minBy.js +0 -5
  5894. package/http/node_modules/lodash/fp/mixin.js +0 -5
  5895. package/http/node_modules/lodash/fp/multiply.js +0 -5
  5896. package/http/node_modules/lodash/fp/nAry.js +0 -1
  5897. package/http/node_modules/lodash/fp/negate.js +0 -5
  5898. package/http/node_modules/lodash/fp/next.js +0 -5
  5899. package/http/node_modules/lodash/fp/noop.js +0 -5
  5900. package/http/node_modules/lodash/fp/now.js +0 -5
  5901. package/http/node_modules/lodash/fp/nth.js +0 -5
  5902. package/http/node_modules/lodash/fp/nthArg.js +0 -5
  5903. package/http/node_modules/lodash/fp/number.js +0 -2
  5904. package/http/node_modules/lodash/fp/object.js +0 -2
  5905. package/http/node_modules/lodash/fp/omit.js +0 -5
  5906. package/http/node_modules/lodash/fp/omitAll.js +0 -1
  5907. package/http/node_modules/lodash/fp/omitBy.js +0 -5
  5908. package/http/node_modules/lodash/fp/once.js +0 -5
  5909. package/http/node_modules/lodash/fp/orderBy.js +0 -5
  5910. package/http/node_modules/lodash/fp/over.js +0 -5
  5911. package/http/node_modules/lodash/fp/overArgs.js +0 -5
  5912. package/http/node_modules/lodash/fp/overEvery.js +0 -5
  5913. package/http/node_modules/lodash/fp/overSome.js +0 -5
  5914. package/http/node_modules/lodash/fp/pad.js +0 -5
  5915. package/http/node_modules/lodash/fp/padChars.js +0 -5
  5916. package/http/node_modules/lodash/fp/padCharsEnd.js +0 -5
  5917. package/http/node_modules/lodash/fp/padCharsStart.js +0 -5
  5918. package/http/node_modules/lodash/fp/padEnd.js +0 -5
  5919. package/http/node_modules/lodash/fp/padStart.js +0 -5
  5920. package/http/node_modules/lodash/fp/parseInt.js +0 -5
  5921. package/http/node_modules/lodash/fp/partial.js +0 -5
  5922. package/http/node_modules/lodash/fp/partialRight.js +0 -5
  5923. package/http/node_modules/lodash/fp/partition.js +0 -5
  5924. package/http/node_modules/lodash/fp/path.js +0 -1
  5925. package/http/node_modules/lodash/fp/pathEq.js +0 -1
  5926. package/http/node_modules/lodash/fp/pathOr.js +0 -1
  5927. package/http/node_modules/lodash/fp/paths.js +0 -1
  5928. package/http/node_modules/lodash/fp/pick.js +0 -5
  5929. package/http/node_modules/lodash/fp/pickAll.js +0 -1
  5930. package/http/node_modules/lodash/fp/pickBy.js +0 -5
  5931. package/http/node_modules/lodash/fp/pipe.js +0 -1
  5932. package/http/node_modules/lodash/fp/placeholder.js +0 -6
  5933. package/http/node_modules/lodash/fp/plant.js +0 -5
  5934. package/http/node_modules/lodash/fp/pluck.js +0 -1
  5935. package/http/node_modules/lodash/fp/prop.js +0 -1
  5936. package/http/node_modules/lodash/fp/propEq.js +0 -1
  5937. package/http/node_modules/lodash/fp/propOr.js +0 -1
  5938. package/http/node_modules/lodash/fp/property.js +0 -1
  5939. package/http/node_modules/lodash/fp/propertyOf.js +0 -5
  5940. package/http/node_modules/lodash/fp/props.js +0 -1
  5941. package/http/node_modules/lodash/fp/pull.js +0 -5
  5942. package/http/node_modules/lodash/fp/pullAll.js +0 -5
  5943. package/http/node_modules/lodash/fp/pullAllBy.js +0 -5
  5944. package/http/node_modules/lodash/fp/pullAllWith.js +0 -5
  5945. package/http/node_modules/lodash/fp/pullAt.js +0 -5
  5946. package/http/node_modules/lodash/fp/random.js +0 -5
  5947. package/http/node_modules/lodash/fp/range.js +0 -5
  5948. package/http/node_modules/lodash/fp/rangeRight.js +0 -5
  5949. package/http/node_modules/lodash/fp/rangeStep.js +0 -5
  5950. package/http/node_modules/lodash/fp/rangeStepRight.js +0 -5
  5951. package/http/node_modules/lodash/fp/rearg.js +0 -5
  5952. package/http/node_modules/lodash/fp/reduce.js +0 -5
  5953. package/http/node_modules/lodash/fp/reduceRight.js +0 -5
  5954. package/http/node_modules/lodash/fp/reject.js +0 -5
  5955. package/http/node_modules/lodash/fp/remove.js +0 -5
  5956. package/http/node_modules/lodash/fp/repeat.js +0 -5
  5957. package/http/node_modules/lodash/fp/replace.js +0 -5
  5958. package/http/node_modules/lodash/fp/rest.js +0 -5
  5959. package/http/node_modules/lodash/fp/restFrom.js +0 -5
  5960. package/http/node_modules/lodash/fp/result.js +0 -5
  5961. package/http/node_modules/lodash/fp/reverse.js +0 -5
  5962. package/http/node_modules/lodash/fp/round.js +0 -5
  5963. package/http/node_modules/lodash/fp/sample.js +0 -5
  5964. package/http/node_modules/lodash/fp/sampleSize.js +0 -5
  5965. package/http/node_modules/lodash/fp/seq.js +0 -2
  5966. package/http/node_modules/lodash/fp/set.js +0 -5
  5967. package/http/node_modules/lodash/fp/setWith.js +0 -5
  5968. package/http/node_modules/lodash/fp/shuffle.js +0 -5
  5969. package/http/node_modules/lodash/fp/size.js +0 -5
  5970. package/http/node_modules/lodash/fp/slice.js +0 -5
  5971. package/http/node_modules/lodash/fp/snakeCase.js +0 -5
  5972. package/http/node_modules/lodash/fp/some.js +0 -5
  5973. package/http/node_modules/lodash/fp/sortBy.js +0 -5
  5974. package/http/node_modules/lodash/fp/sortedIndex.js +0 -5
  5975. package/http/node_modules/lodash/fp/sortedIndexBy.js +0 -5
  5976. package/http/node_modules/lodash/fp/sortedIndexOf.js +0 -5
  5977. package/http/node_modules/lodash/fp/sortedLastIndex.js +0 -5
  5978. package/http/node_modules/lodash/fp/sortedLastIndexBy.js +0 -5
  5979. package/http/node_modules/lodash/fp/sortedLastIndexOf.js +0 -5
  5980. package/http/node_modules/lodash/fp/sortedUniq.js +0 -5
  5981. package/http/node_modules/lodash/fp/sortedUniqBy.js +0 -5
  5982. package/http/node_modules/lodash/fp/split.js +0 -5
  5983. package/http/node_modules/lodash/fp/spread.js +0 -5
  5984. package/http/node_modules/lodash/fp/spreadFrom.js +0 -5
  5985. package/http/node_modules/lodash/fp/startCase.js +0 -5
  5986. package/http/node_modules/lodash/fp/startsWith.js +0 -5
  5987. package/http/node_modules/lodash/fp/string.js +0 -2
  5988. package/http/node_modules/lodash/fp/stubArray.js +0 -5
  5989. package/http/node_modules/lodash/fp/stubFalse.js +0 -5
  5990. package/http/node_modules/lodash/fp/stubObject.js +0 -5
  5991. package/http/node_modules/lodash/fp/stubString.js +0 -5
  5992. package/http/node_modules/lodash/fp/stubTrue.js +0 -5
  5993. package/http/node_modules/lodash/fp/subtract.js +0 -5
  5994. package/http/node_modules/lodash/fp/sum.js +0 -5
  5995. package/http/node_modules/lodash/fp/sumBy.js +0 -5
  5996. package/http/node_modules/lodash/fp/symmetricDifference.js +0 -1
  5997. package/http/node_modules/lodash/fp/symmetricDifferenceBy.js +0 -1
  5998. package/http/node_modules/lodash/fp/symmetricDifferenceWith.js +0 -1
  5999. package/http/node_modules/lodash/fp/tail.js +0 -5
  6000. package/http/node_modules/lodash/fp/take.js +0 -5
  6001. package/http/node_modules/lodash/fp/takeLast.js +0 -1
  6002. package/http/node_modules/lodash/fp/takeLastWhile.js +0 -1
  6003. package/http/node_modules/lodash/fp/takeRight.js +0 -5
  6004. package/http/node_modules/lodash/fp/takeRightWhile.js +0 -5
  6005. package/http/node_modules/lodash/fp/takeWhile.js +0 -5
  6006. package/http/node_modules/lodash/fp/tap.js +0 -5
  6007. package/http/node_modules/lodash/fp/template.js +0 -5
  6008. package/http/node_modules/lodash/fp/templateSettings.js +0 -5
  6009. package/http/node_modules/lodash/fp/throttle.js +0 -5
  6010. package/http/node_modules/lodash/fp/thru.js +0 -5
  6011. package/http/node_modules/lodash/fp/times.js +0 -5
  6012. package/http/node_modules/lodash/fp/toArray.js +0 -5
  6013. package/http/node_modules/lodash/fp/toFinite.js +0 -5
  6014. package/http/node_modules/lodash/fp/toInteger.js +0 -5
  6015. package/http/node_modules/lodash/fp/toIterator.js +0 -5
  6016. package/http/node_modules/lodash/fp/toJSON.js +0 -5
  6017. package/http/node_modules/lodash/fp/toLength.js +0 -5
  6018. package/http/node_modules/lodash/fp/toLower.js +0 -5
  6019. package/http/node_modules/lodash/fp/toNumber.js +0 -5
  6020. package/http/node_modules/lodash/fp/toPairs.js +0 -5
  6021. package/http/node_modules/lodash/fp/toPairsIn.js +0 -5
  6022. package/http/node_modules/lodash/fp/toPath.js +0 -5
  6023. package/http/node_modules/lodash/fp/toPlainObject.js +0 -5
  6024. package/http/node_modules/lodash/fp/toSafeInteger.js +0 -5
  6025. package/http/node_modules/lodash/fp/toString.js +0 -5
  6026. package/http/node_modules/lodash/fp/toUpper.js +0 -5
  6027. package/http/node_modules/lodash/fp/transform.js +0 -5
  6028. package/http/node_modules/lodash/fp/trim.js +0 -5
  6029. package/http/node_modules/lodash/fp/trimChars.js +0 -5
  6030. package/http/node_modules/lodash/fp/trimCharsEnd.js +0 -5
  6031. package/http/node_modules/lodash/fp/trimCharsStart.js +0 -5
  6032. package/http/node_modules/lodash/fp/trimEnd.js +0 -5
  6033. package/http/node_modules/lodash/fp/trimStart.js +0 -5
  6034. package/http/node_modules/lodash/fp/truncate.js +0 -5
  6035. package/http/node_modules/lodash/fp/unapply.js +0 -1
  6036. package/http/node_modules/lodash/fp/unary.js +0 -5
  6037. package/http/node_modules/lodash/fp/unescape.js +0 -5
  6038. package/http/node_modules/lodash/fp/union.js +0 -5
  6039. package/http/node_modules/lodash/fp/unionBy.js +0 -5
  6040. package/http/node_modules/lodash/fp/unionWith.js +0 -5
  6041. package/http/node_modules/lodash/fp/uniq.js +0 -5
  6042. package/http/node_modules/lodash/fp/uniqBy.js +0 -5
  6043. package/http/node_modules/lodash/fp/uniqWith.js +0 -5
  6044. package/http/node_modules/lodash/fp/uniqueId.js +0 -5
  6045. package/http/node_modules/lodash/fp/unnest.js +0 -1
  6046. package/http/node_modules/lodash/fp/unset.js +0 -5
  6047. package/http/node_modules/lodash/fp/unzip.js +0 -5
  6048. package/http/node_modules/lodash/fp/unzipWith.js +0 -5
  6049. package/http/node_modules/lodash/fp/update.js +0 -5
  6050. package/http/node_modules/lodash/fp/updateWith.js +0 -5
  6051. package/http/node_modules/lodash/fp/upperCase.js +0 -5
  6052. package/http/node_modules/lodash/fp/upperFirst.js +0 -5
  6053. package/http/node_modules/lodash/fp/useWith.js +0 -1
  6054. package/http/node_modules/lodash/fp/util.js +0 -2
  6055. package/http/node_modules/lodash/fp/value.js +0 -5
  6056. package/http/node_modules/lodash/fp/valueOf.js +0 -5
  6057. package/http/node_modules/lodash/fp/values.js +0 -5
  6058. package/http/node_modules/lodash/fp/valuesIn.js +0 -5
  6059. package/http/node_modules/lodash/fp/where.js +0 -1
  6060. package/http/node_modules/lodash/fp/whereEq.js +0 -1
  6061. package/http/node_modules/lodash/fp/without.js +0 -5
  6062. package/http/node_modules/lodash/fp/words.js +0 -5
  6063. package/http/node_modules/lodash/fp/wrap.js +0 -5
  6064. package/http/node_modules/lodash/fp/wrapperAt.js +0 -5
  6065. package/http/node_modules/lodash/fp/wrapperChain.js +0 -5
  6066. package/http/node_modules/lodash/fp/wrapperLodash.js +0 -5
  6067. package/http/node_modules/lodash/fp/wrapperReverse.js +0 -5
  6068. package/http/node_modules/lodash/fp/wrapperValue.js +0 -5
  6069. package/http/node_modules/lodash/fp/xor.js +0 -5
  6070. package/http/node_modules/lodash/fp/xorBy.js +0 -5
  6071. package/http/node_modules/lodash/fp/xorWith.js +0 -5
  6072. package/http/node_modules/lodash/fp/zip.js +0 -5
  6073. package/http/node_modules/lodash/fp/zipAll.js +0 -5
  6074. package/http/node_modules/lodash/fp/zipObj.js +0 -1
  6075. package/http/node_modules/lodash/fp/zipObject.js +0 -5
  6076. package/http/node_modules/lodash/fp/zipObjectDeep.js +0 -5
  6077. package/http/node_modules/lodash/fp/zipWith.js +0 -5
  6078. package/http/node_modules/lodash/fp.js +0 -2
  6079. package/http/node_modules/lodash/fromPairs.js +0 -28
  6080. package/http/node_modules/lodash/function.js +0 -25
  6081. package/http/node_modules/lodash/functions.js +0 -31
  6082. package/http/node_modules/lodash/functionsIn.js +0 -31
  6083. package/http/node_modules/lodash/get.js +0 -33
  6084. package/http/node_modules/lodash/groupBy.js +0 -41
  6085. package/http/node_modules/lodash/gt.js +0 -29
  6086. package/http/node_modules/lodash/gte.js +0 -30
  6087. package/http/node_modules/lodash/has.js +0 -35
  6088. package/http/node_modules/lodash/hasIn.js +0 -34
  6089. package/http/node_modules/lodash/head.js +0 -23
  6090. package/http/node_modules/lodash/identity.js +0 -21
  6091. package/http/node_modules/lodash/inRange.js +0 -55
  6092. package/http/node_modules/lodash/includes.js +0 -53
  6093. package/http/node_modules/lodash/index.js +0 -1
  6094. package/http/node_modules/lodash/indexOf.js +0 -42
  6095. package/http/node_modules/lodash/initial.js +0 -22
  6096. package/http/node_modules/lodash/intersection.js +0 -30
  6097. package/http/node_modules/lodash/intersectionBy.js +0 -45
  6098. package/http/node_modules/lodash/intersectionWith.js +0 -41
  6099. package/http/node_modules/lodash/invert.js +0 -42
  6100. package/http/node_modules/lodash/invertBy.js +0 -56
  6101. package/http/node_modules/lodash/invoke.js +0 -24
  6102. package/http/node_modules/lodash/invokeMap.js +0 -41
  6103. package/http/node_modules/lodash/isArguments.js +0 -36
  6104. package/http/node_modules/lodash/isArray.js +0 -26
  6105. package/http/node_modules/lodash/isArrayBuffer.js +0 -27
  6106. package/http/node_modules/lodash/isArrayLike.js +0 -33
  6107. package/http/node_modules/lodash/isArrayLikeObject.js +0 -33
  6108. package/http/node_modules/lodash/isBoolean.js +0 -29
  6109. package/http/node_modules/lodash/isBuffer.js +0 -38
  6110. package/http/node_modules/lodash/isDate.js +0 -27
  6111. package/http/node_modules/lodash/isElement.js +0 -25
  6112. package/http/node_modules/lodash/isEmpty.js +0 -77
  6113. package/http/node_modules/lodash/isEqual.js +0 -35
  6114. package/http/node_modules/lodash/isEqualWith.js +0 -41
  6115. package/http/node_modules/lodash/isError.js +0 -36
  6116. package/http/node_modules/lodash/isFinite.js +0 -36
  6117. package/http/node_modules/lodash/isFunction.js +0 -37
  6118. package/http/node_modules/lodash/isInteger.js +0 -33
  6119. package/http/node_modules/lodash/isLength.js +0 -35
  6120. package/http/node_modules/lodash/isMap.js +0 -27
  6121. package/http/node_modules/lodash/isMatch.js +0 -36
  6122. package/http/node_modules/lodash/isMatchWith.js +0 -41
  6123. package/http/node_modules/lodash/isNaN.js +0 -38
  6124. package/http/node_modules/lodash/isNative.js +0 -40
  6125. package/http/node_modules/lodash/isNil.js +0 -25
  6126. package/http/node_modules/lodash/isNull.js +0 -22
  6127. package/http/node_modules/lodash/isNumber.js +0 -38
  6128. package/http/node_modules/lodash/isObject.js +0 -31
  6129. package/http/node_modules/lodash/isObjectLike.js +0 -29
  6130. package/http/node_modules/lodash/isPlainObject.js +0 -62
  6131. package/http/node_modules/lodash/isRegExp.js +0 -27
  6132. package/http/node_modules/lodash/isSafeInteger.js +0 -37
  6133. package/http/node_modules/lodash/isSet.js +0 -27
  6134. package/http/node_modules/lodash/isString.js +0 -30
  6135. package/http/node_modules/lodash/isSymbol.js +0 -29
  6136. package/http/node_modules/lodash/isTypedArray.js +0 -27
  6137. package/http/node_modules/lodash/isUndefined.js +0 -22
  6138. package/http/node_modules/lodash/isWeakMap.js +0 -28
  6139. package/http/node_modules/lodash/isWeakSet.js +0 -28
  6140. package/http/node_modules/lodash/iteratee.js +0 -53
  6141. package/http/node_modules/lodash/join.js +0 -26
  6142. package/http/node_modules/lodash/kebabCase.js +0 -28
  6143. package/http/node_modules/lodash/keyBy.js +0 -36
  6144. package/http/node_modules/lodash/keys.js +0 -37
  6145. package/http/node_modules/lodash/keysIn.js +0 -32
  6146. package/http/node_modules/lodash/lang.js +0 -58
  6147. package/http/node_modules/lodash/last.js +0 -20
  6148. package/http/node_modules/lodash/lastIndexOf.js +0 -46
  6149. package/http/node_modules/lodash/lodash.js +0 -17161
  6150. package/http/node_modules/lodash/lodash.min.js +0 -139
  6151. package/http/node_modules/lodash/lowerCase.js +0 -27
  6152. package/http/node_modules/lodash/lowerFirst.js +0 -22
  6153. package/http/node_modules/lodash/lt.js +0 -29
  6154. package/http/node_modules/lodash/lte.js +0 -30
  6155. package/http/node_modules/lodash/map.js +0 -53
  6156. package/http/node_modules/lodash/mapKeys.js +0 -36
  6157. package/http/node_modules/lodash/mapValues.js +0 -43
  6158. package/http/node_modules/lodash/matches.js +0 -46
  6159. package/http/node_modules/lodash/matchesProperty.js +0 -44
  6160. package/http/node_modules/lodash/math.js +0 -17
  6161. package/http/node_modules/lodash/max.js +0 -29
  6162. package/http/node_modules/lodash/maxBy.js +0 -34
  6163. package/http/node_modules/lodash/mean.js +0 -22
  6164. package/http/node_modules/lodash/meanBy.js +0 -31
  6165. package/http/node_modules/lodash/memoize.js +0 -73
  6166. package/http/node_modules/lodash/merge.js +0 -39
  6167. package/http/node_modules/lodash/mergeWith.js +0 -39
  6168. package/http/node_modules/lodash/method.js +0 -34
  6169. package/http/node_modules/lodash/methodOf.js +0 -33
  6170. package/http/node_modules/lodash/min.js +0 -29
  6171. package/http/node_modules/lodash/minBy.js +0 -34
  6172. package/http/node_modules/lodash/mixin.js +0 -74
  6173. package/http/node_modules/lodash/multiply.js +0 -22
  6174. package/http/node_modules/lodash/negate.js +0 -40
  6175. package/http/node_modules/lodash/next.js +0 -35
  6176. package/http/node_modules/lodash/noop.js +0 -17
  6177. package/http/node_modules/lodash/now.js +0 -23
  6178. package/http/node_modules/lodash/nth.js +0 -29
  6179. package/http/node_modules/lodash/nthArg.js +0 -32
  6180. package/http/node_modules/lodash/number.js +0 -5
  6181. package/http/node_modules/lodash/object.js +0 -49
  6182. package/http/node_modules/lodash/omit.js +0 -57
  6183. package/http/node_modules/lodash/omitBy.js +0 -29
  6184. package/http/node_modules/lodash/once.js +0 -25
  6185. package/http/node_modules/lodash/orderBy.js +0 -47
  6186. package/http/node_modules/lodash/over.js +0 -24
  6187. package/http/node_modules/lodash/overArgs.js +0 -61
  6188. package/http/node_modules/lodash/overEvery.js +0 -34
  6189. package/http/node_modules/lodash/overSome.js +0 -37
  6190. package/http/node_modules/lodash/package.json +0 -67
  6191. package/http/node_modules/lodash/pad.js +0 -49
  6192. package/http/node_modules/lodash/padEnd.js +0 -39
  6193. package/http/node_modules/lodash/padStart.js +0 -39
  6194. package/http/node_modules/lodash/parseInt.js +0 -43
  6195. package/http/node_modules/lodash/partial.js +0 -50
  6196. package/http/node_modules/lodash/partialRight.js +0 -49
  6197. package/http/node_modules/lodash/partition.js +0 -43
  6198. package/http/node_modules/lodash/pick.js +0 -25
  6199. package/http/node_modules/lodash/pickBy.js +0 -37
  6200. package/http/node_modules/lodash/plant.js +0 -48
  6201. package/http/node_modules/lodash/property.js +0 -32
  6202. package/http/node_modules/lodash/propertyOf.js +0 -30
  6203. package/http/node_modules/lodash/pull.js +0 -29
  6204. package/http/node_modules/lodash/pullAll.js +0 -29
  6205. package/http/node_modules/lodash/pullAllBy.js +0 -33
  6206. package/http/node_modules/lodash/pullAllWith.js +0 -32
  6207. package/http/node_modules/lodash/pullAt.js +0 -43
  6208. package/http/node_modules/lodash/random.js +0 -82
  6209. package/http/node_modules/lodash/range.js +0 -46
  6210. package/http/node_modules/lodash/rangeRight.js +0 -41
  6211. package/http/node_modules/lodash/rearg.js +0 -33
  6212. package/http/node_modules/lodash/reduce.js +0 -51
  6213. package/http/node_modules/lodash/reduceRight.js +0 -36
  6214. package/http/node_modules/lodash/reject.js +0 -46
  6215. package/http/node_modules/lodash/remove.js +0 -53
  6216. package/http/node_modules/lodash/repeat.js +0 -37
  6217. package/http/node_modules/lodash/replace.js +0 -29
  6218. package/http/node_modules/lodash/rest.js +0 -40
  6219. package/http/node_modules/lodash/result.js +0 -56
  6220. package/http/node_modules/lodash/reverse.js +0 -34
  6221. package/http/node_modules/lodash/round.js +0 -26
  6222. package/http/node_modules/lodash/sample.js +0 -24
  6223. package/http/node_modules/lodash/sampleSize.js +0 -37
  6224. package/http/node_modules/lodash/seq.js +0 -16
  6225. package/http/node_modules/lodash/set.js +0 -35
  6226. package/http/node_modules/lodash/setWith.js +0 -32
  6227. package/http/node_modules/lodash/shuffle.js +0 -25
  6228. package/http/node_modules/lodash/size.js +0 -46
  6229. package/http/node_modules/lodash/slice.js +0 -37
  6230. package/http/node_modules/lodash/snakeCase.js +0 -28
  6231. package/http/node_modules/lodash/some.js +0 -51
  6232. package/http/node_modules/lodash/sortBy.js +0 -48
  6233. package/http/node_modules/lodash/sortedIndex.js +0 -24
  6234. package/http/node_modules/lodash/sortedIndexBy.js +0 -33
  6235. package/http/node_modules/lodash/sortedIndexOf.js +0 -31
  6236. package/http/node_modules/lodash/sortedLastIndex.js +0 -25
  6237. package/http/node_modules/lodash/sortedLastIndexBy.js +0 -33
  6238. package/http/node_modules/lodash/sortedLastIndexOf.js +0 -31
  6239. package/http/node_modules/lodash/sortedUniq.js +0 -24
  6240. package/http/node_modules/lodash/sortedUniqBy.js +0 -26
  6241. package/http/node_modules/lodash/split.js +0 -52
  6242. package/http/node_modules/lodash/spread.js +0 -63
  6243. package/http/node_modules/lodash/startCase.js +0 -29
  6244. package/http/node_modules/lodash/startsWith.js +0 -39
  6245. package/http/node_modules/lodash/string.js +0 -33
  6246. package/http/node_modules/lodash/stubArray.js +0 -23
  6247. package/http/node_modules/lodash/stubFalse.js +0 -18
  6248. package/http/node_modules/lodash/stubObject.js +0 -23
  6249. package/http/node_modules/lodash/stubString.js +0 -18
  6250. package/http/node_modules/lodash/stubTrue.js +0 -18
  6251. package/http/node_modules/lodash/subtract.js +0 -22
  6252. package/http/node_modules/lodash/sum.js +0 -24
  6253. package/http/node_modules/lodash/sumBy.js +0 -33
  6254. package/http/node_modules/lodash/tail.js +0 -22
  6255. package/http/node_modules/lodash/take.js +0 -37
  6256. package/http/node_modules/lodash/takeRight.js +0 -39
  6257. package/http/node_modules/lodash/takeRightWhile.js +0 -45
  6258. package/http/node_modules/lodash/takeWhile.js +0 -45
  6259. package/http/node_modules/lodash/tap.js +0 -29
  6260. package/http/node_modules/lodash/template.js +0 -251
  6261. package/http/node_modules/lodash/templateSettings.js +0 -67
  6262. package/http/node_modules/lodash/throttle.js +0 -69
  6263. package/http/node_modules/lodash/thru.js +0 -28
  6264. package/http/node_modules/lodash/times.js +0 -51
  6265. package/http/node_modules/lodash/toArray.js +0 -58
  6266. package/http/node_modules/lodash/toFinite.js +0 -42
  6267. package/http/node_modules/lodash/toInteger.js +0 -36
  6268. package/http/node_modules/lodash/toIterator.js +0 -23
  6269. package/http/node_modules/lodash/toJSON.js +0 -1
  6270. package/http/node_modules/lodash/toLength.js +0 -38
  6271. package/http/node_modules/lodash/toLower.js +0 -28
  6272. package/http/node_modules/lodash/toNumber.js +0 -66
  6273. package/http/node_modules/lodash/toPairs.js +0 -30
  6274. package/http/node_modules/lodash/toPairsIn.js +0 -30
  6275. package/http/node_modules/lodash/toPath.js +0 -33
  6276. package/http/node_modules/lodash/toPlainObject.js +0 -32
  6277. package/http/node_modules/lodash/toSafeInteger.js +0 -37
  6278. package/http/node_modules/lodash/toString.js +0 -28
  6279. package/http/node_modules/lodash/toUpper.js +0 -28
  6280. package/http/node_modules/lodash/transform.js +0 -65
  6281. package/http/node_modules/lodash/trim.js +0 -49
  6282. package/http/node_modules/lodash/trimEnd.js +0 -43
  6283. package/http/node_modules/lodash/trimStart.js +0 -43
  6284. package/http/node_modules/lodash/truncate.js +0 -111
  6285. package/http/node_modules/lodash/unary.js +0 -22
  6286. package/http/node_modules/lodash/unescape.js +0 -34
  6287. package/http/node_modules/lodash/union.js +0 -26
  6288. package/http/node_modules/lodash/unionBy.js +0 -39
  6289. package/http/node_modules/lodash/unionWith.js +0 -34
  6290. package/http/node_modules/lodash/uniq.js +0 -25
  6291. package/http/node_modules/lodash/uniqBy.js +0 -31
  6292. package/http/node_modules/lodash/uniqWith.js +0 -28
  6293. package/http/node_modules/lodash/uniqueId.js +0 -28
  6294. package/http/node_modules/lodash/unset.js +0 -34
  6295. package/http/node_modules/lodash/unzip.js +0 -45
  6296. package/http/node_modules/lodash/unzipWith.js +0 -39
  6297. package/http/node_modules/lodash/update.js +0 -35
  6298. package/http/node_modules/lodash/updateWith.js +0 -33
  6299. package/http/node_modules/lodash/upperCase.js +0 -27
  6300. package/http/node_modules/lodash/upperFirst.js +0 -22
  6301. package/http/node_modules/lodash/util.js +0 -34
  6302. package/http/node_modules/lodash/value.js +0 -1
  6303. package/http/node_modules/lodash/valueOf.js +0 -1
  6304. package/http/node_modules/lodash/values.js +0 -34
  6305. package/http/node_modules/lodash/valuesIn.js +0 -32
  6306. package/http/node_modules/lodash/without.js +0 -31
  6307. package/http/node_modules/lodash/words.js +0 -35
  6308. package/http/node_modules/lodash/wrap.js +0 -30
  6309. package/http/node_modules/lodash/wrapperAt.js +0 -48
  6310. package/http/node_modules/lodash/wrapperChain.js +0 -34
  6311. package/http/node_modules/lodash/wrapperLodash.js +0 -147
  6312. package/http/node_modules/lodash/wrapperReverse.js +0 -44
  6313. package/http/node_modules/lodash/wrapperValue.js +0 -21
  6314. package/http/node_modules/lodash/xor.js +0 -28
  6315. package/http/node_modules/lodash/xorBy.js +0 -39
  6316. package/http/node_modules/lodash/xorWith.js +0 -34
  6317. package/http/node_modules/lodash/zip.js +0 -22
  6318. package/http/node_modules/lodash/zipObject.js +0 -24
  6319. package/http/node_modules/lodash/zipObjectDeep.js +0 -23
  6320. package/http/node_modules/lodash/zipWith.js +0 -32
  6321. package/http/node_modules/make-iterator/LICENSE +0 -21
  6322. package/http/node_modules/make-iterator/README.md +0 -102
  6323. package/http/node_modules/make-iterator/index.js +0 -99
  6324. package/http/node_modules/make-iterator/package.json +0 -99
  6325. package/http/node_modules/map-cache/LICENSE +0 -21
  6326. package/http/node_modules/map-cache/README.md +0 -145
  6327. package/http/node_modules/map-cache/index.js +0 -100
  6328. package/http/node_modules/map-cache/package.json +0 -92
  6329. package/http/node_modules/map-visit/LICENSE +0 -21
  6330. package/http/node_modules/map-visit/README.md +0 -155
  6331. package/http/node_modules/map-visit/index.js +0 -37
  6332. package/http/node_modules/map-visit/package.json +0 -113
  6333. package/http/node_modules/media-typer/HISTORY.md +0 -22
  6334. package/http/node_modules/media-typer/LICENSE +0 -22
  6335. package/http/node_modules/media-typer/README.md +0 -81
  6336. package/http/node_modules/media-typer/index.js +0 -270
  6337. package/http/node_modules/media-typer/package.json +0 -61
  6338. package/http/node_modules/merge-descriptors/HISTORY.md +0 -21
  6339. package/http/node_modules/merge-descriptors/LICENSE +0 -23
  6340. package/http/node_modules/merge-descriptors/README.md +0 -48
  6341. package/http/node_modules/merge-descriptors/index.js +0 -60
  6342. package/http/node_modules/merge-descriptors/package.json +0 -69
  6343. package/http/node_modules/methods/HISTORY.md +0 -29
  6344. package/http/node_modules/methods/LICENSE +0 -24
  6345. package/http/node_modules/methods/README.md +0 -51
  6346. package/http/node_modules/methods/index.js +0 -69
  6347. package/http/node_modules/methods/package.json +0 -79
  6348. package/http/node_modules/micromatch/CHANGELOG.md +0 -37
  6349. package/http/node_modules/micromatch/LICENSE +0 -21
  6350. package/http/node_modules/micromatch/README.md +0 -1150
  6351. package/http/node_modules/micromatch/index.js +0 -877
  6352. package/http/node_modules/micromatch/lib/.DS_Store +0 -0
  6353. package/http/node_modules/micromatch/lib/cache.js +0 -1
  6354. package/http/node_modules/micromatch/lib/compilers.js +0 -77
  6355. package/http/node_modules/micromatch/lib/parsers.js +0 -83
  6356. package/http/node_modules/micromatch/lib/utils.js +0 -309
  6357. package/http/node_modules/micromatch/package.json +0 -216
  6358. package/http/node_modules/mime/CHANGELOG.md +0 -164
  6359. package/http/node_modules/mime/LICENSE +0 -21
  6360. package/http/node_modules/mime/README.md +0 -90
  6361. package/http/node_modules/mime/cli.js +0 -8
  6362. package/http/node_modules/mime/mime.js +0 -108
  6363. package/http/node_modules/mime/package.json +0 -73
  6364. package/http/node_modules/mime/src/build.js +0 -53
  6365. package/http/node_modules/mime/src/test.js +0 -60
  6366. package/http/node_modules/mime/types.json +0 -1
  6367. package/http/node_modules/mime-db/HISTORY.md +0 -458
  6368. package/http/node_modules/mime-db/LICENSE +0 -22
  6369. package/http/node_modules/mime-db/README.md +0 -102
  6370. package/http/node_modules/mime-db/db.json +0 -8242
  6371. package/http/node_modules/mime-db/index.js +0 -11
  6372. package/http/node_modules/mime-db/package.json +0 -102
  6373. package/http/node_modules/mime-types/HISTORY.md +0 -346
  6374. package/http/node_modules/mime-types/LICENSE +0 -23
  6375. package/http/node_modules/mime-types/README.md +0 -123
  6376. package/http/node_modules/mime-types/index.js +0 -188
  6377. package/http/node_modules/mime-types/package.json +0 -88
  6378. package/http/node_modules/minimatch/LICENSE +0 -15
  6379. package/http/node_modules/minimatch/README.md +0 -209
  6380. package/http/node_modules/minimatch/minimatch.js +0 -923
  6381. package/http/node_modules/minimatch/package.json +0 -65
  6382. package/http/node_modules/mixin-deep/LICENSE +0 -21
  6383. package/http/node_modules/mixin-deep/README.md +0 -80
  6384. package/http/node_modules/mixin-deep/index.js +0 -64
  6385. package/http/node_modules/mixin-deep/package.json +0 -98
  6386. package/http/node_modules/mkdirp/CHANGELOG.md +0 -15
  6387. package/http/node_modules/mkdirp/LICENSE +0 -21
  6388. package/http/node_modules/mkdirp/bin/cmd.js +0 -68
  6389. package/http/node_modules/mkdirp/index.js +0 -31
  6390. package/http/node_modules/mkdirp/lib/find-made.js +0 -29
  6391. package/http/node_modules/mkdirp/lib/mkdirp-manual.js +0 -64
  6392. package/http/node_modules/mkdirp/lib/mkdirp-native.js +0 -39
  6393. package/http/node_modules/mkdirp/lib/opts-arg.js +0 -23
  6394. package/http/node_modules/mkdirp/lib/path-arg.js +0 -29
  6395. package/http/node_modules/mkdirp/lib/use-native.js +0 -10
  6396. package/http/node_modules/mkdirp/package.json +0 -75
  6397. package/http/node_modules/mkdirp/readme.markdown +0 -266
  6398. package/http/node_modules/ms/index.js +0 -152
  6399. package/http/node_modules/ms/license.md +0 -21
  6400. package/http/node_modules/ms/package.json +0 -69
  6401. package/http/node_modules/ms/readme.md +0 -51
  6402. package/http/node_modules/nanomatch/CHANGELOG.md +0 -57
  6403. package/http/node_modules/nanomatch/LICENSE +0 -21
  6404. package/http/node_modules/nanomatch/README.md +0 -1148
  6405. package/http/node_modules/nanomatch/index.js +0 -838
  6406. package/http/node_modules/nanomatch/lib/cache.js +0 -1
  6407. package/http/node_modules/nanomatch/lib/compilers.js +0 -339
  6408. package/http/node_modules/nanomatch/lib/parsers.js +0 -386
  6409. package/http/node_modules/nanomatch/lib/utils.js +0 -379
  6410. package/http/node_modules/nanomatch/package.json +0 -171
  6411. package/http/node_modules/negotiator/HISTORY.md +0 -103
  6412. package/http/node_modules/negotiator/LICENSE +0 -24
  6413. package/http/node_modules/negotiator/README.md +0 -203
  6414. package/http/node_modules/negotiator/index.js +0 -124
  6415. package/http/node_modules/negotiator/lib/charset.js +0 -169
  6416. package/http/node_modules/negotiator/lib/encoding.js +0 -184
  6417. package/http/node_modules/negotiator/lib/language.js +0 -179
  6418. package/http/node_modules/negotiator/lib/mediaType.js +0 -294
  6419. package/http/node_modules/negotiator/package.json +0 -84
  6420. package/http/node_modules/nopt/.travis.yml +0 -9
  6421. package/http/node_modules/nopt/LICENSE +0 -15
  6422. package/http/node_modules/nopt/README.md +0 -211
  6423. package/http/node_modules/nopt/bin/nopt.js +0 -54
  6424. package/http/node_modules/nopt/examples/my-program.js +0 -30
  6425. package/http/node_modules/nopt/lib/nopt.js +0 -415
  6426. package/http/node_modules/nopt/package.json +0 -57
  6427. package/http/node_modules/nopt/test/basic.js +0 -273
  6428. package/http/node_modules/object-copy/LICENSE +0 -21
  6429. package/http/node_modules/object-copy/index.js +0 -174
  6430. package/http/node_modules/object-copy/package.json +0 -81
  6431. package/http/node_modules/object-visit/LICENSE +0 -21
  6432. package/http/node_modules/object-visit/README.md +0 -83
  6433. package/http/node_modules/object-visit/index.js +0 -33
  6434. package/http/node_modules/object-visit/package.json +0 -97
  6435. package/http/node_modules/object.defaults/LICENSE +0 -21
  6436. package/http/node_modules/object.defaults/README.md +0 -85
  6437. package/http/node_modules/object.defaults/immutable.js +0 -20
  6438. package/http/node_modules/object.defaults/index.js +0 -11
  6439. package/http/node_modules/object.defaults/mutable.js +0 -35
  6440. package/http/node_modules/object.defaults/package.json +0 -106
  6441. package/http/node_modules/object.map/LICENSE +0 -24
  6442. package/http/node_modules/object.map/README.md +0 -87
  6443. package/http/node_modules/object.map/index.js +0 -22
  6444. package/http/node_modules/object.map/package.json +0 -99
  6445. package/http/node_modules/object.pick/LICENSE +0 -21
  6446. package/http/node_modules/object.pick/README.md +0 -76
  6447. package/http/node_modules/object.pick/index.js +0 -35
  6448. package/http/node_modules/object.pick/package.json +0 -93
  6449. package/http/node_modules/on-finished/HISTORY.md +0 -88
  6450. package/http/node_modules/on-finished/LICENSE +0 -23
  6451. package/http/node_modules/on-finished/README.md +0 -154
  6452. package/http/node_modules/on-finished/index.js +0 -196
  6453. package/http/node_modules/on-finished/package.json +0 -73
  6454. package/http/node_modules/on-headers/HISTORY.md +0 -21
  6455. package/http/node_modules/on-headers/LICENSE +0 -22
  6456. package/http/node_modules/on-headers/README.md +0 -81
  6457. package/http/node_modules/on-headers/index.js +0 -132
  6458. package/http/node_modules/on-headers/package.json +0 -77
  6459. package/http/node_modules/once/LICENSE +0 -15
  6460. package/http/node_modules/once/README.md +0 -79
  6461. package/http/node_modules/once/once.js +0 -42
  6462. package/http/node_modules/once/package.json +0 -68
  6463. package/http/node_modules/os-homedir/index.js +0 -24
  6464. package/http/node_modules/os-homedir/license +0 -21
  6465. package/http/node_modules/os-homedir/package.json +0 -73
  6466. package/http/node_modules/os-homedir/readme.md +0 -31
  6467. package/http/node_modules/os-tmpdir/index.js +0 -25
  6468. package/http/node_modules/os-tmpdir/license +0 -21
  6469. package/http/node_modules/os-tmpdir/package.json +0 -73
  6470. package/http/node_modules/os-tmpdir/readme.md +0 -32
  6471. package/http/node_modules/osenv/LICENSE +0 -15
  6472. package/http/node_modules/osenv/README.md +0 -63
  6473. package/http/node_modules/osenv/osenv.js +0 -72
  6474. package/http/node_modules/osenv/package.json +0 -73
  6475. package/http/node_modules/parse-filepath/LICENSE +0 -21
  6476. package/http/node_modules/parse-filepath/README.md +0 -111
  6477. package/http/node_modules/parse-filepath/index.js +0 -95
  6478. package/http/node_modules/parse-filepath/package.json +0 -110
  6479. package/http/node_modules/parse-passwd/LICENSE +0 -21
  6480. package/http/node_modules/parse-passwd/README.md +0 -86
  6481. package/http/node_modules/parse-passwd/index.js +0 -56
  6482. package/http/node_modules/parse-passwd/package.json +0 -86
  6483. package/http/node_modules/parseurl/HISTORY.md +0 -58
  6484. package/http/node_modules/parseurl/LICENSE +0 -24
  6485. package/http/node_modules/parseurl/README.md +0 -133
  6486. package/http/node_modules/parseurl/index.js +0 -158
  6487. package/http/node_modules/parseurl/package.json +0 -82
  6488. package/http/node_modules/pascalcase/LICENSE +0 -21
  6489. package/http/node_modules/pascalcase/README.md +0 -80
  6490. package/http/node_modules/pascalcase/index.js +0 -21
  6491. package/http/node_modules/pascalcase/package.json +0 -77
  6492. package/http/node_modules/path-is-absolute/index.js +0 -20
  6493. package/http/node_modules/path-is-absolute/license +0 -21
  6494. package/http/node_modules/path-is-absolute/package.json +0 -76
  6495. package/http/node_modules/path-is-absolute/readme.md +0 -59
  6496. package/http/node_modules/path-parse/.travis.yml +0 -9
  6497. package/http/node_modules/path-parse/LICENSE +0 -21
  6498. package/http/node_modules/path-parse/README.md +0 -42
  6499. package/http/node_modules/path-parse/index.js +0 -93
  6500. package/http/node_modules/path-parse/package.json +0 -61
  6501. package/http/node_modules/path-parse/test.js +0 -77
  6502. package/http/node_modules/path-root/LICENSE +0 -21
  6503. package/http/node_modules/path-root/README.md +0 -94
  6504. package/http/node_modules/path-root/index.js +0 -21
  6505. package/http/node_modules/path-root/package.json +0 -89
  6506. package/http/node_modules/path-root-regex/LICENSE +0 -21
  6507. package/http/node_modules/path-root-regex/README.md +0 -53
  6508. package/http/node_modules/path-root-regex/index.js +0 -13
  6509. package/http/node_modules/path-root-regex/package.json +0 -96
  6510. package/http/node_modules/path-to-regexp/History.md +0 -36
  6511. package/http/node_modules/path-to-regexp/LICENSE +0 -21
  6512. package/http/node_modules/path-to-regexp/Readme.md +0 -35
  6513. package/http/node_modules/path-to-regexp/index.js +0 -129
  6514. package/http/node_modules/path-to-regexp/package.json +0 -59
  6515. package/http/node_modules/posix-character-classes/LICENSE +0 -21
  6516. package/http/node_modules/posix-character-classes/README.md +0 -103
  6517. package/http/node_modules/posix-character-classes/index.js +0 -22
  6518. package/http/node_modules/posix-character-classes/package.json +0 -85
  6519. package/http/node_modules/proxy-addr/HISTORY.md +0 -155
  6520. package/http/node_modules/proxy-addr/LICENSE +0 -22
  6521. package/http/node_modules/proxy-addr/README.md +0 -155
  6522. package/http/node_modules/proxy-addr/index.js +0 -327
  6523. package/http/node_modules/proxy-addr/package.json +0 -82
  6524. package/http/node_modules/qs/.eslintignore +0 -1
  6525. package/http/node_modules/qs/.eslintrc +0 -21
  6526. package/http/node_modules/qs/CHANGELOG.md +0 -256
  6527. package/http/node_modules/qs/LICENSE +0 -28
  6528. package/http/node_modules/qs/README.md +0 -570
  6529. package/http/node_modules/qs/dist/qs.js +0 -782
  6530. package/http/node_modules/qs/lib/formats.js +0 -18
  6531. package/http/node_modules/qs/lib/index.js +0 -11
  6532. package/http/node_modules/qs/lib/parse.js +0 -242
  6533. package/http/node_modules/qs/lib/stringify.js +0 -269
  6534. package/http/node_modules/qs/lib/utils.js +0 -230
  6535. package/http/node_modules/qs/package.json +0 -87
  6536. package/http/node_modules/qs/test/.eslintrc +0 -17
  6537. package/http/node_modules/qs/test/index.js +0 -7
  6538. package/http/node_modules/qs/test/parse.js +0 -676
  6539. package/http/node_modules/qs/test/stringify.js +0 -679
  6540. package/http/node_modules/qs/test/utils.js +0 -136
  6541. package/http/node_modules/random-bytes/HISTORY.md +0 -4
  6542. package/http/node_modules/random-bytes/LICENSE +0 -21
  6543. package/http/node_modules/random-bytes/README.md +0 -77
  6544. package/http/node_modules/random-bytes/index.js +0 -101
  6545. package/http/node_modules/random-bytes/package.json +0 -71
  6546. package/http/node_modules/range-parser/HISTORY.md +0 -56
  6547. package/http/node_modules/range-parser/LICENSE +0 -23
  6548. package/http/node_modules/range-parser/README.md +0 -84
  6549. package/http/node_modules/range-parser/index.js +0 -162
  6550. package/http/node_modules/range-parser/package.json +0 -91
  6551. package/http/node_modules/raw-body/HISTORY.md +0 -270
  6552. package/http/node_modules/raw-body/LICENSE +0 -22
  6553. package/http/node_modules/raw-body/README.md +0 -219
  6554. package/http/node_modules/raw-body/index.d.ts +0 -87
  6555. package/http/node_modules/raw-body/index.js +0 -286
  6556. package/http/node_modules/raw-body/package.json +0 -90
  6557. package/http/node_modules/rechoir/.travis.yml +0 -24
  6558. package/http/node_modules/rechoir/CHANGELOG +0 -38
  6559. package/http/node_modules/rechoir/LICENSE +0 -22
  6560. package/http/node_modules/rechoir/README.md +0 -42
  6561. package/http/node_modules/rechoir/index.js +0 -59
  6562. package/http/node_modules/rechoir/lib/extension.js +0 -11
  6563. package/http/node_modules/rechoir/lib/normalize.js +0 -15
  6564. package/http/node_modules/rechoir/lib/register.js +0 -15
  6565. package/http/node_modules/rechoir/package.json +0 -113
  6566. package/http/node_modules/regex-not/LICENSE +0 -21
  6567. package/http/node_modules/regex-not/README.md +0 -133
  6568. package/http/node_modules/regex-not/index.js +0 -72
  6569. package/http/node_modules/regex-not/package.json +0 -98
  6570. package/http/node_modules/repeat-element/LICENSE +0 -21
  6571. package/http/node_modules/repeat-element/README.md +0 -99
  6572. package/http/node_modules/repeat-element/index.js +0 -18
  6573. package/http/node_modules/repeat-element/package.json +0 -80
  6574. package/http/node_modules/repeat-string/LICENSE +0 -21
  6575. package/http/node_modules/repeat-string/README.md +0 -136
  6576. package/http/node_modules/repeat-string/index.js +0 -70
  6577. package/http/node_modules/repeat-string/package.json +0 -129
  6578. package/http/node_modules/resolve/.eslintignore +0 -1
  6579. package/http/node_modules/resolve/.eslintrc +0 -39
  6580. package/http/node_modules/resolve/LICENSE +0 -21
  6581. package/http/node_modules/resolve/appveyor.yml +0 -74
  6582. package/http/node_modules/resolve/example/async.js +0 -5
  6583. package/http/node_modules/resolve/example/sync.js +0 -3
  6584. package/http/node_modules/resolve/index.js +0 -6
  6585. package/http/node_modules/resolve/lib/async.js +0 -299
  6586. package/http/node_modules/resolve/lib/caller.js +0 -8
  6587. package/http/node_modules/resolve/lib/core.js +0 -53
  6588. package/http/node_modules/resolve/lib/core.json +0 -80
  6589. package/http/node_modules/resolve/lib/is-core.js +0 -5
  6590. package/http/node_modules/resolve/lib/node-modules-paths.js +0 -42
  6591. package/http/node_modules/resolve/lib/normalize-options.js +0 -10
  6592. package/http/node_modules/resolve/lib/sync.js +0 -192
  6593. package/http/node_modules/resolve/package.json +0 -81
  6594. package/http/node_modules/resolve/readme.markdown +0 -250
  6595. package/http/node_modules/resolve/test/.eslintrc +0 -5
  6596. package/http/node_modules/resolve/test/core.js +0 -81
  6597. package/http/node_modules/resolve/test/dotdot/abc/index.js +0 -2
  6598. package/http/node_modules/resolve/test/dotdot/index.js +0 -1
  6599. package/http/node_modules/resolve/test/dotdot.js +0 -29
  6600. package/http/node_modules/resolve/test/faulty_basedir.js +0 -29
  6601. package/http/node_modules/resolve/test/filter.js +0 -34
  6602. package/http/node_modules/resolve/test/filter_sync.js +0 -33
  6603. package/http/node_modules/resolve/test/mock.js +0 -239
  6604. package/http/node_modules/resolve/test/mock_sync.js +0 -141
  6605. package/http/node_modules/resolve/test/module_dir/xmodules/aaa/index.js +0 -1
  6606. package/http/node_modules/resolve/test/module_dir/ymodules/aaa/index.js +0 -1
  6607. package/http/node_modules/resolve/test/module_dir/zmodules/bbb/main.js +0 -1
  6608. package/http/node_modules/resolve/test/module_dir/zmodules/bbb/package.json +0 -3
  6609. package/http/node_modules/resolve/test/module_dir.js +0 -56
  6610. package/http/node_modules/resolve/test/node-modules-paths.js +0 -143
  6611. package/http/node_modules/resolve/test/node_path/x/aaa/index.js +0 -1
  6612. package/http/node_modules/resolve/test/node_path/x/ccc/index.js +0 -1
  6613. package/http/node_modules/resolve/test/node_path/y/bbb/index.js +0 -1
  6614. package/http/node_modules/resolve/test/node_path/y/ccc/index.js +0 -1
  6615. package/http/node_modules/resolve/test/node_path.js +0 -70
  6616. package/http/node_modules/resolve/test/nonstring.js +0 -9
  6617. package/http/node_modules/resolve/test/pathfilter/deep_ref/main.js +0 -0
  6618. package/http/node_modules/resolve/test/pathfilter.js +0 -75
  6619. package/http/node_modules/resolve/test/precedence/aaa/index.js +0 -1
  6620. package/http/node_modules/resolve/test/precedence/aaa/main.js +0 -1
  6621. package/http/node_modules/resolve/test/precedence/aaa.js +0 -1
  6622. package/http/node_modules/resolve/test/precedence/bbb/main.js +0 -1
  6623. package/http/node_modules/resolve/test/precedence/bbb.js +0 -1
  6624. package/http/node_modules/resolve/test/precedence.js +0 -23
  6625. package/http/node_modules/resolve/test/resolver/baz/doom.js +0 -0
  6626. package/http/node_modules/resolve/test/resolver/baz/package.json +0 -4
  6627. package/http/node_modules/resolve/test/resolver/baz/quux.js +0 -1
  6628. package/http/node_modules/resolve/test/resolver/browser_field/a.js +0 -0
  6629. package/http/node_modules/resolve/test/resolver/browser_field/b.js +0 -0
  6630. package/http/node_modules/resolve/test/resolver/browser_field/package.json +0 -5
  6631. package/http/node_modules/resolve/test/resolver/cup.coffee +0 -1
  6632. package/http/node_modules/resolve/test/resolver/dot_main/index.js +0 -1
  6633. package/http/node_modules/resolve/test/resolver/dot_main/package.json +0 -3
  6634. package/http/node_modules/resolve/test/resolver/dot_slash_main/index.js +0 -1
  6635. package/http/node_modules/resolve/test/resolver/dot_slash_main/package.json +0 -3
  6636. package/http/node_modules/resolve/test/resolver/foo.js +0 -1
  6637. package/http/node_modules/resolve/test/resolver/incorrect_main/index.js +0 -2
  6638. package/http/node_modules/resolve/test/resolver/incorrect_main/package.json +0 -3
  6639. package/http/node_modules/resolve/test/resolver/invalid_main/package.json +0 -7
  6640. package/http/node_modules/resolve/test/resolver/mug.coffee +0 -0
  6641. package/http/node_modules/resolve/test/resolver/mug.js +0 -0
  6642. package/http/node_modules/resolve/test/resolver/multirepo/lerna.json +0 -6
  6643. package/http/node_modules/resolve/test/resolver/multirepo/package.json +0 -20
  6644. package/http/node_modules/resolve/test/resolver/multirepo/packages/package-a/index.js +0 -35
  6645. package/http/node_modules/resolve/test/resolver/multirepo/packages/package-a/package.json +0 -14
  6646. package/http/node_modules/resolve/test/resolver/multirepo/packages/package-b/index.js +0 -0
  6647. package/http/node_modules/resolve/test/resolver/multirepo/packages/package-b/package.json +0 -14
  6648. package/http/node_modules/resolve/test/resolver/nested_symlinks/mylib/async.js +0 -26
  6649. package/http/node_modules/resolve/test/resolver/nested_symlinks/mylib/package.json +0 -15
  6650. package/http/node_modules/resolve/test/resolver/nested_symlinks/mylib/sync.js +0 -12
  6651. package/http/node_modules/resolve/test/resolver/other_path/lib/other-lib.js +0 -0
  6652. package/http/node_modules/resolve/test/resolver/other_path/root.js +0 -0
  6653. package/http/node_modules/resolve/test/resolver/quux/foo/index.js +0 -1
  6654. package/http/node_modules/resolve/test/resolver/same_names/foo/index.js +0 -1
  6655. package/http/node_modules/resolve/test/resolver/same_names/foo.js +0 -1
  6656. package/http/node_modules/resolve/test/resolver/symlinked/_/node_modules/foo.js +0 -0
  6657. package/http/node_modules/resolve/test/resolver/symlinked/_/symlink_target/.gitkeep +0 -0
  6658. package/http/node_modules/resolve/test/resolver/symlinked/package/bar.js +0 -1
  6659. package/http/node_modules/resolve/test/resolver/symlinked/package/package.json +0 -3
  6660. package/http/node_modules/resolve/test/resolver/without_basedir/main.js +0 -5
  6661. package/http/node_modules/resolve/test/resolver.js +0 -450
  6662. package/http/node_modules/resolve/test/resolver_sync.js +0 -358
  6663. package/http/node_modules/resolve/test/shadowed_core/node_modules/util/index.js +0 -0
  6664. package/http/node_modules/resolve/test/shadowed_core.js +0 -54
  6665. package/http/node_modules/resolve/test/subdirs.js +0 -13
  6666. package/http/node_modules/resolve/test/symlinks.js +0 -176
  6667. package/http/node_modules/resolve-dir/LICENSE +0 -21
  6668. package/http/node_modules/resolve-dir/README.md +0 -88
  6669. package/http/node_modules/resolve-dir/index.js +0 -22
  6670. package/http/node_modules/resolve-dir/package.json +0 -105
  6671. package/http/node_modules/resolve-url/.jshintrc +0 -44
  6672. package/http/node_modules/resolve-url/LICENSE +0 -21
  6673. package/http/node_modules/resolve-url/bower.json +0 -15
  6674. package/http/node_modules/resolve-url/changelog.md +0 -15
  6675. package/http/node_modules/resolve-url/component.json +0 -15
  6676. package/http/node_modules/resolve-url/package.json +0 -68
  6677. package/http/node_modules/resolve-url/readme.md +0 -83
  6678. package/http/node_modules/resolve-url/resolve-url.js +0 -47
  6679. package/http/node_modules/resolve-url/test/resolve-url.js +0 -70
  6680. package/http/node_modules/ret/LICENSE +0 -19
  6681. package/http/node_modules/ret/README.md +0 -183
  6682. package/http/node_modules/ret/lib/index.js +0 -282
  6683. package/http/node_modules/ret/lib/positions.js +0 -17
  6684. package/http/node_modules/ret/lib/sets.js +0 -82
  6685. package/http/node_modules/ret/lib/types.js +0 -10
  6686. package/http/node_modules/ret/lib/util.js +0 -111
  6687. package/http/node_modules/ret/package.json +0 -67
  6688. package/http/node_modules/rimraf/CHANGELOG.md +0 -65
  6689. package/http/node_modules/rimraf/LICENSE +0 -15
  6690. package/http/node_modules/rimraf/README.md +0 -101
  6691. package/http/node_modules/rimraf/bin.js +0 -68
  6692. package/http/node_modules/rimraf/package.json +0 -70
  6693. package/http/node_modules/rimraf/rimraf.js +0 -360
  6694. package/http/node_modules/safe-buffer/LICENSE +0 -21
  6695. package/http/node_modules/safe-buffer/README.md +0 -584
  6696. package/http/node_modules/safe-buffer/index.d.ts +0 -187
  6697. package/http/node_modules/safe-buffer/index.js +0 -62
  6698. package/http/node_modules/safe-buffer/package.json +0 -63
  6699. package/http/node_modules/safe-regex/.travis.yml +0 -4
  6700. package/http/node_modules/safe-regex/LICENSE +0 -18
  6701. package/http/node_modules/safe-regex/example/safe.js +0 -3
  6702. package/http/node_modules/safe-regex/index.js +0 -43
  6703. package/http/node_modules/safe-regex/package.json +0 -74
  6704. package/http/node_modules/safe-regex/readme.markdown +0 -65
  6705. package/http/node_modules/safe-regex/test/regex.js +0 -50
  6706. package/http/node_modules/safer-buffer/LICENSE +0 -21
  6707. package/http/node_modules/safer-buffer/Porting-Buffer.md +0 -268
  6708. package/http/node_modules/safer-buffer/Readme.md +0 -156
  6709. package/http/node_modules/safer-buffer/dangerous.js +0 -58
  6710. package/http/node_modules/safer-buffer/package.json +0 -60
  6711. package/http/node_modules/safer-buffer/safer.js +0 -77
  6712. package/http/node_modules/safer-buffer/tests.js +0 -406
  6713. package/http/node_modules/send/HISTORY.md +0 -496
  6714. package/http/node_modules/send/LICENSE +0 -23
  6715. package/http/node_modules/send/README.md +0 -329
  6716. package/http/node_modules/send/index.js +0 -1129
  6717. package/http/node_modules/send/package.json +0 -106
  6718. package/http/node_modules/serve-static/HISTORY.md +0 -451
  6719. package/http/node_modules/serve-static/LICENSE +0 -25
  6720. package/http/node_modules/serve-static/README.md +0 -259
  6721. package/http/node_modules/serve-static/index.js +0 -210
  6722. package/http/node_modules/serve-static/package.json +0 -77
  6723. package/http/node_modules/set-value/LICENSE +0 -21
  6724. package/http/node_modules/set-value/README.md +0 -150
  6725. package/http/node_modules/set-value/index.js +0 -55
  6726. package/http/node_modules/set-value/package.json +0 -121
  6727. package/http/node_modules/setprototypeof/LICENSE +0 -13
  6728. package/http/node_modules/setprototypeof/README.md +0 -31
  6729. package/http/node_modules/setprototypeof/index.d.ts +0 -2
  6730. package/http/node_modules/setprototypeof/index.js +0 -17
  6731. package/http/node_modules/setprototypeof/package.json +0 -64
  6732. package/http/node_modules/setprototypeof/test/index.js +0 -24
  6733. package/http/node_modules/snapdragon/LICENSE +0 -21
  6734. package/http/node_modules/snapdragon/README.md +0 -321
  6735. package/http/node_modules/snapdragon/index.js +0 -174
  6736. package/http/node_modules/snapdragon/lib/compiler.js +0 -177
  6737. package/http/node_modules/snapdragon/lib/parser.js +0 -533
  6738. package/http/node_modules/snapdragon/lib/position.js +0 -14
  6739. package/http/node_modules/snapdragon/lib/source-maps.js +0 -145
  6740. package/http/node_modules/snapdragon/lib/utils.js +0 -48
  6741. package/http/node_modules/snapdragon/package.json +0 -126
  6742. package/http/node_modules/snapdragon-node/LICENSE +0 -21
  6743. package/http/node_modules/snapdragon-node/README.md +0 -453
  6744. package/http/node_modules/snapdragon-node/index.js +0 -492
  6745. package/http/node_modules/snapdragon-node/package.json +0 -109
  6746. package/http/node_modules/snapdragon-util/LICENSE +0 -21
  6747. package/http/node_modules/snapdragon-util/README.md +0 -807
  6748. package/http/node_modules/snapdragon-util/index.js +0 -1019
  6749. package/http/node_modules/snapdragon-util/package.json +0 -98
  6750. package/http/node_modules/source-map/CHANGELOG.md +0 -301
  6751. package/http/node_modules/source-map/LICENSE +0 -28
  6752. package/http/node_modules/source-map/README.md +0 -729
  6753. package/http/node_modules/source-map/dist/source-map.debug.js +0 -3091
  6754. package/http/node_modules/source-map/dist/source-map.js +0 -3090
  6755. package/http/node_modules/source-map/dist/source-map.min.js +0 -2
  6756. package/http/node_modules/source-map/dist/source-map.min.js.map +0 -1
  6757. package/http/node_modules/source-map/lib/array-set.js +0 -121
  6758. package/http/node_modules/source-map/lib/base64-vlq.js +0 -140
  6759. package/http/node_modules/source-map/lib/base64.js +0 -67
  6760. package/http/node_modules/source-map/lib/binary-search.js +0 -111
  6761. package/http/node_modules/source-map/lib/mapping-list.js +0 -79
  6762. package/http/node_modules/source-map/lib/quick-sort.js +0 -114
  6763. package/http/node_modules/source-map/lib/source-map-consumer.js +0 -1082
  6764. package/http/node_modules/source-map/lib/source-map-generator.js +0 -416
  6765. package/http/node_modules/source-map/lib/source-node.js +0 -413
  6766. package/http/node_modules/source-map/lib/util.js +0 -417
  6767. package/http/node_modules/source-map/package.json +0 -211
  6768. package/http/node_modules/source-map/source-map.js +0 -8
  6769. package/http/node_modules/source-map-resolve/LICENSE +0 -22
  6770. package/http/node_modules/source-map-resolve/changelog.md +0 -108
  6771. package/http/node_modules/source-map-resolve/lib/decode-uri-component.js +0 -8
  6772. package/http/node_modules/source-map-resolve/lib/resolve-url.js +0 -9
  6773. package/http/node_modules/source-map-resolve/lib/source-map-resolve-node.js +0 -342
  6774. package/http/node_modules/source-map-resolve/package.json +0 -81
  6775. package/http/node_modules/source-map-resolve/readme.md +0 -231
  6776. package/http/node_modules/source-map-resolve/source-map-resolve.js +0 -348
  6777. package/http/node_modules/source-map-url/.jshintrc +0 -43
  6778. package/http/node_modules/source-map-url/LICENSE +0 -21
  6779. package/http/node_modules/source-map-url/bower.json +0 -20
  6780. package/http/node_modules/source-map-url/changelog.md +0 -52
  6781. package/http/node_modules/source-map-url/component.json +0 -18
  6782. package/http/node_modules/source-map-url/package.json +0 -73
  6783. package/http/node_modules/source-map-url/readme.md +0 -97
  6784. package/http/node_modules/source-map-url/source-map-url.js +0 -57
  6785. package/http/node_modules/source-map-url/test/source-map-url.js +0 -402
  6786. package/http/node_modules/source-map-url/x-package.json5 +0 -55
  6787. package/http/node_modules/split-string/LICENSE +0 -21
  6788. package/http/node_modules/split-string/README.md +0 -321
  6789. package/http/node_modules/split-string/index.js +0 -171
  6790. package/http/node_modules/split-string/package.json +0 -103
  6791. package/http/node_modules/sprintf-js/CHANGELOG.md +0 -17
  6792. package/http/node_modules/sprintf-js/CONTRIBUTORS.md +0 -25
  6793. package/http/node_modules/sprintf-js/LICENSE +0 -24
  6794. package/http/node_modules/sprintf-js/README.md +0 -143
  6795. package/http/node_modules/sprintf-js/dist/.gitattributes +0 -4
  6796. package/http/node_modules/sprintf-js/dist/angular-sprintf.min.js +0 -3
  6797. package/http/node_modules/sprintf-js/dist/angular-sprintf.min.js.map +0 -1
  6798. package/http/node_modules/sprintf-js/dist/sprintf.min.js +0 -3
  6799. package/http/node_modules/sprintf-js/dist/sprintf.min.js.map +0 -1
  6800. package/http/node_modules/sprintf-js/package.json +0 -63
  6801. package/http/node_modules/sprintf-js/src/angular-sprintf.js +0 -24
  6802. package/http/node_modules/sprintf-js/src/sprintf.js +0 -231
  6803. package/http/node_modules/static-extend/LICENSE +0 -21
  6804. package/http/node_modules/static-extend/index.js +0 -90
  6805. package/http/node_modules/static-extend/package.json +0 -96
  6806. package/http/node_modules/statuses/HISTORY.md +0 -65
  6807. package/http/node_modules/statuses/LICENSE +0 -23
  6808. package/http/node_modules/statuses/README.md +0 -127
  6809. package/http/node_modules/statuses/codes.json +0 -66
  6810. package/http/node_modules/statuses/index.js +0 -113
  6811. package/http/node_modules/statuses/package.json +0 -90
  6812. package/http/node_modules/strip-ansi/index.d.ts +0 -15
  6813. package/http/node_modules/strip-ansi/index.js +0 -7
  6814. package/http/node_modules/strip-ansi/license +0 -9
  6815. package/http/node_modules/strip-ansi/package.json +0 -86
  6816. package/http/node_modules/strip-ansi/readme.md +0 -61
  6817. package/http/node_modules/supports-color/browser.js +0 -5
  6818. package/http/node_modules/supports-color/index.js +0 -135
  6819. package/http/node_modules/supports-color/license +0 -9
  6820. package/http/node_modules/supports-color/package.json +0 -85
  6821. package/http/node_modules/supports-color/readme.md +0 -76
  6822. package/http/node_modules/to-object-path/LICENSE +0 -21
  6823. package/http/node_modules/to-object-path/README.md +0 -71
  6824. package/http/node_modules/to-object-path/index.js +0 -33
  6825. package/http/node_modules/to-object-path/package.json +0 -81
  6826. package/http/node_modules/to-regex/LICENSE +0 -21
  6827. package/http/node_modules/to-regex/README.md +0 -205
  6828. package/http/node_modules/to-regex/index.js +0 -155
  6829. package/http/node_modules/to-regex/package.json +0 -97
  6830. package/http/node_modules/to-regex-range/LICENSE +0 -21
  6831. package/http/node_modules/to-regex-range/README.md +0 -281
  6832. package/http/node_modules/to-regex-range/index.js +0 -294
  6833. package/http/node_modules/to-regex-range/package.json +0 -117
  6834. package/http/node_modules/toidentifier/LICENSE +0 -21
  6835. package/http/node_modules/toidentifier/README.md +0 -61
  6836. package/http/node_modules/toidentifier/index.js +0 -30
  6837. package/http/node_modules/toidentifier/package.json +0 -76
  6838. package/http/node_modules/type-is/HISTORY.md +0 -259
  6839. package/http/node_modules/type-is/LICENSE +0 -23
  6840. package/http/node_modules/type-is/README.md +0 -170
  6841. package/http/node_modules/type-is/index.js +0 -266
  6842. package/http/node_modules/type-is/package.json +0 -85
  6843. package/http/node_modules/uid-safe/HISTORY.md +0 -61
  6844. package/http/node_modules/uid-safe/LICENSE +0 -22
  6845. package/http/node_modules/uid-safe/README.md +0 -77
  6846. package/http/node_modules/uid-safe/index.js +0 -107
  6847. package/http/node_modules/uid-safe/package.json +0 -85
  6848. package/http/node_modules/unc-path-regex/LICENSE +0 -21
  6849. package/http/node_modules/unc-path-regex/README.md +0 -88
  6850. package/http/node_modules/unc-path-regex/index.js +0 -5
  6851. package/http/node_modules/unc-path-regex/package.json +0 -84
  6852. package/http/node_modules/underscore.string/.eslintignore +0 -8
  6853. package/http/node_modules/underscore.string/.eslintrc +0 -26
  6854. package/http/node_modules/underscore.string/.travis.yml +0 -4
  6855. package/http/node_modules/underscore.string/CHANGELOG.markdown +0 -206
  6856. package/http/node_modules/underscore.string/CONTRIBUTING.markdown +0 -32
  6857. package/http/node_modules/underscore.string/README.markdown +0 -888
  6858. package/http/node_modules/underscore.string/bower.json +0 -34
  6859. package/http/node_modules/underscore.string/camelize.js +0 -14
  6860. package/http/node_modules/underscore.string/capitalize.js +0 -8
  6861. package/http/node_modules/underscore.string/chars.js +0 -5
  6862. package/http/node_modules/underscore.string/chop.js +0 -6
  6863. package/http/node_modules/underscore.string/classify.js +0 -8
  6864. package/http/node_modules/underscore.string/clean.js +0 -5
  6865. package/http/node_modules/underscore.string/cleanDiacritics.js +0 -22
  6866. package/http/node_modules/underscore.string/component.json +0 -16
  6867. package/http/node_modules/underscore.string/count.js +0 -10
  6868. package/http/node_modules/underscore.string/dasherize.js +0 -5
  6869. package/http/node_modules/underscore.string/decapitalize.js +0 -6
  6870. package/http/node_modules/underscore.string/dedent.js +0 -28
  6871. package/http/node_modules/underscore.string/dist/underscore.string.js +0 -1369
  6872. package/http/node_modules/underscore.string/dist/underscore.string.min.js +0 -19
  6873. package/http/node_modules/underscore.string/endsWith.js +0 -13
  6874. package/http/node_modules/underscore.string/escapeHTML.js +0 -17
  6875. package/http/node_modules/underscore.string/exports.js +0 -10
  6876. package/http/node_modules/underscore.string/helper/adjacent.js +0 -9
  6877. package/http/node_modules/underscore.string/helper/defaultToWhiteSpace.js +0 -10
  6878. package/http/node_modules/underscore.string/helper/escapeChars.js +0 -19
  6879. package/http/node_modules/underscore.string/helper/escapeRegExp.js +0 -5
  6880. package/http/node_modules/underscore.string/helper/htmlEntities.js +0 -19
  6881. package/http/node_modules/underscore.string/helper/makeString.js +0 -7
  6882. package/http/node_modules/underscore.string/helper/strRepeat.js +0 -9
  6883. package/http/node_modules/underscore.string/helper/toPositive.js +0 -3
  6884. package/http/node_modules/underscore.string/humanize.js +0 -7
  6885. package/http/node_modules/underscore.string/include.js +0 -6
  6886. package/http/node_modules/underscore.string/index.js +0 -143
  6887. package/http/node_modules/underscore.string/insert.js +0 -5
  6888. package/http/node_modules/underscore.string/isBlank.js +0 -5
  6889. package/http/node_modules/underscore.string/join.js +0 -9
  6890. package/http/node_modules/underscore.string/levenshtein.js +0 -52
  6891. package/http/node_modules/underscore.string/lines.js +0 -4
  6892. package/http/node_modules/underscore.string/lpad.js +0 -5
  6893. package/http/node_modules/underscore.string/lrpad.js +0 -5
  6894. package/http/node_modules/underscore.string/ltrim.js +0 -10
  6895. package/http/node_modules/underscore.string/map.js +0 -9
  6896. package/http/node_modules/underscore.string/meteor-post.js +0 -2
  6897. package/http/node_modules/underscore.string/meteor-pre.js +0 -6
  6898. package/http/node_modules/underscore.string/naturalCmp.js +0 -29
  6899. package/http/node_modules/underscore.string/numberFormat.js +0 -12
  6900. package/http/node_modules/underscore.string/package.js +0 -16
  6901. package/http/node_modules/underscore.string/package.json +0 -131
  6902. package/http/node_modules/underscore.string/pad.js +0 -26
  6903. package/http/node_modules/underscore.string/pred.js +0 -5
  6904. package/http/node_modules/underscore.string/prune.js +0 -27
  6905. package/http/node_modules/underscore.string/quote.js +0 -5
  6906. package/http/node_modules/underscore.string/repeat.js +0 -16
  6907. package/http/node_modules/underscore.string/replaceAll.js +0 -8
  6908. package/http/node_modules/underscore.string/reverse.js +0 -5
  6909. package/http/node_modules/underscore.string/rpad.js +0 -5
  6910. package/http/node_modules/underscore.string/rtrim.js +0 -10
  6911. package/http/node_modules/underscore.string/slugify.js +0 -7
  6912. package/http/node_modules/underscore.string/splice.js +0 -7
  6913. package/http/node_modules/underscore.string/sprintf.js +0 -4
  6914. package/http/node_modules/underscore.string/startsWith.js +0 -9
  6915. package/http/node_modules/underscore.string/strLeft.js +0 -8
  6916. package/http/node_modules/underscore.string/strLeftBack.js +0 -8
  6917. package/http/node_modules/underscore.string/strRight.js +0 -8
  6918. package/http/node_modules/underscore.string/strRightBack.js +0 -8
  6919. package/http/node_modules/underscore.string/stripTags.js +0 -5
  6920. package/http/node_modules/underscore.string/succ.js +0 -5
  6921. package/http/node_modules/underscore.string/surround.js +0 -3
  6922. package/http/node_modules/underscore.string/swapCase.js +0 -7
  6923. package/http/node_modules/underscore.string/titleize.js +0 -7
  6924. package/http/node_modules/underscore.string/toBoolean.js +0 -20
  6925. package/http/node_modules/underscore.string/toNumber.js +0 -5
  6926. package/http/node_modules/underscore.string/toSentence.js +0 -12
  6927. package/http/node_modules/underscore.string/toSentenceSerial.js +0 -5
  6928. package/http/node_modules/underscore.string/trim.js +0 -10
  6929. package/http/node_modules/underscore.string/truncate.js +0 -8
  6930. package/http/node_modules/underscore.string/underscored.js +0 -5
  6931. package/http/node_modules/underscore.string/unescapeHTML.js +0 -20
  6932. package/http/node_modules/underscore.string/unquote.js +0 -6
  6933. package/http/node_modules/underscore.string/vsprintf.js +0 -4
  6934. package/http/node_modules/underscore.string/words.js +0 -7
  6935. package/http/node_modules/underscore.string/wrap.js +0 -102
  6936. package/http/node_modules/union-value/LICENSE +0 -21
  6937. package/http/node_modules/union-value/README.md +0 -73
  6938. package/http/node_modules/union-value/index.js +0 -30
  6939. package/http/node_modules/union-value/package.json +0 -101
  6940. package/http/node_modules/unpipe/HISTORY.md +0 -4
  6941. package/http/node_modules/unpipe/LICENSE +0 -22
  6942. package/http/node_modules/unpipe/README.md +0 -43
  6943. package/http/node_modules/unpipe/index.js +0 -69
  6944. package/http/node_modules/unpipe/package.json +0 -63
  6945. package/http/node_modules/unset-value/LICENSE +0 -21
  6946. package/http/node_modules/unset-value/README.md +0 -131
  6947. package/http/node_modules/unset-value/index.js +0 -32
  6948. package/http/node_modules/unset-value/package.json +0 -112
  6949. package/http/node_modules/urix/.jshintrc +0 -42
  6950. package/http/node_modules/urix/LICENSE +0 -21
  6951. package/http/node_modules/urix/index.js +0 -17
  6952. package/http/node_modules/urix/package.json +0 -59
  6953. package/http/node_modules/urix/readme.md +0 -46
  6954. package/http/node_modules/urix/test/index.js +0 -43
  6955. package/http/node_modules/use/LICENSE +0 -21
  6956. package/http/node_modules/use/README.md +0 -90
  6957. package/http/node_modules/use/index.js +0 -155
  6958. package/http/node_modules/use/package.json +0 -108
  6959. package/http/node_modules/util-deprecate/History.md +0 -16
  6960. package/http/node_modules/util-deprecate/LICENSE +0 -24
  6961. package/http/node_modules/util-deprecate/README.md +0 -53
  6962. package/http/node_modules/util-deprecate/browser.js +0 -67
  6963. package/http/node_modules/util-deprecate/node.js +0 -6
  6964. package/http/node_modules/util-deprecate/package.json +0 -56
  6965. package/http/node_modules/utils-merge/LICENSE +0 -20
  6966. package/http/node_modules/utils-merge/README.md +0 -34
  6967. package/http/node_modules/utils-merge/index.js +0 -23
  6968. package/http/node_modules/utils-merge/package.json +0 -66
  6969. package/http/node_modules/v8flags/LICENSE +0 -21
  6970. package/http/node_modules/v8flags/README.md +0 -64
  6971. package/http/node_modules/v8flags/config-path.js +0 -38
  6972. package/http/node_modules/v8flags/index.js +0 -162
  6973. package/http/node_modules/v8flags/package.json +0 -99
  6974. package/http/node_modules/vary/HISTORY.md +0 -39
  6975. package/http/node_modules/vary/LICENSE +0 -22
  6976. package/http/node_modules/vary/README.md +0 -101
  6977. package/http/node_modules/vary/index.js +0 -149
  6978. package/http/node_modules/vary/package.json +0 -78
  6979. package/http/node_modules/which/CHANGELOG.md +0 -152
  6980. package/http/node_modules/which/LICENSE +0 -15
  6981. package/http/node_modules/which/README.md +0 -51
  6982. package/http/node_modules/which/bin/which +0 -52
  6983. package/http/node_modules/which/package.json +0 -66
  6984. package/http/node_modules/which/which.js +0 -135
  6985. package/http/node_modules/wrappy/LICENSE +0 -15
  6986. package/http/node_modules/wrappy/README.md +0 -36
  6987. package/http/node_modules/wrappy/package.json +0 -59
  6988. package/http/node_modules/wrappy/wrappy.js +0 -33
  6989. package/http/package-lock.json +0 -2312
  6990. package/mailbody.js +0 -502
  6991. package/mailheader.js +0 -308
  6992. package/messagestream.js +0 -441
  6993. package/plugins/aliases.js +0 -120
  6994. package/plugins/attachment.js +0 -503
  6995. package/plugins/connect.p0f.js +0 -5
  6996. package/plugins/spf.js +0 -327
  6997. package/spf.js +0 -689
  6998. package/tests/mailbody.js +0 -346
  6999. package/tests/mailheader.js +0 -127
  7000. package/tests/messagestream.js +0 -34
  7001. package/tests/plugins/aliases.js +0 -376
  7002. package/tests/plugins/spf.js +0 -251
  7003. package/tests/spf.js +0 -96
@@ -1,3091 +0,0 @@
1
- (function webpackUniversalModuleDefinition(root, factory) {
2
- if(typeof exports === 'object' && typeof module === 'object')
3
- module.exports = factory();
4
- else if(typeof define === 'function' && define.amd)
5
- define([], factory);
6
- else if(typeof exports === 'object')
7
- exports["sourceMap"] = factory();
8
- else
9
- root["sourceMap"] = factory();
10
- })(this, function() {
11
- return /******/ (function(modules) { // webpackBootstrap
12
- /******/ // The module cache
13
- /******/ var installedModules = {};
14
- /******/
15
- /******/ // The require function
16
- /******/ function __webpack_require__(moduleId) {
17
- /******/
18
- /******/ // Check if module is in cache
19
- /******/ if(installedModules[moduleId])
20
- /******/ return installedModules[moduleId].exports;
21
- /******/
22
- /******/ // Create a new module (and put it into the cache)
23
- /******/ var module = installedModules[moduleId] = {
24
- /******/ exports: {},
25
- /******/ id: moduleId,
26
- /******/ loaded: false
27
- /******/ };
28
- /******/
29
- /******/ // Execute the module function
30
- /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
31
- /******/
32
- /******/ // Flag the module as loaded
33
- /******/ module.loaded = true;
34
- /******/
35
- /******/ // Return the exports of the module
36
- /******/ return module.exports;
37
- /******/ }
38
- /******/
39
- /******/
40
- /******/ // expose the modules object (__webpack_modules__)
41
- /******/ __webpack_require__.m = modules;
42
- /******/
43
- /******/ // expose the module cache
44
- /******/ __webpack_require__.c = installedModules;
45
- /******/
46
- /******/ // __webpack_public_path__
47
- /******/ __webpack_require__.p = "";
48
- /******/
49
- /******/ // Load entry module and return exports
50
- /******/ return __webpack_require__(0);
51
- /******/ })
52
- /************************************************************************/
53
- /******/ ([
54
- /* 0 */
55
- /***/ (function(module, exports, __webpack_require__) {
56
-
57
- /*
58
- * Copyright 2009-2011 Mozilla Foundation and contributors
59
- * Licensed under the New BSD license. See LICENSE.txt or:
60
- * http://opensource.org/licenses/BSD-3-Clause
61
- */
62
- exports.SourceMapGenerator = __webpack_require__(1).SourceMapGenerator;
63
- exports.SourceMapConsumer = __webpack_require__(7).SourceMapConsumer;
64
- exports.SourceNode = __webpack_require__(10).SourceNode;
65
-
66
-
67
- /***/ }),
68
- /* 1 */
69
- /***/ (function(module, exports, __webpack_require__) {
70
-
71
- /* -*- Mode: js; js-indent-level: 2; -*- */
72
- /*
73
- * Copyright 2011 Mozilla Foundation and contributors
74
- * Licensed under the New BSD license. See LICENSE or:
75
- * http://opensource.org/licenses/BSD-3-Clause
76
- */
77
-
78
- var base64VLQ = __webpack_require__(2);
79
- var util = __webpack_require__(4);
80
- var ArraySet = __webpack_require__(5).ArraySet;
81
- var MappingList = __webpack_require__(6).MappingList;
82
-
83
- /**
84
- * An instance of the SourceMapGenerator represents a source map which is
85
- * being built incrementally. You may pass an object with the following
86
- * properties:
87
- *
88
- * - file: The filename of the generated source.
89
- * - sourceRoot: A root for all relative URLs in this source map.
90
- */
91
- function SourceMapGenerator(aArgs) {
92
- if (!aArgs) {
93
- aArgs = {};
94
- }
95
- this._file = util.getArg(aArgs, 'file', null);
96
- this._sourceRoot = util.getArg(aArgs, 'sourceRoot', null);
97
- this._skipValidation = util.getArg(aArgs, 'skipValidation', false);
98
- this._sources = new ArraySet();
99
- this._names = new ArraySet();
100
- this._mappings = new MappingList();
101
- this._sourcesContents = null;
102
- }
103
-
104
- SourceMapGenerator.prototype._version = 3;
105
-
106
- /**
107
- * Creates a new SourceMapGenerator based on a SourceMapConsumer
108
- *
109
- * @param aSourceMapConsumer The SourceMap.
110
- */
111
- SourceMapGenerator.fromSourceMap =
112
- function SourceMapGenerator_fromSourceMap(aSourceMapConsumer) {
113
- var sourceRoot = aSourceMapConsumer.sourceRoot;
114
- var generator = new SourceMapGenerator({
115
- file: aSourceMapConsumer.file,
116
- sourceRoot: sourceRoot
117
- });
118
- aSourceMapConsumer.eachMapping(function (mapping) {
119
- var newMapping = {
120
- generated: {
121
- line: mapping.generatedLine,
122
- column: mapping.generatedColumn
123
- }
124
- };
125
-
126
- if (mapping.source != null) {
127
- newMapping.source = mapping.source;
128
- if (sourceRoot != null) {
129
- newMapping.source = util.relative(sourceRoot, newMapping.source);
130
- }
131
-
132
- newMapping.original = {
133
- line: mapping.originalLine,
134
- column: mapping.originalColumn
135
- };
136
-
137
- if (mapping.name != null) {
138
- newMapping.name = mapping.name;
139
- }
140
- }
141
-
142
- generator.addMapping(newMapping);
143
- });
144
- aSourceMapConsumer.sources.forEach(function (sourceFile) {
145
- var content = aSourceMapConsumer.sourceContentFor(sourceFile);
146
- if (content != null) {
147
- generator.setSourceContent(sourceFile, content);
148
- }
149
- });
150
- return generator;
151
- };
152
-
153
- /**
154
- * Add a single mapping from original source line and column to the generated
155
- * source's line and column for this source map being created. The mapping
156
- * object should have the following properties:
157
- *
158
- * - generated: An object with the generated line and column positions.
159
- * - original: An object with the original line and column positions.
160
- * - source: The original source file (relative to the sourceRoot).
161
- * - name: An optional original token name for this mapping.
162
- */
163
- SourceMapGenerator.prototype.addMapping =
164
- function SourceMapGenerator_addMapping(aArgs) {
165
- var generated = util.getArg(aArgs, 'generated');
166
- var original = util.getArg(aArgs, 'original', null);
167
- var source = util.getArg(aArgs, 'source', null);
168
- var name = util.getArg(aArgs, 'name', null);
169
-
170
- if (!this._skipValidation) {
171
- this._validateMapping(generated, original, source, name);
172
- }
173
-
174
- if (source != null) {
175
- source = String(source);
176
- if (!this._sources.has(source)) {
177
- this._sources.add(source);
178
- }
179
- }
180
-
181
- if (name != null) {
182
- name = String(name);
183
- if (!this._names.has(name)) {
184
- this._names.add(name);
185
- }
186
- }
187
-
188
- this._mappings.add({
189
- generatedLine: generated.line,
190
- generatedColumn: generated.column,
191
- originalLine: original != null && original.line,
192
- originalColumn: original != null && original.column,
193
- source: source,
194
- name: name
195
- });
196
- };
197
-
198
- /**
199
- * Set the source content for a source file.
200
- */
201
- SourceMapGenerator.prototype.setSourceContent =
202
- function SourceMapGenerator_setSourceContent(aSourceFile, aSourceContent) {
203
- var source = aSourceFile;
204
- if (this._sourceRoot != null) {
205
- source = util.relative(this._sourceRoot, source);
206
- }
207
-
208
- if (aSourceContent != null) {
209
- // Add the source content to the _sourcesContents map.
210
- // Create a new _sourcesContents map if the property is null.
211
- if (!this._sourcesContents) {
212
- this._sourcesContents = Object.create(null);
213
- }
214
- this._sourcesContents[util.toSetString(source)] = aSourceContent;
215
- } else if (this._sourcesContents) {
216
- // Remove the source file from the _sourcesContents map.
217
- // If the _sourcesContents map is empty, set the property to null.
218
- delete this._sourcesContents[util.toSetString(source)];
219
- if (Object.keys(this._sourcesContents).length === 0) {
220
- this._sourcesContents = null;
221
- }
222
- }
223
- };
224
-
225
- /**
226
- * Applies the mappings of a sub-source-map for a specific source file to the
227
- * source map being generated. Each mapping to the supplied source file is
228
- * rewritten using the supplied source map. Note: The resolution for the
229
- * resulting mappings is the minimium of this map and the supplied map.
230
- *
231
- * @param aSourceMapConsumer The source map to be applied.
232
- * @param aSourceFile Optional. The filename of the source file.
233
- * If omitted, SourceMapConsumer's file property will be used.
234
- * @param aSourceMapPath Optional. The dirname of the path to the source map
235
- * to be applied. If relative, it is relative to the SourceMapConsumer.
236
- * This parameter is needed when the two source maps aren't in the same
237
- * directory, and the source map to be applied contains relative source
238
- * paths. If so, those relative source paths need to be rewritten
239
- * relative to the SourceMapGenerator.
240
- */
241
- SourceMapGenerator.prototype.applySourceMap =
242
- function SourceMapGenerator_applySourceMap(aSourceMapConsumer, aSourceFile, aSourceMapPath) {
243
- var sourceFile = aSourceFile;
244
- // If aSourceFile is omitted, we will use the file property of the SourceMap
245
- if (aSourceFile == null) {
246
- if (aSourceMapConsumer.file == null) {
247
- throw new Error(
248
- 'SourceMapGenerator.prototype.applySourceMap requires either an explicit source file, ' +
249
- 'or the source map\'s "file" property. Both were omitted.'
250
- );
251
- }
252
- sourceFile = aSourceMapConsumer.file;
253
- }
254
- var sourceRoot = this._sourceRoot;
255
- // Make "sourceFile" relative if an absolute Url is passed.
256
- if (sourceRoot != null) {
257
- sourceFile = util.relative(sourceRoot, sourceFile);
258
- }
259
- // Applying the SourceMap can add and remove items from the sources and
260
- // the names array.
261
- var newSources = new ArraySet();
262
- var newNames = new ArraySet();
263
-
264
- // Find mappings for the "sourceFile"
265
- this._mappings.unsortedForEach(function (mapping) {
266
- if (mapping.source === sourceFile && mapping.originalLine != null) {
267
- // Check if it can be mapped by the source map, then update the mapping.
268
- var original = aSourceMapConsumer.originalPositionFor({
269
- line: mapping.originalLine,
270
- column: mapping.originalColumn
271
- });
272
- if (original.source != null) {
273
- // Copy mapping
274
- mapping.source = original.source;
275
- if (aSourceMapPath != null) {
276
- mapping.source = util.join(aSourceMapPath, mapping.source)
277
- }
278
- if (sourceRoot != null) {
279
- mapping.source = util.relative(sourceRoot, mapping.source);
280
- }
281
- mapping.originalLine = original.line;
282
- mapping.originalColumn = original.column;
283
- if (original.name != null) {
284
- mapping.name = original.name;
285
- }
286
- }
287
- }
288
-
289
- var source = mapping.source;
290
- if (source != null && !newSources.has(source)) {
291
- newSources.add(source);
292
- }
293
-
294
- var name = mapping.name;
295
- if (name != null && !newNames.has(name)) {
296
- newNames.add(name);
297
- }
298
-
299
- }, this);
300
- this._sources = newSources;
301
- this._names = newNames;
302
-
303
- // Copy sourcesContents of applied map.
304
- aSourceMapConsumer.sources.forEach(function (sourceFile) {
305
- var content = aSourceMapConsumer.sourceContentFor(sourceFile);
306
- if (content != null) {
307
- if (aSourceMapPath != null) {
308
- sourceFile = util.join(aSourceMapPath, sourceFile);
309
- }
310
- if (sourceRoot != null) {
311
- sourceFile = util.relative(sourceRoot, sourceFile);
312
- }
313
- this.setSourceContent(sourceFile, content);
314
- }
315
- }, this);
316
- };
317
-
318
- /**
319
- * A mapping can have one of the three levels of data:
320
- *
321
- * 1. Just the generated position.
322
- * 2. The Generated position, original position, and original source.
323
- * 3. Generated and original position, original source, as well as a name
324
- * token.
325
- *
326
- * To maintain consistency, we validate that any new mapping being added falls
327
- * in to one of these categories.
328
- */
329
- SourceMapGenerator.prototype._validateMapping =
330
- function SourceMapGenerator_validateMapping(aGenerated, aOriginal, aSource,
331
- aName) {
332
- // When aOriginal is truthy but has empty values for .line and .column,
333
- // it is most likely a programmer error. In this case we throw a very
334
- // specific error message to try to guide them the right way.
335
- // For example: https://github.com/Polymer/polymer-bundler/pull/519
336
- if (aOriginal && typeof aOriginal.line !== 'number' && typeof aOriginal.column !== 'number') {
337
- throw new Error(
338
- 'original.line and original.column are not numbers -- you probably meant to omit ' +
339
- 'the original mapping entirely and only map the generated position. If so, pass ' +
340
- 'null for the original mapping instead of an object with empty or null values.'
341
- );
342
- }
343
-
344
- if (aGenerated && 'line' in aGenerated && 'column' in aGenerated
345
- && aGenerated.line > 0 && aGenerated.column >= 0
346
- && !aOriginal && !aSource && !aName) {
347
- // Case 1.
348
- return;
349
- }
350
- else if (aGenerated && 'line' in aGenerated && 'column' in aGenerated
351
- && aOriginal && 'line' in aOriginal && 'column' in aOriginal
352
- && aGenerated.line > 0 && aGenerated.column >= 0
353
- && aOriginal.line > 0 && aOriginal.column >= 0
354
- && aSource) {
355
- // Cases 2 and 3.
356
- return;
357
- }
358
- else {
359
- throw new Error('Invalid mapping: ' + JSON.stringify({
360
- generated: aGenerated,
361
- source: aSource,
362
- original: aOriginal,
363
- name: aName
364
- }));
365
- }
366
- };
367
-
368
- /**
369
- * Serialize the accumulated mappings in to the stream of base 64 VLQs
370
- * specified by the source map format.
371
- */
372
- SourceMapGenerator.prototype._serializeMappings =
373
- function SourceMapGenerator_serializeMappings() {
374
- var previousGeneratedColumn = 0;
375
- var previousGeneratedLine = 1;
376
- var previousOriginalColumn = 0;
377
- var previousOriginalLine = 0;
378
- var previousName = 0;
379
- var previousSource = 0;
380
- var result = '';
381
- var next;
382
- var mapping;
383
- var nameIdx;
384
- var sourceIdx;
385
-
386
- var mappings = this._mappings.toArray();
387
- for (var i = 0, len = mappings.length; i < len; i++) {
388
- mapping = mappings[i];
389
- next = ''
390
-
391
- if (mapping.generatedLine !== previousGeneratedLine) {
392
- previousGeneratedColumn = 0;
393
- while (mapping.generatedLine !== previousGeneratedLine) {
394
- next += ';';
395
- previousGeneratedLine++;
396
- }
397
- }
398
- else {
399
- if (i > 0) {
400
- if (!util.compareByGeneratedPositionsInflated(mapping, mappings[i - 1])) {
401
- continue;
402
- }
403
- next += ',';
404
- }
405
- }
406
-
407
- next += base64VLQ.encode(mapping.generatedColumn
408
- - previousGeneratedColumn);
409
- previousGeneratedColumn = mapping.generatedColumn;
410
-
411
- if (mapping.source != null) {
412
- sourceIdx = this._sources.indexOf(mapping.source);
413
- next += base64VLQ.encode(sourceIdx - previousSource);
414
- previousSource = sourceIdx;
415
-
416
- // lines are stored 0-based in SourceMap spec version 3
417
- next += base64VLQ.encode(mapping.originalLine - 1
418
- - previousOriginalLine);
419
- previousOriginalLine = mapping.originalLine - 1;
420
-
421
- next += base64VLQ.encode(mapping.originalColumn
422
- - previousOriginalColumn);
423
- previousOriginalColumn = mapping.originalColumn;
424
-
425
- if (mapping.name != null) {
426
- nameIdx = this._names.indexOf(mapping.name);
427
- next += base64VLQ.encode(nameIdx - previousName);
428
- previousName = nameIdx;
429
- }
430
- }
431
-
432
- result += next;
433
- }
434
-
435
- return result;
436
- };
437
-
438
- SourceMapGenerator.prototype._generateSourcesContent =
439
- function SourceMapGenerator_generateSourcesContent(aSources, aSourceRoot) {
440
- return aSources.map(function (source) {
441
- if (!this._sourcesContents) {
442
- return null;
443
- }
444
- if (aSourceRoot != null) {
445
- source = util.relative(aSourceRoot, source);
446
- }
447
- var key = util.toSetString(source);
448
- return Object.prototype.hasOwnProperty.call(this._sourcesContents, key)
449
- ? this._sourcesContents[key]
450
- : null;
451
- }, this);
452
- };
453
-
454
- /**
455
- * Externalize the source map.
456
- */
457
- SourceMapGenerator.prototype.toJSON =
458
- function SourceMapGenerator_toJSON() {
459
- var map = {
460
- version: this._version,
461
- sources: this._sources.toArray(),
462
- names: this._names.toArray(),
463
- mappings: this._serializeMappings()
464
- };
465
- if (this._file != null) {
466
- map.file = this._file;
467
- }
468
- if (this._sourceRoot != null) {
469
- map.sourceRoot = this._sourceRoot;
470
- }
471
- if (this._sourcesContents) {
472
- map.sourcesContent = this._generateSourcesContent(map.sources, map.sourceRoot);
473
- }
474
-
475
- return map;
476
- };
477
-
478
- /**
479
- * Render the source map being generated to a string.
480
- */
481
- SourceMapGenerator.prototype.toString =
482
- function SourceMapGenerator_toString() {
483
- return JSON.stringify(this.toJSON());
484
- };
485
-
486
- exports.SourceMapGenerator = SourceMapGenerator;
487
-
488
-
489
- /***/ }),
490
- /* 2 */
491
- /***/ (function(module, exports, __webpack_require__) {
492
-
493
- /* -*- Mode: js; js-indent-level: 2; -*- */
494
- /*
495
- * Copyright 2011 Mozilla Foundation and contributors
496
- * Licensed under the New BSD license. See LICENSE or:
497
- * http://opensource.org/licenses/BSD-3-Clause
498
- *
499
- * Based on the Base 64 VLQ implementation in Closure Compiler:
500
- * https://code.google.com/p/closure-compiler/source/browse/trunk/src/com/google/debugging/sourcemap/Base64VLQ.java
501
- *
502
- * Copyright 2011 The Closure Compiler Authors. All rights reserved.
503
- * Redistribution and use in source and binary forms, with or without
504
- * modification, are permitted provided that the following conditions are
505
- * met:
506
- *
507
- * * Redistributions of source code must retain the above copyright
508
- * notice, this list of conditions and the following disclaimer.
509
- * * Redistributions in binary form must reproduce the above
510
- * copyright notice, this list of conditions and the following
511
- * disclaimer in the documentation and/or other materials provided
512
- * with the distribution.
513
- * * Neither the name of Google Inc. nor the names of its
514
- * contributors may be used to endorse or promote products derived
515
- * from this software without specific prior written permission.
516
- *
517
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
518
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
519
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
520
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
521
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
522
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
523
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
524
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
525
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
526
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
527
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
528
- */
529
-
530
- var base64 = __webpack_require__(3);
531
-
532
- // A single base 64 digit can contain 6 bits of data. For the base 64 variable
533
- // length quantities we use in the source map spec, the first bit is the sign,
534
- // the next four bits are the actual value, and the 6th bit is the
535
- // continuation bit. The continuation bit tells us whether there are more
536
- // digits in this value following this digit.
537
- //
538
- // Continuation
539
- // | Sign
540
- // | |
541
- // V V
542
- // 101011
543
-
544
- var VLQ_BASE_SHIFT = 5;
545
-
546
- // binary: 100000
547
- var VLQ_BASE = 1 << VLQ_BASE_SHIFT;
548
-
549
- // binary: 011111
550
- var VLQ_BASE_MASK = VLQ_BASE - 1;
551
-
552
- // binary: 100000
553
- var VLQ_CONTINUATION_BIT = VLQ_BASE;
554
-
555
- /**
556
- * Converts from a two-complement value to a value where the sign bit is
557
- * placed in the least significant bit. For example, as decimals:
558
- * 1 becomes 2 (10 binary), -1 becomes 3 (11 binary)
559
- * 2 becomes 4 (100 binary), -2 becomes 5 (101 binary)
560
- */
561
- function toVLQSigned(aValue) {
562
- return aValue < 0
563
- ? ((-aValue) << 1) + 1
564
- : (aValue << 1) + 0;
565
- }
566
-
567
- /**
568
- * Converts to a two-complement value from a value where the sign bit is
569
- * placed in the least significant bit. For example, as decimals:
570
- * 2 (10 binary) becomes 1, 3 (11 binary) becomes -1
571
- * 4 (100 binary) becomes 2, 5 (101 binary) becomes -2
572
- */
573
- function fromVLQSigned(aValue) {
574
- var isNegative = (aValue & 1) === 1;
575
- var shifted = aValue >> 1;
576
- return isNegative
577
- ? -shifted
578
- : shifted;
579
- }
580
-
581
- /**
582
- * Returns the base 64 VLQ encoded value.
583
- */
584
- exports.encode = function base64VLQ_encode(aValue) {
585
- var encoded = "";
586
- var digit;
587
-
588
- var vlq = toVLQSigned(aValue);
589
-
590
- do {
591
- digit = vlq & VLQ_BASE_MASK;
592
- vlq >>>= VLQ_BASE_SHIFT;
593
- if (vlq > 0) {
594
- // There are still more digits in this value, so we must make sure the
595
- // continuation bit is marked.
596
- digit |= VLQ_CONTINUATION_BIT;
597
- }
598
- encoded += base64.encode(digit);
599
- } while (vlq > 0);
600
-
601
- return encoded;
602
- };
603
-
604
- /**
605
- * Decodes the next base 64 VLQ value from the given string and returns the
606
- * value and the rest of the string via the out parameter.
607
- */
608
- exports.decode = function base64VLQ_decode(aStr, aIndex, aOutParam) {
609
- var strLen = aStr.length;
610
- var result = 0;
611
- var shift = 0;
612
- var continuation, digit;
613
-
614
- do {
615
- if (aIndex >= strLen) {
616
- throw new Error("Expected more digits in base 64 VLQ value.");
617
- }
618
-
619
- digit = base64.decode(aStr.charCodeAt(aIndex++));
620
- if (digit === -1) {
621
- throw new Error("Invalid base64 digit: " + aStr.charAt(aIndex - 1));
622
- }
623
-
624
- continuation = !!(digit & VLQ_CONTINUATION_BIT);
625
- digit &= VLQ_BASE_MASK;
626
- result = result + (digit << shift);
627
- shift += VLQ_BASE_SHIFT;
628
- } while (continuation);
629
-
630
- aOutParam.value = fromVLQSigned(result);
631
- aOutParam.rest = aIndex;
632
- };
633
-
634
-
635
- /***/ }),
636
- /* 3 */
637
- /***/ (function(module, exports) {
638
-
639
- /* -*- Mode: js; js-indent-level: 2; -*- */
640
- /*
641
- * Copyright 2011 Mozilla Foundation and contributors
642
- * Licensed under the New BSD license. See LICENSE or:
643
- * http://opensource.org/licenses/BSD-3-Clause
644
- */
645
-
646
- var intToCharMap = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'.split('');
647
-
648
- /**
649
- * Encode an integer in the range of 0 to 63 to a single base 64 digit.
650
- */
651
- exports.encode = function (number) {
652
- if (0 <= number && number < intToCharMap.length) {
653
- return intToCharMap[number];
654
- }
655
- throw new TypeError("Must be between 0 and 63: " + number);
656
- };
657
-
658
- /**
659
- * Decode a single base 64 character code digit to an integer. Returns -1 on
660
- * failure.
661
- */
662
- exports.decode = function (charCode) {
663
- var bigA = 65; // 'A'
664
- var bigZ = 90; // 'Z'
665
-
666
- var littleA = 97; // 'a'
667
- var littleZ = 122; // 'z'
668
-
669
- var zero = 48; // '0'
670
- var nine = 57; // '9'
671
-
672
- var plus = 43; // '+'
673
- var slash = 47; // '/'
674
-
675
- var littleOffset = 26;
676
- var numberOffset = 52;
677
-
678
- // 0 - 25: ABCDEFGHIJKLMNOPQRSTUVWXYZ
679
- if (bigA <= charCode && charCode <= bigZ) {
680
- return (charCode - bigA);
681
- }
682
-
683
- // 26 - 51: abcdefghijklmnopqrstuvwxyz
684
- if (littleA <= charCode && charCode <= littleZ) {
685
- return (charCode - littleA + littleOffset);
686
- }
687
-
688
- // 52 - 61: 0123456789
689
- if (zero <= charCode && charCode <= nine) {
690
- return (charCode - zero + numberOffset);
691
- }
692
-
693
- // 62: +
694
- if (charCode == plus) {
695
- return 62;
696
- }
697
-
698
- // 63: /
699
- if (charCode == slash) {
700
- return 63;
701
- }
702
-
703
- // Invalid base64 digit.
704
- return -1;
705
- };
706
-
707
-
708
- /***/ }),
709
- /* 4 */
710
- /***/ (function(module, exports) {
711
-
712
- /* -*- Mode: js; js-indent-level: 2; -*- */
713
- /*
714
- * Copyright 2011 Mozilla Foundation and contributors
715
- * Licensed under the New BSD license. See LICENSE or:
716
- * http://opensource.org/licenses/BSD-3-Clause
717
- */
718
-
719
- /**
720
- * This is a helper function for getting values from parameter/options
721
- * objects.
722
- *
723
- * @param args The object we are extracting values from
724
- * @param name The name of the property we are getting.
725
- * @param defaultValue An optional value to return if the property is missing
726
- * from the object. If this is not specified and the property is missing, an
727
- * error will be thrown.
728
- */
729
- function getArg(aArgs, aName, aDefaultValue) {
730
- if (aName in aArgs) {
731
- return aArgs[aName];
732
- } else if (arguments.length === 3) {
733
- return aDefaultValue;
734
- } else {
735
- throw new Error('"' + aName + '" is a required argument.');
736
- }
737
- }
738
- exports.getArg = getArg;
739
-
740
- var urlRegexp = /^(?:([\w+\-.]+):)?\/\/(?:(\w+:\w+)@)?([\w.]*)(?::(\d+))?(\S*)$/;
741
- var dataUrlRegexp = /^data:.+\,.+$/;
742
-
743
- function urlParse(aUrl) {
744
- var match = aUrl.match(urlRegexp);
745
- if (!match) {
746
- return null;
747
- }
748
- return {
749
- scheme: match[1],
750
- auth: match[2],
751
- host: match[3],
752
- port: match[4],
753
- path: match[5]
754
- };
755
- }
756
- exports.urlParse = urlParse;
757
-
758
- function urlGenerate(aParsedUrl) {
759
- var url = '';
760
- if (aParsedUrl.scheme) {
761
- url += aParsedUrl.scheme + ':';
762
- }
763
- url += '//';
764
- if (aParsedUrl.auth) {
765
- url += aParsedUrl.auth + '@';
766
- }
767
- if (aParsedUrl.host) {
768
- url += aParsedUrl.host;
769
- }
770
- if (aParsedUrl.port) {
771
- url += ":" + aParsedUrl.port
772
- }
773
- if (aParsedUrl.path) {
774
- url += aParsedUrl.path;
775
- }
776
- return url;
777
- }
778
- exports.urlGenerate = urlGenerate;
779
-
780
- /**
781
- * Normalizes a path, or the path portion of a URL:
782
- *
783
- * - Replaces consecutive slashes with one slash.
784
- * - Removes unnecessary '.' parts.
785
- * - Removes unnecessary '<dir>/..' parts.
786
- *
787
- * Based on code in the Node.js 'path' core module.
788
- *
789
- * @param aPath The path or url to normalize.
790
- */
791
- function normalize(aPath) {
792
- var path = aPath;
793
- var url = urlParse(aPath);
794
- if (url) {
795
- if (!url.path) {
796
- return aPath;
797
- }
798
- path = url.path;
799
- }
800
- var isAbsolute = exports.isAbsolute(path);
801
-
802
- var parts = path.split(/\/+/);
803
- for (var part, up = 0, i = parts.length - 1; i >= 0; i--) {
804
- part = parts[i];
805
- if (part === '.') {
806
- parts.splice(i, 1);
807
- } else if (part === '..') {
808
- up++;
809
- } else if (up > 0) {
810
- if (part === '') {
811
- // The first part is blank if the path is absolute. Trying to go
812
- // above the root is a no-op. Therefore we can remove all '..' parts
813
- // directly after the root.
814
- parts.splice(i + 1, up);
815
- up = 0;
816
- } else {
817
- parts.splice(i, 2);
818
- up--;
819
- }
820
- }
821
- }
822
- path = parts.join('/');
823
-
824
- if (path === '') {
825
- path = isAbsolute ? '/' : '.';
826
- }
827
-
828
- if (url) {
829
- url.path = path;
830
- return urlGenerate(url);
831
- }
832
- return path;
833
- }
834
- exports.normalize = normalize;
835
-
836
- /**
837
- * Joins two paths/URLs.
838
- *
839
- * @param aRoot The root path or URL.
840
- * @param aPath The path or URL to be joined with the root.
841
- *
842
- * - If aPath is a URL or a data URI, aPath is returned, unless aPath is a
843
- * scheme-relative URL: Then the scheme of aRoot, if any, is prepended
844
- * first.
845
- * - Otherwise aPath is a path. If aRoot is a URL, then its path portion
846
- * is updated with the result and aRoot is returned. Otherwise the result
847
- * is returned.
848
- * - If aPath is absolute, the result is aPath.
849
- * - Otherwise the two paths are joined with a slash.
850
- * - Joining for example 'http://' and 'www.example.com' is also supported.
851
- */
852
- function join(aRoot, aPath) {
853
- if (aRoot === "") {
854
- aRoot = ".";
855
- }
856
- if (aPath === "") {
857
- aPath = ".";
858
- }
859
- var aPathUrl = urlParse(aPath);
860
- var aRootUrl = urlParse(aRoot);
861
- if (aRootUrl) {
862
- aRoot = aRootUrl.path || '/';
863
- }
864
-
865
- // `join(foo, '//www.example.org')`
866
- if (aPathUrl && !aPathUrl.scheme) {
867
- if (aRootUrl) {
868
- aPathUrl.scheme = aRootUrl.scheme;
869
- }
870
- return urlGenerate(aPathUrl);
871
- }
872
-
873
- if (aPathUrl || aPath.match(dataUrlRegexp)) {
874
- return aPath;
875
- }
876
-
877
- // `join('http://', 'www.example.com')`
878
- if (aRootUrl && !aRootUrl.host && !aRootUrl.path) {
879
- aRootUrl.host = aPath;
880
- return urlGenerate(aRootUrl);
881
- }
882
-
883
- var joined = aPath.charAt(0) === '/'
884
- ? aPath
885
- : normalize(aRoot.replace(/\/+$/, '') + '/' + aPath);
886
-
887
- if (aRootUrl) {
888
- aRootUrl.path = joined;
889
- return urlGenerate(aRootUrl);
890
- }
891
- return joined;
892
- }
893
- exports.join = join;
894
-
895
- exports.isAbsolute = function (aPath) {
896
- return aPath.charAt(0) === '/' || !!aPath.match(urlRegexp);
897
- };
898
-
899
- /**
900
- * Make a path relative to a URL or another path.
901
- *
902
- * @param aRoot The root path or URL.
903
- * @param aPath The path or URL to be made relative to aRoot.
904
- */
905
- function relative(aRoot, aPath) {
906
- if (aRoot === "") {
907
- aRoot = ".";
908
- }
909
-
910
- aRoot = aRoot.replace(/\/$/, '');
911
-
912
- // It is possible for the path to be above the root. In this case, simply
913
- // checking whether the root is a prefix of the path won't work. Instead, we
914
- // need to remove components from the root one by one, until either we find
915
- // a prefix that fits, or we run out of components to remove.
916
- var level = 0;
917
- while (aPath.indexOf(aRoot + '/') !== 0) {
918
- var index = aRoot.lastIndexOf("/");
919
- if (index < 0) {
920
- return aPath;
921
- }
922
-
923
- // If the only part of the root that is left is the scheme (i.e. http://,
924
- // file:///, etc.), one or more slashes (/), or simply nothing at all, we
925
- // have exhausted all components, so the path is not relative to the root.
926
- aRoot = aRoot.slice(0, index);
927
- if (aRoot.match(/^([^\/]+:\/)?\/*$/)) {
928
- return aPath;
929
- }
930
-
931
- ++level;
932
- }
933
-
934
- // Make sure we add a "../" for each component we removed from the root.
935
- return Array(level + 1).join("../") + aPath.substr(aRoot.length + 1);
936
- }
937
- exports.relative = relative;
938
-
939
- var supportsNullProto = (function () {
940
- var obj = Object.create(null);
941
- return !('__proto__' in obj);
942
- }());
943
-
944
- function identity (s) {
945
- return s;
946
- }
947
-
948
- /**
949
- * Because behavior goes wacky when you set `__proto__` on objects, we
950
- * have to prefix all the strings in our set with an arbitrary character.
951
- *
952
- * See https://github.com/mozilla/source-map/pull/31 and
953
- * https://github.com/mozilla/source-map/issues/30
954
- *
955
- * @param String aStr
956
- */
957
- function toSetString(aStr) {
958
- if (isProtoString(aStr)) {
959
- return '$' + aStr;
960
- }
961
-
962
- return aStr;
963
- }
964
- exports.toSetString = supportsNullProto ? identity : toSetString;
965
-
966
- function fromSetString(aStr) {
967
- if (isProtoString(aStr)) {
968
- return aStr.slice(1);
969
- }
970
-
971
- return aStr;
972
- }
973
- exports.fromSetString = supportsNullProto ? identity : fromSetString;
974
-
975
- function isProtoString(s) {
976
- if (!s) {
977
- return false;
978
- }
979
-
980
- var length = s.length;
981
-
982
- if (length < 9 /* "__proto__".length */) {
983
- return false;
984
- }
985
-
986
- if (s.charCodeAt(length - 1) !== 95 /* '_' */ ||
987
- s.charCodeAt(length - 2) !== 95 /* '_' */ ||
988
- s.charCodeAt(length - 3) !== 111 /* 'o' */ ||
989
- s.charCodeAt(length - 4) !== 116 /* 't' */ ||
990
- s.charCodeAt(length - 5) !== 111 /* 'o' */ ||
991
- s.charCodeAt(length - 6) !== 114 /* 'r' */ ||
992
- s.charCodeAt(length - 7) !== 112 /* 'p' */ ||
993
- s.charCodeAt(length - 8) !== 95 /* '_' */ ||
994
- s.charCodeAt(length - 9) !== 95 /* '_' */) {
995
- return false;
996
- }
997
-
998
- for (var i = length - 10; i >= 0; i--) {
999
- if (s.charCodeAt(i) !== 36 /* '$' */) {
1000
- return false;
1001
- }
1002
- }
1003
-
1004
- return true;
1005
- }
1006
-
1007
- /**
1008
- * Comparator between two mappings where the original positions are compared.
1009
- *
1010
- * Optionally pass in `true` as `onlyCompareGenerated` to consider two
1011
- * mappings with the same original source/line/column, but different generated
1012
- * line and column the same. Useful when searching for a mapping with a
1013
- * stubbed out mapping.
1014
- */
1015
- function compareByOriginalPositions(mappingA, mappingB, onlyCompareOriginal) {
1016
- var cmp = mappingA.source - mappingB.source;
1017
- if (cmp !== 0) {
1018
- return cmp;
1019
- }
1020
-
1021
- cmp = mappingA.originalLine - mappingB.originalLine;
1022
- if (cmp !== 0) {
1023
- return cmp;
1024
- }
1025
-
1026
- cmp = mappingA.originalColumn - mappingB.originalColumn;
1027
- if (cmp !== 0 || onlyCompareOriginal) {
1028
- return cmp;
1029
- }
1030
-
1031
- cmp = mappingA.generatedColumn - mappingB.generatedColumn;
1032
- if (cmp !== 0) {
1033
- return cmp;
1034
- }
1035
-
1036
- cmp = mappingA.generatedLine - mappingB.generatedLine;
1037
- if (cmp !== 0) {
1038
- return cmp;
1039
- }
1040
-
1041
- return mappingA.name - mappingB.name;
1042
- }
1043
- exports.compareByOriginalPositions = compareByOriginalPositions;
1044
-
1045
- /**
1046
- * Comparator between two mappings with deflated source and name indices where
1047
- * the generated positions are compared.
1048
- *
1049
- * Optionally pass in `true` as `onlyCompareGenerated` to consider two
1050
- * mappings with the same generated line and column, but different
1051
- * source/name/original line and column the same. Useful when searching for a
1052
- * mapping with a stubbed out mapping.
1053
- */
1054
- function compareByGeneratedPositionsDeflated(mappingA, mappingB, onlyCompareGenerated) {
1055
- var cmp = mappingA.generatedLine - mappingB.generatedLine;
1056
- if (cmp !== 0) {
1057
- return cmp;
1058
- }
1059
-
1060
- cmp = mappingA.generatedColumn - mappingB.generatedColumn;
1061
- if (cmp !== 0 || onlyCompareGenerated) {
1062
- return cmp;
1063
- }
1064
-
1065
- cmp = mappingA.source - mappingB.source;
1066
- if (cmp !== 0) {
1067
- return cmp;
1068
- }
1069
-
1070
- cmp = mappingA.originalLine - mappingB.originalLine;
1071
- if (cmp !== 0) {
1072
- return cmp;
1073
- }
1074
-
1075
- cmp = mappingA.originalColumn - mappingB.originalColumn;
1076
- if (cmp !== 0) {
1077
- return cmp;
1078
- }
1079
-
1080
- return mappingA.name - mappingB.name;
1081
- }
1082
- exports.compareByGeneratedPositionsDeflated = compareByGeneratedPositionsDeflated;
1083
-
1084
- function strcmp(aStr1, aStr2) {
1085
- if (aStr1 === aStr2) {
1086
- return 0;
1087
- }
1088
-
1089
- if (aStr1 > aStr2) {
1090
- return 1;
1091
- }
1092
-
1093
- return -1;
1094
- }
1095
-
1096
- /**
1097
- * Comparator between two mappings with inflated source and name strings where
1098
- * the generated positions are compared.
1099
- */
1100
- function compareByGeneratedPositionsInflated(mappingA, mappingB) {
1101
- var cmp = mappingA.generatedLine - mappingB.generatedLine;
1102
- if (cmp !== 0) {
1103
- return cmp;
1104
- }
1105
-
1106
- cmp = mappingA.generatedColumn - mappingB.generatedColumn;
1107
- if (cmp !== 0) {
1108
- return cmp;
1109
- }
1110
-
1111
- cmp = strcmp(mappingA.source, mappingB.source);
1112
- if (cmp !== 0) {
1113
- return cmp;
1114
- }
1115
-
1116
- cmp = mappingA.originalLine - mappingB.originalLine;
1117
- if (cmp !== 0) {
1118
- return cmp;
1119
- }
1120
-
1121
- cmp = mappingA.originalColumn - mappingB.originalColumn;
1122
- if (cmp !== 0) {
1123
- return cmp;
1124
- }
1125
-
1126
- return strcmp(mappingA.name, mappingB.name);
1127
- }
1128
- exports.compareByGeneratedPositionsInflated = compareByGeneratedPositionsInflated;
1129
-
1130
-
1131
- /***/ }),
1132
- /* 5 */
1133
- /***/ (function(module, exports, __webpack_require__) {
1134
-
1135
- /* -*- Mode: js; js-indent-level: 2; -*- */
1136
- /*
1137
- * Copyright 2011 Mozilla Foundation and contributors
1138
- * Licensed under the New BSD license. See LICENSE or:
1139
- * http://opensource.org/licenses/BSD-3-Clause
1140
- */
1141
-
1142
- var util = __webpack_require__(4);
1143
- var has = Object.prototype.hasOwnProperty;
1144
- var hasNativeMap = typeof Map !== "undefined";
1145
-
1146
- /**
1147
- * A data structure which is a combination of an array and a set. Adding a new
1148
- * member is O(1), testing for membership is O(1), and finding the index of an
1149
- * element is O(1). Removing elements from the set is not supported. Only
1150
- * strings are supported for membership.
1151
- */
1152
- function ArraySet() {
1153
- this._array = [];
1154
- this._set = hasNativeMap ? new Map() : Object.create(null);
1155
- }
1156
-
1157
- /**
1158
- * Static method for creating ArraySet instances from an existing array.
1159
- */
1160
- ArraySet.fromArray = function ArraySet_fromArray(aArray, aAllowDuplicates) {
1161
- var set = new ArraySet();
1162
- for (var i = 0, len = aArray.length; i < len; i++) {
1163
- set.add(aArray[i], aAllowDuplicates);
1164
- }
1165
- return set;
1166
- };
1167
-
1168
- /**
1169
- * Return how many unique items are in this ArraySet. If duplicates have been
1170
- * added, than those do not count towards the size.
1171
- *
1172
- * @returns Number
1173
- */
1174
- ArraySet.prototype.size = function ArraySet_size() {
1175
- return hasNativeMap ? this._set.size : Object.getOwnPropertyNames(this._set).length;
1176
- };
1177
-
1178
- /**
1179
- * Add the given string to this set.
1180
- *
1181
- * @param String aStr
1182
- */
1183
- ArraySet.prototype.add = function ArraySet_add(aStr, aAllowDuplicates) {
1184
- var sStr = hasNativeMap ? aStr : util.toSetString(aStr);
1185
- var isDuplicate = hasNativeMap ? this.has(aStr) : has.call(this._set, sStr);
1186
- var idx = this._array.length;
1187
- if (!isDuplicate || aAllowDuplicates) {
1188
- this._array.push(aStr);
1189
- }
1190
- if (!isDuplicate) {
1191
- if (hasNativeMap) {
1192
- this._set.set(aStr, idx);
1193
- } else {
1194
- this._set[sStr] = idx;
1195
- }
1196
- }
1197
- };
1198
-
1199
- /**
1200
- * Is the given string a member of this set?
1201
- *
1202
- * @param String aStr
1203
- */
1204
- ArraySet.prototype.has = function ArraySet_has(aStr) {
1205
- if (hasNativeMap) {
1206
- return this._set.has(aStr);
1207
- } else {
1208
- var sStr = util.toSetString(aStr);
1209
- return has.call(this._set, sStr);
1210
- }
1211
- };
1212
-
1213
- /**
1214
- * What is the index of the given string in the array?
1215
- *
1216
- * @param String aStr
1217
- */
1218
- ArraySet.prototype.indexOf = function ArraySet_indexOf(aStr) {
1219
- if (hasNativeMap) {
1220
- var idx = this._set.get(aStr);
1221
- if (idx >= 0) {
1222
- return idx;
1223
- }
1224
- } else {
1225
- var sStr = util.toSetString(aStr);
1226
- if (has.call(this._set, sStr)) {
1227
- return this._set[sStr];
1228
- }
1229
- }
1230
-
1231
- throw new Error('"' + aStr + '" is not in the set.');
1232
- };
1233
-
1234
- /**
1235
- * What is the element at the given index?
1236
- *
1237
- * @param Number aIdx
1238
- */
1239
- ArraySet.prototype.at = function ArraySet_at(aIdx) {
1240
- if (aIdx >= 0 && aIdx < this._array.length) {
1241
- return this._array[aIdx];
1242
- }
1243
- throw new Error('No element indexed by ' + aIdx);
1244
- };
1245
-
1246
- /**
1247
- * Returns the array representation of this set (which has the proper indices
1248
- * indicated by indexOf). Note that this is a copy of the internal array used
1249
- * for storing the members so that no one can mess with internal state.
1250
- */
1251
- ArraySet.prototype.toArray = function ArraySet_toArray() {
1252
- return this._array.slice();
1253
- };
1254
-
1255
- exports.ArraySet = ArraySet;
1256
-
1257
-
1258
- /***/ }),
1259
- /* 6 */
1260
- /***/ (function(module, exports, __webpack_require__) {
1261
-
1262
- /* -*- Mode: js; js-indent-level: 2; -*- */
1263
- /*
1264
- * Copyright 2014 Mozilla Foundation and contributors
1265
- * Licensed under the New BSD license. See LICENSE or:
1266
- * http://opensource.org/licenses/BSD-3-Clause
1267
- */
1268
-
1269
- var util = __webpack_require__(4);
1270
-
1271
- /**
1272
- * Determine whether mappingB is after mappingA with respect to generated
1273
- * position.
1274
- */
1275
- function generatedPositionAfter(mappingA, mappingB) {
1276
- // Optimized for most common case
1277
- var lineA = mappingA.generatedLine;
1278
- var lineB = mappingB.generatedLine;
1279
- var columnA = mappingA.generatedColumn;
1280
- var columnB = mappingB.generatedColumn;
1281
- return lineB > lineA || lineB == lineA && columnB >= columnA ||
1282
- util.compareByGeneratedPositionsInflated(mappingA, mappingB) <= 0;
1283
- }
1284
-
1285
- /**
1286
- * A data structure to provide a sorted view of accumulated mappings in a
1287
- * performance conscious manner. It trades a neglibable overhead in general
1288
- * case for a large speedup in case of mappings being added in order.
1289
- */
1290
- function MappingList() {
1291
- this._array = [];
1292
- this._sorted = true;
1293
- // Serves as infimum
1294
- this._last = {generatedLine: -1, generatedColumn: 0};
1295
- }
1296
-
1297
- /**
1298
- * Iterate through internal items. This method takes the same arguments that
1299
- * `Array.prototype.forEach` takes.
1300
- *
1301
- * NOTE: The order of the mappings is NOT guaranteed.
1302
- */
1303
- MappingList.prototype.unsortedForEach =
1304
- function MappingList_forEach(aCallback, aThisArg) {
1305
- this._array.forEach(aCallback, aThisArg);
1306
- };
1307
-
1308
- /**
1309
- * Add the given source mapping.
1310
- *
1311
- * @param Object aMapping
1312
- */
1313
- MappingList.prototype.add = function MappingList_add(aMapping) {
1314
- if (generatedPositionAfter(this._last, aMapping)) {
1315
- this._last = aMapping;
1316
- this._array.push(aMapping);
1317
- } else {
1318
- this._sorted = false;
1319
- this._array.push(aMapping);
1320
- }
1321
- };
1322
-
1323
- /**
1324
- * Returns the flat, sorted array of mappings. The mappings are sorted by
1325
- * generated position.
1326
- *
1327
- * WARNING: This method returns internal data without copying, for
1328
- * performance. The return value must NOT be mutated, and should be treated as
1329
- * an immutable borrow. If you want to take ownership, you must make your own
1330
- * copy.
1331
- */
1332
- MappingList.prototype.toArray = function MappingList_toArray() {
1333
- if (!this._sorted) {
1334
- this._array.sort(util.compareByGeneratedPositionsInflated);
1335
- this._sorted = true;
1336
- }
1337
- return this._array;
1338
- };
1339
-
1340
- exports.MappingList = MappingList;
1341
-
1342
-
1343
- /***/ }),
1344
- /* 7 */
1345
- /***/ (function(module, exports, __webpack_require__) {
1346
-
1347
- /* -*- Mode: js; js-indent-level: 2; -*- */
1348
- /*
1349
- * Copyright 2011 Mozilla Foundation and contributors
1350
- * Licensed under the New BSD license. See LICENSE or:
1351
- * http://opensource.org/licenses/BSD-3-Clause
1352
- */
1353
-
1354
- var util = __webpack_require__(4);
1355
- var binarySearch = __webpack_require__(8);
1356
- var ArraySet = __webpack_require__(5).ArraySet;
1357
- var base64VLQ = __webpack_require__(2);
1358
- var quickSort = __webpack_require__(9).quickSort;
1359
-
1360
- function SourceMapConsumer(aSourceMap) {
1361
- var sourceMap = aSourceMap;
1362
- if (typeof aSourceMap === 'string') {
1363
- sourceMap = JSON.parse(aSourceMap.replace(/^\)\]\}'/, ''));
1364
- }
1365
-
1366
- return sourceMap.sections != null
1367
- ? new IndexedSourceMapConsumer(sourceMap)
1368
- : new BasicSourceMapConsumer(sourceMap);
1369
- }
1370
-
1371
- SourceMapConsumer.fromSourceMap = function(aSourceMap) {
1372
- return BasicSourceMapConsumer.fromSourceMap(aSourceMap);
1373
- }
1374
-
1375
- /**
1376
- * The version of the source mapping spec that we are consuming.
1377
- */
1378
- SourceMapConsumer.prototype._version = 3;
1379
-
1380
- // `__generatedMappings` and `__originalMappings` are arrays that hold the
1381
- // parsed mapping coordinates from the source map's "mappings" attribute. They
1382
- // are lazily instantiated, accessed via the `_generatedMappings` and
1383
- // `_originalMappings` getters respectively, and we only parse the mappings
1384
- // and create these arrays once queried for a source location. We jump through
1385
- // these hoops because there can be many thousands of mappings, and parsing
1386
- // them is expensive, so we only want to do it if we must.
1387
- //
1388
- // Each object in the arrays is of the form:
1389
- //
1390
- // {
1391
- // generatedLine: The line number in the generated code,
1392
- // generatedColumn: The column number in the generated code,
1393
- // source: The path to the original source file that generated this
1394
- // chunk of code,
1395
- // originalLine: The line number in the original source that
1396
- // corresponds to this chunk of generated code,
1397
- // originalColumn: The column number in the original source that
1398
- // corresponds to this chunk of generated code,
1399
- // name: The name of the original symbol which generated this chunk of
1400
- // code.
1401
- // }
1402
- //
1403
- // All properties except for `generatedLine` and `generatedColumn` can be
1404
- // `null`.
1405
- //
1406
- // `_generatedMappings` is ordered by the generated positions.
1407
- //
1408
- // `_originalMappings` is ordered by the original positions.
1409
-
1410
- SourceMapConsumer.prototype.__generatedMappings = null;
1411
- Object.defineProperty(SourceMapConsumer.prototype, '_generatedMappings', {
1412
- get: function () {
1413
- if (!this.__generatedMappings) {
1414
- this._parseMappings(this._mappings, this.sourceRoot);
1415
- }
1416
-
1417
- return this.__generatedMappings;
1418
- }
1419
- });
1420
-
1421
- SourceMapConsumer.prototype.__originalMappings = null;
1422
- Object.defineProperty(SourceMapConsumer.prototype, '_originalMappings', {
1423
- get: function () {
1424
- if (!this.__originalMappings) {
1425
- this._parseMappings(this._mappings, this.sourceRoot);
1426
- }
1427
-
1428
- return this.__originalMappings;
1429
- }
1430
- });
1431
-
1432
- SourceMapConsumer.prototype._charIsMappingSeparator =
1433
- function SourceMapConsumer_charIsMappingSeparator(aStr, index) {
1434
- var c = aStr.charAt(index);
1435
- return c === ";" || c === ",";
1436
- };
1437
-
1438
- /**
1439
- * Parse the mappings in a string in to a data structure which we can easily
1440
- * query (the ordered arrays in the `this.__generatedMappings` and
1441
- * `this.__originalMappings` properties).
1442
- */
1443
- SourceMapConsumer.prototype._parseMappings =
1444
- function SourceMapConsumer_parseMappings(aStr, aSourceRoot) {
1445
- throw new Error("Subclasses must implement _parseMappings");
1446
- };
1447
-
1448
- SourceMapConsumer.GENERATED_ORDER = 1;
1449
- SourceMapConsumer.ORIGINAL_ORDER = 2;
1450
-
1451
- SourceMapConsumer.GREATEST_LOWER_BOUND = 1;
1452
- SourceMapConsumer.LEAST_UPPER_BOUND = 2;
1453
-
1454
- /**
1455
- * Iterate over each mapping between an original source/line/column and a
1456
- * generated line/column in this source map.
1457
- *
1458
- * @param Function aCallback
1459
- * The function that is called with each mapping.
1460
- * @param Object aContext
1461
- * Optional. If specified, this object will be the value of `this` every
1462
- * time that `aCallback` is called.
1463
- * @param aOrder
1464
- * Either `SourceMapConsumer.GENERATED_ORDER` or
1465
- * `SourceMapConsumer.ORIGINAL_ORDER`. Specifies whether you want to
1466
- * iterate over the mappings sorted by the generated file's line/column
1467
- * order or the original's source/line/column order, respectively. Defaults to
1468
- * `SourceMapConsumer.GENERATED_ORDER`.
1469
- */
1470
- SourceMapConsumer.prototype.eachMapping =
1471
- function SourceMapConsumer_eachMapping(aCallback, aContext, aOrder) {
1472
- var context = aContext || null;
1473
- var order = aOrder || SourceMapConsumer.GENERATED_ORDER;
1474
-
1475
- var mappings;
1476
- switch (order) {
1477
- case SourceMapConsumer.GENERATED_ORDER:
1478
- mappings = this._generatedMappings;
1479
- break;
1480
- case SourceMapConsumer.ORIGINAL_ORDER:
1481
- mappings = this._originalMappings;
1482
- break;
1483
- default:
1484
- throw new Error("Unknown order of iteration.");
1485
- }
1486
-
1487
- var sourceRoot = this.sourceRoot;
1488
- mappings.map(function (mapping) {
1489
- var source = mapping.source === null ? null : this._sources.at(mapping.source);
1490
- if (source != null && sourceRoot != null) {
1491
- source = util.join(sourceRoot, source);
1492
- }
1493
- return {
1494
- source: source,
1495
- generatedLine: mapping.generatedLine,
1496
- generatedColumn: mapping.generatedColumn,
1497
- originalLine: mapping.originalLine,
1498
- originalColumn: mapping.originalColumn,
1499
- name: mapping.name === null ? null : this._names.at(mapping.name)
1500
- };
1501
- }, this).forEach(aCallback, context);
1502
- };
1503
-
1504
- /**
1505
- * Returns all generated line and column information for the original source,
1506
- * line, and column provided. If no column is provided, returns all mappings
1507
- * corresponding to a either the line we are searching for or the next
1508
- * closest line that has any mappings. Otherwise, returns all mappings
1509
- * corresponding to the given line and either the column we are searching for
1510
- * or the next closest column that has any offsets.
1511
- *
1512
- * The only argument is an object with the following properties:
1513
- *
1514
- * - source: The filename of the original source.
1515
- * - line: The line number in the original source.
1516
- * - column: Optional. the column number in the original source.
1517
- *
1518
- * and an array of objects is returned, each with the following properties:
1519
- *
1520
- * - line: The line number in the generated source, or null.
1521
- * - column: The column number in the generated source, or null.
1522
- */
1523
- SourceMapConsumer.prototype.allGeneratedPositionsFor =
1524
- function SourceMapConsumer_allGeneratedPositionsFor(aArgs) {
1525
- var line = util.getArg(aArgs, 'line');
1526
-
1527
- // When there is no exact match, BasicSourceMapConsumer.prototype._findMapping
1528
- // returns the index of the closest mapping less than the needle. By
1529
- // setting needle.originalColumn to 0, we thus find the last mapping for
1530
- // the given line, provided such a mapping exists.
1531
- var needle = {
1532
- source: util.getArg(aArgs, 'source'),
1533
- originalLine: line,
1534
- originalColumn: util.getArg(aArgs, 'column', 0)
1535
- };
1536
-
1537
- if (this.sourceRoot != null) {
1538
- needle.source = util.relative(this.sourceRoot, needle.source);
1539
- }
1540
- if (!this._sources.has(needle.source)) {
1541
- return [];
1542
- }
1543
- needle.source = this._sources.indexOf(needle.source);
1544
-
1545
- var mappings = [];
1546
-
1547
- var index = this._findMapping(needle,
1548
- this._originalMappings,
1549
- "originalLine",
1550
- "originalColumn",
1551
- util.compareByOriginalPositions,
1552
- binarySearch.LEAST_UPPER_BOUND);
1553
- if (index >= 0) {
1554
- var mapping = this._originalMappings[index];
1555
-
1556
- if (aArgs.column === undefined) {
1557
- var originalLine = mapping.originalLine;
1558
-
1559
- // Iterate until either we run out of mappings, or we run into
1560
- // a mapping for a different line than the one we found. Since
1561
- // mappings are sorted, this is guaranteed to find all mappings for
1562
- // the line we found.
1563
- while (mapping && mapping.originalLine === originalLine) {
1564
- mappings.push({
1565
- line: util.getArg(mapping, 'generatedLine', null),
1566
- column: util.getArg(mapping, 'generatedColumn', null),
1567
- lastColumn: util.getArg(mapping, 'lastGeneratedColumn', null)
1568
- });
1569
-
1570
- mapping = this._originalMappings[++index];
1571
- }
1572
- } else {
1573
- var originalColumn = mapping.originalColumn;
1574
-
1575
- // Iterate until either we run out of mappings, or we run into
1576
- // a mapping for a different line than the one we were searching for.
1577
- // Since mappings are sorted, this is guaranteed to find all mappings for
1578
- // the line we are searching for.
1579
- while (mapping &&
1580
- mapping.originalLine === line &&
1581
- mapping.originalColumn == originalColumn) {
1582
- mappings.push({
1583
- line: util.getArg(mapping, 'generatedLine', null),
1584
- column: util.getArg(mapping, 'generatedColumn', null),
1585
- lastColumn: util.getArg(mapping, 'lastGeneratedColumn', null)
1586
- });
1587
-
1588
- mapping = this._originalMappings[++index];
1589
- }
1590
- }
1591
- }
1592
-
1593
- return mappings;
1594
- };
1595
-
1596
- exports.SourceMapConsumer = SourceMapConsumer;
1597
-
1598
- /**
1599
- * A BasicSourceMapConsumer instance represents a parsed source map which we can
1600
- * query for information about the original file positions by giving it a file
1601
- * position in the generated source.
1602
- *
1603
- * The only parameter is the raw source map (either as a JSON string, or
1604
- * already parsed to an object). According to the spec, source maps have the
1605
- * following attributes:
1606
- *
1607
- * - version: Which version of the source map spec this map is following.
1608
- * - sources: An array of URLs to the original source files.
1609
- * - names: An array of identifiers which can be referrenced by individual mappings.
1610
- * - sourceRoot: Optional. The URL root from which all sources are relative.
1611
- * - sourcesContent: Optional. An array of contents of the original source files.
1612
- * - mappings: A string of base64 VLQs which contain the actual mappings.
1613
- * - file: Optional. The generated file this source map is associated with.
1614
- *
1615
- * Here is an example source map, taken from the source map spec[0]:
1616
- *
1617
- * {
1618
- * version : 3,
1619
- * file: "out.js",
1620
- * sourceRoot : "",
1621
- * sources: ["foo.js", "bar.js"],
1622
- * names: ["src", "maps", "are", "fun"],
1623
- * mappings: "AA,AB;;ABCDE;"
1624
- * }
1625
- *
1626
- * [0]: https://docs.google.com/document/d/1U1RGAehQwRypUTovF1KRlpiOFze0b-_2gc6fAH0KY0k/edit?pli=1#
1627
- */
1628
- function BasicSourceMapConsumer(aSourceMap) {
1629
- var sourceMap = aSourceMap;
1630
- if (typeof aSourceMap === 'string') {
1631
- sourceMap = JSON.parse(aSourceMap.replace(/^\)\]\}'/, ''));
1632
- }
1633
-
1634
- var version = util.getArg(sourceMap, 'version');
1635
- var sources = util.getArg(sourceMap, 'sources');
1636
- // Sass 3.3 leaves out the 'names' array, so we deviate from the spec (which
1637
- // requires the array) to play nice here.
1638
- var names = util.getArg(sourceMap, 'names', []);
1639
- var sourceRoot = util.getArg(sourceMap, 'sourceRoot', null);
1640
- var sourcesContent = util.getArg(sourceMap, 'sourcesContent', null);
1641
- var mappings = util.getArg(sourceMap, 'mappings');
1642
- var file = util.getArg(sourceMap, 'file', null);
1643
-
1644
- // Once again, Sass deviates from the spec and supplies the version as a
1645
- // string rather than a number, so we use loose equality checking here.
1646
- if (version != this._version) {
1647
- throw new Error('Unsupported version: ' + version);
1648
- }
1649
-
1650
- sources = sources
1651
- .map(String)
1652
- // Some source maps produce relative source paths like "./foo.js" instead of
1653
- // "foo.js". Normalize these first so that future comparisons will succeed.
1654
- // See bugzil.la/1090768.
1655
- .map(util.normalize)
1656
- // Always ensure that absolute sources are internally stored relative to
1657
- // the source root, if the source root is absolute. Not doing this would
1658
- // be particularly problematic when the source root is a prefix of the
1659
- // source (valid, but why??). See github issue #199 and bugzil.la/1188982.
1660
- .map(function (source) {
1661
- return sourceRoot && util.isAbsolute(sourceRoot) && util.isAbsolute(source)
1662
- ? util.relative(sourceRoot, source)
1663
- : source;
1664
- });
1665
-
1666
- // Pass `true` below to allow duplicate names and sources. While source maps
1667
- // are intended to be compressed and deduplicated, the TypeScript compiler
1668
- // sometimes generates source maps with duplicates in them. See Github issue
1669
- // #72 and bugzil.la/889492.
1670
- this._names = ArraySet.fromArray(names.map(String), true);
1671
- this._sources = ArraySet.fromArray(sources, true);
1672
-
1673
- this.sourceRoot = sourceRoot;
1674
- this.sourcesContent = sourcesContent;
1675
- this._mappings = mappings;
1676
- this.file = file;
1677
- }
1678
-
1679
- BasicSourceMapConsumer.prototype = Object.create(SourceMapConsumer.prototype);
1680
- BasicSourceMapConsumer.prototype.consumer = SourceMapConsumer;
1681
-
1682
- /**
1683
- * Create a BasicSourceMapConsumer from a SourceMapGenerator.
1684
- *
1685
- * @param SourceMapGenerator aSourceMap
1686
- * The source map that will be consumed.
1687
- * @returns BasicSourceMapConsumer
1688
- */
1689
- BasicSourceMapConsumer.fromSourceMap =
1690
- function SourceMapConsumer_fromSourceMap(aSourceMap) {
1691
- var smc = Object.create(BasicSourceMapConsumer.prototype);
1692
-
1693
- var names = smc._names = ArraySet.fromArray(aSourceMap._names.toArray(), true);
1694
- var sources = smc._sources = ArraySet.fromArray(aSourceMap._sources.toArray(), true);
1695
- smc.sourceRoot = aSourceMap._sourceRoot;
1696
- smc.sourcesContent = aSourceMap._generateSourcesContent(smc._sources.toArray(),
1697
- smc.sourceRoot);
1698
- smc.file = aSourceMap._file;
1699
-
1700
- // Because we are modifying the entries (by converting string sources and
1701
- // names to indices into the sources and names ArraySets), we have to make
1702
- // a copy of the entry or else bad things happen. Shared mutable state
1703
- // strikes again! See github issue #191.
1704
-
1705
- var generatedMappings = aSourceMap._mappings.toArray().slice();
1706
- var destGeneratedMappings = smc.__generatedMappings = [];
1707
- var destOriginalMappings = smc.__originalMappings = [];
1708
-
1709
- for (var i = 0, length = generatedMappings.length; i < length; i++) {
1710
- var srcMapping = generatedMappings[i];
1711
- var destMapping = new Mapping;
1712
- destMapping.generatedLine = srcMapping.generatedLine;
1713
- destMapping.generatedColumn = srcMapping.generatedColumn;
1714
-
1715
- if (srcMapping.source) {
1716
- destMapping.source = sources.indexOf(srcMapping.source);
1717
- destMapping.originalLine = srcMapping.originalLine;
1718
- destMapping.originalColumn = srcMapping.originalColumn;
1719
-
1720
- if (srcMapping.name) {
1721
- destMapping.name = names.indexOf(srcMapping.name);
1722
- }
1723
-
1724
- destOriginalMappings.push(destMapping);
1725
- }
1726
-
1727
- destGeneratedMappings.push(destMapping);
1728
- }
1729
-
1730
- quickSort(smc.__originalMappings, util.compareByOriginalPositions);
1731
-
1732
- return smc;
1733
- };
1734
-
1735
- /**
1736
- * The version of the source mapping spec that we are consuming.
1737
- */
1738
- BasicSourceMapConsumer.prototype._version = 3;
1739
-
1740
- /**
1741
- * The list of original sources.
1742
- */
1743
- Object.defineProperty(BasicSourceMapConsumer.prototype, 'sources', {
1744
- get: function () {
1745
- return this._sources.toArray().map(function (s) {
1746
- return this.sourceRoot != null ? util.join(this.sourceRoot, s) : s;
1747
- }, this);
1748
- }
1749
- });
1750
-
1751
- /**
1752
- * Provide the JIT with a nice shape / hidden class.
1753
- */
1754
- function Mapping() {
1755
- this.generatedLine = 0;
1756
- this.generatedColumn = 0;
1757
- this.source = null;
1758
- this.originalLine = null;
1759
- this.originalColumn = null;
1760
- this.name = null;
1761
- }
1762
-
1763
- /**
1764
- * Parse the mappings in a string in to a data structure which we can easily
1765
- * query (the ordered arrays in the `this.__generatedMappings` and
1766
- * `this.__originalMappings` properties).
1767
- */
1768
- BasicSourceMapConsumer.prototype._parseMappings =
1769
- function SourceMapConsumer_parseMappings(aStr, aSourceRoot) {
1770
- var generatedLine = 1;
1771
- var previousGeneratedColumn = 0;
1772
- var previousOriginalLine = 0;
1773
- var previousOriginalColumn = 0;
1774
- var previousSource = 0;
1775
- var previousName = 0;
1776
- var length = aStr.length;
1777
- var index = 0;
1778
- var cachedSegments = {};
1779
- var temp = {};
1780
- var originalMappings = [];
1781
- var generatedMappings = [];
1782
- var mapping, str, segment, end, value;
1783
-
1784
- while (index < length) {
1785
- if (aStr.charAt(index) === ';') {
1786
- generatedLine++;
1787
- index++;
1788
- previousGeneratedColumn = 0;
1789
- }
1790
- else if (aStr.charAt(index) === ',') {
1791
- index++;
1792
- }
1793
- else {
1794
- mapping = new Mapping();
1795
- mapping.generatedLine = generatedLine;
1796
-
1797
- // Because each offset is encoded relative to the previous one,
1798
- // many segments often have the same encoding. We can exploit this
1799
- // fact by caching the parsed variable length fields of each segment,
1800
- // allowing us to avoid a second parse if we encounter the same
1801
- // segment again.
1802
- for (end = index; end < length; end++) {
1803
- if (this._charIsMappingSeparator(aStr, end)) {
1804
- break;
1805
- }
1806
- }
1807
- str = aStr.slice(index, end);
1808
-
1809
- segment = cachedSegments[str];
1810
- if (segment) {
1811
- index += str.length;
1812
- } else {
1813
- segment = [];
1814
- while (index < end) {
1815
- base64VLQ.decode(aStr, index, temp);
1816
- value = temp.value;
1817
- index = temp.rest;
1818
- segment.push(value);
1819
- }
1820
-
1821
- if (segment.length === 2) {
1822
- throw new Error('Found a source, but no line and column');
1823
- }
1824
-
1825
- if (segment.length === 3) {
1826
- throw new Error('Found a source and line, but no column');
1827
- }
1828
-
1829
- cachedSegments[str] = segment;
1830
- }
1831
-
1832
- // Generated column.
1833
- mapping.generatedColumn = previousGeneratedColumn + segment[0];
1834
- previousGeneratedColumn = mapping.generatedColumn;
1835
-
1836
- if (segment.length > 1) {
1837
- // Original source.
1838
- mapping.source = previousSource + segment[1];
1839
- previousSource += segment[1];
1840
-
1841
- // Original line.
1842
- mapping.originalLine = previousOriginalLine + segment[2];
1843
- previousOriginalLine = mapping.originalLine;
1844
- // Lines are stored 0-based
1845
- mapping.originalLine += 1;
1846
-
1847
- // Original column.
1848
- mapping.originalColumn = previousOriginalColumn + segment[3];
1849
- previousOriginalColumn = mapping.originalColumn;
1850
-
1851
- if (segment.length > 4) {
1852
- // Original name.
1853
- mapping.name = previousName + segment[4];
1854
- previousName += segment[4];
1855
- }
1856
- }
1857
-
1858
- generatedMappings.push(mapping);
1859
- if (typeof mapping.originalLine === 'number') {
1860
- originalMappings.push(mapping);
1861
- }
1862
- }
1863
- }
1864
-
1865
- quickSort(generatedMappings, util.compareByGeneratedPositionsDeflated);
1866
- this.__generatedMappings = generatedMappings;
1867
-
1868
- quickSort(originalMappings, util.compareByOriginalPositions);
1869
- this.__originalMappings = originalMappings;
1870
- };
1871
-
1872
- /**
1873
- * Find the mapping that best matches the hypothetical "needle" mapping that
1874
- * we are searching for in the given "haystack" of mappings.
1875
- */
1876
- BasicSourceMapConsumer.prototype._findMapping =
1877
- function SourceMapConsumer_findMapping(aNeedle, aMappings, aLineName,
1878
- aColumnName, aComparator, aBias) {
1879
- // To return the position we are searching for, we must first find the
1880
- // mapping for the given position and then return the opposite position it
1881
- // points to. Because the mappings are sorted, we can use binary search to
1882
- // find the best mapping.
1883
-
1884
- if (aNeedle[aLineName] <= 0) {
1885
- throw new TypeError('Line must be greater than or equal to 1, got '
1886
- + aNeedle[aLineName]);
1887
- }
1888
- if (aNeedle[aColumnName] < 0) {
1889
- throw new TypeError('Column must be greater than or equal to 0, got '
1890
- + aNeedle[aColumnName]);
1891
- }
1892
-
1893
- return binarySearch.search(aNeedle, aMappings, aComparator, aBias);
1894
- };
1895
-
1896
- /**
1897
- * Compute the last column for each generated mapping. The last column is
1898
- * inclusive.
1899
- */
1900
- BasicSourceMapConsumer.prototype.computeColumnSpans =
1901
- function SourceMapConsumer_computeColumnSpans() {
1902
- for (var index = 0; index < this._generatedMappings.length; ++index) {
1903
- var mapping = this._generatedMappings[index];
1904
-
1905
- // Mappings do not contain a field for the last generated columnt. We
1906
- // can come up with an optimistic estimate, however, by assuming that
1907
- // mappings are contiguous (i.e. given two consecutive mappings, the
1908
- // first mapping ends where the second one starts).
1909
- if (index + 1 < this._generatedMappings.length) {
1910
- var nextMapping = this._generatedMappings[index + 1];
1911
-
1912
- if (mapping.generatedLine === nextMapping.generatedLine) {
1913
- mapping.lastGeneratedColumn = nextMapping.generatedColumn - 1;
1914
- continue;
1915
- }
1916
- }
1917
-
1918
- // The last mapping for each line spans the entire line.
1919
- mapping.lastGeneratedColumn = Infinity;
1920
- }
1921
- };
1922
-
1923
- /**
1924
- * Returns the original source, line, and column information for the generated
1925
- * source's line and column positions provided. The only argument is an object
1926
- * with the following properties:
1927
- *
1928
- * - line: The line number in the generated source.
1929
- * - column: The column number in the generated source.
1930
- * - bias: Either 'SourceMapConsumer.GREATEST_LOWER_BOUND' or
1931
- * 'SourceMapConsumer.LEAST_UPPER_BOUND'. Specifies whether to return the
1932
- * closest element that is smaller than or greater than the one we are
1933
- * searching for, respectively, if the exact element cannot be found.
1934
- * Defaults to 'SourceMapConsumer.GREATEST_LOWER_BOUND'.
1935
- *
1936
- * and an object is returned with the following properties:
1937
- *
1938
- * - source: The original source file, or null.
1939
- * - line: The line number in the original source, or null.
1940
- * - column: The column number in the original source, or null.
1941
- * - name: The original identifier, or null.
1942
- */
1943
- BasicSourceMapConsumer.prototype.originalPositionFor =
1944
- function SourceMapConsumer_originalPositionFor(aArgs) {
1945
- var needle = {
1946
- generatedLine: util.getArg(aArgs, 'line'),
1947
- generatedColumn: util.getArg(aArgs, 'column')
1948
- };
1949
-
1950
- var index = this._findMapping(
1951
- needle,
1952
- this._generatedMappings,
1953
- "generatedLine",
1954
- "generatedColumn",
1955
- util.compareByGeneratedPositionsDeflated,
1956
- util.getArg(aArgs, 'bias', SourceMapConsumer.GREATEST_LOWER_BOUND)
1957
- );
1958
-
1959
- if (index >= 0) {
1960
- var mapping = this._generatedMappings[index];
1961
-
1962
- if (mapping.generatedLine === needle.generatedLine) {
1963
- var source = util.getArg(mapping, 'source', null);
1964
- if (source !== null) {
1965
- source = this._sources.at(source);
1966
- if (this.sourceRoot != null) {
1967
- source = util.join(this.sourceRoot, source);
1968
- }
1969
- }
1970
- var name = util.getArg(mapping, 'name', null);
1971
- if (name !== null) {
1972
- name = this._names.at(name);
1973
- }
1974
- return {
1975
- source: source,
1976
- line: util.getArg(mapping, 'originalLine', null),
1977
- column: util.getArg(mapping, 'originalColumn', null),
1978
- name: name
1979
- };
1980
- }
1981
- }
1982
-
1983
- return {
1984
- source: null,
1985
- line: null,
1986
- column: null,
1987
- name: null
1988
- };
1989
- };
1990
-
1991
- /**
1992
- * Return true if we have the source content for every source in the source
1993
- * map, false otherwise.
1994
- */
1995
- BasicSourceMapConsumer.prototype.hasContentsOfAllSources =
1996
- function BasicSourceMapConsumer_hasContentsOfAllSources() {
1997
- if (!this.sourcesContent) {
1998
- return false;
1999
- }
2000
- return this.sourcesContent.length >= this._sources.size() &&
2001
- !this.sourcesContent.some(function (sc) { return sc == null; });
2002
- };
2003
-
2004
- /**
2005
- * Returns the original source content. The only argument is the url of the
2006
- * original source file. Returns null if no original source content is
2007
- * available.
2008
- */
2009
- BasicSourceMapConsumer.prototype.sourceContentFor =
2010
- function SourceMapConsumer_sourceContentFor(aSource, nullOnMissing) {
2011
- if (!this.sourcesContent) {
2012
- return null;
2013
- }
2014
-
2015
- if (this.sourceRoot != null) {
2016
- aSource = util.relative(this.sourceRoot, aSource);
2017
- }
2018
-
2019
- if (this._sources.has(aSource)) {
2020
- return this.sourcesContent[this._sources.indexOf(aSource)];
2021
- }
2022
-
2023
- var url;
2024
- if (this.sourceRoot != null
2025
- && (url = util.urlParse(this.sourceRoot))) {
2026
- // XXX: file:// URIs and absolute paths lead to unexpected behavior for
2027
- // many users. We can help them out when they expect file:// URIs to
2028
- // behave like it would if they were running a local HTTP server. See
2029
- // https://bugzilla.mozilla.org/show_bug.cgi?id=885597.
2030
- var fileUriAbsPath = aSource.replace(/^file:\/\//, "");
2031
- if (url.scheme == "file"
2032
- && this._sources.has(fileUriAbsPath)) {
2033
- return this.sourcesContent[this._sources.indexOf(fileUriAbsPath)]
2034
- }
2035
-
2036
- if ((!url.path || url.path == "/")
2037
- && this._sources.has("/" + aSource)) {
2038
- return this.sourcesContent[this._sources.indexOf("/" + aSource)];
2039
- }
2040
- }
2041
-
2042
- // This function is used recursively from
2043
- // IndexedSourceMapConsumer.prototype.sourceContentFor. In that case, we
2044
- // don't want to throw if we can't find the source - we just want to
2045
- // return null, so we provide a flag to exit gracefully.
2046
- if (nullOnMissing) {
2047
- return null;
2048
- }
2049
- else {
2050
- throw new Error('"' + aSource + '" is not in the SourceMap.');
2051
- }
2052
- };
2053
-
2054
- /**
2055
- * Returns the generated line and column information for the original source,
2056
- * line, and column positions provided. The only argument is an object with
2057
- * the following properties:
2058
- *
2059
- * - source: The filename of the original source.
2060
- * - line: The line number in the original source.
2061
- * - column: The column number in the original source.
2062
- * - bias: Either 'SourceMapConsumer.GREATEST_LOWER_BOUND' or
2063
- * 'SourceMapConsumer.LEAST_UPPER_BOUND'. Specifies whether to return the
2064
- * closest element that is smaller than or greater than the one we are
2065
- * searching for, respectively, if the exact element cannot be found.
2066
- * Defaults to 'SourceMapConsumer.GREATEST_LOWER_BOUND'.
2067
- *
2068
- * and an object is returned with the following properties:
2069
- *
2070
- * - line: The line number in the generated source, or null.
2071
- * - column: The column number in the generated source, or null.
2072
- */
2073
- BasicSourceMapConsumer.prototype.generatedPositionFor =
2074
- function SourceMapConsumer_generatedPositionFor(aArgs) {
2075
- var source = util.getArg(aArgs, 'source');
2076
- if (this.sourceRoot != null) {
2077
- source = util.relative(this.sourceRoot, source);
2078
- }
2079
- if (!this._sources.has(source)) {
2080
- return {
2081
- line: null,
2082
- column: null,
2083
- lastColumn: null
2084
- };
2085
- }
2086
- source = this._sources.indexOf(source);
2087
-
2088
- var needle = {
2089
- source: source,
2090
- originalLine: util.getArg(aArgs, 'line'),
2091
- originalColumn: util.getArg(aArgs, 'column')
2092
- };
2093
-
2094
- var index = this._findMapping(
2095
- needle,
2096
- this._originalMappings,
2097
- "originalLine",
2098
- "originalColumn",
2099
- util.compareByOriginalPositions,
2100
- util.getArg(aArgs, 'bias', SourceMapConsumer.GREATEST_LOWER_BOUND)
2101
- );
2102
-
2103
- if (index >= 0) {
2104
- var mapping = this._originalMappings[index];
2105
-
2106
- if (mapping.source === needle.source) {
2107
- return {
2108
- line: util.getArg(mapping, 'generatedLine', null),
2109
- column: util.getArg(mapping, 'generatedColumn', null),
2110
- lastColumn: util.getArg(mapping, 'lastGeneratedColumn', null)
2111
- };
2112
- }
2113
- }
2114
-
2115
- return {
2116
- line: null,
2117
- column: null,
2118
- lastColumn: null
2119
- };
2120
- };
2121
-
2122
- exports.BasicSourceMapConsumer = BasicSourceMapConsumer;
2123
-
2124
- /**
2125
- * An IndexedSourceMapConsumer instance represents a parsed source map which
2126
- * we can query for information. It differs from BasicSourceMapConsumer in
2127
- * that it takes "indexed" source maps (i.e. ones with a "sections" field) as
2128
- * input.
2129
- *
2130
- * The only parameter is a raw source map (either as a JSON string, or already
2131
- * parsed to an object). According to the spec for indexed source maps, they
2132
- * have the following attributes:
2133
- *
2134
- * - version: Which version of the source map spec this map is following.
2135
- * - file: Optional. The generated file this source map is associated with.
2136
- * - sections: A list of section definitions.
2137
- *
2138
- * Each value under the "sections" field has two fields:
2139
- * - offset: The offset into the original specified at which this section
2140
- * begins to apply, defined as an object with a "line" and "column"
2141
- * field.
2142
- * - map: A source map definition. This source map could also be indexed,
2143
- * but doesn't have to be.
2144
- *
2145
- * Instead of the "map" field, it's also possible to have a "url" field
2146
- * specifying a URL to retrieve a source map from, but that's currently
2147
- * unsupported.
2148
- *
2149
- * Here's an example source map, taken from the source map spec[0], but
2150
- * modified to omit a section which uses the "url" field.
2151
- *
2152
- * {
2153
- * version : 3,
2154
- * file: "app.js",
2155
- * sections: [{
2156
- * offset: {line:100, column:10},
2157
- * map: {
2158
- * version : 3,
2159
- * file: "section.js",
2160
- * sources: ["foo.js", "bar.js"],
2161
- * names: ["src", "maps", "are", "fun"],
2162
- * mappings: "AAAA,E;;ABCDE;"
2163
- * }
2164
- * }],
2165
- * }
2166
- *
2167
- * [0]: https://docs.google.com/document/d/1U1RGAehQwRypUTovF1KRlpiOFze0b-_2gc6fAH0KY0k/edit#heading=h.535es3xeprgt
2168
- */
2169
- function IndexedSourceMapConsumer(aSourceMap) {
2170
- var sourceMap = aSourceMap;
2171
- if (typeof aSourceMap === 'string') {
2172
- sourceMap = JSON.parse(aSourceMap.replace(/^\)\]\}'/, ''));
2173
- }
2174
-
2175
- var version = util.getArg(sourceMap, 'version');
2176
- var sections = util.getArg(sourceMap, 'sections');
2177
-
2178
- if (version != this._version) {
2179
- throw new Error('Unsupported version: ' + version);
2180
- }
2181
-
2182
- this._sources = new ArraySet();
2183
- this._names = new ArraySet();
2184
-
2185
- var lastOffset = {
2186
- line: -1,
2187
- column: 0
2188
- };
2189
- this._sections = sections.map(function (s) {
2190
- if (s.url) {
2191
- // The url field will require support for asynchronicity.
2192
- // See https://github.com/mozilla/source-map/issues/16
2193
- throw new Error('Support for url field in sections not implemented.');
2194
- }
2195
- var offset = util.getArg(s, 'offset');
2196
- var offsetLine = util.getArg(offset, 'line');
2197
- var offsetColumn = util.getArg(offset, 'column');
2198
-
2199
- if (offsetLine < lastOffset.line ||
2200
- (offsetLine === lastOffset.line && offsetColumn < lastOffset.column)) {
2201
- throw new Error('Section offsets must be ordered and non-overlapping.');
2202
- }
2203
- lastOffset = offset;
2204
-
2205
- return {
2206
- generatedOffset: {
2207
- // The offset fields are 0-based, but we use 1-based indices when
2208
- // encoding/decoding from VLQ.
2209
- generatedLine: offsetLine + 1,
2210
- generatedColumn: offsetColumn + 1
2211
- },
2212
- consumer: new SourceMapConsumer(util.getArg(s, 'map'))
2213
- }
2214
- });
2215
- }
2216
-
2217
- IndexedSourceMapConsumer.prototype = Object.create(SourceMapConsumer.prototype);
2218
- IndexedSourceMapConsumer.prototype.constructor = SourceMapConsumer;
2219
-
2220
- /**
2221
- * The version of the source mapping spec that we are consuming.
2222
- */
2223
- IndexedSourceMapConsumer.prototype._version = 3;
2224
-
2225
- /**
2226
- * The list of original sources.
2227
- */
2228
- Object.defineProperty(IndexedSourceMapConsumer.prototype, 'sources', {
2229
- get: function () {
2230
- var sources = [];
2231
- for (var i = 0; i < this._sections.length; i++) {
2232
- for (var j = 0; j < this._sections[i].consumer.sources.length; j++) {
2233
- sources.push(this._sections[i].consumer.sources[j]);
2234
- }
2235
- }
2236
- return sources;
2237
- }
2238
- });
2239
-
2240
- /**
2241
- * Returns the original source, line, and column information for the generated
2242
- * source's line and column positions provided. The only argument is an object
2243
- * with the following properties:
2244
- *
2245
- * - line: The line number in the generated source.
2246
- * - column: The column number in the generated source.
2247
- *
2248
- * and an object is returned with the following properties:
2249
- *
2250
- * - source: The original source file, or null.
2251
- * - line: The line number in the original source, or null.
2252
- * - column: The column number in the original source, or null.
2253
- * - name: The original identifier, or null.
2254
- */
2255
- IndexedSourceMapConsumer.prototype.originalPositionFor =
2256
- function IndexedSourceMapConsumer_originalPositionFor(aArgs) {
2257
- var needle = {
2258
- generatedLine: util.getArg(aArgs, 'line'),
2259
- generatedColumn: util.getArg(aArgs, 'column')
2260
- };
2261
-
2262
- // Find the section containing the generated position we're trying to map
2263
- // to an original position.
2264
- var sectionIndex = binarySearch.search(needle, this._sections,
2265
- function(needle, section) {
2266
- var cmp = needle.generatedLine - section.generatedOffset.generatedLine;
2267
- if (cmp) {
2268
- return cmp;
2269
- }
2270
-
2271
- return (needle.generatedColumn -
2272
- section.generatedOffset.generatedColumn);
2273
- });
2274
- var section = this._sections[sectionIndex];
2275
-
2276
- if (!section) {
2277
- return {
2278
- source: null,
2279
- line: null,
2280
- column: null,
2281
- name: null
2282
- };
2283
- }
2284
-
2285
- return section.consumer.originalPositionFor({
2286
- line: needle.generatedLine -
2287
- (section.generatedOffset.generatedLine - 1),
2288
- column: needle.generatedColumn -
2289
- (section.generatedOffset.generatedLine === needle.generatedLine
2290
- ? section.generatedOffset.generatedColumn - 1
2291
- : 0),
2292
- bias: aArgs.bias
2293
- });
2294
- };
2295
-
2296
- /**
2297
- * Return true if we have the source content for every source in the source
2298
- * map, false otherwise.
2299
- */
2300
- IndexedSourceMapConsumer.prototype.hasContentsOfAllSources =
2301
- function IndexedSourceMapConsumer_hasContentsOfAllSources() {
2302
- return this._sections.every(function (s) {
2303
- return s.consumer.hasContentsOfAllSources();
2304
- });
2305
- };
2306
-
2307
- /**
2308
- * Returns the original source content. The only argument is the url of the
2309
- * original source file. Returns null if no original source content is
2310
- * available.
2311
- */
2312
- IndexedSourceMapConsumer.prototype.sourceContentFor =
2313
- function IndexedSourceMapConsumer_sourceContentFor(aSource, nullOnMissing) {
2314
- for (var i = 0; i < this._sections.length; i++) {
2315
- var section = this._sections[i];
2316
-
2317
- var content = section.consumer.sourceContentFor(aSource, true);
2318
- if (content) {
2319
- return content;
2320
- }
2321
- }
2322
- if (nullOnMissing) {
2323
- return null;
2324
- }
2325
- else {
2326
- throw new Error('"' + aSource + '" is not in the SourceMap.');
2327
- }
2328
- };
2329
-
2330
- /**
2331
- * Returns the generated line and column information for the original source,
2332
- * line, and column positions provided. The only argument is an object with
2333
- * the following properties:
2334
- *
2335
- * - source: The filename of the original source.
2336
- * - line: The line number in the original source.
2337
- * - column: The column number in the original source.
2338
- *
2339
- * and an object is returned with the following properties:
2340
- *
2341
- * - line: The line number in the generated source, or null.
2342
- * - column: The column number in the generated source, or null.
2343
- */
2344
- IndexedSourceMapConsumer.prototype.generatedPositionFor =
2345
- function IndexedSourceMapConsumer_generatedPositionFor(aArgs) {
2346
- for (var i = 0; i < this._sections.length; i++) {
2347
- var section = this._sections[i];
2348
-
2349
- // Only consider this section if the requested source is in the list of
2350
- // sources of the consumer.
2351
- if (section.consumer.sources.indexOf(util.getArg(aArgs, 'source')) === -1) {
2352
- continue;
2353
- }
2354
- var generatedPosition = section.consumer.generatedPositionFor(aArgs);
2355
- if (generatedPosition) {
2356
- var ret = {
2357
- line: generatedPosition.line +
2358
- (section.generatedOffset.generatedLine - 1),
2359
- column: generatedPosition.column +
2360
- (section.generatedOffset.generatedLine === generatedPosition.line
2361
- ? section.generatedOffset.generatedColumn - 1
2362
- : 0)
2363
- };
2364
- return ret;
2365
- }
2366
- }
2367
-
2368
- return {
2369
- line: null,
2370
- column: null
2371
- };
2372
- };
2373
-
2374
- /**
2375
- * Parse the mappings in a string in to a data structure which we can easily
2376
- * query (the ordered arrays in the `this.__generatedMappings` and
2377
- * `this.__originalMappings` properties).
2378
- */
2379
- IndexedSourceMapConsumer.prototype._parseMappings =
2380
- function IndexedSourceMapConsumer_parseMappings(aStr, aSourceRoot) {
2381
- this.__generatedMappings = [];
2382
- this.__originalMappings = [];
2383
- for (var i = 0; i < this._sections.length; i++) {
2384
- var section = this._sections[i];
2385
- var sectionMappings = section.consumer._generatedMappings;
2386
- for (var j = 0; j < sectionMappings.length; j++) {
2387
- var mapping = sectionMappings[j];
2388
-
2389
- var source = section.consumer._sources.at(mapping.source);
2390
- if (section.consumer.sourceRoot !== null) {
2391
- source = util.join(section.consumer.sourceRoot, source);
2392
- }
2393
- this._sources.add(source);
2394
- source = this._sources.indexOf(source);
2395
-
2396
- var name = section.consumer._names.at(mapping.name);
2397
- this._names.add(name);
2398
- name = this._names.indexOf(name);
2399
-
2400
- // The mappings coming from the consumer for the section have
2401
- // generated positions relative to the start of the section, so we
2402
- // need to offset them to be relative to the start of the concatenated
2403
- // generated file.
2404
- var adjustedMapping = {
2405
- source: source,
2406
- generatedLine: mapping.generatedLine +
2407
- (section.generatedOffset.generatedLine - 1),
2408
- generatedColumn: mapping.generatedColumn +
2409
- (section.generatedOffset.generatedLine === mapping.generatedLine
2410
- ? section.generatedOffset.generatedColumn - 1
2411
- : 0),
2412
- originalLine: mapping.originalLine,
2413
- originalColumn: mapping.originalColumn,
2414
- name: name
2415
- };
2416
-
2417
- this.__generatedMappings.push(adjustedMapping);
2418
- if (typeof adjustedMapping.originalLine === 'number') {
2419
- this.__originalMappings.push(adjustedMapping);
2420
- }
2421
- }
2422
- }
2423
-
2424
- quickSort(this.__generatedMappings, util.compareByGeneratedPositionsDeflated);
2425
- quickSort(this.__originalMappings, util.compareByOriginalPositions);
2426
- };
2427
-
2428
- exports.IndexedSourceMapConsumer = IndexedSourceMapConsumer;
2429
-
2430
-
2431
- /***/ }),
2432
- /* 8 */
2433
- /***/ (function(module, exports) {
2434
-
2435
- /* -*- Mode: js; js-indent-level: 2; -*- */
2436
- /*
2437
- * Copyright 2011 Mozilla Foundation and contributors
2438
- * Licensed under the New BSD license. See LICENSE or:
2439
- * http://opensource.org/licenses/BSD-3-Clause
2440
- */
2441
-
2442
- exports.GREATEST_LOWER_BOUND = 1;
2443
- exports.LEAST_UPPER_BOUND = 2;
2444
-
2445
- /**
2446
- * Recursive implementation of binary search.
2447
- *
2448
- * @param aLow Indices here and lower do not contain the needle.
2449
- * @param aHigh Indices here and higher do not contain the needle.
2450
- * @param aNeedle The element being searched for.
2451
- * @param aHaystack The non-empty array being searched.
2452
- * @param aCompare Function which takes two elements and returns -1, 0, or 1.
2453
- * @param aBias Either 'binarySearch.GREATEST_LOWER_BOUND' or
2454
- * 'binarySearch.LEAST_UPPER_BOUND'. Specifies whether to return the
2455
- * closest element that is smaller than or greater than the one we are
2456
- * searching for, respectively, if the exact element cannot be found.
2457
- */
2458
- function recursiveSearch(aLow, aHigh, aNeedle, aHaystack, aCompare, aBias) {
2459
- // This function terminates when one of the following is true:
2460
- //
2461
- // 1. We find the exact element we are looking for.
2462
- //
2463
- // 2. We did not find the exact element, but we can return the index of
2464
- // the next-closest element.
2465
- //
2466
- // 3. We did not find the exact element, and there is no next-closest
2467
- // element than the one we are searching for, so we return -1.
2468
- var mid = Math.floor((aHigh - aLow) / 2) + aLow;
2469
- var cmp = aCompare(aNeedle, aHaystack[mid], true);
2470
- if (cmp === 0) {
2471
- // Found the element we are looking for.
2472
- return mid;
2473
- }
2474
- else if (cmp > 0) {
2475
- // Our needle is greater than aHaystack[mid].
2476
- if (aHigh - mid > 1) {
2477
- // The element is in the upper half.
2478
- return recursiveSearch(mid, aHigh, aNeedle, aHaystack, aCompare, aBias);
2479
- }
2480
-
2481
- // The exact needle element was not found in this haystack. Determine if
2482
- // we are in termination case (3) or (2) and return the appropriate thing.
2483
- if (aBias == exports.LEAST_UPPER_BOUND) {
2484
- return aHigh < aHaystack.length ? aHigh : -1;
2485
- } else {
2486
- return mid;
2487
- }
2488
- }
2489
- else {
2490
- // Our needle is less than aHaystack[mid].
2491
- if (mid - aLow > 1) {
2492
- // The element is in the lower half.
2493
- return recursiveSearch(aLow, mid, aNeedle, aHaystack, aCompare, aBias);
2494
- }
2495
-
2496
- // we are in termination case (3) or (2) and return the appropriate thing.
2497
- if (aBias == exports.LEAST_UPPER_BOUND) {
2498
- return mid;
2499
- } else {
2500
- return aLow < 0 ? -1 : aLow;
2501
- }
2502
- }
2503
- }
2504
-
2505
- /**
2506
- * This is an implementation of binary search which will always try and return
2507
- * the index of the closest element if there is no exact hit. This is because
2508
- * mappings between original and generated line/col pairs are single points,
2509
- * and there is an implicit region between each of them, so a miss just means
2510
- * that you aren't on the very start of a region.
2511
- *
2512
- * @param aNeedle The element you are looking for.
2513
- * @param aHaystack The array that is being searched.
2514
- * @param aCompare A function which takes the needle and an element in the
2515
- * array and returns -1, 0, or 1 depending on whether the needle is less
2516
- * than, equal to, or greater than the element, respectively.
2517
- * @param aBias Either 'binarySearch.GREATEST_LOWER_BOUND' or
2518
- * 'binarySearch.LEAST_UPPER_BOUND'. Specifies whether to return the
2519
- * closest element that is smaller than or greater than the one we are
2520
- * searching for, respectively, if the exact element cannot be found.
2521
- * Defaults to 'binarySearch.GREATEST_LOWER_BOUND'.
2522
- */
2523
- exports.search = function search(aNeedle, aHaystack, aCompare, aBias) {
2524
- if (aHaystack.length === 0) {
2525
- return -1;
2526
- }
2527
-
2528
- var index = recursiveSearch(-1, aHaystack.length, aNeedle, aHaystack,
2529
- aCompare, aBias || exports.GREATEST_LOWER_BOUND);
2530
- if (index < 0) {
2531
- return -1;
2532
- }
2533
-
2534
- // We have found either the exact element, or the next-closest element than
2535
- // the one we are searching for. However, there may be more than one such
2536
- // element. Make sure we always return the smallest of these.
2537
- while (index - 1 >= 0) {
2538
- if (aCompare(aHaystack[index], aHaystack[index - 1], true) !== 0) {
2539
- break;
2540
- }
2541
- --index;
2542
- }
2543
-
2544
- return index;
2545
- };
2546
-
2547
-
2548
- /***/ }),
2549
- /* 9 */
2550
- /***/ (function(module, exports) {
2551
-
2552
- /* -*- Mode: js; js-indent-level: 2; -*- */
2553
- /*
2554
- * Copyright 2011 Mozilla Foundation and contributors
2555
- * Licensed under the New BSD license. See LICENSE or:
2556
- * http://opensource.org/licenses/BSD-3-Clause
2557
- */
2558
-
2559
- // It turns out that some (most?) JavaScript engines don't self-host
2560
- // `Array.prototype.sort`. This makes sense because C++ will likely remain
2561
- // faster than JS when doing raw CPU-intensive sorting. However, when using a
2562
- // custom comparator function, calling back and forth between the VM's C++ and
2563
- // JIT'd JS is rather slow *and* loses JIT type information, resulting in
2564
- // worse generated code for the comparator function than would be optimal. In
2565
- // fact, when sorting with a comparator, these costs outweigh the benefits of
2566
- // sorting in C++. By using our own JS-implemented Quick Sort (below), we get
2567
- // a ~3500ms mean speed-up in `bench/bench.html`.
2568
-
2569
- /**
2570
- * Swap the elements indexed by `x` and `y` in the array `ary`.
2571
- *
2572
- * @param {Array} ary
2573
- * The array.
2574
- * @param {Number} x
2575
- * The index of the first item.
2576
- * @param {Number} y
2577
- * The index of the second item.
2578
- */
2579
- function swap(ary, x, y) {
2580
- var temp = ary[x];
2581
- ary[x] = ary[y];
2582
- ary[y] = temp;
2583
- }
2584
-
2585
- /**
2586
- * Returns a random integer within the range `low .. high` inclusive.
2587
- *
2588
- * @param {Number} low
2589
- * The lower bound on the range.
2590
- * @param {Number} high
2591
- * The upper bound on the range.
2592
- */
2593
- function randomIntInRange(low, high) {
2594
- return Math.round(low + (Math.random() * (high - low)));
2595
- }
2596
-
2597
- /**
2598
- * The Quick Sort algorithm.
2599
- *
2600
- * @param {Array} ary
2601
- * An array to sort.
2602
- * @param {function} comparator
2603
- * Function to use to compare two items.
2604
- * @param {Number} p
2605
- * Start index of the array
2606
- * @param {Number} r
2607
- * End index of the array
2608
- */
2609
- function doQuickSort(ary, comparator, p, r) {
2610
- // If our lower bound is less than our upper bound, we (1) partition the
2611
- // array into two pieces and (2) recurse on each half. If it is not, this is
2612
- // the empty array and our base case.
2613
-
2614
- if (p < r) {
2615
- // (1) Partitioning.
2616
- //
2617
- // The partitioning chooses a pivot between `p` and `r` and moves all
2618
- // elements that are less than or equal to the pivot to the before it, and
2619
- // all the elements that are greater than it after it. The effect is that
2620
- // once partition is done, the pivot is in the exact place it will be when
2621
- // the array is put in sorted order, and it will not need to be moved
2622
- // again. This runs in O(n) time.
2623
-
2624
- // Always choose a random pivot so that an input array which is reverse
2625
- // sorted does not cause O(n^2) running time.
2626
- var pivotIndex = randomIntInRange(p, r);
2627
- var i = p - 1;
2628
-
2629
- swap(ary, pivotIndex, r);
2630
- var pivot = ary[r];
2631
-
2632
- // Immediately after `j` is incremented in this loop, the following hold
2633
- // true:
2634
- //
2635
- // * Every element in `ary[p .. i]` is less than or equal to the pivot.
2636
- //
2637
- // * Every element in `ary[i+1 .. j-1]` is greater than the pivot.
2638
- for (var j = p; j < r; j++) {
2639
- if (comparator(ary[j], pivot) <= 0) {
2640
- i += 1;
2641
- swap(ary, i, j);
2642
- }
2643
- }
2644
-
2645
- swap(ary, i + 1, j);
2646
- var q = i + 1;
2647
-
2648
- // (2) Recurse on each half.
2649
-
2650
- doQuickSort(ary, comparator, p, q - 1);
2651
- doQuickSort(ary, comparator, q + 1, r);
2652
- }
2653
- }
2654
-
2655
- /**
2656
- * Sort the given array in-place with the given comparator function.
2657
- *
2658
- * @param {Array} ary
2659
- * An array to sort.
2660
- * @param {function} comparator
2661
- * Function to use to compare two items.
2662
- */
2663
- exports.quickSort = function (ary, comparator) {
2664
- doQuickSort(ary, comparator, 0, ary.length - 1);
2665
- };
2666
-
2667
-
2668
- /***/ }),
2669
- /* 10 */
2670
- /***/ (function(module, exports, __webpack_require__) {
2671
-
2672
- /* -*- Mode: js; js-indent-level: 2; -*- */
2673
- /*
2674
- * Copyright 2011 Mozilla Foundation and contributors
2675
- * Licensed under the New BSD license. See LICENSE or:
2676
- * http://opensource.org/licenses/BSD-3-Clause
2677
- */
2678
-
2679
- var SourceMapGenerator = __webpack_require__(1).SourceMapGenerator;
2680
- var util = __webpack_require__(4);
2681
-
2682
- // Matches a Windows-style `\r\n` newline or a `\n` newline used by all other
2683
- // operating systems these days (capturing the result).
2684
- var REGEX_NEWLINE = /(\r?\n)/;
2685
-
2686
- // Newline character code for charCodeAt() comparisons
2687
- var NEWLINE_CODE = 10;
2688
-
2689
- // Private symbol for identifying `SourceNode`s when multiple versions of
2690
- // the source-map library are loaded. This MUST NOT CHANGE across
2691
- // versions!
2692
- var isSourceNode = "$$$isSourceNode$$$";
2693
-
2694
- /**
2695
- * SourceNodes provide a way to abstract over interpolating/concatenating
2696
- * snippets of generated JavaScript source code while maintaining the line and
2697
- * column information associated with the original source code.
2698
- *
2699
- * @param aLine The original line number.
2700
- * @param aColumn The original column number.
2701
- * @param aSource The original source's filename.
2702
- * @param aChunks Optional. An array of strings which are snippets of
2703
- * generated JS, or other SourceNodes.
2704
- * @param aName The original identifier.
2705
- */
2706
- function SourceNode(aLine, aColumn, aSource, aChunks, aName) {
2707
- this.children = [];
2708
- this.sourceContents = {};
2709
- this.line = aLine == null ? null : aLine;
2710
- this.column = aColumn == null ? null : aColumn;
2711
- this.source = aSource == null ? null : aSource;
2712
- this.name = aName == null ? null : aName;
2713
- this[isSourceNode] = true;
2714
- if (aChunks != null) this.add(aChunks);
2715
- }
2716
-
2717
- /**
2718
- * Creates a SourceNode from generated code and a SourceMapConsumer.
2719
- *
2720
- * @param aGeneratedCode The generated code
2721
- * @param aSourceMapConsumer The SourceMap for the generated code
2722
- * @param aRelativePath Optional. The path that relative sources in the
2723
- * SourceMapConsumer should be relative to.
2724
- */
2725
- SourceNode.fromStringWithSourceMap =
2726
- function SourceNode_fromStringWithSourceMap(aGeneratedCode, aSourceMapConsumer, aRelativePath) {
2727
- // The SourceNode we want to fill with the generated code
2728
- // and the SourceMap
2729
- var node = new SourceNode();
2730
-
2731
- // All even indices of this array are one line of the generated code,
2732
- // while all odd indices are the newlines between two adjacent lines
2733
- // (since `REGEX_NEWLINE` captures its match).
2734
- // Processed fragments are accessed by calling `shiftNextLine`.
2735
- var remainingLines = aGeneratedCode.split(REGEX_NEWLINE);
2736
- var remainingLinesIndex = 0;
2737
- var shiftNextLine = function() {
2738
- var lineContents = getNextLine();
2739
- // The last line of a file might not have a newline.
2740
- var newLine = getNextLine() || "";
2741
- return lineContents + newLine;
2742
-
2743
- function getNextLine() {
2744
- return remainingLinesIndex < remainingLines.length ?
2745
- remainingLines[remainingLinesIndex++] : undefined;
2746
- }
2747
- };
2748
-
2749
- // We need to remember the position of "remainingLines"
2750
- var lastGeneratedLine = 1, lastGeneratedColumn = 0;
2751
-
2752
- // The generate SourceNodes we need a code range.
2753
- // To extract it current and last mapping is used.
2754
- // Here we store the last mapping.
2755
- var lastMapping = null;
2756
-
2757
- aSourceMapConsumer.eachMapping(function (mapping) {
2758
- if (lastMapping !== null) {
2759
- // We add the code from "lastMapping" to "mapping":
2760
- // First check if there is a new line in between.
2761
- if (lastGeneratedLine < mapping.generatedLine) {
2762
- // Associate first line with "lastMapping"
2763
- addMappingWithCode(lastMapping, shiftNextLine());
2764
- lastGeneratedLine++;
2765
- lastGeneratedColumn = 0;
2766
- // The remaining code is added without mapping
2767
- } else {
2768
- // There is no new line in between.
2769
- // Associate the code between "lastGeneratedColumn" and
2770
- // "mapping.generatedColumn" with "lastMapping"
2771
- var nextLine = remainingLines[remainingLinesIndex];
2772
- var code = nextLine.substr(0, mapping.generatedColumn -
2773
- lastGeneratedColumn);
2774
- remainingLines[remainingLinesIndex] = nextLine.substr(mapping.generatedColumn -
2775
- lastGeneratedColumn);
2776
- lastGeneratedColumn = mapping.generatedColumn;
2777
- addMappingWithCode(lastMapping, code);
2778
- // No more remaining code, continue
2779
- lastMapping = mapping;
2780
- return;
2781
- }
2782
- }
2783
- // We add the generated code until the first mapping
2784
- // to the SourceNode without any mapping.
2785
- // Each line is added as separate string.
2786
- while (lastGeneratedLine < mapping.generatedLine) {
2787
- node.add(shiftNextLine());
2788
- lastGeneratedLine++;
2789
- }
2790
- if (lastGeneratedColumn < mapping.generatedColumn) {
2791
- var nextLine = remainingLines[remainingLinesIndex];
2792
- node.add(nextLine.substr(0, mapping.generatedColumn));
2793
- remainingLines[remainingLinesIndex] = nextLine.substr(mapping.generatedColumn);
2794
- lastGeneratedColumn = mapping.generatedColumn;
2795
- }
2796
- lastMapping = mapping;
2797
- }, this);
2798
- // We have processed all mappings.
2799
- if (remainingLinesIndex < remainingLines.length) {
2800
- if (lastMapping) {
2801
- // Associate the remaining code in the current line with "lastMapping"
2802
- addMappingWithCode(lastMapping, shiftNextLine());
2803
- }
2804
- // and add the remaining lines without any mapping
2805
- node.add(remainingLines.splice(remainingLinesIndex).join(""));
2806
- }
2807
-
2808
- // Copy sourcesContent into SourceNode
2809
- aSourceMapConsumer.sources.forEach(function (sourceFile) {
2810
- var content = aSourceMapConsumer.sourceContentFor(sourceFile);
2811
- if (content != null) {
2812
- if (aRelativePath != null) {
2813
- sourceFile = util.join(aRelativePath, sourceFile);
2814
- }
2815
- node.setSourceContent(sourceFile, content);
2816
- }
2817
- });
2818
-
2819
- return node;
2820
-
2821
- function addMappingWithCode(mapping, code) {
2822
- if (mapping === null || mapping.source === undefined) {
2823
- node.add(code);
2824
- } else {
2825
- var source = aRelativePath
2826
- ? util.join(aRelativePath, mapping.source)
2827
- : mapping.source;
2828
- node.add(new SourceNode(mapping.originalLine,
2829
- mapping.originalColumn,
2830
- source,
2831
- code,
2832
- mapping.name));
2833
- }
2834
- }
2835
- };
2836
-
2837
- /**
2838
- * Add a chunk of generated JS to this source node.
2839
- *
2840
- * @param aChunk A string snippet of generated JS code, another instance of
2841
- * SourceNode, or an array where each member is one of those things.
2842
- */
2843
- SourceNode.prototype.add = function SourceNode_add(aChunk) {
2844
- if (Array.isArray(aChunk)) {
2845
- aChunk.forEach(function (chunk) {
2846
- this.add(chunk);
2847
- }, this);
2848
- }
2849
- else if (aChunk[isSourceNode] || typeof aChunk === "string") {
2850
- if (aChunk) {
2851
- this.children.push(aChunk);
2852
- }
2853
- }
2854
- else {
2855
- throw new TypeError(
2856
- "Expected a SourceNode, string, or an array of SourceNodes and strings. Got " + aChunk
2857
- );
2858
- }
2859
- return this;
2860
- };
2861
-
2862
- /**
2863
- * Add a chunk of generated JS to the beginning of this source node.
2864
- *
2865
- * @param aChunk A string snippet of generated JS code, another instance of
2866
- * SourceNode, or an array where each member is one of those things.
2867
- */
2868
- SourceNode.prototype.prepend = function SourceNode_prepend(aChunk) {
2869
- if (Array.isArray(aChunk)) {
2870
- for (var i = aChunk.length-1; i >= 0; i--) {
2871
- this.prepend(aChunk[i]);
2872
- }
2873
- }
2874
- else if (aChunk[isSourceNode] || typeof aChunk === "string") {
2875
- this.children.unshift(aChunk);
2876
- }
2877
- else {
2878
- throw new TypeError(
2879
- "Expected a SourceNode, string, or an array of SourceNodes and strings. Got " + aChunk
2880
- );
2881
- }
2882
- return this;
2883
- };
2884
-
2885
- /**
2886
- * Walk over the tree of JS snippets in this node and its children. The
2887
- * walking function is called once for each snippet of JS and is passed that
2888
- * snippet and the its original associated source's line/column location.
2889
- *
2890
- * @param aFn The traversal function.
2891
- */
2892
- SourceNode.prototype.walk = function SourceNode_walk(aFn) {
2893
- var chunk;
2894
- for (var i = 0, len = this.children.length; i < len; i++) {
2895
- chunk = this.children[i];
2896
- if (chunk[isSourceNode]) {
2897
- chunk.walk(aFn);
2898
- }
2899
- else {
2900
- if (chunk !== '') {
2901
- aFn(chunk, { source: this.source,
2902
- line: this.line,
2903
- column: this.column,
2904
- name: this.name });
2905
- }
2906
- }
2907
- }
2908
- };
2909
-
2910
- /**
2911
- * Like `String.prototype.join` except for SourceNodes. Inserts `aStr` between
2912
- * each of `this.children`.
2913
- *
2914
- * @param aSep The separator.
2915
- */
2916
- SourceNode.prototype.join = function SourceNode_join(aSep) {
2917
- var newChildren;
2918
- var i;
2919
- var len = this.children.length;
2920
- if (len > 0) {
2921
- newChildren = [];
2922
- for (i = 0; i < len-1; i++) {
2923
- newChildren.push(this.children[i]);
2924
- newChildren.push(aSep);
2925
- }
2926
- newChildren.push(this.children[i]);
2927
- this.children = newChildren;
2928
- }
2929
- return this;
2930
- };
2931
-
2932
- /**
2933
- * Call String.prototype.replace on the very right-most source snippet. Useful
2934
- * for trimming whitespace from the end of a source node, etc.
2935
- *
2936
- * @param aPattern The pattern to replace.
2937
- * @param aReplacement The thing to replace the pattern with.
2938
- */
2939
- SourceNode.prototype.replaceRight = function SourceNode_replaceRight(aPattern, aReplacement) {
2940
- var lastChild = this.children[this.children.length - 1];
2941
- if (lastChild[isSourceNode]) {
2942
- lastChild.replaceRight(aPattern, aReplacement);
2943
- }
2944
- else if (typeof lastChild === 'string') {
2945
- this.children[this.children.length - 1] = lastChild.replace(aPattern, aReplacement);
2946
- }
2947
- else {
2948
- this.children.push(''.replace(aPattern, aReplacement));
2949
- }
2950
- return this;
2951
- };
2952
-
2953
- /**
2954
- * Set the source content for a source file. This will be added to the SourceMapGenerator
2955
- * in the sourcesContent field.
2956
- *
2957
- * @param aSourceFile The filename of the source file
2958
- * @param aSourceContent The content of the source file
2959
- */
2960
- SourceNode.prototype.setSourceContent =
2961
- function SourceNode_setSourceContent(aSourceFile, aSourceContent) {
2962
- this.sourceContents[util.toSetString(aSourceFile)] = aSourceContent;
2963
- };
2964
-
2965
- /**
2966
- * Walk over the tree of SourceNodes. The walking function is called for each
2967
- * source file content and is passed the filename and source content.
2968
- *
2969
- * @param aFn The traversal function.
2970
- */
2971
- SourceNode.prototype.walkSourceContents =
2972
- function SourceNode_walkSourceContents(aFn) {
2973
- for (var i = 0, len = this.children.length; i < len; i++) {
2974
- if (this.children[i][isSourceNode]) {
2975
- this.children[i].walkSourceContents(aFn);
2976
- }
2977
- }
2978
-
2979
- var sources = Object.keys(this.sourceContents);
2980
- for (var i = 0, len = sources.length; i < len; i++) {
2981
- aFn(util.fromSetString(sources[i]), this.sourceContents[sources[i]]);
2982
- }
2983
- };
2984
-
2985
- /**
2986
- * Return the string representation of this source node. Walks over the tree
2987
- * and concatenates all the various snippets together to one string.
2988
- */
2989
- SourceNode.prototype.toString = function SourceNode_toString() {
2990
- var str = "";
2991
- this.walk(function (chunk) {
2992
- str += chunk;
2993
- });
2994
- return str;
2995
- };
2996
-
2997
- /**
2998
- * Returns the string representation of this source node along with a source
2999
- * map.
3000
- */
3001
- SourceNode.prototype.toStringWithSourceMap = function SourceNode_toStringWithSourceMap(aArgs) {
3002
- var generated = {
3003
- code: "",
3004
- line: 1,
3005
- column: 0
3006
- };
3007
- var map = new SourceMapGenerator(aArgs);
3008
- var sourceMappingActive = false;
3009
- var lastOriginalSource = null;
3010
- var lastOriginalLine = null;
3011
- var lastOriginalColumn = null;
3012
- var lastOriginalName = null;
3013
- this.walk(function (chunk, original) {
3014
- generated.code += chunk;
3015
- if (original.source !== null
3016
- && original.line !== null
3017
- && original.column !== null) {
3018
- if(lastOriginalSource !== original.source
3019
- || lastOriginalLine !== original.line
3020
- || lastOriginalColumn !== original.column
3021
- || lastOriginalName !== original.name) {
3022
- map.addMapping({
3023
- source: original.source,
3024
- original: {
3025
- line: original.line,
3026
- column: original.column
3027
- },
3028
- generated: {
3029
- line: generated.line,
3030
- column: generated.column
3031
- },
3032
- name: original.name
3033
- });
3034
- }
3035
- lastOriginalSource = original.source;
3036
- lastOriginalLine = original.line;
3037
- lastOriginalColumn = original.column;
3038
- lastOriginalName = original.name;
3039
- sourceMappingActive = true;
3040
- } else if (sourceMappingActive) {
3041
- map.addMapping({
3042
- generated: {
3043
- line: generated.line,
3044
- column: generated.column
3045
- }
3046
- });
3047
- lastOriginalSource = null;
3048
- sourceMappingActive = false;
3049
- }
3050
- for (var idx = 0, length = chunk.length; idx < length; idx++) {
3051
- if (chunk.charCodeAt(idx) === NEWLINE_CODE) {
3052
- generated.line++;
3053
- generated.column = 0;
3054
- // Mappings end at eol
3055
- if (idx + 1 === length) {
3056
- lastOriginalSource = null;
3057
- sourceMappingActive = false;
3058
- } else if (sourceMappingActive) {
3059
- map.addMapping({
3060
- source: original.source,
3061
- original: {
3062
- line: original.line,
3063
- column: original.column
3064
- },
3065
- generated: {
3066
- line: generated.line,
3067
- column: generated.column
3068
- },
3069
- name: original.name
3070
- });
3071
- }
3072
- } else {
3073
- generated.column++;
3074
- }
3075
- }
3076
- });
3077
- this.walkSourceContents(function (sourceFile, sourceContent) {
3078
- map.setSourceContent(sourceFile, sourceContent);
3079
- });
3080
-
3081
- return { code: generated.code, map: map };
3082
- };
3083
-
3084
- exports.SourceNode = SourceNode;
3085
-
3086
-
3087
- /***/ })
3088
- /******/ ])
3089
- });
3090
- ;
3091
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8vd2VicGFjay91bml2ZXJzYWxNb2R1bGVEZWZpbml0aW9uIiwid2VicGFjazovLy93ZWJwYWNrL2Jvb3RzdHJhcCBlNDczOGZjNzJhN2IyMzAzOTg4OSIsIndlYnBhY2s6Ly8vLi9zb3VyY2UtbWFwLmpzIiwid2VicGFjazovLy8uL2xpYi9zb3VyY2UtbWFwLWdlbmVyYXRvci5qcyIsIndlYnBhY2s6Ly8vLi9saWIvYmFzZTY0LXZscS5qcyIsIndlYnBhY2s6Ly8vLi9saWIvYmFzZTY0LmpzIiwid2VicGFjazovLy8uL2xpYi91dGlsLmpzIiwid2VicGFjazovLy8uL2xpYi9hcnJheS1zZXQuanMiLCJ3ZWJwYWNrOi8vLy4vbGliL21hcHBpbmctbGlzdC5qcyIsIndlYnBhY2s6Ly8vLi9saWIvc291cmNlLW1hcC1jb25zdW1lci5qcyIsIndlYnBhY2s6Ly8vLi9saWIvYmluYXJ5LXNlYXJjaC5qcyIsIndlYnBhY2s6Ly8vLi9saWIvcXVpY2stc29ydC5qcyIsIndlYnBhY2s6Ly8vLi9saWIvc291cmNlLW5vZGUuanMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsQ0FBQztBQUNELE87QUNWQTtBQUNBOztBQUVBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQSx1QkFBZTtBQUNmO0FBQ0E7QUFDQTs7QUFFQTtBQUNBOztBQUVBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOzs7QUFHQTtBQUNBOztBQUVBO0FBQ0E7O0FBRUE7QUFDQTs7QUFFQTtBQUNBOzs7Ozs7O0FDdENBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7Ozs7Ozs7QUNQQSxpQkFBZ0Isb0JBQW9CO0FBQ3BDO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsTUFBSztBQUNMO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQSxNQUFLO0FBQ0w7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLE1BQUs7QUFDTDtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsTUFBSztBQUNMOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLE1BQUs7QUFDTDtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQSxVQUFTO0FBQ1Q7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUEsTUFBSztBQUNMO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsTUFBSztBQUNMOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQSxRQUFPO0FBQ1A7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0EsMkNBQTBDLFNBQVM7QUFDbkQ7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQSxxQkFBb0I7QUFDcEI7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBOztBQUVBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQSxNQUFLO0FBQ0w7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBOzs7Ozs7O0FDL1pBLGlCQUFnQixvQkFBb0I7QUFDcEM7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLDREQUEyRDtBQUMzRCxxQkFBb0I7QUFDcEI7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTs7QUFFQTtBQUNBOztBQUVBO0FBQ0E7O0FBRUE7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQSxJQUFHOztBQUVIO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsSUFBRzs7QUFFSDtBQUNBO0FBQ0E7Ozs7Ozs7QUMzSUEsaUJBQWdCLG9CQUFvQjtBQUNwQztBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsaUJBQWdCO0FBQ2hCLGlCQUFnQjs7QUFFaEIsb0JBQW1CO0FBQ25CLHFCQUFvQjs7QUFFcEIsaUJBQWdCO0FBQ2hCLGlCQUFnQjs7QUFFaEIsaUJBQWdCO0FBQ2hCLGtCQUFpQjs7QUFFakI7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7Ozs7Ozs7QUNsRUEsaUJBQWdCLG9CQUFvQjtBQUNwQztBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsSUFBRztBQUNIO0FBQ0EsSUFBRztBQUNIO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0EsK0NBQThDLFFBQVE7QUFDdEQ7QUFDQTtBQUNBO0FBQ0EsTUFBSztBQUNMO0FBQ0EsTUFBSztBQUNMO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLFFBQU87QUFDUDtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQSxFQUFDOztBQUVEO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBOztBQUVBOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBLDRCQUEyQixRQUFRO0FBQ25DO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7Ozs7Ozs7QUNoYUEsaUJBQWdCLG9CQUFvQjtBQUNwQztBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsdUNBQXNDLFNBQVM7QUFDL0M7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLE1BQUs7QUFDTDtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsSUFBRztBQUNIO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQSxJQUFHO0FBQ0g7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTs7Ozs7OztBQ3hIQSxpQkFBZ0Isb0JBQW9CO0FBQ3BDO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsaUJBQWdCO0FBQ2hCOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLElBQUc7QUFDSDtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTs7Ozs7OztBQzlFQSxpQkFBZ0Isb0JBQW9CO0FBQ3BDO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQSx1REFBc0Q7QUFDdEQ7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQSxFQUFDOztBQUVEO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0EsRUFBQzs7QUFFRDtBQUNBO0FBQ0E7QUFDQSxvQkFBbUI7QUFDbkI7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7O0FBRUE7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLE1BQUs7QUFDTDs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLFlBQVc7O0FBRVg7QUFDQTtBQUNBLFFBQU87QUFDUDs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsWUFBVzs7QUFFWDtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBOztBQUVBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsNEJBQTJCLE1BQU07QUFDakM7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQSx1REFBc0Q7QUFDdEQ7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLE1BQUs7O0FBRUw7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBLHVEQUFzRCxZQUFZO0FBQ2xFO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBOztBQUVBO0FBQ0E7O0FBRUE7O0FBRUE7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLE1BQUs7QUFDTDtBQUNBLEVBQUM7O0FBRUQ7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0Esb0NBQW1DO0FBQ25DO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQSwwQkFBeUIsY0FBYztBQUN2QztBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBLFVBQVM7QUFDVDtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0Esd0JBQXVCLHdDQUF3QztBQUMvRDs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsZ0RBQStDLG1CQUFtQixFQUFFO0FBQ3BFOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLGtCQUFpQixvQkFBb0I7QUFDckM7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLDhCQUE2QixNQUFNO0FBQ25DO0FBQ0EsUUFBTztBQUNQO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsdURBQXNEO0FBQ3REOztBQUVBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQSxRQUFPO0FBQ1A7QUFDQTtBQUNBLElBQUc7QUFDSDs7QUFFQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLG9CQUFtQiwyQkFBMkI7QUFDOUMsc0JBQXFCLCtDQUErQztBQUNwRTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsRUFBQzs7QUFFRDtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0EsUUFBTztBQUNQOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLE1BQUs7QUFDTDs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsTUFBSztBQUNMOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0Esb0JBQW1CLDJCQUEyQjtBQUM5Qzs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQSxvQkFBbUIsMkJBQTJCO0FBQzlDOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLG9CQUFtQiwyQkFBMkI7QUFDOUM7QUFDQTtBQUNBLHNCQUFxQiw0QkFBNEI7QUFDakQ7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBOzs7Ozs7O0FDempDQSxpQkFBZ0Isb0JBQW9CO0FBQ3BDO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsTUFBSztBQUNMO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQSxNQUFLO0FBQ0w7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTs7Ozs7OztBQzlHQSxpQkFBZ0Isb0JBQW9CO0FBQ3BDO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBLFlBQVcsTUFBTTtBQUNqQjtBQUNBLFlBQVcsT0FBTztBQUNsQjtBQUNBLFlBQVcsT0FBTztBQUNsQjtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQSxZQUFXLE9BQU87QUFDbEI7QUFDQSxZQUFXLE9BQU87QUFDbEI7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQSxZQUFXLE1BQU07QUFDakI7QUFDQSxZQUFXLFNBQVM7QUFDcEI7QUFDQSxZQUFXLE9BQU87QUFDbEI7QUFDQSxZQUFXLE9BQU87QUFDbEI7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLG9CQUFtQixPQUFPO0FBQzFCO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTs7QUFFQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQSxZQUFXLE1BQU07QUFDakI7QUFDQSxZQUFXLFNBQVM7QUFDcEI7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7Ozs7OztBQ2pIQSxpQkFBZ0Isb0JBQW9CO0FBQ3BDO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLFVBQVM7QUFDVDtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsTUFBSztBQUNMO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQSxNQUFLOztBQUVMOztBQUVBO0FBQ0E7QUFDQTtBQUNBLFFBQU87QUFDUDtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsTUFBSztBQUNMO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQSxrQ0FBaUMsUUFBUTtBQUN6QztBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQSw4Q0FBNkMsU0FBUztBQUN0RDtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQSxxQkFBb0I7QUFDcEI7QUFDQTtBQUNBLHVDQUFzQztBQUN0QztBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQSxnQkFBZSxXQUFXO0FBQzFCO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQSxnREFBK0MsU0FBUztBQUN4RDtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBLDBDQUF5QyxTQUFTO0FBQ2xEO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsSUFBRztBQUNIO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsWUFBVztBQUNYO0FBQ0E7QUFDQTtBQUNBLFlBQVc7QUFDWDtBQUNBLFVBQVM7QUFDVDtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQSxNQUFLO0FBQ0w7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLFFBQU87QUFDUDtBQUNBO0FBQ0E7QUFDQSw2Q0FBNEMsY0FBYztBQUMxRDtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLFVBQVM7QUFDVDtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsY0FBYTtBQUNiO0FBQ0E7QUFDQTtBQUNBLGNBQWE7QUFDYjtBQUNBLFlBQVc7QUFDWDtBQUNBLFFBQU87QUFDUDtBQUNBO0FBQ0E7QUFDQSxJQUFHO0FBQ0g7QUFDQTtBQUNBLElBQUc7O0FBRUgsV0FBVTtBQUNWOztBQUVBIiwiZmlsZSI6InNvdXJjZS1tYXAuZGVidWcuanMiLCJzb3VyY2VzQ29udGVudCI6WyIoZnVuY3Rpb24gd2VicGFja1VuaXZlcnNhbE1vZHVsZURlZmluaXRpb24ocm9vdCwgZmFjdG9yeSkge1xuXHRpZih0eXBlb2YgZXhwb3J0cyA9PT0gJ29iamVjdCcgJiYgdHlwZW9mIG1vZHVsZSA9PT0gJ29iamVjdCcpXG5cdFx0bW9kdWxlLmV4cG9ydHMgPSBmYWN0b3J5KCk7XG5cdGVsc2UgaWYodHlwZW9mIGRlZmluZSA9PT0gJ2Z1bmN0aW9uJyAmJiBkZWZpbmUuYW1kKVxuXHRcdGRlZmluZShbXSwgZmFjdG9yeSk7XG5cdGVsc2UgaWYodHlwZW9mIGV4cG9ydHMgPT09ICdvYmplY3QnKVxuXHRcdGV4cG9ydHNbXCJzb3VyY2VNYXBcIl0gPSBmYWN0b3J5KCk7XG5cdGVsc2Vcblx0XHRyb290W1wic291cmNlTWFwXCJdID0gZmFjdG9yeSgpO1xufSkodGhpcywgZnVuY3Rpb24oKSB7XG5yZXR1cm4gXG5cblxuLy8gV0VCUEFDSyBGT09URVIgLy9cbi8vIHdlYnBhY2svdW5pdmVyc2FsTW9kdWxlRGVmaW5pdGlvbiIsIiBcdC8vIFRoZSBtb2R1bGUgY2FjaGVcbiBcdHZhciBpbnN0YWxsZWRNb2R1bGVzID0ge307XG5cbiBcdC8vIFRoZSByZXF1aXJlIGZ1bmN0aW9uXG4gXHRmdW5jdGlvbiBfX3dlYnBhY2tfcmVxdWlyZV9fKG1vZHVsZUlkKSB7XG5cbiBcdFx0Ly8gQ2hlY2sgaWYgbW9kdWxlIGlzIGluIGNhY2hlXG4gXHRcdGlmKGluc3RhbGxlZE1vZHVsZXNbbW9kdWxlSWRdKVxuIFx0XHRcdHJldHVybiBpbnN0YWxsZWRNb2R1bGVzW21vZHVsZUlkXS5leHBvcnRzO1xuXG4gXHRcdC8vIENyZWF0ZSBhIG5ldyBtb2R1bGUgKGFuZCBwdXQgaXQgaW50byB0aGUgY2FjaGUpXG4gXHRcdHZhciBtb2R1bGUgPSBpbnN0YWxsZWRNb2R1bGVzW21vZHVsZUlkXSA9IHtcbiBcdFx0XHRleHBvcnRzOiB7fSxcbiBcdFx0XHRpZDogbW9kdWxlSWQsXG4gXHRcdFx0bG9hZGVkOiBmYWxzZVxuIFx0XHR9O1xuXG4gXHRcdC8vIEV4ZWN1dGUgdGhlIG1vZHVsZSBmdW5jdGlvblxuIFx0XHRtb2R1bGVzW21vZHVsZUlkXS5jYWxsKG1vZHVsZS5leHBvcnRzLCBtb2R1bGUsIG1vZHVsZS5leHBvcnRzLCBfX3dlYnBhY2tfcmVxdWlyZV9fKTtcblxuIFx0XHQvLyBGbGFnIHRoZSBtb2R1bGUgYXMgbG9hZGVkXG4gXHRcdG1vZHVsZS5sb2FkZWQgPSB0cnVlO1xuXG4gXHRcdC8vIFJldHVybiB0aGUgZXhwb3J0cyBvZiB0aGUgbW9kdWxlXG4gXHRcdHJldHVybiBtb2R1bGUuZXhwb3J0cztcbiBcdH1cblxuXG4gXHQvLyBleHBvc2UgdGhlIG1vZHVsZXMgb2JqZWN0IChfX3dlYnBhY2tfbW9kdWxlc19fKVxuIFx0X193ZWJwYWNrX3JlcXVpcmVfXy5tID0gbW9kdWxlcztcblxuIFx0Ly8gZXhwb3NlIHRoZSBtb2R1bGUgY2FjaGVcbiBcdF9fd2VicGFja19yZXF1aXJlX18uYyA9IGluc3RhbGxlZE1vZHVsZXM7XG5cbiBcdC8vIF9fd2VicGFja19wdWJsaWNfcGF0aF9fXG4gXHRfX3dlYnBhY2tfcmVxdWlyZV9fLnAgPSBcIlwiO1xuXG4gXHQvLyBMb2FkIGVudHJ5IG1vZHVsZSBhbmQgcmV0dXJuIGV4cG9ydHNcbiBcdHJldHVybiBfX3dlYnBhY2tfcmVxdWlyZV9fKDApO1xuXG5cblxuLy8gV0VCUEFDSyBGT09URVIgLy9cbi8vIHdlYnBhY2svYm9vdHN0cmFwIGU0NzM4ZmM3MmE3YjIzMDM5ODg5IiwiLypcbiAqIENvcHlyaWdodCAyMDA5LTIwMTEgTW96aWxsYSBGb3VuZGF0aW9uIGFuZCBjb250cmlidXRvcnNcbiAqIExpY2Vuc2VkIHVuZGVyIHRoZSBOZXcgQlNEIGxpY2Vuc2UuIFNlZSBMSUNFTlNFLnR4dCBvcjpcbiAqIGh0dHA6Ly9vcGVuc291cmNlLm9yZy9saWNlbnNlcy9CU0QtMy1DbGF1c2VcbiAqL1xuZXhwb3J0cy5Tb3VyY2VNYXBHZW5lcmF0b3IgPSByZXF1aXJlKCcuL2xpYi9zb3VyY2UtbWFwLWdlbmVyYXRvcicpLlNvdXJjZU1hcEdlbmVyYXRvcjtcbmV4cG9ydHMuU291cmNlTWFwQ29uc3VtZXIgPSByZXF1aXJlKCcuL2xpYi9zb3VyY2UtbWFwLWNvbnN1bWVyJykuU291cmNlTWFwQ29uc3VtZXI7XG5leHBvcnRzLlNvdXJjZU5vZGUgPSByZXF1aXJlKCcuL2xpYi9zb3VyY2Utbm9kZScpLlNvdXJjZU5vZGU7XG5cblxuXG4vLy8vLy8vLy8vLy8vLy8vLy9cbi8vIFdFQlBBQ0sgRk9PVEVSXG4vLyAuL3NvdXJjZS1tYXAuanNcbi8vIG1vZHVsZSBpZCA9IDBcbi8vIG1vZHVsZSBjaHVua3MgPSAwIiwiLyogLSotIE1vZGU6IGpzOyBqcy1pbmRlbnQtbGV2ZWw6IDI7IC0qLSAqL1xuLypcbiAqIENvcHlyaWdodCAyMDExIE1vemlsbGEgRm91bmRhdGlvbiBhbmQgY29udHJpYnV0b3JzXG4gKiBMaWNlbnNlZCB1bmRlciB0aGUgTmV3IEJTRCBsaWNlbnNlLiBTZWUgTElDRU5TRSBvcjpcbiAqIGh0dHA6Ly9vcGVuc291cmNlLm9yZy9saWNlbnNlcy9CU0QtMy1DbGF1c2VcbiAqL1xuXG52YXIgYmFzZTY0VkxRID0gcmVxdWlyZSgnLi9iYXNlNjQtdmxxJyk7XG52YXIgdXRpbCA9IHJlcXVpcmUoJy4vdXRpbCcpO1xudmFyIEFycmF5U2V0ID0gcmVxdWlyZSgnLi9hcnJheS1zZXQnKS5BcnJheVNldDtcbnZhciBNYXBwaW5nTGlzdCA9IHJlcXVpcmUoJy4vbWFwcGluZy1saXN0JykuTWFwcGluZ0xpc3Q7XG5cbi8qKlxuICogQW4gaW5zdGFuY2Ugb2YgdGhlIFNvdXJjZU1hcEdlbmVyYXRvciByZXByZXNlbnRzIGEgc291cmNlIG1hcCB3aGljaCBpc1xuICogYmVpbmcgYnVpbHQgaW5jcmVtZW50YWxseS4gWW91IG1heSBwYXNzIGFuIG9iamVjdCB3aXRoIHRoZSBmb2xsb3dpbmdcbiAqIHByb3BlcnRpZXM6XG4gKlxuICogICAtIGZpbGU6IFRoZSBmaWxlbmFtZSBvZiB0aGUgZ2VuZXJhdGVkIHNvdXJjZS5cbiAqICAgLSBzb3VyY2VSb290OiBBIHJvb3QgZm9yIGFsbCByZWxhdGl2ZSBVUkxzIGluIHRoaXMgc291cmNlIG1hcC5cbiAqL1xuZnVuY3Rpb24gU291cmNlTWFwR2VuZXJhdG9yKGFBcmdzKSB7XG4gIGlmICghYUFyZ3MpIHtcbiAgICBhQXJncyA9IHt9O1xuICB9XG4gIHRoaXMuX2ZpbGUgPSB1dGlsLmdldEFyZyhhQXJncywgJ2ZpbGUnLCBudWxsKTtcbiAgdGhpcy5fc291cmNlUm9vdCA9IHV0aWwuZ2V0QXJnKGFBcmdzLCAnc291cmNlUm9vdCcsIG51bGwpO1xuICB0aGlzLl9za2lwVmFsaWRhdGlvbiA9IHV0aWwuZ2V0QXJnKGFBcmdzLCAnc2tpcFZhbGlkYXRpb24nLCBmYWxzZSk7XG4gIHRoaXMuX3NvdXJjZXMgPSBuZXcgQXJyYXlTZXQoKTtcbiAgdGhpcy5fbmFtZXMgPSBuZXcgQXJyYXlTZXQoKTtcbiAgdGhpcy5fbWFwcGluZ3MgPSBuZXcgTWFwcGluZ0xpc3QoKTtcbiAgdGhpcy5fc291cmNlc0NvbnRlbnRzID0gbnVsbDtcbn1cblxuU291cmNlTWFwR2VuZXJhdG9yLnByb3RvdHlwZS5fdmVyc2lvbiA9IDM7XG5cbi8qKlxuICogQ3JlYXRlcyBhIG5ldyBTb3VyY2VNYXBHZW5lcmF0b3IgYmFzZWQgb24gYSBTb3VyY2VNYXBDb25zdW1lclxuICpcbiAqIEBwYXJhbSBhU291cmNlTWFwQ29uc3VtZXIgVGhlIFNvdXJjZU1hcC5cbiAqL1xuU291cmNlTWFwR2VuZXJhdG9yLmZyb21Tb3VyY2VNYXAgPVxuICBmdW5jdGlvbiBTb3VyY2VNYXBHZW5lcmF0b3JfZnJvbVNvdXJjZU1hcChhU291cmNlTWFwQ29uc3VtZXIpIHtcbiAgICB2YXIgc291cmNlUm9vdCA9IGFTb3VyY2VNYXBDb25zdW1lci5zb3VyY2VSb290O1xuICAgIHZhciBnZW5lcmF0b3IgPSBuZXcgU291cmNlTWFwR2VuZXJhdG9yKHtcbiAgICAgIGZpbGU6IGFTb3VyY2VNYXBDb25zdW1lci5maWxlLFxuICAgICAgc291cmNlUm9vdDogc291cmNlUm9vdFxuICAgIH0pO1xuICAgIGFTb3VyY2VNYXBDb25zdW1lci5lYWNoTWFwcGluZyhmdW5jdGlvbiAobWFwcGluZykge1xuICAgICAgdmFyIG5ld01hcHBpbmcgPSB7XG4gICAgICAgIGdlbmVyYXRlZDoge1xuICAgICAgICAgIGxpbmU6IG1hcHBpbmcuZ2VuZXJhdGVkTGluZSxcbiAgICAgICAgICBjb2x1bW46IG1hcHBpbmcuZ2VuZXJhdGVkQ29sdW1uXG4gICAgICAgIH1cbiAgICAgIH07XG5cbiAgICAgIGlmIChtYXBwaW5nLnNvdXJjZSAhPSBudWxsKSB7XG4gICAgICAgIG5ld01hcHBpbmcuc291cmNlID0gbWFwcGluZy5zb3VyY2U7XG4gICAgICAgIGlmIChzb3VyY2VSb290ICE9IG51bGwpIHtcbiAgICAgICAgICBuZXdNYXBwaW5nLnNvdXJjZSA9IHV0aWwucmVsYXRpdmUoc291cmNlUm9vdCwgbmV3TWFwcGluZy5zb3VyY2UpO1xuICAgICAgICB9XG5cbiAgICAgICAgbmV3TWFwcGluZy5vcmlnaW5hbCA9IHtcbiAgICAgICAgICBsaW5lOiBtYXBwaW5nLm9yaWdpbmFsTGluZSxcbiAgICAgICAgICBjb2x1bW46IG1hcHBpbmcub3JpZ2luYWxDb2x1bW5cbiAgICAgICAgfTtcblxuICAgICAgICBpZiAobWFwcGluZy5uYW1lICE9IG51bGwpIHtcbiAgICAgICAgICBuZXdNYXBwaW5nLm5hbWUgPSBtYXBwaW5nLm5hbWU7XG4gICAgICAgIH1cbiAgICAgIH1cblxuICAgICAgZ2VuZXJhdG9yLmFkZE1hcHBpbmcobmV3TWFwcGluZyk7XG4gICAgfSk7XG4gICAgYVNvdXJjZU1hcENvbnN1bWVyLnNvdXJjZXMuZm9yRWFjaChmdW5jdGlvbiAoc291cmNlRmlsZSkge1xuICAgICAgdmFyIGNvbnRlbnQgPSBhU291cmNlTWFwQ29uc3VtZXIuc291cmNlQ29udGVudEZvcihzb3VyY2VGaWxlKTtcbiAgICAgIGlmIChjb250ZW50ICE9IG51bGwpIHtcbiAgICAgICAgZ2VuZXJhdG9yLnNldFNvdXJjZUNvbnRlbnQoc291cmNlRmlsZSwgY29udGVudCk7XG4gICAgICB9XG4gICAgfSk7XG4gICAgcmV0dXJuIGdlbmVyYXRvcjtcbiAgfTtcblxuLyoqXG4gKiBBZGQgYSBzaW5nbGUgbWFwcGluZyBmcm9tIG9yaWdpbmFsIHNvdXJjZSBsaW5lIGFuZCBjb2x1bW4gdG8gdGhlIGdlbmVyYXRlZFxuICogc291cmNlJ3MgbGluZSBhbmQgY29sdW1uIGZvciB0aGlzIHNvdXJjZSBtYXAgYmVpbmcgY3JlYXRlZC4gVGhlIG1hcHBpbmdcbiAqIG9iamVjdCBzaG91bGQgaGF2ZSB0aGUgZm9sbG93aW5nIHByb3BlcnRpZXM6XG4gKlxuICogICAtIGdlbmVyYXRlZDogQW4gb2JqZWN0IHdpdGggdGhlIGdlbmVyYXRlZCBsaW5lIGFuZCBjb2x1bW4gcG9zaXRpb25zLlxuICogICAtIG9yaWdpbmFsOiBBbiBvYmplY3Qgd2l0aCB0aGUgb3JpZ2luYWwgbGluZSBhbmQgY29sdW1uIHBvc2l0aW9ucy5cbiAqICAgLSBzb3VyY2U6IFRoZSBvcmlnaW5hbCBzb3VyY2UgZmlsZSAocmVsYXRpdmUgdG8gdGhlIHNvdXJjZVJvb3QpLlxuICogICAtIG5hbWU6IEFuIG9wdGlvbmFsIG9yaWdpbmFsIHRva2VuIG5hbWUgZm9yIHRoaXMgbWFwcGluZy5cbiAqL1xuU291cmNlTWFwR2VuZXJhdG9yLnByb3RvdHlwZS5hZGRNYXBwaW5nID1cbiAgZnVuY3Rpb24gU291cmNlTWFwR2VuZXJhdG9yX2FkZE1hcHBpbmcoYUFyZ3MpIHtcbiAgICB2YXIgZ2VuZXJhdGVkID0gdXRpbC5nZXRBcmcoYUFyZ3MsICdnZW5lcmF0ZWQnKTtcbiAgICB2YXIgb3JpZ2luYWwgPSB1dGlsLmdldEFyZyhhQXJncywgJ29yaWdpbmFsJywgbnVsbCk7XG4gICAgdmFyIHNvdXJjZSA9IHV0aWwuZ2V0QXJnKGFBcmdzLCAnc291cmNlJywgbnVsbCk7XG4gICAgdmFyIG5hbWUgPSB1dGlsLmdldEFyZyhhQXJncywgJ25hbWUnLCBudWxsKTtcblxuICAgIGlmICghdGhpcy5fc2tpcFZhbGlkYXRpb24pIHtcbiAgICAgIHRoaXMuX3ZhbGlkYXRlTWFwcGluZyhnZW5lcmF0ZWQsIG9yaWdpbmFsLCBzb3VyY2UsIG5hbWUpO1xuICAgIH1cblxuICAgIGlmIChzb3VyY2UgIT0gbnVsbCkge1xuICAgICAgc291cmNlID0gU3RyaW5nKHNvdXJjZSk7XG4gICAgICBpZiAoIXRoaXMuX3NvdXJjZXMuaGFzKHNvdXJjZSkpIHtcbiAgICAgICAgdGhpcy5fc291cmNlcy5hZGQoc291cmNlKTtcbiAgICAgIH1cbiAgICB9XG5cbiAgICBpZiAobmFtZSAhPSBudWxsKSB7XG4gICAgICBuYW1lID0gU3RyaW5nKG5hbWUpO1xuICAgICAgaWYgKCF0aGlzLl9uYW1lcy5oYXMobmFtZSkpIHtcbiAgICAgICAgdGhpcy5fbmFtZXMuYWRkKG5hbWUpO1xuICAgICAgfVxuICAgIH1cblxuICAgIHRoaXMuX21hcHBpbmdzLmFkZCh7XG4gICAgICBnZW5lcmF0ZWRMaW5lOiBnZW5lcmF0ZWQubGluZSxcbiAgICAgIGdlbmVyYXRlZENvbHVtbjogZ2VuZXJhdGVkLmNvbHVtbixcbiAgICAgIG9yaWdpbmFsTGluZTogb3JpZ2luYWwgIT0gbnVsbCAmJiBvcmlnaW5hbC5saW5lLFxuICAgICAgb3JpZ2luYWxDb2x1bW46IG9yaWdpbmFsICE9IG51bGwgJiYgb3JpZ2luYWwuY29sdW1uLFxuICAgICAgc291cmNlOiBzb3VyY2UsXG4gICAgICBuYW1lOiBuYW1lXG4gICAgfSk7XG4gIH07XG5cbi8qKlxuICogU2V0IHRoZSBzb3VyY2UgY29udGVudCBmb3IgYSBzb3VyY2UgZmlsZS5cbiAqL1xuU291cmNlTWFwR2VuZXJhdG9yLnByb3RvdHlwZS5zZXRTb3VyY2VDb250ZW50ID1cbiAgZnVuY3Rpb24gU291cmNlTWFwR2VuZXJhdG9yX3NldFNvdXJjZUNvbnRlbnQoYVNvdXJjZUZpbGUsIGFTb3VyY2VDb250ZW50KSB7XG4gICAgdmFyIHNvdXJjZSA9IGFTb3VyY2VGaWxlO1xuICAgIGlmICh0aGlzLl9zb3VyY2VSb290ICE9IG51bGwpIHtcbiAgICAgIHNvdXJjZSA9IHV0aWwucmVsYXRpdmUodGhpcy5fc291cmNlUm9vdCwgc291cmNlKTtcbiAgICB9XG5cbiAgICBpZiAoYVNvdXJjZUNvbnRlbnQgIT0gbnVsbCkge1xuICAgICAgLy8gQWRkIHRoZSBzb3VyY2UgY29udGVudCB0byB0aGUgX3NvdXJjZXNDb250ZW50cyBtYXAuXG4gICAgICAvLyBDcmVhdGUgYSBuZXcgX3NvdXJjZXNDb250ZW50cyBtYXAgaWYgdGhlIHByb3BlcnR5IGlzIG51bGwuXG4gICAgICBpZiAoIXRoaXMuX3NvdXJjZXNDb250ZW50cykge1xuICAgICAgICB0aGlzLl9zb3VyY2VzQ29udGVudHMgPSBPYmplY3QuY3JlYXRlKG51bGwpO1xuICAgICAgfVxuICAgICAgdGhpcy5fc291cmNlc0NvbnRlbnRzW3V0aWwudG9TZXRTdHJpbmcoc291cmNlKV0gPSBhU291cmNlQ29udGVudDtcbiAgICB9IGVsc2UgaWYgKHRoaXMuX3NvdXJjZXNDb250ZW50cykge1xuICAgICAgLy8gUmVtb3ZlIHRoZSBzb3VyY2UgZmlsZSBmcm9tIHRoZSBfc291cmNlc0NvbnRlbnRzIG1hcC5cbiAgICAgIC8vIElmIHRoZSBfc291cmNlc0NvbnRlbnRzIG1hcCBpcyBlbXB0eSwgc2V0IHRoZSBwcm9wZXJ0eSB0byBudWxsLlxuICAgICAgZGVsZXRlIHRoaXMuX3NvdXJjZXNDb250ZW50c1t1dGlsLnRvU2V0U3RyaW5nKHNvdXJjZSldO1xuICAgICAgaWYgKE9iamVjdC5rZXlzKHRoaXMuX3NvdXJjZXNDb250ZW50cykubGVuZ3RoID09PSAwKSB7XG4gICAgICAgIHRoaXMuX3NvdXJjZXNDb250ZW50cyA9IG51bGw7XG4gICAgICB9XG4gICAgfVxuICB9O1xuXG4vKipcbiAqIEFwcGxpZXMgdGhlIG1hcHBpbmdzIG9mIGEgc3ViLXNvdXJjZS1tYXAgZm9yIGEgc3BlY2lmaWMgc291cmNlIGZpbGUgdG8gdGhlXG4gKiBzb3VyY2UgbWFwIGJlaW5nIGdlbmVyYXRlZC4gRWFjaCBtYXBwaW5nIHRvIHRoZSBzdXBwbGllZCBzb3VyY2UgZmlsZSBpc1xuICogcmV3cml0dGVuIHVzaW5nIHRoZSBzdXBwbGllZCBzb3VyY2UgbWFwLiBOb3RlOiBUaGUgcmVzb2x1dGlvbiBmb3IgdGhlXG4gKiByZXN1bHRpbmcgbWFwcGluZ3MgaXMgdGhlIG1pbmltaXVtIG9mIHRoaXMgbWFwIGFuZCB0aGUgc3VwcGxpZWQgbWFwLlxuICpcbiAqIEBwYXJhbSBhU291cmNlTWFwQ29uc3VtZXIgVGhlIHNvdXJjZSBtYXAgdG8gYmUgYXBwbGllZC5cbiAqIEBwYXJhbSBhU291cmNlRmlsZSBPcHRpb25hbC4gVGhlIGZpbGVuYW1lIG9mIHRoZSBzb3VyY2UgZmlsZS5cbiAqICAgICAgICBJZiBvbWl0dGVkLCBTb3VyY2VNYXBDb25zdW1lcidzIGZpbGUgcHJvcGVydHkgd2lsbCBiZSB1c2VkLlxuICogQHBhcmFtIGFTb3VyY2VNYXBQYXRoIE9wdGlvbmFsLiBUaGUgZGlybmFtZSBvZiB0aGUgcGF0aCB0byB0aGUgc291cmNlIG1hcFxuICogICAgICAgIHRvIGJlIGFwcGxpZWQuIElmIHJlbGF0aXZlLCBpdCBpcyByZWxhdGl2ZSB0byB0aGUgU291cmNlTWFwQ29uc3VtZXIuXG4gKiAgICAgICAgVGhpcyBwYXJhbWV0ZXIgaXMgbmVlZGVkIHdoZW4gdGhlIHR3byBzb3VyY2UgbWFwcyBhcmVuJ3QgaW4gdGhlIHNhbWVcbiAqICAgICAgICBkaXJlY3RvcnksIGFuZCB0aGUgc291cmNlIG1hcCB0byBiZSBhcHBsaWVkIGNvbnRhaW5zIHJlbGF0aXZlIHNvdXJjZVxuICogICAgICAgIHBhdGhzLiBJZiBzbywgdGhvc2UgcmVsYXRpdmUgc291cmNlIHBhdGhzIG5lZWQgdG8gYmUgcmV3cml0dGVuXG4gKiAgICAgICAgcmVsYXRpdmUgdG8gdGhlIFNvdXJjZU1hcEdlbmVyYXRvci5cbiAqL1xuU291cmNlTWFwR2VuZXJhdG9yLnByb3RvdHlwZS5hcHBseVNvdXJjZU1hcCA9XG4gIGZ1bmN0aW9uIFNvdXJjZU1hcEdlbmVyYXRvcl9hcHBseVNvdXJjZU1hcChhU291cmNlTWFwQ29uc3VtZXIsIGFTb3VyY2VGaWxlLCBhU291cmNlTWFwUGF0aCkge1xuICAgIHZhciBzb3VyY2VGaWxlID0gYVNvdXJjZUZpbGU7XG4gICAgLy8gSWYgYVNvdXJjZUZpbGUgaXMgb21pdHRlZCwgd2Ugd2lsbCB1c2UgdGhlIGZpbGUgcHJvcGVydHkgb2YgdGhlIFNvdXJjZU1hcFxuICAgIGlmIChhU291cmNlRmlsZSA9PSBudWxsKSB7XG4gICAgICBpZiAoYVNvdXJjZU1hcENvbnN1bWVyLmZpbGUgPT0gbnVsbCkge1xuICAgICAgICB0aHJvdyBuZXcgRXJyb3IoXG4gICAgICAgICAgJ1NvdXJjZU1hcEdlbmVyYXRvci5wcm90b3R5cGUuYXBwbHlTb3VyY2VNYXAgcmVxdWlyZXMgZWl0aGVyIGFuIGV4cGxpY2l0IHNvdXJjZSBmaWxlLCAnICtcbiAgICAgICAgICAnb3IgdGhlIHNvdXJjZSBtYXBcXCdzIFwiZmlsZVwiIHByb3BlcnR5LiBCb3RoIHdlcmUgb21pdHRlZC4nXG4gICAgICAgICk7XG4gICAgICB9XG4gICAgICBzb3VyY2VGaWxlID0gYVNvdXJjZU1hcENvbnN1bWVyLmZpbGU7XG4gICAgfVxuICAgIHZhciBzb3VyY2VSb290ID0gdGhpcy5fc291cmNlUm9vdDtcbiAgICAvLyBNYWtlIFwic291cmNlRmlsZVwiIHJlbGF0aXZlIGlmIGFuIGFic29sdXRlIFVybCBpcyBwYXNzZWQuXG4gICAgaWYgKHNvdXJjZVJvb3QgIT0gbnVsbCkge1xuICAgICAgc291cmNlRmlsZSA9IHV0aWwucmVsYXRpdmUoc291cmNlUm9vdCwgc291cmNlRmlsZSk7XG4gICAgfVxuICAgIC8vIEFwcGx5aW5nIHRoZSBTb3VyY2VNYXAgY2FuIGFkZCBhbmQgcmVtb3ZlIGl0ZW1zIGZyb20gdGhlIHNvdXJjZXMgYW5kXG4gICAgLy8gdGhlIG5hbWVzIGFycmF5LlxuICAgIHZhciBuZXdTb3VyY2VzID0gbmV3IEFycmF5U2V0KCk7XG4gICAgdmFyIG5ld05hbWVzID0gbmV3IEFycmF5U2V0KCk7XG5cbiAgICAvLyBGaW5kIG1hcHBpbmdzIGZvciB0aGUgXCJzb3VyY2VGaWxlXCJcbiAgICB0aGlzLl9tYXBwaW5ncy51bnNvcnRlZEZvckVhY2goZnVuY3Rpb24gKG1hcHBpbmcpIHtcbiAgICAgIGlmIChtYXBwaW5nLnNvdXJjZSA9PT0gc291cmNlRmlsZSAmJiBtYXBwaW5nLm9yaWdpbmFsTGluZSAhPSBudWxsKSB7XG4gICAgICAgIC8vIENoZWNrIGlmIGl0IGNhbiBiZSBtYXBwZWQgYnkgdGhlIHNvdXJjZSBtYXAsIHRoZW4gdXBkYXRlIHRoZSBtYXBwaW5nLlxuICAgICAgICB2YXIgb3JpZ2luYWwgPSBhU291cmNlTWFwQ29uc3VtZXIub3JpZ2luYWxQb3NpdGlvbkZvcih7XG4gICAgICAgICAgbGluZTogbWFwcGluZy5vcmlnaW5hbExpbmUsXG4gICAgICAgICAgY29sdW1uOiBtYXBwaW5nLm9yaWdpbmFsQ29sdW1uXG4gICAgICAgIH0pO1xuICAgICAgICBpZiAob3JpZ2luYWwuc291cmNlICE9IG51bGwpIHtcbiAgICAgICAgICAvLyBDb3B5IG1hcHBpbmdcbiAgICAgICAgICBtYXBwaW5nLnNvdXJjZSA9IG9yaWdpbmFsLnNvdXJjZTtcbiAgICAgICAgICBpZiAoYVNvdXJjZU1hcFBhdGggIT0gbnVsbCkge1xuICAgICAgICAgICAgbWFwcGluZy5zb3VyY2UgPSB1dGlsLmpvaW4oYVNvdXJjZU1hcFBhdGgsIG1hcHBpbmcuc291cmNlKVxuICAgICAgICAgIH1cbiAgICAgICAgICBpZiAoc291cmNlUm9vdCAhPSBudWxsKSB7XG4gICAgICAgICAgICBtYXBwaW5nLnNvdXJjZSA9IHV0aWwucmVsYXRpdmUoc291cmNlUm9vdCwgbWFwcGluZy5zb3VyY2UpO1xuICAgICAgICAgIH1cbiAgICAgICAgICBtYXBwaW5nLm9yaWdpbmFsTGluZSA9IG9yaWdpbmFsLmxpbmU7XG4gICAgICAgICAgbWFwcGluZy5vcmlnaW5hbENvbHVtbiA9IG9yaWdpbmFsLmNvbHVtbjtcbiAgICAgICAgICBpZiAob3JpZ2luYWwubmFtZSAhPSBudWxsKSB7XG4gICAgICAgICAgICBtYXBwaW5nLm5hbWUgPSBvcmlnaW5hbC5uYW1lO1xuICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgICAgfVxuXG4gICAgICB2YXIgc291cmNlID0gbWFwcGluZy5zb3VyY2U7XG4gICAgICBpZiAoc291cmNlICE9IG51bGwgJiYgIW5ld1NvdXJjZXMuaGFzKHNvdXJjZSkpIHtcbiAgICAgICAgbmV3U291cmNlcy5hZGQoc291cmNlKTtcbiAgICAgIH1cblxuICAgICAgdmFyIG5hbWUgPSBtYXBwaW5nLm5hbWU7XG4gICAgICBpZiAobmFtZSAhPSBudWxsICYmICFuZXdOYW1lcy5oYXMobmFtZSkpIHtcbiAgICAgICAgbmV3TmFtZXMuYWRkKG5hbWUpO1xuICAgICAgfVxuXG4gICAgfSwgdGhpcyk7XG4gICAgdGhpcy5fc291cmNlcyA9IG5ld1NvdXJjZXM7XG4gICAgdGhpcy5fbmFtZXMgPSBuZXdOYW1lcztcblxuICAgIC8vIENvcHkgc291cmNlc0NvbnRlbnRzIG9mIGFwcGxpZWQgbWFwLlxuICAgIGFTb3VyY2VNYXBDb25zdW1lci5zb3VyY2VzLmZvckVhY2goZnVuY3Rpb24gKHNvdXJjZUZpbGUpIHtcbiAgICAgIHZhciBjb250ZW50ID0gYVNvdXJjZU1hcENvbnN1bWVyLnNvdXJjZUNvbnRlbnRGb3Ioc291cmNlRmlsZSk7XG4gICAgICBpZiAoY29udGVudCAhPSBudWxsKSB7XG4gICAgICAgIGlmIChhU291cmNlTWFwUGF0aCAhPSBudWxsKSB7XG4gICAgICAgICAgc291cmNlRmlsZSA9IHV0aWwuam9pbihhU291cmNlTWFwUGF0aCwgc291cmNlRmlsZSk7XG4gICAgICAgIH1cbiAgICAgICAgaWYgKHNvdXJjZVJvb3QgIT0gbnVsbCkge1xuICAgICAgICAgIHNvdXJjZUZpbGUgPSB1dGlsLnJlbGF0aXZlKHNvdXJjZVJvb3QsIHNvdXJjZUZpbGUpO1xuICAgICAgICB9XG4gICAgICAgIHRoaXMuc2V0U291cmNlQ29udGVudChzb3VyY2VGaWxlLCBjb250ZW50KTtcbiAgICAgIH1cbiAgICB9LCB0aGlzKTtcbiAgfTtcblxuLyoqXG4gKiBBIG1hcHBpbmcgY2FuIGhhdmUgb25lIG9mIHRoZSB0aHJlZSBsZXZlbHMgb2YgZGF0YTpcbiAqXG4gKiAgIDEuIEp1c3QgdGhlIGdlbmVyYXRlZCBwb3NpdGlvbi5cbiAqICAgMi4gVGhlIEdlbmVyYXRlZCBwb3NpdGlvbiwgb3JpZ2luYWwgcG9zaXRpb24sIGFuZCBvcmlnaW5hbCBzb3VyY2UuXG4gKiAgIDMuIEdlbmVyYXRlZCBhbmQgb3JpZ2luYWwgcG9zaXRpb24sIG9yaWdpbmFsIHNvdXJjZSwgYXMgd2VsbCBhcyBhIG5hbWVcbiAqICAgICAgdG9rZW4uXG4gKlxuICogVG8gbWFpbnRhaW4gY29uc2lzdGVuY3ksIHdlIHZhbGlkYXRlIHRoYXQgYW55IG5ldyBtYXBwaW5nIGJlaW5nIGFkZGVkIGZhbGxzXG4gKiBpbiB0byBvbmUgb2YgdGhlc2UgY2F0ZWdvcmllcy5cbiAqL1xuU291cmNlTWFwR2VuZXJhdG9yLnByb3RvdHlwZS5fdmFsaWRhdGVNYXBwaW5nID1cbiAgZnVuY3Rpb24gU291cmNlTWFwR2VuZXJhdG9yX3ZhbGlkYXRlTWFwcGluZyhhR2VuZXJhdGVkLCBhT3JpZ2luYWwsIGFTb3VyY2UsXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgYU5hbWUpIHtcbiAgICAvLyBXaGVuIGFPcmlnaW5hbCBpcyB0cnV0aHkgYnV0IGhhcyBlbXB0eSB2YWx1ZXMgZm9yIC5saW5lIGFuZCAuY29sdW1uLFxuICAgIC8vIGl0IGlzIG1vc3QgbGlrZWx5IGEgcHJvZ3JhbW1lciBlcnJvci4gSW4gdGhpcyBjYXNlIHdlIHRocm93IGEgdmVyeVxuICAgIC8vIHNwZWNpZmljIGVycm9yIG1lc3NhZ2UgdG8gdHJ5IHRvIGd1aWRlIHRoZW0gdGhlIHJpZ2h0IHdheS5cbiAgICAvLyBGb3IgZXhhbXBsZTogaHR0cHM6Ly9naXRodWIuY29tL1BvbHltZXIvcG9seW1lci1idW5kbGVyL3B1bGwvNTE5XG4gICAgaWYgKGFPcmlnaW5hbCAmJiB0eXBlb2YgYU9yaWdpbmFsLmxpbmUgIT09ICdudW1iZXInICYmIHR5cGVvZiBhT3JpZ2luYWwuY29sdW1uICE9PSAnbnVtYmVyJykge1xuICAgICAgICB0aHJvdyBuZXcgRXJyb3IoXG4gICAgICAgICAgICAnb3JpZ2luYWwubGluZSBhbmQgb3JpZ2luYWwuY29sdW1uIGFyZSBub3QgbnVtYmVycyAtLSB5b3UgcHJvYmFibHkgbWVhbnQgdG8gb21pdCAnICtcbiAgICAgICAgICAgICd0aGUgb3JpZ2luYWwgbWFwcGluZyBlbnRpcmVseSBhbmQgb25seSBtYXAgdGhlIGdlbmVyYXRlZCBwb3NpdGlvbi4gSWYgc28sIHBhc3MgJyArXG4gICAgICAgICAgICAnbnVsbCBmb3IgdGhlIG9yaWdpbmFsIG1hcHBpbmcgaW5zdGVhZCBvZiBhbiBvYmplY3Qgd2l0aCBlbXB0eSBvciBudWxsIHZhbHVlcy4nXG4gICAgICAgICk7XG4gICAgfVxuXG4gICAgaWYgKGFHZW5lcmF0ZWQgJiYgJ2xpbmUnIGluIGFHZW5lcmF0ZWQgJiYgJ2NvbHVtbicgaW4gYUdlbmVyYXRlZFxuICAgICAgICAmJiBhR2VuZXJhdGVkLmxpbmUgPiAwICYmIGFHZW5lcmF0ZWQuY29sdW1uID49IDBcbiAgICAgICAgJiYgIWFPcmlnaW5hbCAmJiAhYVNvdXJjZSAmJiAhYU5hbWUpIHtcbiAgICAgIC8vIENhc2UgMS5cbiAgICAgIHJldHVybjtcbiAgICB9XG4gICAgZWxzZSBpZiAoYUdlbmVyYXRlZCAmJiAnbGluZScgaW4gYUdlbmVyYXRlZCAmJiAnY29sdW1uJyBpbiBhR2VuZXJhdGVkXG4gICAgICAgICAgICAgJiYgYU9yaWdpbmFsICYmICdsaW5lJyBpbiBhT3JpZ2luYWwgJiYgJ2NvbHVtbicgaW4gYU9yaWdpbmFsXG4gICAgICAgICAgICAgJiYgYUdlbmVyYXRlZC5saW5lID4gMCAmJiBhR2VuZXJhdGVkLmNvbHVtbiA+PSAwXG4gICAgICAgICAgICAgJiYgYU9yaWdpbmFsLmxpbmUgPiAwICYmIGFPcmlnaW5hbC5jb2x1bW4gPj0gMFxuICAgICAgICAgICAgICYmIGFTb3VyY2UpIHtcbiAgICAgIC8vIENhc2VzIDIgYW5kIDMuXG4gICAgICByZXR1cm47XG4gICAgfVxuICAgIGVsc2Uge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKCdJbnZhbGlkIG1hcHBpbmc6ICcgKyBKU09OLnN0cmluZ2lmeSh7XG4gICAgICAgIGdlbmVyYXRlZDogYUdlbmVyYXRlZCxcbiAgICAgICAgc291cmNlOiBhU291cmNlLFxuICAgICAgICBvcmlnaW5hbDogYU9yaWdpbmFsLFxuICAgICAgICBuYW1lOiBhTmFtZVxuICAgICAgfSkpO1xuICAgIH1cbiAgfTtcblxuLyoqXG4gKiBTZXJpYWxpemUgdGhlIGFjY3VtdWxhdGVkIG1hcHBpbmdzIGluIHRvIHRoZSBzdHJlYW0gb2YgYmFzZSA2NCBWTFFzXG4gKiBzcGVjaWZpZWQgYnkgdGhlIHNvdXJjZSBtYXAgZm9ybWF0LlxuICovXG5Tb3VyY2VNYXBHZW5lcmF0b3IucHJvdG90eXBlLl9zZXJpYWxpemVNYXBwaW5ncyA9XG4gIGZ1bmN0aW9uIFNvdXJjZU1hcEdlbmVyYXRvcl9zZXJpYWxpemVNYXBwaW5ncygpIHtcbiAgICB2YXIgcHJldmlvdXNHZW5lcmF0ZWRDb2x1bW4gPSAwO1xuICAgIHZhciBwcmV2aW91c0dlbmVyYXRlZExpbmUgPSAxO1xuICAgIHZhciBwcmV2aW91c09yaWdpbmFsQ29sdW1uID0gMDtcbiAgICB2YXIgcHJldmlvdXNPcmlnaW5hbExpbmUgPSAwO1xuICAgIHZhciBwcmV2aW91c05hbWUgPSAwO1xuICAgIHZhciBwcmV2aW91c1NvdXJjZSA9IDA7XG4gICAgdmFyIHJlc3VsdCA9ICcnO1xuICAgIHZhciBuZXh0O1xuICAgIHZhciBtYXBwaW5nO1xuICAgIHZhciBuYW1lSWR4O1xuICAgIHZhciBzb3VyY2VJZHg7XG5cbiAgICB2YXIgbWFwcGluZ3MgPSB0aGlzLl9tYXBwaW5ncy50b0FycmF5KCk7XG4gICAgZm9yICh2YXIgaSA9IDAsIGxlbiA9IG1hcHBpbmdzLmxlbmd0aDsgaSA8IGxlbjsgaSsrKSB7XG4gICAgICBtYXBwaW5nID0gbWFwcGluZ3NbaV07XG4gICAgICBuZXh0ID0gJydcblxuICAgICAgaWYgKG1hcHBpbmcuZ2VuZXJhdGVkTGluZSAhPT0gcHJldmlvdXNHZW5lcmF0ZWRMaW5lKSB7XG4gICAgICAgIHByZXZpb3VzR2VuZXJhdGVkQ29sdW1uID0gMDtcbiAgICAgICAgd2hpbGUgKG1hcHBpbmcuZ2VuZXJhdGVkTGluZSAhPT0gcHJldmlvdXNHZW5lcmF0ZWRMaW5lKSB7XG4gICAgICAgICAgbmV4dCArPSAnOyc7XG4gICAgICAgICAgcHJldmlvdXNHZW5lcmF0ZWRMaW5lKys7XG4gICAgICAgIH1cbiAgICAgIH1cbiAgICAgIGVsc2Uge1xuICAgICAgICBpZiAoaSA+IDApIHtcbiAgICAgICAgICBpZiAoIXV0aWwuY29tcGFyZUJ5R2VuZXJhdGVkUG9zaXRpb25zSW5mbGF0ZWQobWFwcGluZywgbWFwcGluZ3NbaSAtIDFdKSkge1xuICAgICAgICAgICAgY29udGludWU7XG4gICAgICAgICAgfVxuICAgICAgICAgIG5leHQgKz0gJywnO1xuICAgICAgICB9XG4gICAgICB9XG5cbiAgICAgIG5leHQgKz0gYmFzZTY0VkxRLmVuY29kZShtYXBwaW5nLmdlbmVyYXRlZENvbHVtblxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgLSBwcmV2aW91c0dlbmVyYXRlZENvbHVtbik7XG4gICAgICBwcmV2aW91c0dlbmVyYXRlZENvbHVtbiA9IG1hcHBpbmcuZ2VuZXJhdGVkQ29sdW1uO1xuXG4gICAgICBpZiAobWFwcGluZy5zb3VyY2UgIT0gbnVsbCkge1xuICAgICAgICBzb3VyY2VJZHggPSB0aGlzLl9zb3VyY2VzLmluZGV4T2YobWFwcGluZy5zb3VyY2UpO1xuICAgICAgICBuZXh0ICs9IGJhc2U2NFZMUS5lbmNvZGUoc291cmNlSWR4IC0gcHJldmlvdXNTb3VyY2UpO1xuICAgICAgICBwcmV2aW91c1NvdXJjZSA9IHNvdXJjZUlkeDtcblxuICAgICAgICAvLyBsaW5lcyBhcmUgc3RvcmVkIDAtYmFzZWQgaW4gU291cmNlTWFwIHNwZWMgdmVyc2lvbiAzXG4gICAgICAgIG5leHQgKz0gYmFzZTY0VkxRLmVuY29kZShtYXBwaW5nLm9yaWdpbmFsTGluZSAtIDFcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgLSBwcmV2aW91c09yaWdpbmFsTGluZSk7XG4gICAgICAgIHByZXZpb3VzT3JpZ2luYWxMaW5lID0gbWFwcGluZy5vcmlnaW5hbExpbmUgLSAxO1xuXG4gICAgICAgIG5leHQgKz0gYmFzZTY0VkxRLmVuY29kZShtYXBwaW5nLm9yaWdpbmFsQ29sdW1uXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIC0gcHJldmlvdXNPcmlnaW5hbENvbHVtbik7XG4gICAgICAgIHByZXZpb3VzT3JpZ2luYWxDb2x1bW4gPSBtYXBwaW5nLm9yaWdpbmFsQ29sdW1uO1xuXG4gICAgICAgIGlmIChtYXBwaW5nLm5hbWUgIT0gbnVsbCkge1xuICAgICAgICAgIG5hbWVJZHggPSB0aGlzLl9uYW1lcy5pbmRleE9mKG1hcHBpbmcubmFtZSk7XG4gICAgICAgICAgbmV4dCArPSBiYXNlNjRWTFEuZW5jb2RlKG5hbWVJZHggLSBwcmV2aW91c05hbWUpO1xuICAgICAgICAgIHByZXZpb3VzTmFtZSA9IG5hbWVJZHg7XG4gICAgICAgIH1cbiAgICAgIH1cblxuICAgICAgcmVzdWx0ICs9IG5leHQ7XG4gICAgfVxuXG4gICAgcmV0dXJuIHJlc3VsdDtcbiAgfTtcblxuU291cmNlTWFwR2VuZXJhdG9yLnByb3RvdHlwZS5fZ2VuZXJhdGVTb3VyY2VzQ29udGVudCA9XG4gIGZ1bmN0aW9uIFNvdXJjZU1hcEdlbmVyYXRvcl9nZW5lcmF0ZVNvdXJjZXNDb250ZW50KGFTb3VyY2VzLCBhU291cmNlUm9vdCkge1xuICAgIHJldHVybiBhU291cmNlcy5tYXAoZnVuY3Rpb24gKHNvdXJjZSkge1xuICAgICAgaWYgKCF0aGlzLl9zb3VyY2VzQ29udGVudHMpIHtcbiAgICAgICAgcmV0dXJuIG51bGw7XG4gICAgICB9XG4gICAgICBpZiAoYVNvdXJjZVJvb3QgIT0gbnVsbCkge1xuICAgICAgICBzb3VyY2UgPSB1dGlsLnJlbGF0aXZlKGFTb3VyY2VSb290LCBzb3VyY2UpO1xuICAgICAgfVxuICAgICAgdmFyIGtleSA9IHV0aWwudG9TZXRTdHJpbmcoc291cmNlKTtcbiAgICAgIHJldHVybiBPYmplY3QucHJvdG90eXBlLmhhc093blByb3BlcnR5LmNhbGwodGhpcy5fc291cmNlc0NvbnRlbnRzLCBrZXkpXG4gICAgICAgID8gdGhpcy5fc291cmNlc0NvbnRlbnRzW2tleV1cbiAgICAgICAgOiBudWxsO1xuICAgIH0sIHRoaXMpO1xuICB9O1xuXG4vKipcbiAqIEV4dGVybmFsaXplIHRoZSBzb3VyY2UgbWFwLlxuICovXG5Tb3VyY2VNYXBHZW5lcmF0b3IucHJvdG90eXBlLnRvSlNPTiA9XG4gIGZ1bmN0aW9uIFNvdXJjZU1hcEdlbmVyYXRvcl90b0pTT04oKSB7XG4gICAgdmFyIG1hcCA9IHtcbiAgICAgIHZlcnNpb246IHRoaXMuX3ZlcnNpb24sXG4gICAgICBzb3VyY2VzOiB0aGlzLl9zb3VyY2VzLnRvQXJyYXkoKSxcbiAgICAgIG5hbWVzOiB0aGlzLl9uYW1lcy50b0FycmF5KCksXG4gICAgICBtYXBwaW5nczogdGhpcy5fc2VyaWFsaXplTWFwcGluZ3MoKVxuICAgIH07XG4gICAgaWYgKHRoaXMuX2ZpbGUgIT0gbnVsbCkge1xuICAgICAgbWFwLmZpbGUgPSB0aGlzLl9maWxlO1xuICAgIH1cbiAgICBpZiAodGhpcy5fc291cmNlUm9vdCAhPSBudWxsKSB7XG4gICAgICBtYXAuc291cmNlUm9vdCA9IHRoaXMuX3NvdXJjZVJvb3Q7XG4gICAgfVxuICAgIGlmICh0aGlzLl9zb3VyY2VzQ29udGVudHMpIHtcbiAgICAgIG1hcC5zb3VyY2VzQ29udGVudCA9IHRoaXMuX2dlbmVyYXRlU291cmNlc0NvbnRlbnQobWFwLnNvdXJjZXMsIG1hcC5zb3VyY2VSb290KTtcbiAgICB9XG5cbiAgICByZXR1cm4gbWFwO1xuICB9O1xuXG4vKipcbiAqIFJlbmRlciB0aGUgc291cmNlIG1hcCBiZWluZyBnZW5lcmF0ZWQgdG8gYSBzdHJpbmcuXG4gKi9cblNvdXJjZU1hcEdlbmVyYXRvci5wcm90b3R5cGUudG9TdHJpbmcgPVxuICBmdW5jdGlvbiBTb3VyY2VNYXBHZW5lcmF0b3JfdG9TdHJpbmcoKSB7XG4gICAgcmV0dXJuIEpTT04uc3RyaW5naWZ5KHRoaXMudG9KU09OKCkpO1xuICB9O1xuXG5leHBvcnRzLlNvdXJjZU1hcEdlbmVyYXRvciA9IFNvdXJjZU1hcEdlbmVyYXRvcjtcblxuXG5cbi8vLy8vLy8vLy8vLy8vLy8vL1xuLy8gV0VCUEFDSyBGT09URVJcbi8vIC4vbGliL3NvdXJjZS1tYXAtZ2VuZXJhdG9yLmpzXG4vLyBtb2R1bGUgaWQgPSAxXG4vLyBtb2R1bGUgY2h1bmtzID0gMCIsIi8qIC0qLSBNb2RlOiBqczsganMtaW5kZW50LWxldmVsOiAyOyAtKi0gKi9cbi8qXG4gKiBDb3B5cmlnaHQgMjAxMSBNb3ppbGxhIEZvdW5kYXRpb24gYW5kIGNvbnRyaWJ1dG9yc1xuICogTGljZW5zZWQgdW5kZXIgdGhlIE5ldyBCU0QgbGljZW5zZS4gU2VlIExJQ0VOU0Ugb3I6XG4gKiBodHRwOi8vb3BlbnNvdXJjZS5vcmcvbGljZW5zZXMvQlNELTMtQ2xhdXNlXG4gKlxuICogQmFzZWQgb24gdGhlIEJhc2UgNjQgVkxRIGltcGxlbWVudGF0aW9uIGluIENsb3N1cmUgQ29tcGlsZXI6XG4gKiBodHRwczovL2NvZGUuZ29vZ2xlLmNvbS9wL2Nsb3N1cmUtY29tcGlsZXIvc291cmNlL2Jyb3dzZS90cnVuay9zcmMvY29tL2dvb2dsZS9kZWJ1Z2dpbmcvc291cmNlbWFwL0Jhc2U2NFZMUS5qYXZhXG4gKlxuICogQ29weXJpZ2h0IDIwMTEgVGhlIENsb3N1cmUgQ29tcGlsZXIgQXV0aG9ycy4gQWxsIHJpZ2h0cyByZXNlcnZlZC5cbiAqIFJlZGlzdHJpYnV0aW9uIGFuZCB1c2UgaW4gc291cmNlIGFuZCBiaW5hcnkgZm9ybXMsIHdpdGggb3Igd2l0aG91dFxuICogbW9kaWZpY2F0aW9uLCBhcmUgcGVybWl0dGVkIHByb3ZpZGVkIHRoYXQgdGhlIGZvbGxvd2luZyBjb25kaXRpb25zIGFyZVxuICogbWV0OlxuICpcbiAqICAqIFJlZGlzdHJpYnV0aW9ucyBvZiBzb3VyY2UgY29kZSBtdXN0IHJldGFpbiB0aGUgYWJvdmUgY29weXJpZ2h0XG4gKiAgICBub3RpY2UsIHRoaXMgbGlzdCBvZiBjb25kaXRpb25zIGFuZCB0aGUgZm9sbG93aW5nIGRpc2NsYWltZXIuXG4gKiAgKiBSZWRpc3RyaWJ1dGlvbnMgaW4gYmluYXJ5IGZvcm0gbXVzdCByZXByb2R1Y2UgdGhlIGFib3ZlXG4gKiAgICBjb3B5cmlnaHQgbm90aWNlLCB0aGlzIGxpc3Qgb2YgY29uZGl0aW9ucyBhbmQgdGhlIGZvbGxvd2luZ1xuICogICAgZGlzY2xhaW1lciBpbiB0aGUgZG9jdW1lbnRhdGlvbiBhbmQvb3Igb3RoZXIgbWF0ZXJpYWxzIHByb3ZpZGVkXG4gKiAgICB3aXRoIHRoZSBkaXN0cmlidXRpb24uXG4gKiAgKiBOZWl0aGVyIHRoZSBuYW1lIG9mIEdvb2dsZSBJbmMuIG5vciB0aGUgbmFtZXMgb2YgaXRzXG4gKiAgICBjb250cmlidXRvcnMgbWF5IGJlIHVzZWQgdG8gZW5kb3JzZSBvciBwcm9tb3RlIHByb2R1Y3RzIGRlcml2ZWRcbiAqICAgIGZyb20gdGhpcyBzb2Z0d2FyZSB3aXRob3V0IHNwZWNpZmljIHByaW9yIHdyaXR0ZW4gcGVybWlzc2lvbi5cbiAqXG4gKiBUSElTIFNPRlRXQVJFIElTIFBST1ZJREVEIEJZIFRIRSBDT1BZUklHSFQgSE9MREVSUyBBTkQgQ09OVFJJQlVUT1JTXG4gKiBcIkFTIElTXCIgQU5EIEFOWSBFWFBSRVNTIE9SIElNUExJRUQgV0FSUkFOVElFUywgSU5DTFVESU5HLCBCVVQgTk9UXG4gKiBMSU1JVEVEIFRPLCBUSEUgSU1QTElFRCBXQVJSQU5USUVTIE9GIE1FUkNIQU5UQUJJTElUWSBBTkQgRklUTkVTUyBGT1JcbiAqIEEgUEFSVElDVUxBUiBQVVJQT1NFIEFSRSBESVNDTEFJTUVELiBJTiBOTyBFVkVOVCBTSEFMTCBUSEUgQ09QWVJJR0hUXG4gKiBPV05FUiBPUiBDT05UUklCVVRPUlMgQkUgTElBQkxFIEZPUiBBTlkgRElSRUNULCBJTkRJUkVDVCwgSU5DSURFTlRBTCxcbiAqIFNQRUNJQUwsIEVYRU1QTEFSWSwgT1IgQ09OU0VRVUVOVElBTCBEQU1BR0VTIChJTkNMVURJTkcsIEJVVCBOT1RcbiAqIExJTUlURUQgVE8sIFBST0NVUkVNRU5UIE9GIFNVQlNUSVRVVEUgR09PRFMgT1IgU0VSVklDRVM7IExPU1MgT0YgVVNFLFxuICogREFUQSwgT1IgUFJPRklUUzsgT1IgQlVTSU5FU1MgSU5URVJSVVBUSU9OKSBIT1dFVkVSIENBVVNFRCBBTkQgT04gQU5ZXG4gKiBUSEVPUlkgT0YgTElBQklMSVRZLCBXSEVUSEVSIElOIENPTlRSQUNULCBTVFJJQ1QgTElBQklMSVRZLCBPUiBUT1JUXG4gKiAoSU5DTFVESU5HIE5FR0xJR0VOQ0UgT1IgT1RIRVJXSVNFKSBBUklTSU5HIElOIEFOWSBXQVkgT1VUIE9GIFRIRSBVU0VcbiAqIE9GIFRISVMgU09GVFdBUkUsIEVWRU4gSUYgQURWSVNFRCBPRiBUSEUgUE9TU0lCSUxJVFkgT0YgU1VDSCBEQU1BR0UuXG4gKi9cblxudmFyIGJhc2U2NCA9IHJlcXVpcmUoJy4vYmFzZTY0Jyk7XG5cbi8vIEEgc2luZ2xlIGJhc2UgNjQgZGlnaXQgY2FuIGNvbnRhaW4gNiBiaXRzIG9mIGRhdGEuIEZvciB0aGUgYmFzZSA2NCB2YXJpYWJsZVxuLy8gbGVuZ3RoIHF1YW50aXRpZXMgd2UgdXNlIGluIHRoZSBzb3VyY2UgbWFwIHNwZWMsIHRoZSBmaXJzdCBiaXQgaXMgdGhlIHNpZ24sXG4vLyB0aGUgbmV4dCBmb3VyIGJpdHMgYXJlIHRoZSBhY3R1YWwgdmFsdWUsIGFuZCB0aGUgNnRoIGJpdCBpcyB0aGVcbi8vIGNvbnRpbnVhdGlvbiBiaXQuIFRoZSBjb250aW51YXRpb24gYml0IHRlbGxzIHVzIHdoZXRoZXIgdGhlcmUgYXJlIG1vcmVcbi8vIGRpZ2l0cyBpbiB0aGlzIHZhbHVlIGZvbGxvd2luZyB0aGlzIGRpZ2l0LlxuLy9cbi8vICAgQ29udGludWF0aW9uXG4vLyAgIHwgICAgU2lnblxuLy8gICB8ICAgIHxcbi8vICAgViAgICBWXG4vLyAgIDEwMTAxMVxuXG52YXIgVkxRX0JBU0VfU0hJRlQgPSA1O1xuXG4vLyBiaW5hcnk6IDEwMDAwMFxudmFyIFZMUV9CQVNFID0gMSA8PCBWTFFfQkFTRV9TSElGVDtcblxuLy8gYmluYXJ5OiAwMTExMTFcbnZhciBWTFFfQkFTRV9NQVNLID0gVkxRX0JBU0UgLSAxO1xuXG4vLyBiaW5hcnk6IDEwMDAwMFxudmFyIFZMUV9DT05USU5VQVRJT05fQklUID0gVkxRX0JBU0U7XG5cbi8qKlxuICogQ29udmVydHMgZnJvbSBhIHR3by1jb21wbGVtZW50IHZhbHVlIHRvIGEgdmFsdWUgd2hlcmUgdGhlIHNpZ24gYml0IGlzXG4gKiBwbGFjZWQgaW4gdGhlIGxlYXN0IHNpZ25pZmljYW50IGJpdC4gIEZvciBleGFtcGxlLCBhcyBkZWNpbWFsczpcbiAqICAgMSBiZWNvbWVzIDIgKDEwIGJpbmFyeSksIC0xIGJlY29tZXMgMyAoMTEgYmluYXJ5KVxuICogICAyIGJlY29tZXMgNCAoMTAwIGJpbmFyeSksIC0yIGJlY29tZXMgNSAoMTAxIGJpbmFyeSlcbiAqL1xuZnVuY3Rpb24gdG9WTFFTaWduZWQoYVZhbHVlKSB7XG4gIHJldHVybiBhVmFsdWUgPCAwXG4gICAgPyAoKC1hVmFsdWUpIDw8IDEpICsgMVxuICAgIDogKGFWYWx1ZSA8PCAxKSArIDA7XG59XG5cbi8qKlxuICogQ29udmVydHMgdG8gYSB0d28tY29tcGxlbWVudCB2YWx1ZSBmcm9tIGEgdmFsdWUgd2hlcmUgdGhlIHNpZ24gYml0IGlzXG4gKiBwbGFjZWQgaW4gdGhlIGxlYXN0IHNpZ25pZmljYW50IGJpdC4gIEZvciBleGFtcGxlLCBhcyBkZWNpbWFsczpcbiAqICAgMiAoMTAgYmluYXJ5KSBiZWNvbWVzIDEsIDMgKDExIGJpbmFyeSkgYmVjb21lcyAtMVxuICogICA0ICgxMDAgYmluYXJ5KSBiZWNvbWVzIDIsIDUgKDEwMSBiaW5hcnkpIGJlY29tZXMgLTJcbiAqL1xuZnVuY3Rpb24gZnJvbVZMUVNpZ25lZChhVmFsdWUpIHtcbiAgdmFyIGlzTmVnYXRpdmUgPSAoYVZhbHVlICYgMSkgPT09IDE7XG4gIHZhciBzaGlmdGVkID0gYVZhbHVlID4+IDE7XG4gIHJldHVybiBpc05lZ2F0aXZlXG4gICAgPyAtc2hpZnRlZFxuICAgIDogc2hpZnRlZDtcbn1cblxuLyoqXG4gKiBSZXR1cm5zIHRoZSBiYXNlIDY0IFZMUSBlbmNvZGVkIHZhbHVlLlxuICovXG5leHBvcnRzLmVuY29kZSA9IGZ1bmN0aW9uIGJhc2U2NFZMUV9lbmNvZGUoYVZhbHVlKSB7XG4gIHZhciBlbmNvZGVkID0gXCJcIjtcbiAgdmFyIGRpZ2l0O1xuXG4gIHZhciB2bHEgPSB0b1ZMUVNpZ25lZChhVmFsdWUpO1xuXG4gIGRvIHtcbiAgICBkaWdpdCA9IHZscSAmIFZMUV9CQVNFX01BU0s7XG4gICAgdmxxID4+Pj0gVkxRX0JBU0VfU0hJRlQ7XG4gICAgaWYgKHZscSA+IDApIHtcbiAgICAgIC8vIFRoZXJlIGFyZSBzdGlsbCBtb3JlIGRpZ2l0cyBpbiB0aGlzIHZhbHVlLCBzbyB3ZSBtdXN0IG1ha2Ugc3VyZSB0aGVcbiAgICAgIC8vIGNvbnRpbnVhdGlvbiBiaXQgaXMgbWFya2VkLlxuICAgICAgZGlnaXQgfD0gVkxRX0NPTlRJTlVBVElPTl9CSVQ7XG4gICAgfVxuICAgIGVuY29kZWQgKz0gYmFzZTY0LmVuY29kZShkaWdpdCk7XG4gIH0gd2hpbGUgKHZscSA+IDApO1xuXG4gIHJldHVybiBlbmNvZGVkO1xufTtcblxuLyoqXG4gKiBEZWNvZGVzIHRoZSBuZXh0IGJhc2UgNjQgVkxRIHZhbHVlIGZyb20gdGhlIGdpdmVuIHN0cmluZyBhbmQgcmV0dXJucyB0aGVcbiAqIHZhbHVlIGFuZCB0aGUgcmVzdCBvZiB0aGUgc3RyaW5nIHZpYSB0aGUgb3V0IHBhcmFtZXRlci5cbiAqL1xuZXhwb3J0cy5kZWNvZGUgPSBmdW5jdGlvbiBiYXNlNjRWTFFfZGVjb2RlKGFTdHIsIGFJbmRleCwgYU91dFBhcmFtKSB7XG4gIHZhciBzdHJMZW4gPSBhU3RyLmxlbmd0aDtcbiAgdmFyIHJlc3VsdCA9IDA7XG4gIHZhciBzaGlmdCA9IDA7XG4gIHZhciBjb250aW51YXRpb24sIGRpZ2l0O1xuXG4gIGRvIHtcbiAgICBpZiAoYUluZGV4ID49IHN0ckxlbikge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKFwiRXhwZWN0ZWQgbW9yZSBkaWdpdHMgaW4gYmFzZSA2NCBWTFEgdmFsdWUuXCIpO1xuICAgIH1cblxuICAgIGRpZ2l0ID0gYmFzZTY0LmRlY29kZShhU3RyLmNoYXJDb2RlQXQoYUluZGV4KyspKTtcbiAgICBpZiAoZGlnaXQgPT09IC0xKSB7XG4gICAgICB0aHJvdyBuZXcgRXJyb3IoXCJJbnZhbGlkIGJhc2U2NCBkaWdpdDogXCIgKyBhU3RyLmNoYXJBdChhSW5kZXggLSAxKSk7XG4gICAgfVxuXG4gICAgY29udGludWF0aW9uID0gISEoZGlnaXQgJiBWTFFfQ09OVElOVUFUSU9OX0JJVCk7XG4gICAgZGlnaXQgJj0gVkxRX0JBU0VfTUFTSztcbiAgICByZXN1bHQgPSByZXN1bHQgKyAoZGlnaXQgPDwgc2hpZnQpO1xuICAgIHNoaWZ0ICs9IFZMUV9CQVNFX1NISUZUO1xuICB9IHdoaWxlIChjb250aW51YXRpb24pO1xuXG4gIGFPdXRQYXJhbS52YWx1ZSA9IGZyb21WTFFTaWduZWQocmVzdWx0KTtcbiAgYU91dFBhcmFtLnJlc3QgPSBhSW5kZXg7XG59O1xuXG5cblxuLy8vLy8vLy8vLy8vLy8vLy8vXG4vLyBXRUJQQUNLIEZPT1RFUlxuLy8gLi9saWIvYmFzZTY0LXZscS5qc1xuLy8gbW9kdWxlIGlkID0gMlxuLy8gbW9kdWxlIGNodW5rcyA9IDAiLCIvKiAtKi0gTW9kZToganM7IGpzLWluZGVudC1sZXZlbDogMjsgLSotICovXG4vKlxuICogQ29weXJpZ2h0IDIwMTEgTW96aWxsYSBGb3VuZGF0aW9uIGFuZCBjb250cmlidXRvcnNcbiAqIExpY2Vuc2VkIHVuZGVyIHRoZSBOZXcgQlNEIGxpY2Vuc2UuIFNlZSBMSUNFTlNFIG9yOlxuICogaHR0cDovL29wZW5zb3VyY2Uub3JnL2xpY2Vuc2VzL0JTRC0zLUNsYXVzZVxuICovXG5cbnZhciBpbnRUb0NoYXJNYXAgPSAnQUJDREVGR0hJSktMTU5PUFFSU1RVVldYWVphYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ejAxMjM0NTY3ODkrLycuc3BsaXQoJycpO1xuXG4vKipcbiAqIEVuY29kZSBhbiBpbnRlZ2VyIGluIHRoZSByYW5nZSBvZiAwIHRvIDYzIHRvIGEgc2luZ2xlIGJhc2UgNjQgZGlnaXQuXG4gKi9cbmV4cG9ydHMuZW5jb2RlID0gZnVuY3Rpb24gKG51bWJlcikge1xuICBpZiAoMCA8PSBudW1iZXIgJiYgbnVtYmVyIDwgaW50VG9DaGFyTWFwLmxlbmd0aCkge1xuICAgIHJldHVybiBpbnRUb0NoYXJNYXBbbnVtYmVyXTtcbiAgfVxuICB0aHJvdyBuZXcgVHlwZUVycm9yKFwiTXVzdCBiZSBiZXR3ZWVuIDAgYW5kIDYzOiBcIiArIG51bWJlcik7XG59O1xuXG4vKipcbiAqIERlY29kZSBhIHNpbmdsZSBiYXNlIDY0IGNoYXJhY3RlciBjb2RlIGRpZ2l0IHRvIGFuIGludGVnZXIuIFJldHVybnMgLTEgb25cbiAqIGZhaWx1cmUuXG4gKi9cbmV4cG9ydHMuZGVjb2RlID0gZnVuY3Rpb24gKGNoYXJDb2RlKSB7XG4gIHZhciBiaWdBID0gNjU7ICAgICAvLyAnQSdcbiAgdmFyIGJpZ1ogPSA5MDsgICAgIC8vICdaJ1xuXG4gIHZhciBsaXR0bGVBID0gOTc7ICAvLyAnYSdcbiAgdmFyIGxpdHRsZVogPSAxMjI7IC8vICd6J1xuXG4gIHZhciB6ZXJvID0gNDg7ICAgICAvLyAnMCdcbiAgdmFyIG5pbmUgPSA1NzsgICAgIC8vICc5J1xuXG4gIHZhciBwbHVzID0gNDM7ICAgICAvLyAnKydcbiAgdmFyIHNsYXNoID0gNDc7ICAgIC8vICcvJ1xuXG4gIHZhciBsaXR0bGVPZmZzZXQgPSAyNjtcbiAgdmFyIG51bWJlck9mZnNldCA9IDUyO1xuXG4gIC8vIDAgLSAyNTogQUJDREVGR0hJSktMTU5PUFFSU1RVVldYWVpcbiAgaWYgKGJpZ0EgPD0gY2hhckNvZGUgJiYgY2hhckNvZGUgPD0gYmlnWikge1xuICAgIHJldHVybiAoY2hhckNvZGUgLSBiaWdBKTtcbiAgfVxuXG4gIC8vIDI2IC0gNTE6IGFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6XG4gIGlmIChsaXR0bGVBIDw9IGNoYXJDb2RlICYmIGNoYXJDb2RlIDw9IGxpdHRsZVopIHtcbiAgICByZXR1cm4gKGNoYXJDb2RlIC0gbGl0dGxlQSArIGxpdHRsZU9mZnNldCk7XG4gIH1cblxuICAvLyA1MiAtIDYxOiAwMTIzNDU2Nzg5XG4gIGlmICh6ZXJvIDw9IGNoYXJDb2RlICYmIGNoYXJDb2RlIDw9IG5pbmUpIHtcbiAgICByZXR1cm4gKGNoYXJDb2RlIC0gemVybyArIG51bWJlck9mZnNldCk7XG4gIH1cblxuICAvLyA2MjogK1xuICBpZiAoY2hhckNvZGUgPT0gcGx1cykge1xuICAgIHJldHVybiA2MjtcbiAgfVxuXG4gIC8vIDYzOiAvXG4gIGlmIChjaGFyQ29kZSA9PSBzbGFzaCkge1xuICAgIHJldHVybiA2MztcbiAgfVxuXG4gIC8vIEludmFsaWQgYmFzZTY0IGRpZ2l0LlxuICByZXR1cm4gLTE7XG59O1xuXG5cblxuLy8vLy8vLy8vLy8vLy8vLy8vXG4vLyBXRUJQQUNLIEZPT1RFUlxuLy8gLi9saWIvYmFzZTY0LmpzXG4vLyBtb2R1bGUgaWQgPSAzXG4vLyBtb2R1bGUgY2h1bmtzID0gMCIsIi8qIC0qLSBNb2RlOiBqczsganMtaW5kZW50LWxldmVsOiAyOyAtKi0gKi9cbi8qXG4gKiBDb3B5cmlnaHQgMjAxMSBNb3ppbGxhIEZvdW5kYXRpb24gYW5kIGNvbnRyaWJ1dG9yc1xuICogTGljZW5zZWQgdW5kZXIgdGhlIE5ldyBCU0QgbGljZW5zZS4gU2VlIExJQ0VOU0Ugb3I6XG4gKiBodHRwOi8vb3BlbnNvdXJjZS5vcmcvbGljZW5zZXMvQlNELTMtQ2xhdXNlXG4gKi9cblxuLyoqXG4gKiBUaGlzIGlzIGEgaGVscGVyIGZ1bmN0aW9uIGZvciBnZXR0aW5nIHZhbHVlcyBmcm9tIHBhcmFtZXRlci9vcHRpb25zXG4gKiBvYmplY3RzLlxuICpcbiAqIEBwYXJhbSBhcmdzIFRoZSBvYmplY3Qgd2UgYXJlIGV4dHJhY3RpbmcgdmFsdWVzIGZyb21cbiAqIEBwYXJhbSBuYW1lIFRoZSBuYW1lIG9mIHRoZSBwcm9wZXJ0eSB3ZSBhcmUgZ2V0dGluZy5cbiAqIEBwYXJhbSBkZWZhdWx0VmFsdWUgQW4gb3B0aW9uYWwgdmFsdWUgdG8gcmV0dXJuIGlmIHRoZSBwcm9wZXJ0eSBpcyBtaXNzaW5nXG4gKiBmcm9tIHRoZSBvYmplY3QuIElmIHRoaXMgaXMgbm90IHNwZWNpZmllZCBhbmQgdGhlIHByb3BlcnR5IGlzIG1pc3NpbmcsIGFuXG4gKiBlcnJvciB3aWxsIGJlIHRocm93bi5cbiAqL1xuZnVuY3Rpb24gZ2V0QXJnKGFBcmdzLCBhTmFtZSwgYURlZmF1bHRWYWx1ZSkge1xuICBpZiAoYU5hbWUgaW4gYUFyZ3MpIHtcbiAgICByZXR1cm4gYUFyZ3NbYU5hbWVdO1xuICB9IGVsc2UgaWYgKGFyZ3VtZW50cy5sZW5ndGggPT09IDMpIHtcbiAgICByZXR1cm4gYURlZmF1bHRWYWx1ZTtcbiAgfSBlbHNlIHtcbiAgICB0aHJvdyBuZXcgRXJyb3IoJ1wiJyArIGFOYW1lICsgJ1wiIGlzIGEgcmVxdWlyZWQgYXJndW1lbnQuJyk7XG4gIH1cbn1cbmV4cG9ydHMuZ2V0QXJnID0gZ2V0QXJnO1xuXG52YXIgdXJsUmVnZXhwID0gL14oPzooW1xcdytcXC0uXSspOik/XFwvXFwvKD86KFxcdys6XFx3KylAKT8oW1xcdy5dKikoPzo6KFxcZCspKT8oXFxTKikkLztcbnZhciBkYXRhVXJsUmVnZXhwID0gL15kYXRhOi4rXFwsLiskLztcblxuZnVuY3Rpb24gdXJsUGFyc2UoYVVybCkge1xuICB2YXIgbWF0Y2ggPSBhVXJsLm1hdGNoKHVybFJlZ2V4cCk7XG4gIGlmICghbWF0Y2gpIHtcbiAgICByZXR1cm4gbnVsbDtcbiAgfVxuICByZXR1cm4ge1xuICAgIHNjaGVtZTogbWF0Y2hbMV0sXG4gICAgYXV0aDogbWF0Y2hbMl0sXG4gICAgaG9zdDogbWF0Y2hbM10sXG4gICAgcG9ydDogbWF0Y2hbNF0sXG4gICAgcGF0aDogbWF0Y2hbNV1cbiAgfTtcbn1cbmV4cG9ydHMudXJsUGFyc2UgPSB1cmxQYXJzZTtcblxuZnVuY3Rpb24gdXJsR2VuZXJhdGUoYVBhcnNlZFVybCkge1xuICB2YXIgdXJsID0gJyc7XG4gIGlmIChhUGFyc2VkVXJsLnNjaGVtZSkge1xuICAgIHVybCArPSBhUGFyc2VkVXJsLnNjaGVtZSArICc6JztcbiAgfVxuICB1cmwgKz0gJy8vJztcbiAgaWYgKGFQYXJzZWRVcmwuYXV0aCkge1xuICAgIHVybCArPSBhUGFyc2VkVXJsLmF1dGggKyAnQCc7XG4gIH1cbiAgaWYgKGFQYXJzZWRVcmwuaG9zdCkge1xuICAgIHVybCArPSBhUGFyc2VkVXJsLmhvc3Q7XG4gIH1cbiAgaWYgKGFQYXJzZWRVcmwucG9ydCkge1xuICAgIHVybCArPSBcIjpcIiArIGFQYXJzZWRVcmwucG9ydFxuICB9XG4gIGlmIChhUGFyc2VkVXJsLnBhdGgpIHtcbiAgICB1cmwgKz0gYVBhcnNlZFVybC5wYXRoO1xuICB9XG4gIHJldHVybiB1cmw7XG59XG5leHBvcnRzLnVybEdlbmVyYXRlID0gdXJsR2VuZXJhdGU7XG5cbi8qKlxuICogTm9ybWFsaXplcyBhIHBhdGgsIG9yIHRoZSBwYXRoIHBvcnRpb24gb2YgYSBVUkw6XG4gKlxuICogLSBSZXBsYWNlcyBjb25zZWN1dGl2ZSBzbGFzaGVzIHdpdGggb25lIHNsYXNoLlxuICogLSBSZW1vdmVzIHVubmVjZXNzYXJ5ICcuJyBwYXJ0cy5cbiAqIC0gUmVtb3ZlcyB1bm5lY2Vzc2FyeSAnPGRpcj4vLi4nIHBhcnRzLlxuICpcbiAqIEJhc2VkIG9uIGNvZGUgaW4gdGhlIE5vZGUuanMgJ3BhdGgnIGNvcmUgbW9kdWxlLlxuICpcbiAqIEBwYXJhbSBhUGF0aCBUaGUgcGF0aCBvciB1cmwgdG8gbm9ybWFsaXplLlxuICovXG5mdW5jdGlvbiBub3JtYWxpemUoYVBhdGgpIHtcbiAgdmFyIHBhdGggPSBhUGF0aDtcbiAgdmFyIHVybCA9IHVybFBhcnNlKGFQYXRoKTtcbiAgaWYgKHVybCkge1xuICAgIGlmICghdXJsLnBhdGgpIHtcbiAgICAgIHJldHVybiBhUGF0aDtcbiAgICB9XG4gICAgcGF0aCA9IHVybC5wYXRoO1xuICB9XG4gIHZhciBpc0Fic29sdXRlID0gZXhwb3J0cy5pc0Fic29sdXRlKHBhdGgpO1xuXG4gIHZhciBwYXJ0cyA9IHBhdGguc3BsaXQoL1xcLysvKTtcbiAgZm9yICh2YXIgcGFydCwgdXAgPSAwLCBpID0gcGFydHMubGVuZ3RoIC0gMTsgaSA+PSAwOyBpLS0pIHtcbiAgICBwYXJ0ID0gcGFydHNbaV07XG4gICAgaWYgKHBhcnQgPT09ICcuJykge1xuICAgICAgcGFydHMuc3BsaWNlKGksIDEpO1xuICAgIH0gZWxzZSBpZiAocGFydCA9PT0gJy4uJykge1xuICAgICAgdXArKztcbiAgICB9IGVsc2UgaWYgKHVwID4gMCkge1xuICAgICAgaWYgKHBhcnQgPT09ICcnKSB7XG4gICAgICAgIC8vIFRoZSBmaXJzdCBwYXJ0IGlzIGJsYW5rIGlmIHRoZSBwYXRoIGlzIGFic29sdXRlLiBUcnlpbmcgdG8gZ29cbiAgICAgICAgLy8gYWJvdmUgdGhlIHJvb3QgaXMgYSBuby1vcC4gVGhlcmVmb3JlIHdlIGNhbiByZW1vdmUgYWxsICcuLicgcGFydHNcbiAgICAgICAgLy8gZGlyZWN0bHkgYWZ0ZXIgdGhlIHJvb3QuXG4gICAgICAgIHBhcnRzLnNwbGljZShpICsgMSwgdXApO1xuICAgICAgICB1cCA9IDA7XG4gICAgICB9IGVsc2Uge1xuICAgICAgICBwYXJ0cy5zcGxpY2UoaSwgMik7XG4gICAgICAgIHVwLS07XG4gICAgICB9XG4gICAgfVxuICB9XG4gIHBhdGggPSBwYXJ0cy5qb2luKCcvJyk7XG5cbiAgaWYgKHBhdGggPT09ICcnKSB7XG4gICAgcGF0aCA9IGlzQWJzb2x1dGUgPyAnLycgOiAnLic7XG4gIH1cblxuICBpZiAodXJsKSB7XG4gICAgdXJsLnBhdGggPSBwYXRoO1xuICAgIHJldHVybiB1cmxHZW5lcmF0ZSh1cmwpO1xuICB9XG4gIHJldHVybiBwYXRoO1xufVxuZXhwb3J0cy5ub3JtYWxpemUgPSBub3JtYWxpemU7XG5cbi8qKlxuICogSm9pbnMgdHdvIHBhdGhzL1VSTHMuXG4gKlxuICogQHBhcmFtIGFSb290IFRoZSByb290IHBhdGggb3IgVVJMLlxuICogQHBhcmFtIGFQYXRoIFRoZSBwYXRoIG9yIFVSTCB0byBiZSBqb2luZWQgd2l0aCB0aGUgcm9vdC5cbiAqXG4gKiAtIElmIGFQYXRoIGlzIGEgVVJMIG9yIGEgZGF0YSBVUkksIGFQYXRoIGlzIHJldHVybmVkLCB1bmxlc3MgYVBhdGggaXMgYVxuICogICBzY2hlbWUtcmVsYXRpdmUgVVJMOiBUaGVuIHRoZSBzY2hlbWUgb2YgYVJvb3QsIGlmIGFueSwgaXMgcHJlcGVuZGVkXG4gKiAgIGZpcnN0LlxuICogLSBPdGhlcndpc2UgYVBhdGggaXMgYSBwYXRoLiBJZiBhUm9vdCBpcyBhIFVSTCwgdGhlbiBpdHMgcGF0aCBwb3J0aW9uXG4gKiAgIGlzIHVwZGF0ZWQgd2l0aCB0aGUgcmVzdWx0IGFuZCBhUm9vdCBpcyByZXR1cm5lZC4gT3RoZXJ3aXNlIHRoZSByZXN1bHRcbiAqICAgaXMgcmV0dXJuZWQuXG4gKiAgIC0gSWYgYVBhdGggaXMgYWJzb2x1dGUsIHRoZSByZXN1bHQgaXMgYVBhdGguXG4gKiAgIC0gT3RoZXJ3aXNlIHRoZSB0d28gcGF0aHMgYXJlIGpvaW5lZCB3aXRoIGEgc2xhc2guXG4gKiAtIEpvaW5pbmcgZm9yIGV4YW1wbGUgJ2h0dHA6Ly8nIGFuZCAnd3d3LmV4YW1wbGUuY29tJyBpcyBhbHNvIHN1cHBvcnRlZC5cbiAqL1xuZnVuY3Rpb24gam9pbihhUm9vdCwgYVBhdGgpIHtcbiAgaWYgKGFSb290ID09PSBcIlwiKSB7XG4gICAgYVJvb3QgPSBcIi5cIjtcbiAgfVxuICBpZiAoYVBhdGggPT09IFwiXCIpIHtcbiAgICBhUGF0aCA9IFwiLlwiO1xuICB9XG4gIHZhciBhUGF0aFVybCA9IHVybFBhcnNlKGFQYXRoKTtcbiAgdmFyIGFSb290VXJsID0gdXJsUGFyc2UoYVJvb3QpO1xuICBpZiAoYVJvb3RVcmwpIHtcbiAgICBhUm9vdCA9IGFSb290VXJsLnBhdGggfHwgJy8nO1xuICB9XG5cbiAgLy8gYGpvaW4oZm9vLCAnLy93d3cuZXhhbXBsZS5vcmcnKWBcbiAgaWYgKGFQYXRoVXJsICYmICFhUGF0aFVybC5zY2hlbWUpIHtcbiAgICBpZiAoYVJvb3RVcmwpIHtcbiAgICAgIGFQYXRoVXJsLnNjaGVtZSA9IGFSb290VXJsLnNjaGVtZTtcbiAgICB9XG4gICAgcmV0dXJuIHVybEdlbmVyYXRlKGFQYXRoVXJsKTtcbiAgfVxuXG4gIGlmIChhUGF0aFVybCB8fCBhUGF0aC5tYXRjaChkYXRhVXJsUmVnZXhwKSkge1xuICAgIHJldHVybiBhUGF0aDtcbiAgfVxuXG4gIC8vIGBqb2luKCdodHRwOi8vJywgJ3d3dy5leGFtcGxlLmNvbScpYFxuICBpZiAoYVJvb3RVcmwgJiYgIWFSb290VXJsLmhvc3QgJiYgIWFSb290VXJsLnBhdGgpIHtcbiAgICBhUm9vdFVybC5ob3N0ID0gYVBhdGg7XG4gICAgcmV0dXJuIHVybEdlbmVyYXRlKGFSb290VXJsKTtcbiAgfVxuXG4gIHZhciBqb2luZWQgPSBhUGF0aC5jaGFyQXQoMCkgPT09ICcvJ1xuICAgID8gYVBhdGhcbiAgICA6IG5vcm1hbGl6ZShhUm9vdC5yZXBsYWNlKC9cXC8rJC8sICcnKSArICcvJyArIGFQYXRoKTtcblxuICBpZiAoYVJvb3RVcmwpIHtcbiAgICBhUm9vdFVybC5wYXRoID0gam9pbmVkO1xuICAgIHJldHVybiB1cmxHZW5lcmF0ZShhUm9vdFVybCk7XG4gIH1cbiAgcmV0dXJuIGpvaW5lZDtcbn1cbmV4cG9ydHMuam9pbiA9IGpvaW47XG5cbmV4cG9ydHMuaXNBYnNvbHV0ZSA9IGZ1bmN0aW9uIChhUGF0aCkge1xuICByZXR1cm4gYVBhdGguY2hhckF0KDApID09PSAnLycgfHwgISFhUGF0aC5tYXRjaCh1cmxSZWdleHApO1xufTtcblxuLyoqXG4gKiBNYWtlIGEgcGF0aCByZWxhdGl2ZSB0byBhIFVSTCBvciBhbm90aGVyIHBhdGguXG4gKlxuICogQHBhcmFtIGFSb290IFRoZSByb290IHBhdGggb3IgVVJMLlxuICogQHBhcmFtIGFQYXRoIFRoZSBwYXRoIG9yIFVSTCB0byBiZSBtYWRlIHJlbGF0aXZlIHRvIGFSb290LlxuICovXG5mdW5jdGlvbiByZWxhdGl2ZShhUm9vdCwgYVBhdGgpIHtcbiAgaWYgKGFSb290ID09PSBcIlwiKSB7XG4gICAgYVJvb3QgPSBcIi5cIjtcbiAgfVxuXG4gIGFSb290ID0gYVJvb3QucmVwbGFjZSgvXFwvJC8sICcnKTtcblxuICAvLyBJdCBpcyBwb3NzaWJsZSBmb3IgdGhlIHBhdGggdG8gYmUgYWJvdmUgdGhlIHJvb3QuIEluIHRoaXMgY2FzZSwgc2ltcGx5XG4gIC8vIGNoZWNraW5nIHdoZXRoZXIgdGhlIHJvb3QgaXMgYSBwcmVmaXggb2YgdGhlIHBhdGggd29uJ3Qgd29yay4gSW5zdGVhZCwgd2VcbiAgLy8gbmVlZCB0byByZW1vdmUgY29tcG9uZW50cyBmcm9tIHRoZSByb290IG9uZSBieSBvbmUsIHVudGlsIGVpdGhlciB3ZSBmaW5kXG4gIC8vIGEgcHJlZml4IHRoYXQgZml0cywgb3Igd2UgcnVuIG91dCBvZiBjb21wb25lbnRzIHRvIHJlbW92ZS5cbiAgdmFyIGxldmVsID0gMDtcbiAgd2hpbGUgKGFQYXRoLmluZGV4T2YoYVJvb3QgKyAnLycpICE9PSAwKSB7XG4gICAgdmFyIGluZGV4ID0gYVJvb3QubGFzdEluZGV4T2YoXCIvXCIpO1xuICAgIGlmIChpbmRleCA8IDApIHtcbiAgICAgIHJldHVybiBhUGF0aDtcbiAgICB9XG5cbiAgICAvLyBJZiB0aGUgb25seSBwYXJ0IG9mIHRoZSByb290IHRoYXQgaXMgbGVmdCBpcyB0aGUgc2NoZW1lIChpLmUuIGh0dHA6Ly8sXG4gICAgLy8gZmlsZTovLy8sIGV0Yy4pLCBvbmUgb3IgbW9yZSBzbGFzaGVzICgvKSwgb3Igc2ltcGx5IG5vdGhpbmcgYXQgYWxsLCB3ZVxuICAgIC8vIGhhdmUgZXhoYXVzdGVkIGFsbCBjb21wb25lbnRzLCBzbyB0aGUgcGF0aCBpcyBub3QgcmVsYXRpdmUgdG8gdGhlIHJvb3QuXG4gICAgYVJvb3QgPSBhUm9vdC5zbGljZSgwLCBpbmRleCk7XG4gICAgaWYgKGFSb290Lm1hdGNoKC9eKFteXFwvXSs6XFwvKT9cXC8qJC8pKSB7XG4gICAgICByZXR1cm4gYVBhdGg7XG4gICAgfVxuXG4gICAgKytsZXZlbDtcbiAgfVxuXG4gIC8vIE1ha2Ugc3VyZSB3ZSBhZGQgYSBcIi4uL1wiIGZvciBlYWNoIGNvbXBvbmVudCB3ZSByZW1vdmVkIGZyb20gdGhlIHJvb3QuXG4gIHJldHVybiBBcnJheShsZXZlbCArIDEpLmpvaW4oXCIuLi9cIikgKyBhUGF0aC5zdWJzdHIoYVJvb3QubGVuZ3RoICsgMSk7XG59XG5leHBvcnRzLnJlbGF0aXZlID0gcmVsYXRpdmU7XG5cbnZhciBzdXBwb3J0c051bGxQcm90byA9IChmdW5jdGlvbiAoKSB7XG4gIHZhciBvYmogPSBPYmplY3QuY3JlYXRlKG51bGwpO1xuICByZXR1cm4gISgnX19wcm90b19fJyBpbiBvYmopO1xufSgpKTtcblxuZnVuY3Rpb24gaWRlbnRpdHkgKHMpIHtcbiAgcmV0dXJuIHM7XG59XG5cbi8qKlxuICogQmVjYXVzZSBiZWhhdmlvciBnb2VzIHdhY2t5IHdoZW4geW91IHNldCBgX19wcm90b19fYCBvbiBvYmplY3RzLCB3ZVxuICogaGF2ZSB0byBwcmVmaXggYWxsIHRoZSBzdHJpbmdzIGluIG91ciBzZXQgd2l0aCBhbiBhcmJpdHJhcnkgY2hhcmFjdGVyLlxuICpcbiAqIFNlZSBodHRwczovL2dpdGh1Yi5jb20vbW96aWxsYS9zb3VyY2UtbWFwL3B1bGwvMzEgYW5kXG4gKiBodHRwczovL2dpdGh1Yi5jb20vbW96aWxsYS9zb3VyY2UtbWFwL2lzc3Vlcy8zMFxuICpcbiAqIEBwYXJhbSBTdHJpbmcgYVN0clxuICovXG5mdW5jdGlvbiB0b1NldFN0cmluZyhhU3RyKSB7XG4gIGlmIChpc1Byb3RvU3RyaW5nKGFTdHIpKSB7XG4gICAgcmV0dXJuICckJyArIGFTdHI7XG4gIH1cblxuICByZXR1cm4gYVN0cjtcbn1cbmV4cG9ydHMudG9TZXRTdHJpbmcgPSBzdXBwb3J0c051bGxQcm90byA/IGlkZW50aXR5IDogdG9TZXRTdHJpbmc7XG5cbmZ1bmN0aW9uIGZyb21TZXRTdHJpbmcoYVN0cikge1xuICBpZiAoaXNQcm90b1N0cmluZyhhU3RyKSkge1xuICAgIHJldHVybiBhU3RyLnNsaWNlKDEpO1xuICB9XG5cbiAgcmV0dXJuIGFTdHI7XG59XG5leHBvcnRzLmZyb21TZXRTdHJpbmcgPSBzdXBwb3J0c051bGxQcm90byA/IGlkZW50aXR5IDogZnJvbVNldFN0cmluZztcblxuZnVuY3Rpb24gaXNQcm90b1N0cmluZyhzKSB7XG4gIGlmICghcykge1xuICAgIHJldHVybiBmYWxzZTtcbiAgfVxuXG4gIHZhciBsZW5ndGggPSBzLmxlbmd0aDtcblxuICBpZiAobGVuZ3RoIDwgOSAvKiBcIl9fcHJvdG9fX1wiLmxlbmd0aCAqLykge1xuICAgIHJldHVybiBmYWxzZTtcbiAgfVxuXG4gIGlmIChzLmNoYXJDb2RlQXQobGVuZ3RoIC0gMSkgIT09IDk1ICAvKiAnXycgKi8gfHxcbiAgICAgIHMuY2hhckNvZGVBdChsZW5ndGggLSAyKSAhPT0gOTUgIC8qICdfJyAqLyB8fFxuICAgICAgcy5jaGFyQ29kZUF0KGxlbmd0aCAtIDMpICE9PSAxMTEgLyogJ28nICovIHx8XG4gICAgICBzLmNoYXJDb2RlQXQobGVuZ3RoIC0gNCkgIT09IDExNiAvKiAndCcgKi8gfHxcbiAgICAgIHMuY2hhckNvZGVBdChsZW5ndGggLSA1KSAhPT0gMTExIC8qICdvJyAqLyB8fFxuICAgICAgcy5jaGFyQ29kZUF0KGxlbmd0aCAtIDYpICE9PSAxMTQgLyogJ3InICovIHx8XG4gICAgICBzLmNoYXJDb2RlQXQobGVuZ3RoIC0gNykgIT09IDExMiAvKiAncCcgKi8gfHxcbiAgICAgIHMuY2hhckNvZGVBdChsZW5ndGggLSA4KSAhPT0gOTUgIC8qICdfJyAqLyB8fFxuICAgICAgcy5jaGFyQ29kZUF0KGxlbmd0aCAtIDkpICE9PSA5NSAgLyogJ18nICovKSB7XG4gICAgcmV0dXJuIGZhbHNlO1xuICB9XG5cbiAgZm9yICh2YXIgaSA9IGxlbmd0aCAtIDEwOyBpID49IDA7IGktLSkge1xuICAgIGlmIChzLmNoYXJDb2RlQXQoaSkgIT09IDM2IC8qICckJyAqLykge1xuICAgICAgcmV0dXJuIGZhbHNlO1xuICAgIH1cbiAgfVxuXG4gIHJldHVybiB0cnVlO1xufVxuXG4vKipcbiAqIENvbXBhcmF0b3IgYmV0d2VlbiB0d28gbWFwcGluZ3Mgd2hlcmUgdGhlIG9yaWdpbmFsIHBvc2l0aW9ucyBhcmUgY29tcGFyZWQuXG4gKlxuICogT3B0aW9uYWxseSBwYXNzIGluIGB0cnVlYCBhcyBgb25seUNvbXBhcmVHZW5lcmF0ZWRgIHRvIGNvbnNpZGVyIHR3b1xuICogbWFwcGluZ3Mgd2l0aCB0aGUgc2FtZSBvcmlnaW5hbCBzb3VyY2UvbGluZS9jb2x1bW4sIGJ1dCBkaWZmZXJlbnQgZ2VuZXJhdGVkXG4gKiBsaW5lIGFuZCBjb2x1bW4gdGhlIHNhbWUuIFVzZWZ1bCB3aGVuIHNlYXJjaGluZyBmb3IgYSBtYXBwaW5nIHdpdGggYVxuICogc3R1YmJlZCBvdXQgbWFwcGluZy5cbiAqL1xuZnVuY3Rpb24gY29tcGFyZUJ5T3JpZ2luYWxQb3NpdGlvbnMobWFwcGluZ0EsIG1hcHBpbmdCLCBvbmx5Q29tcGFyZU9yaWdpbmFsKSB7XG4gIHZhciBjbXAgPSBtYXBwaW5nQS5zb3VyY2UgLSBtYXBwaW5nQi5zb3VyY2U7XG4gIGlmIChjbXAgIT09IDApIHtcbiAgICByZXR1cm4gY21wO1xuICB9XG5cbiAgY21wID0gbWFwcGluZ0Eub3JpZ2luYWxMaW5lIC0gbWFwcGluZ0Iub3JpZ2luYWxMaW5lO1xuICBpZiAoY21wICE9PSAwKSB7XG4gICAgcmV0dXJuIGNtcDtcbiAgfVxuXG4gIGNtcCA9IG1hcHBpbmdBLm9yaWdpbmFsQ29sdW1uIC0gbWFwcGluZ0Iub3JpZ2luYWxDb2x1bW47XG4gIGlmIChjbXAgIT09IDAgfHwgb25seUNvbXBhcmVPcmlnaW5hbCkge1xuICAgIHJldHVybiBjbXA7XG4gIH1cblxuICBjbXAgPSBtYXBwaW5nQS5nZW5lcmF0ZWRDb2x1bW4gLSBtYXBwaW5nQi5nZW5lcmF0ZWRDb2x1bW47XG4gIGlmIChjbXAgIT09IDApIHtcbiAgICByZXR1cm4gY21wO1xuICB9XG5cbiAgY21wID0gbWFwcGluZ0EuZ2VuZXJhdGVkTGluZSAtIG1hcHBpbmdCLmdlbmVyYXRlZExpbmU7XG4gIGlmIChjbXAgIT09IDApIHtcbiAgICByZXR1cm4gY21wO1xuICB9XG5cbiAgcmV0dXJuIG1hcHBpbmdBLm5hbWUgLSBtYXBwaW5nQi5uYW1lO1xufVxuZXhwb3J0cy5jb21wYXJlQnlPcmlnaW5hbFBvc2l0aW9ucyA9IGNvbXBhcmVCeU9yaWdpbmFsUG9zaXRpb25zO1xuXG4vKipcbiAqIENvbXBhcmF0b3IgYmV0d2VlbiB0d28gbWFwcGluZ3Mgd2l0aCBkZWZsYXRlZCBzb3VyY2UgYW5kIG5hbWUgaW5kaWNlcyB3aGVyZVxuICogdGhlIGdlbmVyYXRlZCBwb3NpdGlvbnMgYXJlIGNvbXBhcmVkLlxuICpcbiAqIE9wdGlvbmFsbHkgcGFzcyBpbiBgdHJ1ZWAgYXMgYG9ubHlDb21wYXJlR2VuZXJhdGVkYCB0byBjb25zaWRlciB0d29cbiAqIG1hcHBpbmdzIHdpdGggdGhlIHNhbWUgZ2VuZXJhdGVkIGxpbmUgYW5kIGNvbHVtbiwgYnV0IGRpZmZlcmVudFxuICogc291cmNlL25hbWUvb3JpZ2luYWwgbGluZSBhbmQgY29sdW1uIHRoZSBzYW1lLiBVc2VmdWwgd2hlbiBzZWFyY2hpbmcgZm9yIGFcbiAqIG1hcHBpbmcgd2l0aCBhIHN0dWJiZWQgb3V0IG1hcHBpbmcuXG4gKi9cbmZ1bmN0aW9uIGNvbXBhcmVCeUdlbmVyYXRlZFBvc2l0aW9uc0RlZmxhdGVkKG1hcHBpbmdBLCBtYXBwaW5nQiwgb25seUNvbXBhcmVHZW5lcmF0ZWQpIHtcbiAgdmFyIGNtcCA9IG1hcHBpbmdBLmdlbmVyYXRlZExpbmUgLSBtYXBwaW5nQi5nZW5lcmF0ZWRMaW5lO1xuICBpZiAoY21wICE9PSAwKSB7XG4gICAgcmV0dXJuIGNtcDtcbiAgfVxuXG4gIGNtcCA9IG1hcHBpbmdBLmdlbmVyYXRlZENvbHVtbiAtIG1hcHBpbmdCLmdlbmVyYXRlZENvbHVtbjtcbiAgaWYgKGNtcCAhPT0gMCB8fCBvbmx5Q29tcGFyZUdlbmVyYXRlZCkge1xuICAgIHJldHVybiBjbXA7XG4gIH1cblxuICBjbXAgPSBtYXBwaW5nQS5zb3VyY2UgLSBtYXBwaW5nQi5zb3VyY2U7XG4gIGlmIChjbXAgIT09IDApIHtcbiAgICByZXR1cm4gY21wO1xuICB9XG5cbiAgY21wID0gbWFwcGluZ0Eub3JpZ2luYWxMaW5lIC0gbWFwcGluZ0Iub3JpZ2luYWxMaW5lO1xuICBpZiAoY21wICE9PSAwKSB7XG4gICAgcmV0dXJuIGNtcDtcbiAgfVxuXG4gIGNtcCA9IG1hcHBpbmdBLm9yaWdpbmFsQ29sdW1uIC0gbWFwcGluZ0Iub3JpZ2luYWxDb2x1bW47XG4gIGlmIChjbXAgIT09IDApIHtcbiAgICByZXR1cm4gY21wO1xuICB9XG5cbiAgcmV0dXJuIG1hcHBpbmdBLm5hbWUgLSBtYXBwaW5nQi5uYW1lO1xufVxuZXhwb3J0cy5jb21wYXJlQnlHZW5lcmF0ZWRQb3NpdGlvbnNEZWZsYXRlZCA9IGNvbXBhcmVCeUdlbmVyYXRlZFBvc2l0aW9uc0RlZmxhdGVkO1xuXG5mdW5jdGlvbiBzdHJjbXAoYVN0cjEsIGFTdHIyKSB7XG4gIGlmIChhU3RyMSA9PT0gYVN0cjIpIHtcbiAgICByZXR1cm4gMDtcbiAgfVxuXG4gIGlmIChhU3RyMSA+IGFTdHIyKSB7XG4gICAgcmV0dXJuIDE7XG4gIH1cblxuICByZXR1cm4gLTE7XG59XG5cbi8qKlxuICogQ29tcGFyYXRvciBiZXR3ZWVuIHR3byBtYXBwaW5ncyB3aXRoIGluZmxhdGVkIHNvdXJjZSBhbmQgbmFtZSBzdHJpbmdzIHdoZXJlXG4gKiB0aGUgZ2VuZXJhdGVkIHBvc2l0aW9ucyBhcmUgY29tcGFyZWQuXG4gKi9cbmZ1bmN0aW9uIGNvbXBhcmVCeUdlbmVyYXRlZFBvc2l0aW9uc0luZmxhdGVkKG1hcHBpbmdBLCBtYXBwaW5nQikge1xuICB2YXIgY21wID0gbWFwcGluZ0EuZ2VuZXJhdGVkTGluZSAtIG1hcHBpbmdCLmdlbmVyYXRlZExpbmU7XG4gIGlmIChjbXAgIT09IDApIHtcbiAgICByZXR1cm4gY21wO1xuICB9XG5cbiAgY21wID0gbWFwcGluZ0EuZ2VuZXJhdGVkQ29sdW1uIC0gbWFwcGluZ0IuZ2VuZXJhdGVkQ29sdW1uO1xuICBpZiAoY21wICE9PSAwKSB7XG4gICAgcmV0dXJuIGNtcDtcbiAgfVxuXG4gIGNtcCA9IHN0cmNtcChtYXBwaW5nQS5zb3VyY2UsIG1hcHBpbmdCLnNvdXJjZSk7XG4gIGlmIChjbXAgIT09IDApIHtcbiAgICByZXR1cm4gY21wO1xuICB9XG5cbiAgY21wID0gbWFwcGluZ0Eub3JpZ2luYWxMaW5lIC0gbWFwcGluZ0Iub3JpZ2luYWxMaW5lO1xuICBpZiAoY21wICE9PSAwKSB7XG4gICAgcmV0dXJuIGNtcDtcbiAgfVxuXG4gIGNtcCA9IG1hcHBpbmdBLm9yaWdpbmFsQ29sdW1uIC0gbWFwcGluZ0Iub3JpZ2luYWxDb2x1bW47XG4gIGlmIChjbXAgIT09IDApIHtcbiAgICByZXR1cm4gY21wO1xuICB9XG5cbiAgcmV0dXJuIHN0cmNtcChtYXBwaW5nQS5uYW1lLCBtYXBwaW5nQi5uYW1lKTtcbn1cbmV4cG9ydHMuY29tcGFyZUJ5R2VuZXJhdGVkUG9zaXRpb25zSW5mbGF0ZWQgPSBjb21wYXJlQnlHZW5lcmF0ZWRQb3NpdGlvbnNJbmZsYXRlZDtcblxuXG5cbi8vLy8vLy8vLy8vLy8vLy8vL1xuLy8gV0VCUEFDSyBGT09URVJcbi8vIC4vbGliL3V0aWwuanNcbi8vIG1vZHVsZSBpZCA9IDRcbi8vIG1vZHVsZSBjaHVua3MgPSAwIiwiLyogLSotIE1vZGU6IGpzOyBqcy1pbmRlbnQtbGV2ZWw6IDI7IC0qLSAqL1xuLypcbiAqIENvcHlyaWdodCAyMDExIE1vemlsbGEgRm91bmRhdGlvbiBhbmQgY29udHJpYnV0b3JzXG4gKiBMaWNlbnNlZCB1bmRlciB0aGUgTmV3IEJTRCBsaWNlbnNlLiBTZWUgTElDRU5TRSBvcjpcbiAqIGh0dHA6Ly9vcGVuc291cmNlLm9yZy9saWNlbnNlcy9CU0QtMy1DbGF1c2VcbiAqL1xuXG52YXIgdXRpbCA9IHJlcXVpcmUoJy4vdXRpbCcpO1xudmFyIGhhcyA9IE9iamVjdC5wcm90b3R5cGUuaGFzT3duUHJvcGVydHk7XG52YXIgaGFzTmF0aXZlTWFwID0gdHlwZW9mIE1hcCAhPT0gXCJ1bmRlZmluZWRcIjtcblxuLyoqXG4gKiBBIGRhdGEgc3RydWN0dXJlIHdoaWNoIGlzIGEgY29tYmluYXRpb24gb2YgYW4gYXJyYXkgYW5kIGEgc2V0LiBBZGRpbmcgYSBuZXdcbiAqIG1lbWJlciBpcyBPKDEpLCB0ZXN0aW5nIGZvciBtZW1iZXJzaGlwIGlzIE8oMSksIGFuZCBmaW5kaW5nIHRoZSBpbmRleCBvZiBhblxuICogZWxlbWVudCBpcyBPKDEpLiBSZW1vdmluZyBlbGVtZW50cyBmcm9tIHRoZSBzZXQgaXMgbm90IHN1cHBvcnRlZC4gT25seVxuICogc3RyaW5ncyBhcmUgc3VwcG9ydGVkIGZvciBtZW1iZXJzaGlwLlxuICovXG5mdW5jdGlvbiBBcnJheVNldCgpIHtcbiAgdGhpcy5fYXJyYXkgPSBbXTtcbiAgdGhpcy5fc2V0ID0gaGFzTmF0aXZlTWFwID8gbmV3IE1hcCgpIDogT2JqZWN0LmNyZWF0ZShudWxsKTtcbn1cblxuLyoqXG4gKiBTdGF0aWMgbWV0aG9kIGZvciBjcmVhdGluZyBBcnJheVNldCBpbnN0YW5jZXMgZnJvbSBhbiBleGlzdGluZyBhcnJheS5cbiAqL1xuQXJyYXlTZXQuZnJvbUFycmF5ID0gZnVuY3Rpb24gQXJyYXlTZXRfZnJvbUFycmF5KGFBcnJheSwgYUFsbG93RHVwbGljYXRlcykge1xuICB2YXIgc2V0ID0gbmV3IEFycmF5U2V0KCk7XG4gIGZvciAodmFyIGkgPSAwLCBsZW4gPSBhQXJyYXkubGVuZ3RoOyBpIDwgbGVuOyBpKyspIHtcbiAgICBzZXQuYWRkKGFBcnJheVtpXSwgYUFsbG93RHVwbGljYXRlcyk7XG4gIH1cbiAgcmV0dXJuIHNldDtcbn07XG5cbi8qKlxuICogUmV0dXJuIGhvdyBtYW55IHVuaXF1ZSBpdGVtcyBhcmUgaW4gdGhpcyBBcnJheVNldC4gSWYgZHVwbGljYXRlcyBoYXZlIGJlZW5cbiAqIGFkZGVkLCB0aGFuIHRob3NlIGRvIG5vdCBjb3VudCB0b3dhcmRzIHRoZSBzaXplLlxuICpcbiAqIEByZXR1cm5zIE51bWJlclxuICovXG5BcnJheVNldC5wcm90b3R5cGUuc2l6ZSA9IGZ1bmN0aW9uIEFycmF5U2V0X3NpemUoKSB7XG4gIHJldHVybiBoYXNOYXRpdmVNYXAgPyB0aGlzLl9zZXQuc2l6ZSA6IE9iamVjdC5nZXRPd25Qcm9wZXJ0eU5hbWVzKHRoaXMuX3NldCkubGVuZ3RoO1xufTtcblxuLyoqXG4gKiBBZGQgdGhlIGdpdmVuIHN0cmluZyB0byB0aGlzIHNldC5cbiAqXG4gKiBAcGFyYW0gU3RyaW5nIGFTdHJcbiAqL1xuQXJyYXlTZXQucHJvdG90eXBlLmFkZCA9IGZ1bmN0aW9uIEFycmF5U2V0X2FkZChhU3RyLCBhQWxsb3dEdXBsaWNhdGVzKSB7XG4gIHZhciBzU3RyID0gaGFzTmF0aXZlTWFwID8gYVN0ciA6IHV0aWwudG9TZXRTdHJpbmcoYVN0cik7XG4gIHZhciBpc0R1cGxpY2F0ZSA9IGhhc05hdGl2ZU1hcCA/IHRoaXMuaGFzKGFTdHIpIDogaGFzLmNhbGwodGhpcy5fc2V0LCBzU3RyKTtcbiAgdmFyIGlkeCA9IHRoaXMuX2FycmF5Lmxlbmd0aDtcbiAgaWYgKCFpc0R1cGxpY2F0ZSB8fCBhQWxsb3dEdXBsaWNhdGVzKSB7XG4gICAgdGhpcy5fYXJyYXkucHVzaChhU3RyKTtcbiAgfVxuICBpZiAoIWlzRHVwbGljYXRlKSB7XG4gICAgaWYgKGhhc05hdGl2ZU1hcCkge1xuICAgICAgdGhpcy5fc2V0LnNldChhU3RyLCBpZHgpO1xuICAgIH0gZWxzZSB7XG4gICAgICB0aGlzLl9zZXRbc1N0cl0gPSBpZHg7XG4gICAgfVxuICB9XG59O1xuXG4vKipcbiAqIElzIHRoZSBnaXZlbiBzdHJpbmcgYSBtZW1iZXIgb2YgdGhpcyBzZXQ/XG4gKlxuICogQHBhcmFtIFN0cmluZyBhU3RyXG4gKi9cbkFycmF5U2V0LnByb3RvdHlwZS5oYXMgPSBmdW5jdGlvbiBBcnJheVNldF9oYXMoYVN0cikge1xuICBpZiAoaGFzTmF0aXZlTWFwKSB7XG4gICAgcmV0dXJuIHRoaXMuX3NldC5oYXMoYVN0cik7XG4gIH0gZWxzZSB7XG4gICAgdmFyIHNTdHIgPSB1dGlsLnRvU2V0U3RyaW5nKGFTdHIpO1xuICAgIHJldHVybiBoYXMuY2FsbCh0aGlzLl9zZXQsIHNTdHIpO1xuICB9XG59O1xuXG4vKipcbiAqIFdoYXQgaXMgdGhlIGluZGV4IG9mIHRoZSBnaXZlbiBzdHJpbmcgaW4gdGhlIGFycmF5P1xuICpcbiAqIEBwYXJhbSBTdHJpbmcgYVN0clxuICovXG5BcnJheVNldC5wcm90b3R5cGUuaW5kZXhPZiA9IGZ1bmN0aW9uIEFycmF5U2V0X2luZGV4T2YoYVN0cikge1xuICBpZiAoaGFzTmF0aXZlTWFwKSB7XG4gICAgdmFyIGlkeCA9IHRoaXMuX3NldC5nZXQoYVN0cik7XG4gICAgaWYgKGlkeCA+PSAwKSB7XG4gICAgICAgIHJldHVybiBpZHg7XG4gICAgfVxuICB9IGVsc2Uge1xuICAgIHZhciBzU3RyID0gdXRpbC50b1NldFN0cmluZyhhU3RyKTtcbiAgICBpZiAoaGFzLmNhbGwodGhpcy5fc2V0LCBzU3RyKSkge1xuICAgICAgcmV0dXJuIHRoaXMuX3NldFtzU3RyXTtcbiAgICB9XG4gIH1cblxuICB0aHJvdyBuZXcgRXJyb3IoJ1wiJyArIGFTdHIgKyAnXCIgaXMgbm90IGluIHRoZSBzZXQuJyk7XG59O1xuXG4vKipcbiAqIFdoYXQgaXMgdGhlIGVsZW1lbnQgYXQgdGhlIGdpdmVuIGluZGV4P1xuICpcbiAqIEBwYXJhbSBOdW1iZXIgYUlkeFxuICovXG5BcnJheVNldC5wcm90b3R5cGUuYXQgPSBmdW5jdGlvbiBBcnJheVNldF9hdChhSWR4KSB7XG4gIGlmIChhSWR4ID49IDAgJiYgYUlkeCA8IHRoaXMuX2FycmF5Lmxlbmd0aCkge1xuICAgIHJldHVybiB0aGlzLl9hcnJheVthSWR4XTtcbiAgfVxuICB0aHJvdyBuZXcgRXJyb3IoJ05vIGVsZW1lbnQgaW5kZXhlZCBieSAnICsgYUlkeCk7XG59O1xuXG4vKipcbiAqIFJldHVybnMgdGhlIGFycmF5IHJlcHJlc2VudGF0aW9uIG9mIHRoaXMgc2V0ICh3aGljaCBoYXMgdGhlIHByb3BlciBpbmRpY2VzXG4gKiBpbmRpY2F0ZWQgYnkgaW5kZXhPZikuIE5vdGUgdGhhdCB0aGlzIGlzIGEgY29weSBvZiB0aGUgaW50ZXJuYWwgYXJyYXkgdXNlZFxuICogZm9yIHN0b3JpbmcgdGhlIG1lbWJlcnMgc28gdGhhdCBubyBvbmUgY2FuIG1lc3Mgd2l0aCBpbnRlcm5hbCBzdGF0ZS5cbiAqL1xuQXJyYXlTZXQucHJvdG90eXBlLnRvQXJyYXkgPSBmdW5jdGlvbiBBcnJheVNldF90b0FycmF5KCkge1xuICByZXR1cm4gdGhpcy5fYXJyYXkuc2xpY2UoKTtcbn07XG5cbmV4cG9ydHMuQXJyYXlTZXQgPSBBcnJheVNldDtcblxuXG5cbi8vLy8vLy8vLy8vLy8vLy8vL1xuLy8gV0VCUEFDSyBGT09URVJcbi8vIC4vbGliL2FycmF5LXNldC5qc1xuLy8gbW9kdWxlIGlkID0gNVxuLy8gbW9kdWxlIGNodW5rcyA9IDAiLCIvKiAtKi0gTW9kZToganM7IGpzLWluZGVudC1sZXZlbDogMjsgLSotICovXG4vKlxuICogQ29weXJpZ2h0IDIwMTQgTW96aWxsYSBGb3VuZGF0aW9uIGFuZCBjb250cmlidXRvcnNcbiAqIExpY2Vuc2VkIHVuZGVyIHRoZSBOZXcgQlNEIGxpY2Vuc2UuIFNlZSBMSUNFTlNFIG9yOlxuICogaHR0cDovL29wZW5zb3VyY2Uub3JnL2xpY2Vuc2VzL0JTRC0zLUNsYXVzZVxuICovXG5cbnZhciB1dGlsID0gcmVxdWlyZSgnLi91dGlsJyk7XG5cbi8qKlxuICogRGV0ZXJtaW5lIHdoZXRoZXIgbWFwcGluZ0IgaXMgYWZ0ZXIgbWFwcGluZ0Egd2l0aCByZXNwZWN0IHRvIGdlbmVyYXRlZFxuICogcG9zaXRpb24uXG4gKi9cbmZ1bmN0aW9uIGdlbmVyYXRlZFBvc2l0aW9uQWZ0ZXIobWFwcGluZ0EsIG1hcHBpbmdCKSB7XG4gIC8vIE9wdGltaXplZCBmb3IgbW9zdCBjb21tb24gY2FzZVxuICB2YXIgbGluZUEgPSBtYXBwaW5nQS5nZW5lcmF0ZWRMaW5lO1xuICB2YXIgbGluZUIgPSBtYXBwaW5nQi5nZW5lcmF0ZWRMaW5lO1xuICB2YXIgY29sdW1uQSA9IG1hcHBpbmdBLmdlbmVyYXRlZENvbHVtbjtcbiAgdmFyIGNvbHVtbkIgPSBtYXBwaW5nQi5nZW5lcmF0ZWRDb2x1bW47XG4gIHJldHVybiBsaW5lQiA+IGxpbmVBIHx8IGxpbmVCID09IGxpbmVBICYmIGNvbHVtbkIgPj0gY29sdW1uQSB8fFxuICAgICAgICAgdXRpbC5jb21wYXJlQnlHZW5lcmF0ZWRQb3NpdGlvbnNJbmZsYXRlZChtYXBwaW5nQSwgbWFwcGluZ0IpIDw9IDA7XG59XG5cbi8qKlxuICogQSBkYXRhIHN0cnVjdHVyZSB0byBwcm92aWRlIGEgc29ydGVkIHZpZXcgb2YgYWNjdW11bGF0ZWQgbWFwcGluZ3MgaW4gYVxuICogcGVyZm9ybWFuY2UgY29uc2Npb3VzIG1hbm5lci4gSXQgdHJhZGVzIGEgbmVnbGliYWJsZSBvdmVyaGVhZCBpbiBnZW5lcmFsXG4gKiBjYXNlIGZvciBhIGxhcmdlIHNwZWVkdXAgaW4gY2FzZSBvZiBtYXBwaW5ncyBiZWluZyBhZGRlZCBpbiBvcmRlci5cbiAqL1xuZnVuY3Rpb24gTWFwcGluZ0xpc3QoKSB7XG4gIHRoaXMuX2FycmF5ID0gW107XG4gIHRoaXMuX3NvcnRlZCA9IHRydWU7XG4gIC8vIFNlcnZlcyBhcyBpbmZpbXVtXG4gIHRoaXMuX2xhc3QgPSB7Z2VuZXJhdGVkTGluZTogLTEsIGdlbmVyYXRlZENvbHVtbjogMH07XG59XG5cbi8qKlxuICogSXRlcmF0ZSB0aHJvdWdoIGludGVybmFsIGl0ZW1zLiBUaGlzIG1ldGhvZCB0YWtlcyB0aGUgc2FtZSBhcmd1bWVudHMgdGhhdFxuICogYEFycmF5LnByb3RvdHlwZS5mb3JFYWNoYCB0YWtlcy5cbiAqXG4gKiBOT1RFOiBUaGUgb3JkZXIgb2YgdGhlIG1hcHBpbmdzIGlzIE5PVCBndWFyYW50ZWVkLlxuICovXG5NYXBwaW5nTGlzdC5wcm90b3R5cGUudW5zb3J0ZWRGb3JFYWNoID1cbiAgZnVuY3Rpb24gTWFwcGluZ0xpc3RfZm9yRWFjaChhQ2FsbGJhY2ssIGFUaGlzQXJnKSB7XG4gICAgdGhpcy5fYXJyYXkuZm9yRWFjaChhQ2FsbGJhY2ssIGFUaGlzQXJnKTtcbiAgfTtcblxuLyoqXG4gKiBBZGQgdGhlIGdpdmVuIHNvdXJjZSBtYXBwaW5nLlxuICpcbiAqIEBwYXJhbSBPYmplY3QgYU1hcHBpbmdcbiAqL1xuTWFwcGluZ0xpc3QucHJvdG90eXBlLmFkZCA9IGZ1bmN0aW9uIE1hcHBpbmdMaXN0X2FkZChhTWFwcGluZykge1xuICBpZiAoZ2VuZXJhdGVkUG9zaXRpb25BZnRlcih0aGlzLl9sYXN0LCBhTWFwcGluZykpIHtcbiAgICB0aGlzLl9sYXN0ID0gYU1hcHBpbmc7XG4gICAgdGhpcy5fYXJyYXkucHVzaChhTWFwcGluZyk7XG4gIH0gZWxzZSB7XG4gICAgdGhpcy5fc29ydGVkID0gZmFsc2U7XG4gICAgdGhpcy5fYXJyYXkucHVzaChhTWFwcGluZyk7XG4gIH1cbn07XG5cbi8qKlxuICogUmV0dXJucyB0aGUgZmxhdCwgc29ydGVkIGFycmF5IG9mIG1hcHBpbmdzLiBUaGUgbWFwcGluZ3MgYXJlIHNvcnRlZCBieVxuICogZ2VuZXJhdGVkIHBvc2l0aW9uLlxuICpcbiAqIFdBUk5JTkc6IFRoaXMgbWV0aG9kIHJldHVybnMgaW50ZXJuYWwgZGF0YSB3aXRob3V0IGNvcHlpbmcsIGZvclxuICogcGVyZm9ybWFuY2UuIFRoZSByZXR1cm4gdmFsdWUgbXVzdCBOT1QgYmUgbXV0YXRlZCwgYW5kIHNob3VsZCBiZSB0cmVhdGVkIGFzXG4gKiBhbiBpbW11dGFibGUgYm9ycm93LiBJZiB5b3Ugd2FudCB0byB0YWtlIG93bmVyc2hpcCwgeW91IG11c3QgbWFrZSB5b3VyIG93blxuICogY29weS5cbiAqL1xuTWFwcGluZ0xpc3QucHJvdG90eXBlLnRvQXJyYXkgPSBmdW5jdGlvbiBNYXBwaW5nTGlzdF90b0FycmF5KCkge1xuICBpZiAoIXRoaXMuX3NvcnRlZCkge1xuICAgIHRoaXMuX2FycmF5LnNvcnQodXRpbC5jb21wYXJlQnlHZW5lcmF0ZWRQb3NpdGlvbnNJbmZsYXRlZCk7XG4gICAgdGhpcy5fc29ydGVkID0gdHJ1ZTtcbiAgfVxuICByZXR1cm4gdGhpcy5fYXJyYXk7XG59O1xuXG5leHBvcnRzLk1hcHBpbmdMaXN0ID0gTWFwcGluZ0xpc3Q7XG5cblxuXG4vLy8vLy8vLy8vLy8vLy8vLy9cbi8vIFdFQlBBQ0sgRk9PVEVSXG4vLyAuL2xpYi9tYXBwaW5nLWxpc3QuanNcbi8vIG1vZHVsZSBpZCA9IDZcbi8vIG1vZHVsZSBjaHVua3MgPSAwIiwiLyogLSotIE1vZGU6IGpzOyBqcy1pbmRlbnQtbGV2ZWw6IDI7IC0qLSAqL1xuLypcbiAqIENvcHlyaWdodCAyMDExIE1vemlsbGEgRm91bmRhdGlvbiBhbmQgY29udHJpYnV0b3JzXG4gKiBMaWNlbnNlZCB1bmRlciB0aGUgTmV3IEJTRCBsaWNlbnNlLiBTZWUgTElDRU5TRSBvcjpcbiAqIGh0dHA6Ly9vcGVuc291cmNlLm9yZy9saWNlbnNlcy9CU0QtMy1DbGF1c2VcbiAqL1xuXG52YXIgdXRpbCA9IHJlcXVpcmUoJy4vdXRpbCcpO1xudmFyIGJpbmFyeVNlYXJjaCA9IHJlcXVpcmUoJy4vYmluYXJ5LXNlYXJjaCcpO1xudmFyIEFycmF5U2V0ID0gcmVxdWlyZSgnLi9hcnJheS1zZXQnKS5BcnJheVNldDtcbnZhciBiYXNlNjRWTFEgPSByZXF1aXJlKCcuL2Jhc2U2NC12bHEnKTtcbnZhciBxdWlja1NvcnQgPSByZXF1aXJlKCcuL3F1aWNrLXNvcnQnKS5xdWlja1NvcnQ7XG5cbmZ1bmN0aW9uIFNvdXJjZU1hcENvbnN1bWVyKGFTb3VyY2VNYXApIHtcbiAgdmFyIHNvdXJjZU1hcCA9IGFTb3VyY2VNYXA7XG4gIGlmICh0eXBlb2YgYVNvdXJjZU1hcCA9PT0gJ3N0cmluZycpIHtcbiAgICBzb3VyY2VNYXAgPSBKU09OLnBhcnNlKGFTb3VyY2VNYXAucmVwbGFjZSgvXlxcKVxcXVxcfScvLCAnJykpO1xuICB9XG5cbiAgcmV0dXJuIHNvdXJjZU1hcC5zZWN0aW9ucyAhPSBudWxsXG4gICAgPyBuZXcgSW5kZXhlZFNvdXJjZU1hcENvbnN1bWVyKHNvdXJjZU1hcClcbiAgICA6IG5ldyBCYXNpY1NvdXJjZU1hcENvbnN1bWVyKHNvdXJjZU1hcCk7XG59XG5cblNvdXJjZU1hcENvbnN1bWVyLmZyb21Tb3VyY2VNYXAgPSBmdW5jdGlvbihhU291cmNlTWFwKSB7XG4gIHJldHVybiBCYXNpY1NvdXJjZU1hcENvbnN1bWVyLmZyb21Tb3VyY2VNYXAoYVNvdXJjZU1hcCk7XG59XG5cbi8qKlxuICogVGhlIHZlcnNpb24gb2YgdGhlIHNvdXJjZSBtYXBwaW5nIHNwZWMgdGhhdCB3ZSBhcmUgY29uc3VtaW5nLlxuICovXG5Tb3VyY2VNYXBDb25zdW1lci5wcm90b3R5cGUuX3ZlcnNpb24gPSAzO1xuXG4vLyBgX19nZW5lcmF0ZWRNYXBwaW5nc2AgYW5kIGBfX29yaWdpbmFsTWFwcGluZ3NgIGFyZSBhcnJheXMgdGhhdCBob2xkIHRoZVxuLy8gcGFyc2VkIG1hcHBpbmcgY29vcmRpbmF0ZXMgZnJvbSB0aGUgc291cmNlIG1hcCdzIFwibWFwcGluZ3NcIiBhdHRyaWJ1dGUuIFRoZXlcbi8vIGFyZSBsYXppbHkgaW5zdGFudGlhdGVkLCBhY2Nlc3NlZCB2aWEgdGhlIGBfZ2VuZXJhdGVkTWFwcGluZ3NgIGFuZFxuLy8gYF9vcmlnaW5hbE1hcHBpbmdzYCBnZXR0ZXJzIHJlc3BlY3RpdmVseSwgYW5kIHdlIG9ubHkgcGFyc2UgdGhlIG1hcHBpbmdzXG4vLyBhbmQgY3JlYXRlIHRoZXNlIGFycmF5cyBvbmNlIHF1ZXJpZWQgZm9yIGEgc291cmNlIGxvY2F0aW9uLiBXZSBqdW1wIHRocm91Z2hcbi8vIHRoZXNlIGhvb3BzIGJlY2F1c2UgdGhlcmUgY2FuIGJlIG1hbnkgdGhvdXNhbmRzIG9mIG1hcHBpbmdzLCBhbmQgcGFyc2luZ1xuLy8gdGhlbSBpcyBleHBlbnNpdmUsIHNvIHdlIG9ubHkgd2FudCB0byBkbyBpdCBpZiB3ZSBtdXN0LlxuLy9cbi8vIEVhY2ggb2JqZWN0IGluIHRoZSBhcnJheXMgaXMgb2YgdGhlIGZvcm06XG4vL1xuLy8gICAgIHtcbi8vICAgICAgIGdlbmVyYXRlZExpbmU6IFRoZSBsaW5lIG51bWJlciBpbiB0aGUgZ2VuZXJhdGVkIGNvZGUsXG4vLyAgICAgICBnZW5lcmF0ZWRDb2x1bW46IFRoZSBjb2x1bW4gbnVtYmVyIGluIHRoZSBnZW5lcmF0ZWQgY29kZSxcbi8vICAgICAgIHNvdXJjZTogVGhlIHBhdGggdG8gdGhlIG9yaWdpbmFsIHNvdXJjZSBmaWxlIHRoYXQgZ2VuZXJhdGVkIHRoaXNcbi8vICAgICAgICAgICAgICAgY2h1bmsgb2YgY29kZSxcbi8vICAgICAgIG9yaWdpbmFsTGluZTogVGhlIGxpbmUgbnVtYmVyIGluIHRoZSBvcmlnaW5hbCBzb3VyY2UgdGhhdFxuLy8gICAgICAgICAgICAgICAgICAgICBjb3JyZXNwb25kcyB0byB0aGlzIGNodW5rIG9mIGdlbmVyYXRlZCBjb2RlLFxuLy8gICAgICAgb3JpZ2luYWxDb2x1bW46IFRoZSBjb2x1bW4gbnVtYmVyIGluIHRoZSBvcmlnaW5hbCBzb3VyY2UgdGhhdFxuLy8gICAgICAgICAgICAgICAgICAgICAgIGNvcnJlc3BvbmRzIHRvIHRoaXMgY2h1bmsgb2YgZ2VuZXJhdGVkIGNvZGUsXG4vLyAgICAgICBuYW1lOiBUaGUgbmFtZSBvZiB0aGUgb3JpZ2luYWwgc3ltYm9sIHdoaWNoIGdlbmVyYXRlZCB0aGlzIGNodW5rIG9mXG4vLyAgICAgICAgICAgICBjb2RlLlxuLy8gICAgIH1cbi8vXG4vLyBBbGwgcHJvcGVydGllcyBleGNlcHQgZm9yIGBnZW5lcmF0ZWRMaW5lYCBhbmQgYGdlbmVyYXRlZENvbHVtbmAgY2FuIGJlXG4vLyBgbnVsbGAuXG4vL1xuLy8gYF9nZW5lcmF0ZWRNYXBwaW5nc2AgaXMgb3JkZXJlZCBieSB0aGUgZ2VuZXJhdGVkIHBvc2l0aW9ucy5cbi8vXG4vLyBgX29yaWdpbmFsTWFwcGluZ3NgIGlzIG9yZGVyZWQgYnkgdGhlIG9yaWdpbmFsIHBvc2l0aW9ucy5cblxuU291cmNlTWFwQ29uc3VtZXIucHJvdG90eXBlLl9fZ2VuZXJhdGVkTWFwcGluZ3MgPSBudWxsO1xuT2JqZWN0LmRlZmluZVByb3BlcnR5KFNvdXJjZU1hcENvbnN1bWVyLnByb3RvdHlwZSwgJ19nZW5lcmF0ZWRNYXBwaW5ncycsIHtcbiAgZ2V0OiBmdW5jdGlvbiAoKSB7XG4gICAgaWYgKCF0aGlzLl9fZ2VuZXJhdGVkTWFwcGluZ3MpIHtcbiAgICAgIHRoaXMuX3BhcnNlTWFwcGluZ3ModGhpcy5fbWFwcGluZ3MsIHRoaXMuc291cmNlUm9vdCk7XG4gICAgfVxuXG4gICAgcmV0dXJuIHRoaXMuX19nZW5lcmF0ZWRNYXBwaW5ncztcbiAgfVxufSk7XG5cblNvdXJjZU1hcENvbnN1bWVyLnByb3RvdHlwZS5fX29yaWdpbmFsTWFwcGluZ3MgPSBudWxsO1xuT2JqZWN0LmRlZmluZVByb3BlcnR5KFNvdXJjZU1hcENvbnN1bWVyLnByb3RvdHlwZSwgJ19vcmlnaW5hbE1hcHBpbmdzJywge1xuICBnZXQ6IGZ1bmN0aW9uICgpIHtcbiAgICBpZiAoIXRoaXMuX19vcmlnaW5hbE1hcHBpbmdzKSB7XG4gICAgICB0aGlzLl9wYXJzZU1hcHBpbmdzKHRoaXMuX21hcHBpbmdzLCB0aGlzLnNvdXJjZVJvb3QpO1xuICAgIH1cblxuICAgIHJldHVybiB0aGlzLl9fb3JpZ2luYWxNYXBwaW5ncztcbiAgfVxufSk7XG5cblNvdXJjZU1hcENvbnN1bWVyLnByb3RvdHlwZS5fY2hhcklzTWFwcGluZ1NlcGFyYXRvciA9XG4gIGZ1bmN0aW9uIFNvdXJjZU1hcENvbnN1bWVyX2NoYXJJc01hcHBpbmdTZXBhcmF0b3IoYVN0ciwgaW5kZXgpIHtcbiAgICB2YXIgYyA9IGFTdHIuY2hhckF0KGluZGV4KTtcbiAgICByZXR1cm4gYyA9PT0gXCI7XCIgfHwgYyA9PT0gXCIsXCI7XG4gIH07XG5cbi8qKlxuICogUGFyc2UgdGhlIG1hcHBpbmdzIGluIGEgc3RyaW5nIGluIHRvIGEgZGF0YSBzdHJ1Y3R1cmUgd2hpY2ggd2UgY2FuIGVhc2lseVxuICogcXVlcnkgKHRoZSBvcmRlcmVkIGFycmF5cyBpbiB0aGUgYHRoaXMuX19nZW5lcmF0ZWRNYXBwaW5nc2AgYW5kXG4gKiBgdGhpcy5fX29yaWdpbmFsTWFwcGluZ3NgIHByb3BlcnRpZXMpLlxuICovXG5Tb3VyY2VNYXBDb25zdW1lci5wcm90b3R5cGUuX3BhcnNlTWFwcGluZ3MgPVxuICBmdW5jdGlvbiBTb3VyY2VNYXBDb25zdW1lcl9wYXJzZU1hcHBpbmdzKGFTdHIsIGFTb3VyY2VSb290KSB7XG4gICAgdGhyb3cgbmV3IEVycm9yKFwiU3ViY2xhc3NlcyBtdXN0IGltcGxlbWVudCBfcGFyc2VNYXBwaW5nc1wiKTtcbiAgfTtcblxuU291cmNlTWFwQ29uc3VtZXIuR0VORVJBVEVEX09SREVSID0gMTtcblNvdXJjZU1hcENvbnN1bWVyLk9SSUdJTkFMX09SREVSID0gMjtcblxuU291cmNlTWFwQ29uc3VtZXIuR1JFQVRFU1RfTE9XRVJfQk9VTkQgPSAxO1xuU291cmNlTWFwQ29uc3VtZXIuTEVBU1RfVVBQRVJfQk9VTkQgPSAyO1xuXG4vKipcbiAqIEl0ZXJhdGUgb3ZlciBlYWNoIG1hcHBpbmcgYmV0d2VlbiBhbiBvcmlnaW5hbCBzb3VyY2UvbGluZS9jb2x1bW4gYW5kIGFcbiAqIGdlbmVyYXRlZCBsaW5lL2NvbHVtbiBpbiB0aGlzIHNvdXJjZSBtYXAuXG4gKlxuICogQHBhcmFtIEZ1bmN0aW9uIGFDYWxsYmFja1xuICogICAgICAgIFRoZSBmdW5jdGlvbiB0aGF0IGlzIGNhbGxlZCB3aXRoIGVhY2ggbWFwcGluZy5cbiAqIEBwYXJhbSBPYmplY3QgYUNvbnRleHRcbiAqICAgICAgICBPcHRpb25hbC4gSWYgc3BlY2lmaWVkLCB0aGlzIG9iamVjdCB3aWxsIGJlIHRoZSB2YWx1ZSBvZiBgdGhpc2AgZXZlcnlcbiAqICAgICAgICB0aW1lIHRoYXQgYGFDYWxsYmFja2AgaXMgY2FsbGVkLlxuICogQHBhcmFtIGFPcmRlclxuICogICAgICAgIEVpdGhlciBgU291cmNlTWFwQ29uc3VtZXIuR0VORVJBVEVEX09SREVSYCBvclxuICogICAgICAgIGBTb3VyY2VNYXBDb25zdW1lci5PUklHSU5BTF9PUkRFUmAuIFNwZWNpZmllcyB3aGV0aGVyIHlvdSB3YW50IHRvXG4gKiAgICAgICAgaXRlcmF0ZSBvdmVyIHRoZSBtYXBwaW5ncyBzb3J0ZWQgYnkgdGhlIGdlbmVyYXRlZCBmaWxlJ3MgbGluZS9jb2x1bW5cbiAqICAgICAgICBvcmRlciBvciB0aGUgb3JpZ2luYWwncyBzb3VyY2UvbGluZS9jb2x1bW4gb3JkZXIsIHJlc3BlY3RpdmVseS4gRGVmYXVsdHMgdG9cbiAqICAgICAgICBgU291cmNlTWFwQ29uc3VtZXIuR0VORVJBVEVEX09SREVSYC5cbiAqL1xuU291cmNlTWFwQ29uc3VtZXIucHJvdG90eXBlLmVhY2hNYXBwaW5nID1cbiAgZnVuY3Rpb24gU291cmNlTWFwQ29uc3VtZXJfZWFjaE1hcHBpbmcoYUNhbGxiYWNrLCBhQ29udGV4dCwgYU9yZGVyKSB7XG4gICAgdmFyIGNvbnRleHQgPSBhQ29udGV4dCB8fCBudWxsO1xuICAgIHZhciBvcmRlciA9IGFPcmRlciB8fCBTb3VyY2VNYXBDb25zdW1lci5HRU5FUkFURURfT1JERVI7XG5cbiAgICB2YXIgbWFwcGluZ3M7XG4gICAgc3dpdGNoIChvcmRlcikge1xuICAgIGNhc2UgU291cmNlTWFwQ29uc3VtZXIuR0VORVJBVEVEX09SREVSOlxuICAgICAgbWFwcGluZ3MgPSB0aGlzLl9nZW5lcmF0ZWRNYXBwaW5ncztcbiAgICAgIGJyZWFrO1xuICAgIGNhc2UgU291cmNlTWFwQ29uc3VtZXIuT1JJR0lOQUxfT1JERVI6XG4gICAgICBtYXBwaW5ncyA9IHRoaXMuX29yaWdpbmFsTWFwcGluZ3M7XG4gICAgICBicmVhaztcbiAgICBkZWZhdWx0OlxuICAgICAgdGhyb3cgbmV3IEVycm9yKFwiVW5rbm93biBvcmRlciBvZiBpdGVyYXRpb24uXCIpO1xuICAgIH1cblxuICAgIHZhciBzb3VyY2VSb290ID0gdGhpcy5zb3VyY2VSb290O1xuICAgIG1hcHBpbmdzLm1hcChmdW5jdGlvbiAobWFwcGluZykge1xuICAgICAgdmFyIHNvdXJjZSA9IG1hcHBpbmcuc291cmNlID09PSBudWxsID8gbnVsbCA6IHRoaXMuX3NvdXJjZXMuYXQobWFwcGluZy5zb3VyY2UpO1xuICAgICAgaWYgKHNvdXJjZSAhPSBudWxsICYmIHNvdXJjZVJvb3QgIT0gbnVsbCkge1xuICAgICAgICBzb3VyY2UgPSB1dGlsLmpvaW4oc291cmNlUm9vdCwgc291cmNlKTtcbiAgICAgIH1cbiAgICAgIHJldHVybiB7XG4gICAgICAgIHNvdXJjZTogc291cmNlLFxuICAgICAgICBnZW5lcmF0ZWRMaW5lOiBtYXBwaW5nLmdlbmVyYXRlZExpbmUsXG4gICAgICAgIGdlbmVyYXRlZENvbHVtbjogbWFwcGluZy5nZW5lcmF0ZWRDb2x1bW4sXG4gICAgICAgIG9yaWdpbmFsTGluZTogbWFwcGluZy5vcmlnaW5hbExpbmUsXG4gICAgICAgIG9yaWdpbmFsQ29sdW1uOiBtYXBwaW5nLm9yaWdpbmFsQ29sdW1uLFxuICAgICAgICBuYW1lOiBtYXBwaW5nLm5hbWUgPT09IG51bGwgPyBudWxsIDogdGhpcy5fbmFtZXMuYXQobWFwcGluZy5uYW1lKVxuICAgICAgfTtcbiAgICB9LCB0aGlzKS5mb3JFYWNoKGFDYWxsYmFjaywgY29udGV4dCk7XG4gIH07XG5cbi8qKlxuICogUmV0dXJucyBhbGwgZ2VuZXJhdGVkIGxpbmUgYW5kIGNvbHVtbiBpbmZvcm1hdGlvbiBmb3IgdGhlIG9yaWdpbmFsIHNvdXJjZSxcbiAqIGxpbmUsIGFuZCBjb2x1bW4gcHJvdmlkZWQuIElmIG5vIGNvbHVtbiBpcyBwcm92aWRlZCwgcmV0dXJucyBhbGwgbWFwcGluZ3NcbiAqIGNvcnJlc3BvbmRpbmcgdG8gYSBlaXRoZXIgdGhlIGxpbmUgd2UgYXJlIHNlYXJjaGluZyBmb3Igb3IgdGhlIG5leHRcbiAqIGNsb3Nlc3QgbGluZSB0aGF0IGhhcyBhbnkgbWFwcGluZ3MuIE90aGVyd2lzZSwgcmV0dXJucyBhbGwgbWFwcGluZ3NcbiAqIGNvcnJlc3BvbmRpbmcgdG8gdGhlIGdpdmVuIGxpbmUgYW5kIGVpdGhlciB0aGUgY29sdW1uIHdlIGFyZSBzZWFyY2hpbmcgZm9yXG4gKiBvciB0aGUgbmV4dCBjbG9zZXN0IGNvbHVtbiB0aGF0IGhhcyBhbnkgb2Zmc2V0cy5cbiAqXG4gKiBUaGUgb25seSBhcmd1bWVudCBpcyBhbiBvYmplY3Qgd2l0aCB0aGUgZm9sbG93aW5nIHByb3BlcnRpZXM6XG4gKlxuICogICAtIHNvdXJjZTogVGhlIGZpbGVuYW1lIG9mIHRoZSBvcmlnaW5hbCBzb3VyY2UuXG4gKiAgIC0gbGluZTogVGhlIGxpbmUgbnVtYmVyIGluIHRoZSBvcmlnaW5hbCBzb3VyY2UuXG4gKiAgIC0gY29sdW1uOiBPcHRpb25hbC4gdGhlIGNvbHVtbiBudW1iZXIgaW4gdGhlIG9yaWdpbmFsIHNvdXJjZS5cbiAqXG4gKiBhbmQgYW4gYXJyYXkgb2Ygb2JqZWN0cyBpcyByZXR1cm5lZCwgZWFjaCB3aXRoIHRoZSBmb2xsb3dpbmcgcHJvcGVydGllczpcbiAqXG4gKiAgIC0gbGluZTogVGhlIGxpbmUgbnVtYmVyIGluIHRoZSBnZW5lcmF0ZWQgc291cmNlLCBvciBudWxsLlxuICogICAtIGNvbHVtbjogVGhlIGNvbHVtbiBudW1iZXIgaW4gdGhlIGdlbmVyYXRlZCBzb3VyY2UsIG9yIG51bGwuXG4gKi9cblNvdXJjZU1hcENvbnN1bWVyLnByb3RvdHlwZS5hbGxHZW5lcmF0ZWRQb3NpdGlvbnNGb3IgPVxuICBmdW5jdGlvbiBTb3VyY2VNYXBDb25zdW1lcl9hbGxHZW5lcmF0ZWRQb3NpdGlvbnNGb3IoYUFyZ3MpIHtcbiAgICB2YXIgbGluZSA9IHV0aWwuZ2V0QXJnKGFBcmdzLCAnbGluZScpO1xuXG4gICAgLy8gV2hlbiB0aGVyZSBpcyBubyBleGFjdCBtYXRjaCwgQmFzaWNTb3VyY2VNYXBDb25zdW1lci5wcm90b3R5cGUuX2ZpbmRNYXBwaW5nXG4gICAgLy8gcmV0dXJucyB0aGUgaW5kZXggb2YgdGhlIGNsb3Nlc3QgbWFwcGluZyBsZXNzIHRoYW4gdGhlIG5lZWRsZS4gQnlcbiAgICAvLyBzZXR0aW5nIG5lZWRsZS5vcmlnaW5hbENvbHVtbiB0byAwLCB3ZSB0aHVzIGZpbmQgdGhlIGxhc3QgbWFwcGluZyBmb3JcbiAgICAvLyB0aGUgZ2l2ZW4gbGluZSwgcHJvdmlkZWQgc3VjaCBhIG1hcHBpbmcgZXhpc3RzLlxuICAgIHZhciBuZWVkbGUgPSB7XG4gICAgICBzb3VyY2U6IHV0aWwuZ2V0QXJnKGFBcmdzLCAnc291cmNlJyksXG4gICAgICBvcmlnaW5hbExpbmU6IGxpbmUsXG4gICAgICBvcmlnaW5hbENvbHVtbjogdXRpbC5nZXRBcmcoYUFyZ3MsICdjb2x1bW4nLCAwKVxuICAgIH07XG5cbiAgICBpZiAodGhpcy5zb3VyY2VSb290ICE9IG51bGwpIHtcbiAgICAgIG5lZWRsZS5zb3VyY2UgPSB1dGlsLnJlbGF0aXZlKHRoaXMuc291cmNlUm9vdCwgbmVlZGxlLnNvdXJjZSk7XG4gICAgfVxuICAgIGlmICghdGhpcy5fc291cmNlcy5oYXMobmVlZGxlLnNvdXJjZSkpIHtcbiAgICAgIHJldHVybiBbXTtcbiAgICB9XG4gICAgbmVlZGxlLnNvdXJjZSA9IHRoaXMuX3NvdXJjZXMuaW5kZXhPZihuZWVkbGUuc291cmNlKTtcblxuICAgIHZhciBtYXBwaW5ncyA9IFtdO1xuXG4gICAgdmFyIGluZGV4ID0gdGhpcy5fZmluZE1hcHBpbmcobmVlZGxlLFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHRoaXMuX29yaWdpbmFsTWFwcGluZ3MsXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgXCJvcmlnaW5hbExpbmVcIixcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBcIm9yaWdpbmFsQ29sdW1uXCIsXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgdXRpbC5jb21wYXJlQnlPcmlnaW5hbFBvc2l0aW9ucyxcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBiaW5hcnlTZWFyY2guTEVBU1RfVVBQRVJfQk9VTkQpO1xuICAgIGlmIChpbmRleCA+PSAwKSB7XG4gICAgICB2YXIgbWFwcGluZyA9IHRoaXMuX29yaWdpbmFsTWFwcGluZ3NbaW5kZXhdO1xuXG4gICAgICBpZiAoYUFyZ3MuY29sdW1uID09PSB1bmRlZmluZWQpIHtcbiAgICAgICAgdmFyIG9yaWdpbmFsTGluZSA9IG1hcHBpbmcub3JpZ2luYWxMaW5lO1xuXG4gICAgICAgIC8vIEl0ZXJhdGUgdW50aWwgZWl0aGVyIHdlIHJ1biBvdXQgb2YgbWFwcGluZ3MsIG9yIHdlIHJ1biBpbnRvXG4gICAgICAgIC8vIGEgbWFwcGluZyBmb3IgYSBkaWZmZXJlbnQgbGluZSB0aGFuIHRoZSBvbmUgd2UgZm91bmQuIFNpbmNlXG4gICAgICAgIC8vIG1hcHBpbmdzIGFyZSBzb3J0ZWQsIHRoaXMgaXMgZ3VhcmFudGVlZCB0byBmaW5kIGFsbCBtYXBwaW5ncyBmb3JcbiAgICAgICAgLy8gdGhlIGxpbmUgd2UgZm91bmQuXG4gICAgICAgIHdoaWxlIChtYXBwaW5nICYmIG1hcHBpbmcub3JpZ2luYWxMaW5lID09PSBvcmlnaW5hbExpbmUpIHtcbiAgICAgICAgICBtYXBwaW5ncy5wdXNoKHtcbiAgICAgICAgICAgIGxpbmU6IHV0aWwuZ2V0QXJnKG1hcHBpbmcsICdnZW5lcmF0ZWRMaW5lJywgbnVsbCksXG4gICAgICAgICAgICBjb2x1bW46IHV0aWwuZ2V0QXJnKG1hcHBpbmcsICdnZW5lcmF0ZWRDb2x1bW4nLCBudWxsKSxcbiAgICAgICAgICAgIGxhc3RDb2x1bW46IHV0aWwuZ2V0QXJnKG1hcHBpbmcsICdsYXN0R2VuZXJhdGVkQ29sdW1uJywgbnVsbClcbiAgICAgICAgICB9KTtcblxuICAgICAgICAgIG1hcHBpbmcgPSB0aGlzLl9vcmlnaW5hbE1hcHBpbmdzWysraW5kZXhdO1xuICAgICAgICB9XG4gICAgICB9IGVsc2Uge1xuICAgICAgICB2YXIgb3JpZ2luYWxDb2x1bW4gPSBtYXBwaW5nLm9yaWdpbmFsQ29sdW1uO1xuXG4gICAgICAgIC8vIEl0ZXJhdGUgdW50aWwgZWl0aGVyIHdlIHJ1biBvdXQgb2YgbWFwcGluZ3MsIG9yIHdlIHJ1biBpbnRvXG4gICAgICAgIC8vIGEgbWFwcGluZyBmb3IgYSBkaWZmZXJlbnQgbGluZSB0aGFuIHRoZSBvbmUgd2Ugd2VyZSBzZWFyY2hpbmcgZm9yLlxuICAgICAgICAvLyBTaW5jZSBtYXBwaW5ncyBhcmUgc29ydGVkLCB0aGlzIGlzIGd1YXJhbnRlZWQgdG8gZmluZCBhbGwgbWFwcGluZ3MgZm9yXG4gICAgICAgIC8vIHRoZSBsaW5lIHdlIGFyZSBzZWFyY2hpbmcgZm9yLlxuICAgICAgICB3aGlsZSAobWFwcGluZyAmJlxuICAgICAgICAgICAgICAgbWFwcGluZy5vcmlnaW5hbExpbmUgPT09IGxpbmUgJiZcbiAgICAgICAgICAgICAgIG1hcHBpbmcub3JpZ2luYWxDb2x1bW4gPT0gb3JpZ2luYWxDb2x1bW4pIHtcbiAgICAgICAgICBtYXBwaW5ncy5wdXNoKHtcbiAgICAgICAgICAgIGxpbmU6IHV0aWwuZ2V0QXJnKG1hcHBpbmcsICdnZW5lcmF0ZWRMaW5lJywgbnVsbCksXG4gICAgICAgICAgICBjb2x1bW46IHV0aWwuZ2V0QXJnKG1hcHBpbmcsICdnZW5lcmF0ZWRDb2x1bW4nLCBudWxsKSxcbiAgICAgICAgICAgIGxhc3RDb2x1bW46IHV0aWwuZ2V0QXJnKG1hcHBpbmcsICdsYXN0R2VuZXJhdGVkQ29sdW1uJywgbnVsbClcbiAgICAgICAgICB9KTtcblxuICAgICAgICAgIG1hcHBpbmcgPSB0aGlzLl9vcmlnaW5hbE1hcHBpbmdzWysraW5kZXhdO1xuICAgICAgICB9XG4gICAgICB9XG4gICAgfVxuXG4gICAgcmV0dXJuIG1hcHBpbmdzO1xuICB9O1xuXG5leHBvcnRzLlNvdXJjZU1hcENvbnN1bWVyID0gU291cmNlTWFwQ29uc3VtZXI7XG5cbi8qKlxuICogQSBCYXNpY1NvdXJjZU1hcENvbnN1bWVyIGluc3RhbmNlIHJlcHJlc2VudHMgYSBwYXJzZWQgc291cmNlIG1hcCB3aGljaCB3ZSBjYW5cbiAqIHF1ZXJ5IGZvciBpbmZvcm1hdGlvbiBhYm91dCB0aGUgb3JpZ2luYWwgZmlsZSBwb3NpdGlvbnMgYnkgZ2l2aW5nIGl0IGEgZmlsZVxuICogcG9zaXRpb24gaW4gdGhlIGdlbmVyYXRlZCBzb3VyY2UuXG4gKlxuICogVGhlIG9ubHkgcGFyYW1ldGVyIGlzIHRoZSByYXcgc291cmNlIG1hcCAoZWl0aGVyIGFzIGEgSlNPTiBzdHJpbmcsIG9yXG4gKiBhbHJlYWR5IHBhcnNlZCB0byBhbiBvYmplY3QpLiBBY2NvcmRpbmcgdG8gdGhlIHNwZWMsIHNvdXJjZSBtYXBzIGhhdmUgdGhlXG4gKiBmb2xsb3dpbmcgYXR0cmlidXRlczpcbiAqXG4gKiAgIC0gdmVyc2lvbjogV2hpY2ggdmVyc2lvbiBvZiB0aGUgc291cmNlIG1hcCBzcGVjIHRoaXMgbWFwIGlzIGZvbGxvd2luZy5cbiAqICAgLSBzb3VyY2VzOiBBbiBhcnJheSBvZiBVUkxzIHRvIHRoZSBvcmlnaW5hbCBzb3VyY2UgZmlsZXMuXG4gKiAgIC0gbmFtZXM6IEFuIGFycmF5IG9mIGlkZW50aWZpZXJzIHdoaWNoIGNhbiBiZSByZWZlcnJlbmNlZCBieSBpbmRpdmlkdWFsIG1hcHBpbmdzLlxuICogICAtIHNvdXJjZVJvb3Q6IE9wdGlvbmFsLiBUaGUgVVJMIHJvb3QgZnJvbSB3aGljaCBhbGwgc291cmNlcyBhcmUgcmVsYXRpdmUuXG4gKiAgIC0gc291cmNlc0NvbnRlbnQ6IE9wdGlvbmFsLiBBbiBhcnJheSBvZiBjb250ZW50cyBvZiB0aGUgb3JpZ2luYWwgc291cmNlIGZpbGVzLlxuICogICAtIG1hcHBpbmdzOiBBIHN0cmluZyBvZiBiYXNlNjQgVkxRcyB3aGljaCBjb250YWluIHRoZSBhY3R1YWwgbWFwcGluZ3MuXG4gKiAgIC0gZmlsZTogT3B0aW9uYWwuIFRoZSBnZW5lcmF0ZWQgZmlsZSB0aGlzIHNvdXJjZSBtYXAgaXMgYXNzb2NpYXRlZCB3aXRoLlxuICpcbiAqIEhlcmUgaXMgYW4gZXhhbXBsZSBzb3VyY2UgbWFwLCB0YWtlbiBmcm9tIHRoZSBzb3VyY2UgbWFwIHNwZWNbMF06XG4gKlxuICogICAgIHtcbiAqICAgICAgIHZlcnNpb24gOiAzLFxuICogICAgICAgZmlsZTogXCJvdXQuanNcIixcbiAqICAgICAgIHNvdXJjZVJvb3QgOiBcIlwiLFxuICogICAgICAgc291cmNlczogW1wiZm9vLmpzXCIsIFwiYmFyLmpzXCJdLFxuICogICAgICAgbmFtZXM6IFtcInNyY1wiLCBcIm1hcHNcIiwgXCJhcmVcIiwgXCJmdW5cIl0sXG4gKiAgICAgICBtYXBwaW5nczogXCJBQSxBQjs7QUJDREU7XCJcbiAqICAgICB9XG4gKlxuICogWzBdOiBodHRwczovL2RvY3MuZ29vZ2xlLmNvbS9kb2N1bWVudC9kLzFVMVJHQWVoUXdSeXBVVG92RjFLUmxwaU9GemUwYi1fMmdjNmZBSDBLWTBrL2VkaXQ/cGxpPTEjXG4gKi9cbmZ1bmN0aW9uIEJhc2ljU291cmNlTWFwQ29uc3VtZXIoYVNvdXJjZU1hcCkge1xuICB2YXIgc291cmNlTWFwID0gYVNvdXJjZU1hcDtcbiAgaWYgKHR5cGVvZiBhU291cmNlTWFwID09PSAnc3RyaW5nJykge1xuICAgIHNvdXJjZU1hcCA9IEpTT04ucGFyc2UoYVNvdXJjZU1hcC5yZXBsYWNlKC9eXFwpXFxdXFx9Jy8sICcnKSk7XG4gIH1cblxuICB2YXIgdmVyc2lvbiA9IHV0aWwuZ2V0QXJnKHNvdXJjZU1hcCwgJ3ZlcnNpb24nKTtcbiAgdmFyIHNvdXJjZXMgPSB1dGlsLmdldEFyZyhzb3VyY2VNYXAsICdzb3VyY2VzJyk7XG4gIC8vIFNhc3MgMy4zIGxlYXZlcyBvdXQgdGhlICduYW1lcycgYXJyYXksIHNvIHdlIGRldmlhdGUgZnJvbSB0aGUgc3BlYyAod2hpY2hcbiAgLy8gcmVxdWlyZXMgdGhlIGFycmF5KSB0byBwbGF5IG5pY2UgaGVyZS5cbiAgdmFyIG5hbWVzID0gdXRpbC5nZXRBcmcoc291cmNlTWFwLCAnbmFtZXMnLCBbXSk7XG4gIHZhciBzb3VyY2VSb290ID0gdXRpbC5nZXRBcmcoc291cmNlTWFwLCAnc291cmNlUm9vdCcsIG51bGwpO1xuICB2YXIgc291cmNlc0NvbnRlbnQgPSB1dGlsLmdldEFyZyhzb3VyY2VNYXAsICdzb3VyY2VzQ29udGVudCcsIG51bGwpO1xuICB2YXIgbWFwcGluZ3MgPSB1dGlsLmdldEFyZyhzb3VyY2VNYXAsICdtYXBwaW5ncycpO1xuICB2YXIgZmlsZSA9IHV0aWwuZ2V0QXJnKHNvdXJjZU1hcCwgJ2ZpbGUnLCBudWxsKTtcblxuICAvLyBPbmNlIGFnYWluLCBTYXNzIGRldmlhdGVzIGZyb20gdGhlIHNwZWMgYW5kIHN1cHBsaWVzIHRoZSB2ZXJzaW9uIGFzIGFcbiAgLy8gc3RyaW5nIHJhdGhlciB0aGFuIGEgbnVtYmVyLCBzbyB3ZSB1c2UgbG9vc2UgZXF1YWxpdHkgY2hlY2tpbmcgaGVyZS5cbiAgaWYgKHZlcnNpb24gIT0gdGhpcy5fdmVyc2lvbikge1xuICAgIHRocm93IG5ldyBFcnJvcignVW5zdXBwb3J0ZWQgdmVyc2lvbjogJyArIHZlcnNpb24pO1xuICB9XG5cbiAgc291cmNlcyA9IHNvdXJjZXNcbiAgICAubWFwKFN0cmluZylcbiAgICAvLyBTb21lIHNvdXJjZSBtYXBzIHByb2R1Y2UgcmVsYXRpdmUgc291cmNlIHBhdGhzIGxpa2UgXCIuL2Zvby5qc1wiIGluc3RlYWQgb2ZcbiAgICAvLyBcImZvby5qc1wiLiAgTm9ybWFsaXplIHRoZXNlIGZpcnN0IHNvIHRoYXQgZnV0dXJlIGNvbXBhcmlzb25zIHdpbGwgc3VjY2VlZC5cbiAgICAvLyBTZWUgYnVnemlsLmxhLzEwOTA3NjguXG4gICAgLm1hcCh1dGlsLm5vcm1hbGl6ZSlcbiAgICAvLyBBbHdheXMgZW5zdXJlIHRoYXQgYWJzb2x1dGUgc291cmNlcyBhcmUgaW50ZXJuYWxseSBzdG9yZWQgcmVsYXRpdmUgdG9cbiAgICAvLyB0aGUgc291cmNlIHJvb3QsIGlmIHRoZSBzb3VyY2Ugcm9vdCBpcyBhYnNvbHV0ZS4gTm90IGRvaW5nIHRoaXMgd291bGRcbiAgICAvLyBiZSBwYXJ0aWN1bGFybHkgcHJvYmxlbWF0aWMgd2hlbiB0aGUgc291cmNlIHJvb3QgaXMgYSBwcmVmaXggb2YgdGhlXG4gICAgLy8gc291cmNlICh2YWxpZCwgYnV0IHdoeT8/KS4gU2VlIGdpdGh1YiBpc3N1ZSAjMTk5IGFuZCBidWd6aWwubGEvMTE4ODk4Mi5cbiAgICAubWFwKGZ1bmN0aW9uIChzb3VyY2UpIHtcbiAgICAgIHJldHVybiBzb3VyY2VSb290ICYmIHV0aWwuaXNBYnNvbHV0ZShzb3VyY2VSb290KSAmJiB1dGlsLmlzQWJzb2x1dGUoc291cmNlKVxuICAgICAgICA/IHV0aWwucmVsYXRpdmUoc291cmNlUm9vdCwgc291cmNlKVxuICAgICAgICA6IHNvdXJjZTtcbiAgICB9KTtcblxuICAvLyBQYXNzIGB0cnVlYCBiZWxvdyB0byBhbGxvdyBkdXBsaWNhdGUgbmFtZXMgYW5kIHNvdXJjZXMuIFdoaWxlIHNvdXJjZSBtYXBzXG4gIC8vIGFyZSBpbnRlbmRlZCB0byBiZSBjb21wcmVzc2VkIGFuZCBkZWR1cGxpY2F0ZWQsIHRoZSBUeXBlU2NyaXB0IGNvbXBpbGVyXG4gIC8vIHNvbWV0aW1lcyBnZW5lcmF0ZXMgc291cmNlIG1hcHMgd2l0aCBkdXBsaWNhdGVzIGluIHRoZW0uIFNlZSBHaXRodWIgaXNzdWVcbiAgLy8gIzcyIGFuZCBidWd6aWwubGEvODg5NDkyLlxuICB0aGlzLl9uYW1lcyA9IEFycmF5U2V0LmZyb21BcnJheShuYW1lcy5tYXAoU3RyaW5nKSwgdHJ1ZSk7XG4gIHRoaXMuX3NvdXJjZXMgPSBBcnJheVNldC5mcm9tQXJyYXkoc291cmNlcywgdHJ1ZSk7XG5cbiAgdGhpcy5zb3VyY2VSb290ID0gc291cmNlUm9vdDtcbiAgdGhpcy5zb3VyY2VzQ29udGVudCA9IHNvdXJjZXNDb250ZW50O1xuICB0aGlzLl9tYXBwaW5ncyA9IG1hcHBpbmdzO1xuICB0aGlzLmZpbGUgPSBmaWxlO1xufVxuXG5CYXNpY1NvdXJjZU1hcENvbnN1bWVyLnByb3RvdHlwZSA9IE9iamVjdC5jcmVhdGUoU291cmNlTWFwQ29uc3VtZXIucHJvdG90eXBlKTtcbkJhc2ljU291cmNlTWFwQ29uc3VtZXIucHJvdG90eXBlLmNvbnN1bWVyID0gU291cmNlTWFwQ29uc3VtZXI7XG5cbi8qKlxuICogQ3JlYXRlIGEgQmFzaWNTb3VyY2VNYXBDb25zdW1lciBmcm9tIGEgU291cmNlTWFwR2VuZXJhdG9yLlxuICpcbiAqIEBwYXJhbSBTb3VyY2VNYXBHZW5lcmF0b3IgYVNvdXJjZU1hcFxuICogICAgICAgIFRoZSBzb3VyY2UgbWFwIHRoYXQgd2lsbCBiZSBjb25zdW1lZC5cbiAqIEByZXR1cm5zIEJhc2ljU291cmNlTWFwQ29uc3VtZXJcbiAqL1xuQmFzaWNTb3VyY2VNYXBDb25zdW1lci5mcm9tU291cmNlTWFwID1cbiAgZnVuY3Rpb24gU291cmNlTWFwQ29uc3VtZXJfZnJvbVNvdXJjZU1hcChhU291cmNlTWFwKSB7XG4gICAgdmFyIHNtYyA9IE9iamVjdC5jcmVhdGUoQmFzaWNTb3VyY2VNYXBDb25zdW1lci5wcm90b3R5cGUpO1xuXG4gICAgdmFyIG5hbWVzID0gc21jLl9uYW1lcyA9IEFycmF5U2V0LmZyb21BcnJheShhU291cmNlTWFwLl9uYW1lcy50b0FycmF5KCksIHRydWUpO1xuICAgIHZhciBzb3VyY2VzID0gc21jLl9zb3VyY2VzID0gQXJyYXlTZXQuZnJvbUFycmF5KGFTb3VyY2VNYXAuX3NvdXJjZXMudG9BcnJheSgpLCB0cnVlKTtcbiAgICBzbWMuc291cmNlUm9vdCA9IGFTb3VyY2VNYXAuX3NvdXJjZVJvb3Q7XG4gICAgc21jLnNvdXJjZXNDb250ZW50ID0gYVNvdXJjZU1hcC5fZ2VuZXJhdGVTb3VyY2VzQ29udGVudChzbWMuX3NvdXJjZXMudG9BcnJheSgpLFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgc21jLnNvdXJjZVJvb3QpO1xuICAgIHNtYy5maWxlID0gYVNvdXJjZU1hcC5fZmlsZTtcblxuICAgIC8vIEJlY2F1c2Ugd2UgYXJlIG1vZGlmeWluZyB0aGUgZW50cmllcyAoYnkgY29udmVydGluZyBzdHJpbmcgc291cmNlcyBhbmRcbiAgICAvLyBuYW1lcyB0byBpbmRpY2VzIGludG8gdGhlIHNvdXJjZXMgYW5kIG5hbWVzIEFycmF5U2V0cyksIHdlIGhhdmUgdG8gbWFrZVxuICAgIC8vIGEgY29weSBvZiB0aGUgZW50cnkgb3IgZWxzZSBiYWQgdGhpbmdzIGhhcHBlbi4gU2hhcmVkIG11dGFibGUgc3RhdGVcbiAgICAvLyBzdHJpa2VzIGFnYWluISBTZWUgZ2l0aHViIGlzc3VlICMxOTEuXG5cbiAgICB2YXIgZ2VuZXJhdGVkTWFwcGluZ3MgPSBhU291cmNlTWFwLl9tYXBwaW5ncy50b0FycmF5KCkuc2xpY2UoKTtcbiAgICB2YXIgZGVzdEdlbmVyYXRlZE1hcHBpbmdzID0gc21jLl9fZ2VuZXJhdGVkTWFwcGluZ3MgPSBbXTtcbiAgICB2YXIgZGVzdE9yaWdpbmFsTWFwcGluZ3MgPSBzbWMuX19vcmlnaW5hbE1hcHBpbmdzID0gW107XG5cbiAgICBmb3IgKHZhciBpID0gMCwgbGVuZ3RoID0gZ2VuZXJhdGVkTWFwcGluZ3MubGVuZ3RoOyBpIDwgbGVuZ3RoOyBpKyspIHtcbiAgICAgIHZhciBzcmNNYXBwaW5nID0gZ2VuZXJhdGVkTWFwcGluZ3NbaV07XG4gICAgICB2YXIgZGVzdE1hcHBpbmcgPSBuZXcgTWFwcGluZztcbiAgICAgIGRlc3RNYXBwaW5nLmdlbmVyYXRlZExpbmUgPSBzcmNNYXBwaW5nLmdlbmVyYXRlZExpbmU7XG4gICAgICBkZXN0TWFwcGluZy5nZW5lcmF0ZWRDb2x1bW4gPSBzcmNNYXBwaW5nLmdlbmVyYXRlZENvbHVtbjtcblxuICAgICAgaWYgKHNyY01hcHBpbmcuc291cmNlKSB7XG4gICAgICAgIGRlc3RNYXBwaW5nLnNvdXJjZSA9IHNvdXJjZXMuaW5kZXhPZihzcmNNYXBwaW5nLnNvdXJjZSk7XG4gICAgICAgIGRlc3RNYXBwaW5nLm9yaWdpbmFsTGluZSA9IHNyY01hcHBpbmcub3JpZ2luYWxMaW5lO1xuICAgICAgICBkZXN0TWFwcGluZy5vcmlnaW5hbENvbHVtbiA9IHNyY01hcHBpbmcub3JpZ2luYWxDb2x1bW47XG5cbiAgICAgICAgaWYgKHNyY01hcHBpbmcubmFtZSkge1xuICAgICAgICAgIGRlc3RNYXBwaW5nLm5hbWUgPSBuYW1lcy5pbmRleE9mKHNyY01hcHBpbmcubmFtZSk7XG4gICAgICAgIH1cblxuICAgICAgICBkZXN0T3JpZ2luYWxNYXBwaW5ncy5wdXNoKGRlc3RNYXBwaW5nKTtcbiAgICAgIH1cblxuICAgICAgZGVzdEdlbmVyYXRlZE1hcHBpbmdzLnB1c2goZGVzdE1hcHBpbmcpO1xuICAgIH1cblxuICAgIHF1aWNrU29ydChzbWMuX19vcmlnaW5hbE1hcHBpbmdzLCB1dGlsLmNvbXBhcmVCeU9yaWdpbmFsUG9zaXRpb25zKTtcblxuICAgIHJldHVybiBzbWM7XG4gIH07XG5cbi8qKlxuICogVGhlIHZlcnNpb24gb2YgdGhlIHNvdXJjZSBtYXBwaW5nIHNwZWMgdGhhdCB3ZSBhcmUgY29uc3VtaW5nLlxuICovXG5CYXNpY1NvdXJjZU1hcENvbnN1bWVyLnByb3RvdHlwZS5fdmVyc2lvbiA9IDM7XG5cbi8qKlxuICogVGhlIGxpc3Qgb2Ygb3JpZ2luYWwgc291cmNlcy5cbiAqL1xuT2JqZWN0LmRlZmluZVByb3BlcnR5KEJhc2ljU291cmNlTWFwQ29uc3VtZXIucHJvdG90eXBlLCAnc291cmNlcycsIHtcbiAgZ2V0OiBmdW5jdGlvbiAoKSB7XG4gICAgcmV0dXJuIHRoaXMuX3NvdXJjZXMudG9BcnJheSgpLm1hcChmdW5jdGlvbiAocykge1xuICAgICAgcmV0dXJuIHRoaXMuc291cmNlUm9vdCAhPSBudWxsID8gdXRpbC5qb2luKHRoaXMuc291cmNlUm9vdCwgcykgOiBzO1xuICAgIH0sIHRoaXMpO1xuICB9XG59KTtcblxuLyoqXG4gKiBQcm92aWRlIHRoZSBKSVQgd2l0aCBhIG5pY2Ugc2hhcGUgLyBoaWRkZW4gY2xhc3MuXG4gKi9cbmZ1bmN0aW9uIE1hcHBpbmcoKSB7XG4gIHRoaXMuZ2VuZXJhdGVkTGluZSA9IDA7XG4gIHRoaXMuZ2VuZXJhdGVkQ29sdW1uID0gMDtcbiAgdGhpcy5zb3VyY2UgPSBudWxsO1xuICB0aGlzLm9yaWdpbmFsTGluZSA9IG51bGw7XG4gIHRoaXMub3JpZ2luYWxDb2x1bW4gPSBudWxsO1xuICB0aGlzLm5hbWUgPSBudWxsO1xufVxuXG4vKipcbiAqIFBhcnNlIHRoZSBtYXBwaW5ncyBpbiBhIHN0cmluZyBpbiB0byBhIGRhdGEgc3RydWN0dXJlIHdoaWNoIHdlIGNhbiBlYXNpbHlcbiAqIHF1ZXJ5ICh0aGUgb3JkZXJlZCBhcnJheXMgaW4gdGhlIGB0aGlzLl9fZ2VuZXJhdGVkTWFwcGluZ3NgIGFuZFxuICogYHRoaXMuX19vcmlnaW5hbE1hcHBpbmdzYCBwcm9wZXJ0aWVzKS5cbiAqL1xuQmFzaWNTb3VyY2VNYXBDb25zdW1lci5wcm90b3R5cGUuX3BhcnNlTWFwcGluZ3MgPVxuICBmdW5jdGlvbiBTb3VyY2VNYXBDb25zdW1lcl9wYXJzZU1hcHBpbmdzKGFTdHIsIGFTb3VyY2VSb290KSB7XG4gICAgdmFyIGdlbmVyYXRlZExpbmUgPSAxO1xuICAgIHZhciBwcmV2aW91c0dlbmVyYXRlZENvbHVtbiA9IDA7XG4gICAgdmFyIHByZXZpb3VzT3JpZ2luYWxMaW5lID0gMDtcbiAgICB2YXIgcHJldmlvdXNPcmlnaW5hbENvbHVtbiA9IDA7XG4gICAgdmFyIHByZXZpb3VzU291cmNlID0gMDtcbiAgICB2YXIgcHJldmlvdXNOYW1lID0gMDtcbiAgICB2YXIgbGVuZ3RoID0gYVN0ci5sZW5ndGg7XG4gICAgdmFyIGluZGV4ID0gMDtcbiAgICB2YXIgY2FjaGVkU2VnbWVudHMgPSB7fTtcbiAgICB2YXIgdGVtcCA9IHt9O1xuICAgIHZhciBvcmlnaW5hbE1hcHBpbmdzID0gW107XG4gICAgdmFyIGdlbmVyYXRlZE1hcHBpbmdzID0gW107XG4gICAgdmFyIG1hcHBpbmcsIHN0ciwgc2VnbWVudCwgZW5kLCB2YWx1ZTtcblxuICAgIHdoaWxlIChpbmRleCA8IGxlbmd0aCkge1xuICAgICAgaWYgKGFTdHIuY2hhckF0KGluZGV4KSA9PT0gJzsnKSB7XG4gICAgICAgIGdlbmVyYXRlZExpbmUrKztcbiAgICAgICAgaW5kZXgrKztcbiAgICAgICAgcHJldmlvdXNHZW5lcmF0ZWRDb2x1bW4gPSAwO1xuICAgICAgfVxuICAgICAgZWxzZSBpZiAoYVN0ci5jaGFyQXQoaW5kZXgpID09PSAnLCcpIHtcbiAgICAgICAgaW5kZXgrKztcbiAgICAgIH1cbiAgICAgIGVsc2Uge1xuICAgICAgICBtYXBwaW5nID0gbmV3IE1hcHBpbmcoKTtcbiAgICAgICAgbWFwcGluZy5nZW5lcmF0ZWRMaW5lID0gZ2VuZXJhdGVkTGluZTtcblxuICAgICAgICAvLyBCZWNhdXNlIGVhY2ggb2Zmc2V0IGlzIGVuY29kZWQgcmVsYXRpdmUgdG8gdGhlIHByZXZpb3VzIG9uZSxcbiAgICAgICAgLy8gbWFueSBzZWdtZW50cyBvZnRlbiBoYXZlIHRoZSBzYW1lIGVuY29kaW5nLiBXZSBjYW4gZXhwbG9pdCB0aGlzXG4gICAgICAgIC8vIGZhY3QgYnkgY2FjaGluZyB0aGUgcGFyc2VkIHZhcmlhYmxlIGxlbmd0aCBmaWVsZHMgb2YgZWFjaCBzZWdtZW50LFxuICAgICAgICAvLyBhbGxvd2luZyB1cyB0byBhdm9pZCBhIHNlY29uZCBwYXJzZSBpZiB3ZSBlbmNvdW50ZXIgdGhlIHNhbWVcbiAgICAgICAgLy8gc2VnbWVudCBhZ2Fpbi5cbiAgICAgICAgZm9yIChlbmQgPSBpbmRleDsgZW5kIDwgbGVuZ3RoOyBlbmQrKykge1xuICAgICAgICAgIGlmICh0aGlzLl9jaGFySXNNYXBwaW5nU2VwYXJhdG9yKGFTdHIsIGVuZCkpIHtcbiAgICAgICAgICAgIGJyZWFrO1xuICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgICAgICBzdHIgPSBhU3RyLnNsaWNlKGluZGV4LCBlbmQpO1xuXG4gICAgICAgIHNlZ21lbnQgPSBjYWNoZWRTZWdtZW50c1tzdHJdO1xuICAgICAgICBpZiAoc2VnbWVudCkge1xuICAgICAgICAgIGluZGV4ICs9IHN0ci5sZW5ndGg7XG4gICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgc2VnbWVudCA9IFtdO1xuICAgICAgICAgIHdoaWxlIChpbmRleCA8IGVuZCkge1xuICAgICAgICAgICAgYmFzZTY0VkxRLmRlY29kZShhU3RyLCBpbmRleCwgdGVtcCk7XG4gICAgICAgICAgICB2YWx1ZSA9IHRlbXAudmFsdWU7XG4gICAgICAgICAgICBpbmRleCA9IHRlbXAucmVzdDtcbiAgICAgICAgICAgIHNlZ21lbnQucHVzaCh2YWx1ZSk7XG4gICAgICAgICAgfVxuXG4gICAgICAgICAgaWYgKHNlZ21lbnQubGVuZ3RoID09PSAyKSB7XG4gICAgICAgICAgICB0aHJvdyBuZXcgRXJyb3IoJ0ZvdW5kIGEgc291cmNlLCBidXQgbm8gbGluZSBhbmQgY29sdW1uJyk7XG4gICAgICAgICAgfVxuXG4gICAgICAgICAgaWYgKHNlZ21lbnQubGVuZ3RoID09PSAzKSB7XG4gICAgICAgICAgICB0aHJvdyBuZXcgRXJyb3IoJ0ZvdW5kIGEgc291cmNlIGFuZCBsaW5lLCBidXQgbm8gY29sdW1uJyk7XG4gICAgICAgICAgfVxuXG4gICAgICAgICAgY2FjaGVkU2VnbWVudHNbc3RyXSA9IHNlZ21lbnQ7XG4gICAgICAgIH1cblxuICAgICAgICAvLyBHZW5lcmF0ZWQgY29sdW1uLlxuICAgICAgICBtYXBwaW5nLmdlbmVyYXRlZENvbHVtbiA9IHByZXZpb3VzR2VuZXJhdGVkQ29sdW1uICsgc2VnbWVudFswXTtcbiAgICAgICAgcHJldmlvdXNHZW5lcmF0ZWRDb2x1bW4gPSBtYXBwaW5nLmdlbmVyYXRlZENvbHVtbjtcblxuICAgICAgICBpZiAoc2VnbWVudC5sZW5ndGggPiAxKSB7XG4gICAgICAgICAgLy8gT3JpZ2luYWwgc291cmNlLlxuICAgICAgICAgIG1hcHBpbmcuc291cmNlID0gcHJldmlvdXNTb3VyY2UgKyBzZWdtZW50WzFdO1xuICAgICAgICAgIHByZXZpb3VzU291cmNlICs9IHNlZ21lbnRbMV07XG5cbiAgICAgICAgICAvLyBPcmlnaW5hbCBsaW5lLlxuICAgICAgICAgIG1hcHBpbmcub3JpZ2luYWxMaW5lID0gcHJldmlvdXNPcmlnaW5hbExpbmUgKyBzZWdtZW50WzJdO1xuICAgICAgICAgIHByZXZpb3VzT3JpZ2luYWxMaW5lID0gbWFwcGluZy5vcmlnaW5hbExpbmU7XG4gICAgICAgICAgLy8gTGluZXMgYXJlIHN0b3JlZCAwLWJhc2VkXG4gICAgICAgICAgbWFwcGluZy5vcmlnaW5hbExpbmUgKz0gMTtcblxuICAgICAgICAgIC8vIE9yaWdpbmFsIGNvbHVtbi5cbiAgICAgICAgICBtYXBwaW5nLm9yaWdpbmFsQ29sdW1uID0gcHJldmlvdXNPcmlnaW5hbENvbHVtbiArIHNlZ21lbnRbM107XG4gICAgICAgICAgcHJldmlvdXNPcmlnaW5hbENvbHVtbiA9IG1hcHBpbmcub3JpZ2luYWxDb2x1bW47XG5cbiAgICAgICAgICBpZiAoc2VnbWVudC5sZW5ndGggPiA0KSB7XG4gICAgICAgICAgICAvLyBPcmlnaW5hbCBuYW1lLlxuICAgICAgICAgICAgbWFwcGluZy5uYW1lID0gcHJldmlvdXNOYW1lICsgc2VnbWVudFs0XTtcbiAgICAgICAgICAgIHByZXZpb3VzTmFtZSArPSBzZWdtZW50WzRdO1xuICAgICAgICAgIH1cbiAgICAgICAgfVxuXG4gICAgICAgIGdlbmVyYXRlZE1hcHBpbmdzLnB1c2gobWFwcGluZyk7XG4gICAgICAgIGlmICh0eXBlb2YgbWFwcGluZy5vcmlnaW5hbExpbmUgPT09ICdudW1iZXInKSB7XG4gICAgICAgICAgb3JpZ2luYWxNYXBwaW5ncy5wdXNoKG1hcHBpbmcpO1xuICAgICAgICB9XG4gICAgICB9XG4gICAgfVxuXG4gICAgcXVpY2tTb3J0KGdlbmVyYXRlZE1hcHBpbmdzLCB1dGlsLmNvbXBhcmVCeUdlbmVyYXRlZFBvc2l0aW9uc0RlZmxhdGVkKTtcbiAgICB0aGlzLl9fZ2VuZXJhdGVkTWFwcGluZ3MgPSBnZW5lcmF0ZWRNYXBwaW5ncztcblxuICAgIHF1aWNrU29ydChvcmlnaW5hbE1hcHBpbmdzLCB1dGlsLmNvbXBhcmVCeU9yaWdpbmFsUG9zaXRpb25zKTtcbiAgICB0aGlzLl9fb3JpZ2luYWxNYXBwaW5ncyA9IG9yaWdpbmFsTWFwcGluZ3M7XG4gIH07XG5cbi8qKlxuICogRmluZCB0aGUgbWFwcGluZyB0aGF0IGJlc3QgbWF0Y2hlcyB0aGUgaHlwb3RoZXRpY2FsIFwibmVlZGxlXCIgbWFwcGluZyB0aGF0XG4gKiB3ZSBhcmUgc2VhcmNoaW5nIGZvciBpbiB0aGUgZ2l2ZW4gXCJoYXlzdGFja1wiIG9mIG1hcHBpbmdzLlxuICovXG5CYXNpY1NvdXJjZU1hcENvbnN1bWVyLnByb3RvdHlwZS5fZmluZE1hcHBpbmcgPVxuICBmdW5jdGlvbiBTb3VyY2VNYXBDb25zdW1lcl9maW5kTWFwcGluZyhhTmVlZGxlLCBhTWFwcGluZ3MsIGFMaW5lTmFtZSxcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgYUNvbHVtbk5hbWUsIGFDb21wYXJhdG9yLCBhQmlhcykge1xuICAgIC8vIFRvIHJldHVybiB0aGUgcG9zaXRpb24gd2UgYXJlIHNlYXJjaGluZyBmb3IsIHdlIG11c3QgZmlyc3QgZmluZCB0aGVcbiAgICAvLyBtYXBwaW5nIGZvciB0aGUgZ2l2ZW4gcG9zaXRpb24gYW5kIHRoZW4gcmV0dXJuIHRoZSBvcHBvc2l0ZSBwb3NpdGlvbiBpdFxuICAgIC8vIHBvaW50cyB0by4gQmVjYXVzZSB0aGUgbWFwcGluZ3MgYXJlIHNvcnRlZCwgd2UgY2FuIHVzZSBiaW5hcnkgc2VhcmNoIHRvXG4gICAgLy8gZmluZCB0aGUgYmVzdCBtYXBwaW5nLlxuXG4gICAgaWYgKGFOZWVkbGVbYUxpbmVOYW1lXSA8PSAwKSB7XG4gICAgICB0aHJvdyBuZXcgVHlwZUVycm9yKCdMaW5lIG11c3QgYmUgZ3JlYXRlciB0aGFuIG9yIGVxdWFsIHRvIDEsIGdvdCAnXG4gICAgICAgICAgICAgICAgICAgICAgICAgICsgYU5lZWRsZVthTGluZU5hbWVdKTtcbiAgICB9XG4gICAgaWYgKGFOZWVkbGVbYUNvbHVtbk5hbWVdIDwgMCkge1xuICAgICAgdGhyb3cgbmV3IFR5cGVFcnJvcignQ29sdW1uIG11c3QgYmUgZ3JlYXRlciB0aGFuIG9yIGVxdWFsIHRvIDAsIGdvdCAnXG4gICAgICAgICAgICAgICAgICAgICAgICAgICsgYU5lZWRsZVthQ29sdW1uTmFtZV0pO1xuICAgIH1cblxuICAgIHJldHVybiBiaW5hcnlTZWFyY2guc2VhcmNoKGFOZWVkbGUsIGFNYXBwaW5ncywgYUNvbXBhcmF0b3IsIGFCaWFzKTtcbiAgfTtcblxuLyoqXG4gKiBDb21wdXRlIHRoZSBsYXN0IGNvbHVtbiBmb3IgZWFjaCBnZW5lcmF0ZWQgbWFwcGluZy4gVGhlIGxhc3QgY29sdW1uIGlzXG4gKiBpbmNsdXNpdmUuXG4gKi9cbkJhc2ljU291cmNlTWFwQ29uc3VtZXIucHJvdG90eXBlLmNvbXB1dGVDb2x1bW5TcGFucyA9XG4gIGZ1bmN0aW9uIFNvdXJjZU1hcENvbnN1bWVyX2NvbXB1dGVDb2x1bW5TcGFucygpIHtcbiAgICBmb3IgKHZhciBpbmRleCA9IDA7IGluZGV4IDwgdGhpcy5fZ2VuZXJhdGVkTWFwcGluZ3MubGVuZ3RoOyArK2luZGV4KSB7XG4gICAgICB2YXIgbWFwcGluZyA9IHRoaXMuX2dlbmVyYXRlZE1hcHBpbmdzW2luZGV4XTtcblxuICAgICAgLy8gTWFwcGluZ3MgZG8gbm90IGNvbnRhaW4gYSBmaWVsZCBmb3IgdGhlIGxhc3QgZ2VuZXJhdGVkIGNvbHVtbnQuIFdlXG4gICAgICAvLyBjYW4gY29tZSB1cCB3aXRoIGFuIG9wdGltaXN0aWMgZXN0aW1hdGUsIGhvd2V2ZXIsIGJ5IGFzc3VtaW5nIHRoYXRcbiAgICAgIC8vIG1hcHBpbmdzIGFyZSBjb250aWd1b3VzIChpLmUuIGdpdmVuIHR3byBjb25zZWN1dGl2ZSBtYXBwaW5ncywgdGhlXG4gICAgICAvLyBmaXJzdCBtYXBwaW5nIGVuZHMgd2hlcmUgdGhlIHNlY29uZCBvbmUgc3RhcnRzKS5cbiAgICAgIGlmIChpbmRleCArIDEgPCB0aGlzLl9nZW5lcmF0ZWRNYXBwaW5ncy5sZW5ndGgpIHtcbiAgICAgICAgdmFyIG5leHRNYXBwaW5nID0gdGhpcy5fZ2VuZXJhdGVkTWFwcGluZ3NbaW5kZXggKyAxXTtcblxuICAgICAgICBpZiAobWFwcGluZy5nZW5lcmF0ZWRMaW5lID09PSBuZXh0TWFwcGluZy5nZW5lcmF0ZWRMaW5lKSB7XG4gICAgICAgICAgbWFwcGluZy5sYXN0R2VuZXJhdGVkQ29sdW1uID0gbmV4dE1hcHBpbmcuZ2VuZXJhdGVkQ29sdW1uIC0gMTtcbiAgICAgICAgICBjb250aW51ZTtcbiAgICAgICAgfVxuICAgICAgfVxuXG4gICAgICAvLyBUaGUgbGFzdCBtYXBwaW5nIGZvciBlYWNoIGxpbmUgc3BhbnMgdGhlIGVudGlyZSBsaW5lLlxuICAgICAgbWFwcGluZy5sYXN0R2VuZXJhdGVkQ29sdW1uID0gSW5maW5pdHk7XG4gICAgfVxuICB9O1xuXG4vKipcbiAqIFJldHVybnMgdGhlIG9yaWdpbmFsIHNvdXJjZSwgbGluZSwgYW5kIGNvbHVtbiBpbmZvcm1hdGlvbiBmb3IgdGhlIGdlbmVyYXRlZFxuICogc291cmNlJ3MgbGluZSBhbmQgY29sdW1uIHBvc2l0aW9ucyBwcm92aWRlZC4gVGhlIG9ubHkgYXJndW1lbnQgaXMgYW4gb2JqZWN0XG4gKiB3aXRoIHRoZSBmb2xsb3dpbmcgcHJvcGVydGllczpcbiAqXG4gKiAgIC0gbGluZTogVGhlIGxpbmUgbnVtYmVyIGluIHRoZSBnZW5lcmF0ZWQgc291cmNlLlxuICogICAtIGNvbHVtbjogVGhlIGNvbHVtbiBudW1iZXIgaW4gdGhlIGdlbmVyYXRlZCBzb3VyY2UuXG4gKiAgIC0gYmlhczogRWl0aGVyICdTb3VyY2VNYXBDb25zdW1lci5HUkVBVEVTVF9MT1dFUl9CT1VORCcgb3JcbiAqICAgICAnU291cmNlTWFwQ29uc3VtZXIuTEVBU1RfVVBQRVJfQk9VTkQnLiBTcGVjaWZpZXMgd2hldGhlciB0byByZXR1cm4gdGhlXG4gKiAgICAgY2xvc2VzdCBlbGVtZW50IHRoYXQgaXMgc21hbGxlciB0aGFuIG9yIGdyZWF0ZXIgdGhhbiB0aGUgb25lIHdlIGFyZVxuICogICAgIHNlYXJjaGluZyBmb3IsIHJlc3BlY3RpdmVseSwgaWYgdGhlIGV4YWN0IGVsZW1lbnQgY2Fubm90IGJlIGZvdW5kLlxuICogICAgIERlZmF1bHRzIHRvICdTb3VyY2VNYXBDb25zdW1lci5HUkVBVEVTVF9MT1dFUl9CT1VORCcuXG4gKlxuICogYW5kIGFuIG9iamVjdCBpcyByZXR1cm5lZCB3aXRoIHRoZSBmb2xsb3dpbmcgcHJvcGVydGllczpcbiAqXG4gKiAgIC0gc291cmNlOiBUaGUgb3JpZ2luYWwgc291cmNlIGZpbGUsIG9yIG51bGwuXG4gKiAgIC0gbGluZTogVGhlIGxpbmUgbnVtYmVyIGluIHRoZSBvcmlnaW5hbCBzb3VyY2UsIG9yIG51bGwuXG4gKiAgIC0gY29sdW1uOiBUaGUgY29sdW1uIG51bWJlciBpbiB0aGUgb3JpZ2luYWwgc291cmNlLCBvciBudWxsLlxuICogICAtIG5hbWU6IFRoZSBvcmlnaW5hbCBpZGVudGlmaWVyLCBvciBudWxsLlxuICovXG5CYXNpY1NvdXJjZU1hcENvbnN1bWVyLnByb3RvdHlwZS5vcmlnaW5hbFBvc2l0aW9uRm9yID1cbiAgZnVuY3Rpb24gU291cmNlTWFwQ29uc3VtZXJfb3JpZ2luYWxQb3NpdGlvbkZvcihhQXJncykge1xuICAgIHZhciBuZWVkbGUgPSB7XG4gICAgICBnZW5lcmF0ZWRMaW5lOiB1dGlsLmdldEFyZyhhQXJncywgJ2xpbmUnKSxcbiAgICAgIGdlbmVyYXRlZENvbHVtbjogdXRpbC5nZXRBcmcoYUFyZ3MsICdjb2x1bW4nKVxuICAgIH07XG5cbiAgICB2YXIgaW5kZXggPSB0aGlzLl9maW5kTWFwcGluZyhcbiAgICAgIG5lZWRsZSxcbiAgICAgIHRoaXMuX2dlbmVyYXRlZE1hcHBpbmdzLFxuICAgICAgXCJnZW5lcmF0ZWRMaW5lXCIsXG4gICAgICBcImdlbmVyYXRlZENvbHVtblwiLFxuICAgICAgdXRpbC5jb21wYXJlQnlHZW5lcmF0ZWRQb3NpdGlvbnNEZWZsYXRlZCxcbiAgICAgIHV0aWwuZ2V0QXJnKGFBcmdzLCAnYmlhcycsIFNvdXJjZU1hcENvbnN1bWVyLkdSRUFURVNUX0xPV0VSX0JPVU5EKVxuICAgICk7XG5cbiAgICBpZiAoaW5kZXggPj0gMCkge1xuICAgICAgdmFyIG1hcHBpbmcgPSB0aGlzLl9nZW5lcmF0ZWRNYXBwaW5nc1tpbmRleF07XG5cbiAgICAgIGlmIChtYXBwaW5nLmdlbmVyYXRlZExpbmUgPT09IG5lZWRsZS5nZW5lcmF0ZWRMaW5lKSB7XG4gICAgICAgIHZhciBzb3VyY2UgPSB1dGlsLmdldEFyZyhtYXBwaW5nLCAnc291cmNlJywgbnVsbCk7XG4gICAgICAgIGlmIChzb3VyY2UgIT09IG51bGwpIHtcbiAgICAgICAgICBzb3VyY2UgPSB0aGlzLl9zb3VyY2VzLmF0KHNvdXJjZSk7XG4gICAgICAgICAgaWYgKHRoaXMuc291cmNlUm9vdCAhPSBudWxsKSB7XG4gICAgICAgICAgICBzb3VyY2UgPSB1dGlsLmpvaW4odGhpcy5zb3VyY2VSb290LCBzb3VyY2UpO1xuICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgICAgICB2YXIgbmFtZSA9IHV0aWwuZ2V0QXJnKG1hcHBpbmcsICduYW1lJywgbnVsbCk7XG4gICAgICAgIGlmIChuYW1lICE9PSBudWxsKSB7XG4gICAgICAgICAgbmFtZSA9IHRoaXMuX25hbWVzLmF0KG5hbWUpO1xuICAgICAgICB9XG4gICAgICAgIHJldHVybiB7XG4gICAgICAgICAgc291cmNlOiBzb3VyY2UsXG4gICAgICAgICAgbGluZTogdXRpbC5nZXRBcmcobWFwcGluZywgJ29yaWdpbmFsTGluZScsIG51bGwpLFxuICAgICAgICAgIGNvbHVtbjogdXRpbC5nZXRBcmcobWFwcGluZywgJ29yaWdpbmFsQ29sdW1uJywgbnVsbCksXG4gICAgICAgICAgbmFtZTogbmFtZVxuICAgICAgICB9O1xuICAgICAgfVxuICAgIH1cblxuICAgIHJldHVybiB7XG4gICAgICBzb3VyY2U6IG51bGwsXG4gICAgICBsaW5lOiBudWxsLFxuICAgICAgY29sdW1uOiBudWxsLFxuICAgICAgbmFtZTogbnVsbFxuICAgIH07XG4gIH07XG5cbi8qKlxuICogUmV0dXJuIHRydWUgaWYgd2UgaGF2ZSB0aGUgc291cmNlIGNvbnRlbnQgZm9yIGV2ZXJ5IHNvdXJjZSBpbiB0aGUgc291cmNlXG4gKiBtYXAsIGZhbHNlIG90aGVyd2lzZS5cbiAqL1xuQmFzaWNTb3VyY2VNYXBDb25zdW1lci5wcm90b3R5cGUuaGFzQ29udGVudHNPZkFsbFNvdXJjZXMgPVxuICBmdW5jdGlvbiBCYXNpY1NvdXJjZU1hcENvbnN1bWVyX2hhc0NvbnRlbnRzT2ZBbGxTb3VyY2VzKCkge1xuICAgIGlmICghdGhpcy5zb3VyY2VzQ29udGVudCkge1xuICAgICAgcmV0dXJuIGZhbHNlO1xuICAgIH1cbiAgICByZXR1cm4gdGhpcy5zb3VyY2VzQ29udGVudC5sZW5ndGggPj0gdGhpcy5fc291cmNlcy5zaXplKCkgJiZcbiAgICAgICF0aGlzLnNvdXJjZXNDb250ZW50LnNvbWUoZnVuY3Rpb24gKHNjKSB7IHJldHVybiBzYyA9PSBudWxsOyB9KTtcbiAgfTtcblxuLyoqXG4gKiBSZXR1cm5zIHRoZSBvcmlnaW5hbCBzb3VyY2UgY29udGVudC4gVGhlIG9ubHkgYXJndW1lbnQgaXMgdGhlIHVybCBvZiB0aGVcbiAqIG9yaWdpbmFsIHNvdXJjZSBmaWxlLiBSZXR1cm5zIG51bGwgaWYgbm8gb3JpZ2luYWwgc291cmNlIGNvbnRlbnQgaXNcbiAqIGF2YWlsYWJsZS5cbiAqL1xuQmFzaWNTb3VyY2VNYXBDb25zdW1lci5wcm90b3R5cGUuc291cmNlQ29udGVudEZvciA9XG4gIGZ1bmN0aW9uIFNvdXJjZU1hcENvbnN1bWVyX3NvdXJjZUNvbnRlbnRGb3IoYVNvdXJjZSwgbnVsbE9uTWlzc2luZykge1xuICAgIGlmICghdGhpcy5zb3VyY2VzQ29udGVudCkge1xuICAgICAgcmV0dXJuIG51bGw7XG4gICAgfVxuXG4gICAgaWYgKHRoaXMuc291cmNlUm9vdCAhPSBudWxsKSB7XG4gICAgICBhU291cmNlID0gdXRpbC5yZWxhdGl2ZSh0aGlzLnNvdXJjZVJvb3QsIGFTb3VyY2UpO1xuICAgIH1cblxuICAgIGlmICh0aGlzLl9zb3VyY2VzLmhhcyhhU291cmNlKSkge1xuICAgICAgcmV0dXJuIHRoaXMuc291cmNlc0NvbnRlbnRbdGhpcy5fc291cmNlcy5pbmRleE9mKGFTb3VyY2UpXTtcbiAgICB9XG5cbiAgICB2YXIgdXJsO1xuICAgIGlmICh0aGlzLnNvdXJjZVJvb3QgIT0gbnVsbFxuICAgICAgICAmJiAodXJsID0gdXRpbC51cmxQYXJzZSh0aGlzLnNvdXJjZVJvb3QpKSkge1xuICAgICAgLy8gWFhYOiBmaWxlOi8vIFVSSXMgYW5kIGFic29sdXRlIHBhdGhzIGxlYWQgdG8gdW5leHBlY3RlZCBiZWhhdmlvciBmb3JcbiAgICAgIC8vIG1hbnkgdXNlcnMuIFdlIGNhbiBoZWxwIHRoZW0gb3V0IHdoZW4gdGhleSBleHBlY3QgZmlsZTovLyBVUklzIHRvXG4gICAgICAvLyBiZWhhdmUgbGlrZSBpdCB3b3VsZCBpZiB0aGV5IHdlcmUgcnVubmluZyBhIGxvY2FsIEhUVFAgc2VydmVyLiBTZWVcbiAgICAgIC8vIGh0dHBzOi8vYnVnemlsbGEubW96aWxsYS5vcmcvc2hvd19idWcuY2dpP2lkPTg4NTU5Ny5cbiAgICAgIHZhciBmaWxlVXJpQWJzUGF0aCA9IGFTb3VyY2UucmVwbGFjZSgvXmZpbGU6XFwvXFwvLywgXCJcIik7XG4gICAgICBpZiAodXJsLnNjaGVtZSA9PSBcImZpbGVcIlxuICAgICAgICAgICYmIHRoaXMuX3NvdXJjZXMuaGFzKGZpbGVVcmlBYnNQYXRoKSkge1xuICAgICAgICByZXR1cm4gdGhpcy5zb3VyY2VzQ29udGVudFt0aGlzLl9zb3VyY2VzLmluZGV4T2YoZmlsZVVyaUFic1BhdGgpXVxuICAgICAgfVxuXG4gICAgICBpZiAoKCF1cmwucGF0aCB8fCB1cmwucGF0aCA9PSBcIi9cIilcbiAgICAgICAgICAmJiB0aGlzLl9zb3VyY2VzLmhhcyhcIi9cIiArIGFTb3VyY2UpKSB7XG4gICAgICAgIHJldHVybiB0aGlzLnNvdXJjZXNDb250ZW50W3RoaXMuX3NvdXJjZXMuaW5kZXhPZihcIi9cIiArIGFTb3VyY2UpXTtcbiAgICAgIH1cbiAgICB9XG5cbiAgICAvLyBUaGlzIGZ1bmN0aW9uIGlzIHVzZWQgcmVjdXJzaXZlbHkgZnJvbVxuICAgIC8vIEluZGV4ZWRTb3VyY2VNYXBDb25zdW1lci5wcm90b3R5cGUuc291cmNlQ29udGVudEZvci4gSW4gdGhhdCBjYXNlLCB3ZVxuICAgIC8vIGRvbid0IHdhbnQgdG8gdGhyb3cgaWYgd2UgY2FuJ3QgZmluZCB0aGUgc291cmNlIC0gd2UganVzdCB3YW50IHRvXG4gICAgLy8gcmV0dXJuIG51bGwsIHNvIHdlIHByb3ZpZGUgYSBmbGFnIHRvIGV4aXQgZ3JhY2VmdWxseS5cbiAgICBpZiAobnVsbE9uTWlzc2luZykge1xuICAgICAgcmV0dXJuIG51bGw7XG4gICAgfVxuICAgIGVsc2Uge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKCdcIicgKyBhU291cmNlICsgJ1wiIGlzIG5vdCBpbiB0aGUgU291cmNlTWFwLicpO1xuICAgIH1cbiAgfTtcblxuLyoqXG4gKiBSZXR1cm5zIHRoZSBnZW5lcmF0ZWQgbGluZSBhbmQgY29sdW1uIGluZm9ybWF0aW9uIGZvciB0aGUgb3JpZ2luYWwgc291cmNlLFxuICogbGluZSwgYW5kIGNvbHVtbiBwb3NpdGlvbnMgcHJvdmlkZWQuIFRoZSBvbmx5IGFyZ3VtZW50IGlzIGFuIG9iamVjdCB3aXRoXG4gKiB0aGUgZm9sbG93aW5nIHByb3BlcnRpZXM6XG4gKlxuICogICAtIHNvdXJjZTogVGhlIGZpbGVuYW1lIG9mIHRoZSBvcmlnaW5hbCBzb3VyY2UuXG4gKiAgIC0gbGluZTogVGhlIGxpbmUgbnVtYmVyIGluIHRoZSBvcmlnaW5hbCBzb3VyY2UuXG4gKiAgIC0gY29sdW1uOiBUaGUgY29sdW1uIG51bWJlciBpbiB0aGUgb3JpZ2luYWwgc291cmNlLlxuICogICAtIGJpYXM6IEVpdGhlciAnU291cmNlTWFwQ29uc3VtZXIuR1JFQVRFU1RfTE9XRVJfQk9VTkQnIG9yXG4gKiAgICAgJ1NvdXJjZU1hcENvbnN1bWVyLkxFQVNUX1VQUEVSX0JPVU5EJy4gU3BlY2lmaWVzIHdoZXRoZXIgdG8gcmV0dXJuIHRoZVxuICogICAgIGNsb3Nlc3QgZWxlbWVudCB0aGF0IGlzIHNtYWxsZXIgdGhhbiBvciBncmVhdGVyIHRoYW4gdGhlIG9uZSB3ZSBhcmVcbiAqICAgICBzZWFyY2hpbmcgZm9yLCByZXNwZWN0aXZlbHksIGlmIHRoZSBleGFjdCBlbGVtZW50IGNhbm5vdCBiZSBmb3VuZC5cbiAqICAgICBEZWZhdWx0cyB0byAnU291cmNlTWFwQ29uc3VtZXIuR1JFQVRFU1RfTE9XRVJfQk9VTkQnLlxuICpcbiAqIGFuZCBhbiBvYmplY3QgaXMgcmV0dXJuZWQgd2l0aCB0aGUgZm9sbG93aW5nIHByb3BlcnRpZXM6XG4gKlxuICogICAtIGxpbmU6IFRoZSBsaW5lIG51bWJlciBpbiB0aGUgZ2VuZXJhdGVkIHNvdXJjZSwgb3IgbnVsbC5cbiAqICAgLSBjb2x1bW46IFRoZSBjb2x1bW4gbnVtYmVyIGluIHRoZSBnZW5lcmF0ZWQgc291cmNlLCBvciBudWxsLlxuICovXG5CYXNpY1NvdXJjZU1hcENvbnN1bWVyLnByb3RvdHlwZS5nZW5lcmF0ZWRQb3NpdGlvbkZvciA9XG4gIGZ1bmN0aW9uIFNvdXJjZU1hcENvbnN1bWVyX2dlbmVyYXRlZFBvc2l0aW9uRm9yKGFBcmdzKSB7XG4gICAgdmFyIHNvdXJjZSA9IHV0aWwuZ2V0QXJnKGFBcmdzLCAnc291cmNlJyk7XG4gICAgaWYgKHRoaXMuc291cmNlUm9vdCAhPSBudWxsKSB7XG4gICAgICBzb3VyY2UgPSB1dGlsLnJlbGF0aXZlKHRoaXMuc291cmNlUm9vdCwgc291cmNlKTtcbiAgICB9XG4gICAgaWYgKCF0aGlzLl9zb3VyY2VzLmhhcyhzb3VyY2UpKSB7XG4gICAgICByZXR1cm4ge1xuICAgICAgICBsaW5lOiBudWxsLFxuICAgICAgICBjb2x1bW46IG51bGwsXG4gICAgICAgIGxhc3RDb2x1bW46IG51bGxcbiAgICAgIH07XG4gICAgfVxuICAgIHNvdXJjZSA9IHRoaXMuX3NvdXJjZXMuaW5kZXhPZihzb3VyY2UpO1xuXG4gICAgdmFyIG5lZWRsZSA9IHtcbiAgICAgIHNvdXJjZTogc291cmNlLFxuICAgICAgb3JpZ2luYWxMaW5lOiB1dGlsLmdldEFyZyhhQXJncywgJ2xpbmUnKSxcbiAgICAgIG9yaWdpbmFsQ29sdW1uOiB1dGlsLmdldEFyZyhhQXJncywgJ2NvbHVtbicpXG4gICAgfTtcblxuICAgIHZhciBpbmRleCA9IHRoaXMuX2ZpbmRNYXBwaW5nKFxuICAgICAgbmVlZGxlLFxuICAgICAgdGhpcy5fb3JpZ2luYWxNYXBwaW5ncyxcbiAgICAgIFwib3JpZ2luYWxMaW5lXCIsXG4gICAgICBcIm9yaWdpbmFsQ29sdW1uXCIsXG4gICAgICB1dGlsLmNvbXBhcmVCeU9yaWdpbmFsUG9zaXRpb25zLFxuICAgICAgdXRpbC5nZXRBcmcoYUFyZ3MsICdiaWFzJywgU291cmNlTWFwQ29uc3VtZXIuR1JFQVRFU1RfTE9XRVJfQk9VTkQpXG4gICAgKTtcblxuICAgIGlmIChpbmRleCA+PSAwKSB7XG4gICAgICB2YXIgbWFwcGluZyA9IHRoaXMuX29yaWdpbmFsTWFwcGluZ3NbaW5kZXhdO1xuXG4gICAgICBpZiAobWFwcGluZy5zb3VyY2UgPT09IG5lZWRsZS5zb3VyY2UpIHtcbiAgICAgICAgcmV0dXJuIHtcbiAgICAgICAgICBsaW5lOiB1dGlsLmdldEFyZyhtYXBwaW5nLCAnZ2VuZXJhdGVkTGluZScsIG51bGwpLFxuICAgICAgICAgIGNvbHVtbjogdXRpbC5nZXRBcmcobWFwcGluZywgJ2dlbmVyYXRlZENvbHVtbicsIG51bGwpLFxuICAgICAgICAgIGxhc3RDb2x1bW46IHV0aWwuZ2V0QXJnKG1hcHBpbmcsICdsYXN0R2VuZXJhdGVkQ29sdW1uJywgbnVsbClcbiAgICAgICAgfTtcbiAgICAgIH1cbiAgICB9XG5cbiAgICByZXR1cm4ge1xuICAgICAgbGluZTogbnVsbCxcbiAgICAgIGNvbHVtbjogbnVsbCxcbiAgICAgIGxhc3RDb2x1bW46IG51bGxcbiAgICB9O1xuICB9O1xuXG5leHBvcnRzLkJhc2ljU291cmNlTWFwQ29uc3VtZXIgPSBCYXNpY1NvdXJjZU1hcENvbnN1bWVyO1xuXG4vKipcbiAqIEFuIEluZGV4ZWRTb3VyY2VNYXBDb25zdW1lciBpbnN0YW5jZSByZXByZXNlbnRzIGEgcGFyc2VkIHNvdXJjZSBtYXAgd2hpY2hcbiAqIHdlIGNhbiBxdWVyeSBmb3IgaW5mb3JtYXRpb24uIEl0IGRpZmZlcnMgZnJvbSBCYXNpY1NvdXJjZU1hcENvbnN1bWVyIGluXG4gKiB0aGF0IGl0IHRha2VzIFwiaW5kZXhlZFwiIHNvdXJjZSBtYXBzIChpLmUuIG9uZXMgd2l0aCBhIFwic2VjdGlvbnNcIiBmaWVsZCkgYXNcbiAqIGlucHV0LlxuICpcbiAqIFRoZSBvbmx5IHBhcmFtZXRlciBpcyBhIHJhdyBzb3VyY2UgbWFwIChlaXRoZXIgYXMgYSBKU09OIHN0cmluZywgb3IgYWxyZWFkeVxuICogcGFyc2VkIHRvIGFuIG9iamVjdCkuIEFjY29yZGluZyB0byB0aGUgc3BlYyBmb3IgaW5kZXhlZCBzb3VyY2UgbWFwcywgdGhleVxuICogaGF2ZSB0aGUgZm9sbG93aW5nIGF0dHJpYnV0ZXM6XG4gKlxuICogICAtIHZlcnNpb246IFdoaWNoIHZlcnNpb24gb2YgdGhlIHNvdXJjZSBtYXAgc3BlYyB0aGlzIG1hcCBpcyBmb2xsb3dpbmcuXG4gKiAgIC0gZmlsZTogT3B0aW9uYWwuIFRoZSBnZW5lcmF0ZWQgZmlsZSB0aGlzIHNvdXJjZSBtYXAgaXMgYXNzb2NpYXRlZCB3aXRoLlxuICogICAtIHNlY3Rpb25zOiBBIGxpc3Qgb2Ygc2VjdGlvbiBkZWZpbml0aW9ucy5cbiAqXG4gKiBFYWNoIHZhbHVlIHVuZGVyIHRoZSBcInNlY3Rpb25zXCIgZmllbGQgaGFzIHR3byBmaWVsZHM6XG4gKiAgIC0gb2Zmc2V0OiBUaGUgb2Zmc2V0IGludG8gdGhlIG9yaWdpbmFsIHNwZWNpZmllZCBhdCB3aGljaCB0aGlzIHNlY3Rpb25cbiAqICAgICAgIGJlZ2lucyB0byBhcHBseSwgZGVmaW5lZCBhcyBhbiBvYmplY3Qgd2l0aCBhIFwibGluZVwiIGFuZCBcImNvbHVtblwiXG4gKiAgICAgICBmaWVsZC5cbiAqICAgLSBtYXA6IEEgc291cmNlIG1hcCBkZWZpbml0aW9uLiBUaGlzIHNvdXJjZSBtYXAgY291bGQgYWxzbyBiZSBpbmRleGVkLFxuICogICAgICAgYnV0IGRvZXNuJ3QgaGF2ZSB0byBiZS5cbiAqXG4gKiBJbnN0ZWFkIG9mIHRoZSBcIm1hcFwiIGZpZWxkLCBpdCdzIGFsc28gcG9zc2libGUgdG8gaGF2ZSBhIFwidXJsXCIgZmllbGRcbiAqIHNwZWNpZnlpbmcgYSBVUkwgdG8gcmV0cmlldmUgYSBzb3VyY2UgbWFwIGZyb20sIGJ1dCB0aGF0J3MgY3VycmVudGx5XG4gKiB1bnN1cHBvcnRlZC5cbiAqXG4gKiBIZXJlJ3MgYW4gZXhhbXBsZSBzb3VyY2UgbWFwLCB0YWtlbiBmcm9tIHRoZSBzb3VyY2UgbWFwIHNwZWNbMF0sIGJ1dFxuICogbW9kaWZpZWQgdG8gb21pdCBhIHNlY3Rpb24gd2hpY2ggdXNlcyB0aGUgXCJ1cmxcIiBmaWVsZC5cbiAqXG4gKiAge1xuICogICAgdmVyc2lvbiA6IDMsXG4gKiAgICBmaWxlOiBcImFwcC5qc1wiLFxuICogICAgc2VjdGlvbnM6IFt7XG4gKiAgICAgIG9mZnNldDoge2xpbmU6MTAwLCBjb2x1bW46MTB9LFxuICogICAgICBtYXA6IHtcbiAqICAgICAgICB2ZXJzaW9uIDogMyxcbiAqICAgICAgICBmaWxlOiBcInNlY3Rpb24uanNcIixcbiAqICAgICAgICBzb3VyY2VzOiBbXCJmb28uanNcIiwgXCJiYXIuanNcIl0sXG4gKiAgICAgICAgbmFtZXM6IFtcInNyY1wiLCBcIm1hcHNcIiwgXCJhcmVcIiwgXCJmdW5cIl0sXG4gKiAgICAgICAgbWFwcGluZ3M6IFwiQUFBQSxFOztBQkNERTtcIlxuICogICAgICB9XG4gKiAgICB9XSxcbiAqICB9XG4gKlxuICogWzBdOiBodHRwczovL2RvY3MuZ29vZ2xlLmNvbS9kb2N1bWVudC9kLzFVMVJHQWVoUXdSeXBVVG92RjFLUmxwaU9GemUwYi1fMmdjNmZBSDBLWTBrL2VkaXQjaGVhZGluZz1oLjUzNWVzM3hlcHJndFxuICovXG5mdW5jdGlvbiBJbmRleGVkU291cmNlTWFwQ29uc3VtZXIoYVNvdXJjZU1hcCkge1xuICB2YXIgc291cmNlTWFwID0gYVNvdXJjZU1hcDtcbiAgaWYgKHR5cGVvZiBhU291cmNlTWFwID09PSAnc3RyaW5nJykge1xuICAgIHNvdXJjZU1hcCA9IEpTT04ucGFyc2UoYVNvdXJjZU1hcC5yZXBsYWNlKC9eXFwpXFxdXFx9Jy8sICcnKSk7XG4gIH1cblxuICB2YXIgdmVyc2lvbiA9IHV0aWwuZ2V0QXJnKHNvdXJjZU1hcCwgJ3ZlcnNpb24nKTtcbiAgdmFyIHNlY3Rpb25zID0gdXRpbC5nZXRBcmcoc291cmNlTWFwLCAnc2VjdGlvbnMnKTtcblxuICBpZiAodmVyc2lvbiAhPSB0aGlzLl92ZXJzaW9uKSB7XG4gICAgdGhyb3cgbmV3IEVycm9yKCdVbnN1cHBvcnRlZCB2ZXJzaW9uOiAnICsgdmVyc2lvbik7XG4gIH1cblxuICB0aGlzLl9zb3VyY2VzID0gbmV3IEFycmF5U2V0KCk7XG4gIHRoaXMuX25hbWVzID0gbmV3IEFycmF5U2V0KCk7XG5cbiAgdmFyIGxhc3RPZmZzZXQgPSB7XG4gICAgbGluZTogLTEsXG4gICAgY29sdW1uOiAwXG4gIH07XG4gIHRoaXMuX3NlY3Rpb25zID0gc2VjdGlvbnMubWFwKGZ1bmN0aW9uIChzKSB7XG4gICAgaWYgKHMudXJsKSB7XG4gICAgICAvLyBUaGUgdXJsIGZpZWxkIHdpbGwgcmVxdWlyZSBzdXBwb3J0IGZvciBhc3luY2hyb25pY2l0eS5cbiAgICAgIC8vIFNlZSBodHRwczovL2dpdGh1Yi5jb20vbW96aWxsYS9zb3VyY2UtbWFwL2lzc3Vlcy8xNlxuICAgICAgdGhyb3cgbmV3IEVycm9yKCdTdXBwb3J0IGZvciB1cmwgZmllbGQgaW4gc2VjdGlvbnMgbm90IGltcGxlbWVudGVkLicpO1xuICAgIH1cbiAgICB2YXIgb2Zmc2V0ID0gdXRpbC5nZXRBcmcocywgJ29mZnNldCcpO1xuICAgIHZhciBvZmZzZXRMaW5lID0gdXRpbC5nZXRBcmcob2Zmc2V0LCAnbGluZScpO1xuICAgIHZhciBvZmZzZXRDb2x1bW4gPSB1dGlsLmdldEFyZyhvZmZzZXQsICdjb2x1bW4nKTtcblxuICAgIGlmIChvZmZzZXRMaW5lIDwgbGFzdE9mZnNldC5saW5lIHx8XG4gICAgICAgIChvZmZzZXRMaW5lID09PSBsYXN0T2Zmc2V0LmxpbmUgJiYgb2Zmc2V0Q29sdW1uIDwgbGFzdE9mZnNldC5jb2x1bW4pKSB7XG4gICAgICB0aHJvdyBuZXcgRXJyb3IoJ1NlY3Rpb24gb2Zmc2V0cyBtdXN0IGJlIG9yZGVyZWQgYW5kIG5vbi1vdmVybGFwcGluZy4nKTtcbiAgICB9XG4gICAgbGFzdE9mZnNldCA9IG9mZnNldDtcblxuICAgIHJldHVybiB7XG4gICAgICBnZW5lcmF0ZWRPZmZzZXQ6IHtcbiAgICAgICAgLy8gVGhlIG9mZnNldCBmaWVsZHMgYXJlIDAtYmFzZWQsIGJ1dCB3ZSB1c2UgMS1iYXNlZCBpbmRpY2VzIHdoZW5cbiAgICAgICAgLy8gZW5jb2RpbmcvZGVjb2RpbmcgZnJvbSBWTFEuXG4gICAgICAgIGdlbmVyYXRlZExpbmU6IG9mZnNldExpbmUgKyAxLFxuICAgICAgICBnZW5lcmF0ZWRDb2x1bW46IG9mZnNldENvbHVtbiArIDFcbiAgICAgIH0sXG4gICAgICBjb25zdW1lcjogbmV3IFNvdXJjZU1hcENvbnN1bWVyKHV0aWwuZ2V0QXJnKHMsICdtYXAnKSlcbiAgICB9XG4gIH0pO1xufVxuXG5JbmRleGVkU291cmNlTWFwQ29uc3VtZXIucHJvdG90eXBlID0gT2JqZWN0LmNyZWF0ZShTb3VyY2VNYXBDb25zdW1lci5wcm90b3R5cGUpO1xuSW5kZXhlZFNvdXJjZU1hcENvbnN1bWVyLnByb3RvdHlwZS5jb25zdHJ1Y3RvciA9IFNvdXJjZU1hcENvbnN1bWVyO1xuXG4vKipcbiAqIFRoZSB2ZXJzaW9uIG9mIHRoZSBzb3VyY2UgbWFwcGluZyBzcGVjIHRoYXQgd2UgYXJlIGNvbnN1bWluZy5cbiAqL1xuSW5kZXhlZFNvdXJjZU1hcENvbnN1bWVyLnByb3RvdHlwZS5fdmVyc2lvbiA9IDM7XG5cbi8qKlxuICogVGhlIGxpc3Qgb2Ygb3JpZ2luYWwgc291cmNlcy5cbiAqL1xuT2JqZWN0LmRlZmluZVByb3BlcnR5KEluZGV4ZWRTb3VyY2VNYXBDb25zdW1lci5wcm90b3R5cGUsICdzb3VyY2VzJywge1xuICBnZXQ6IGZ1bmN0aW9uICgpIHtcbiAgICB2YXIgc291cmNlcyA9IFtdO1xuICAgIGZvciAodmFyIGkgPSAwOyBpIDwgdGhpcy5fc2VjdGlvbnMubGVuZ3RoOyBpKyspIHtcbiAgICAgIGZvciAodmFyIGogPSAwOyBqIDwgdGhpcy5fc2VjdGlvbnNbaV0uY29uc3VtZXIuc291cmNlcy5sZW5ndGg7IGorKykge1xuICAgICAgICBzb3VyY2VzLnB1c2godGhpcy5fc2VjdGlvbnNbaV0uY29uc3VtZXIuc291cmNlc1tqXSk7XG4gICAgICB9XG4gICAgfVxuICAgIHJldHVybiBzb3VyY2VzO1xuICB9XG59KTtcblxuLyoqXG4gKiBSZXR1cm5zIHRoZSBvcmlnaW5hbCBzb3VyY2UsIGxpbmUsIGFuZCBjb2x1bW4gaW5mb3JtYXRpb24gZm9yIHRoZSBnZW5lcmF0ZWRcbiAqIHNvdXJjZSdzIGxpbmUgYW5kIGNvbHVtbiBwb3NpdGlvbnMgcHJvdmlkZWQuIFRoZSBvbmx5IGFyZ3VtZW50IGlzIGFuIG9iamVjdFxuICogd2l0aCB0aGUgZm9sbG93aW5nIHByb3BlcnRpZXM6XG4gKlxuICogICAtIGxpbmU6IFRoZSBsaW5lIG51bWJlciBpbiB0aGUgZ2VuZXJhdGVkIHNvdXJjZS5cbiAqICAgLSBjb2x1bW46IFRoZSBjb2x1bW4gbnVtYmVyIGluIHRoZSBnZW5lcmF0ZWQgc291cmNlLlxuICpcbiAqIGFuZCBhbiBvYmplY3QgaXMgcmV0dXJuZWQgd2l0aCB0aGUgZm9sbG93aW5nIHByb3BlcnRpZXM6XG4gKlxuICogICAtIHNvdXJjZTogVGhlIG9yaWdpbmFsIHNvdXJjZSBmaWxlLCBvciBudWxsLlxuICogICAtIGxpbmU6IFRoZSBsaW5lIG51bWJlciBpbiB0aGUgb3JpZ2luYWwgc291cmNlLCBvciBudWxsLlxuICogICAtIGNvbHVtbjogVGhlIGNvbHVtbiBudW1iZXIgaW4gdGhlIG9yaWdpbmFsIHNvdXJjZSwgb3IgbnVsbC5cbiAqICAgLSBuYW1lOiBUaGUgb3JpZ2luYWwgaWRlbnRpZmllciwgb3IgbnVsbC5cbiAqL1xuSW5kZXhlZFNvdXJjZU1hcENvbnN1bWVyLnByb3RvdHlwZS5vcmlnaW5hbFBvc2l0aW9uRm9yID1cbiAgZnVuY3Rpb24gSW5kZXhlZFNvdXJjZU1hcENvbnN1bWVyX29yaWdpbmFsUG9zaXRpb25Gb3IoYUFyZ3MpIHtcbiAgICB2YXIgbmVlZGxlID0ge1xuICAgICAgZ2VuZXJhdGVkTGluZTogdXRpbC5nZXRBcmcoYUFyZ3MsICdsaW5lJyksXG4gICAgICBnZW5lcmF0ZWRDb2x1bW46IHV0aWwuZ2V0QXJnKGFBcmdzLCAnY29sdW1uJylcbiAgICB9O1xuXG4gICAgLy8gRmluZCB0aGUgc2VjdGlvbiBjb250YWluaW5nIHRoZSBnZW5lcmF0ZWQgcG9zaXRpb24gd2UncmUgdHJ5aW5nIHRvIG1hcFxuICAgIC8vIHRvIGFuIG9yaWdpbmFsIHBvc2l0aW9uLlxuICAgIHZhciBzZWN0aW9uSW5kZXggPSBiaW5hcnlTZWFyY2guc2VhcmNoKG5lZWRsZSwgdGhpcy5fc2VjdGlvbnMsXG4gICAgICBmdW5jdGlvbihuZWVkbGUsIHNlY3Rpb24pIHtcbiAgICAgICAgdmFyIGNtcCA9IG5lZWRsZS5nZW5lcmF0ZWRMaW5lIC0gc2VjdGlvbi5nZW5lcmF0ZWRPZmZzZXQuZ2VuZXJhdGVkTGluZTtcbiAgICAgICAgaWYgKGNtcCkge1xuICAgICAgICAgIHJldHVybiBjbXA7XG4gICAgICAgIH1cblxuICAgICAgICByZXR1cm4gKG5lZWRsZS5nZW5lcmF0ZWRDb2x1bW4gLVxuICAgICAgICAgICAgICAgIHNlY3Rpb24uZ2VuZXJhdGVkT2Zmc2V0LmdlbmVyYXRlZENvbHVtbik7XG4gICAgICB9KTtcbiAgICB2YXIgc2VjdGlvbiA9IHRoaXMuX3NlY3Rpb25zW3NlY3Rpb25JbmRleF07XG5cbiAgICBpZiAoIXNlY3Rpb24pIHtcbiAgICAgIHJldHVybiB7XG4gICAgICAgIHNvdXJjZTogbnVsbCxcbiAgICAgICAgbGluZTogbnVsbCxcbiAgICAgICAgY29sdW1uOiBudWxsLFxuICAgICAgICBuYW1lOiBudWxsXG4gICAgICB9O1xuICAgIH1cblxuICAgIHJldHVybiBzZWN0aW9uLmNvbnN1bWVyLm9yaWdpbmFsUG9zaXRpb25Gb3Ioe1xuICAgICAgbGluZTogbmVlZGxlLmdlbmVyYXRlZExpbmUgLVxuICAgICAgICAoc2VjdGlvbi5nZW5lcmF0ZWRPZmZzZXQuZ2VuZXJhdGVkTGluZSAtIDEpLFxuICAgICAgY29sdW1uOiBuZWVkbGUuZ2VuZXJhdGVkQ29sdW1uIC1cbiAgICAgICAgKHNlY3Rpb24uZ2VuZXJhdGVkT2Zmc2V0LmdlbmVyYXRlZExpbmUgPT09IG5lZWRsZS5nZW5lcmF0ZWRMaW5lXG4gICAgICAgICA/IHNlY3Rpb24uZ2VuZXJhdGVkT2Zmc2V0LmdlbmVyYXRlZENvbHVtbiAtIDFcbiAgICAgICAgIDogMCksXG4gICAgICBiaWFzOiBhQXJncy5iaWFzXG4gICAgfSk7XG4gIH07XG5cbi8qKlxuICogUmV0dXJuIHRydWUgaWYgd2UgaGF2ZSB0aGUgc291cmNlIGNvbnRlbnQgZm9yIGV2ZXJ5IHNvdXJjZSBpbiB0aGUgc291cmNlXG4gKiBtYXAsIGZhbHNlIG90aGVyd2lzZS5cbiAqL1xuSW5kZXhlZFNvdXJjZU1hcENvbnN1bWVyLnByb3RvdHlwZS5oYXNDb250ZW50c09mQWxsU291cmNlcyA9XG4gIGZ1bmN0aW9uIEluZGV4ZWRTb3VyY2VNYXBDb25zdW1lcl9oYXNDb250ZW50c09mQWxsU291cmNlcygpIHtcbiAgICByZXR1cm4gdGhpcy5fc2VjdGlvbnMuZXZlcnkoZnVuY3Rpb24gKHMpIHtcbiAgICAgIHJldHVybiBzLmNvbnN1bWVyLmhhc0NvbnRlbnRzT2ZBbGxTb3VyY2VzKCk7XG4gICAgfSk7XG4gIH07XG5cbi8qKlxuICogUmV0dXJucyB0aGUgb3JpZ2luYWwgc291cmNlIGNvbnRlbnQuIFRoZSBvbmx5IGFyZ3VtZW50IGlzIHRoZSB1cmwgb2YgdGhlXG4gKiBvcmlnaW5hbCBzb3VyY2UgZmlsZS4gUmV0dXJucyBudWxsIGlmIG5vIG9yaWdpbmFsIHNvdXJjZSBjb250ZW50IGlzXG4gKiBhdmFpbGFibGUuXG4gKi9cbkluZGV4ZWRTb3VyY2VNYXBDb25zdW1lci5wcm90b3R5cGUuc291cmNlQ29udGVudEZvciA9XG4gIGZ1bmN0aW9uIEluZGV4ZWRTb3VyY2VNYXBDb25zdW1lcl9zb3VyY2VDb250ZW50Rm9yKGFTb3VyY2UsIG51bGxPbk1pc3NpbmcpIHtcbiAgICBmb3IgKHZhciBpID0gMDsgaSA8IHRoaXMuX3NlY3Rpb25zLmxlbmd0aDsgaSsrKSB7XG4gICAgICB2YXIgc2VjdGlvbiA9IHRoaXMuX3NlY3Rpb25zW2ldO1xuXG4gICAgICB2YXIgY29udGVudCA9IHNlY3Rpb24uY29uc3VtZXIuc291cmNlQ29udGVudEZvcihhU291cmNlLCB0cnVlKTtcbiAgICAgIGlmIChjb250ZW50KSB7XG4gICAgICAgIHJldHVybiBjb250ZW50O1xuICAgICAgfVxuICAgIH1cbiAgICBpZiAobnVsbE9uTWlzc2luZykge1xuICAgICAgcmV0dXJuIG51bGw7XG4gICAgfVxuICAgIGVsc2Uge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKCdcIicgKyBhU291cmNlICsgJ1wiIGlzIG5vdCBpbiB0aGUgU291cmNlTWFwLicpO1xuICAgIH1cbiAgfTtcblxuLyoqXG4gKiBSZXR1cm5zIHRoZSBnZW5lcmF0ZWQgbGluZSBhbmQgY29sdW1uIGluZm9ybWF0aW9uIGZvciB0aGUgb3JpZ2luYWwgc291cmNlLFxuICogbGluZSwgYW5kIGNvbHVtbiBwb3NpdGlvbnMgcHJvdmlkZWQuIFRoZSBvbmx5IGFyZ3VtZW50IGlzIGFuIG9iamVjdCB3aXRoXG4gKiB0aGUgZm9sbG93aW5nIHByb3BlcnRpZXM6XG4gKlxuICogICAtIHNvdXJjZTogVGhlIGZpbGVuYW1lIG9mIHRoZSBvcmlnaW5hbCBzb3VyY2UuXG4gKiAgIC0gbGluZTogVGhlIGxpbmUgbnVtYmVyIGluIHRoZSBvcmlnaW5hbCBzb3VyY2UuXG4gKiAgIC0gY29sdW1uOiBUaGUgY29sdW1uIG51bWJlciBpbiB0aGUgb3JpZ2luYWwgc291cmNlLlxuICpcbiAqIGFuZCBhbiBvYmplY3QgaXMgcmV0dXJuZWQgd2l0aCB0aGUgZm9sbG93aW5nIHByb3BlcnRpZXM6XG4gKlxuICogICAtIGxpbmU6IFRoZSBsaW5lIG51bWJlciBpbiB0aGUgZ2VuZXJhdGVkIHNvdXJjZSwgb3IgbnVsbC5cbiAqICAgLSBjb2x1bW46IFRoZSBjb2x1bW4gbnVtYmVyIGluIHRoZSBnZW5lcmF0ZWQgc291cmNlLCBvciBudWxsLlxuICovXG5JbmRleGVkU291cmNlTWFwQ29uc3VtZXIucHJvdG90eXBlLmdlbmVyYXRlZFBvc2l0aW9uRm9yID1cbiAgZnVuY3Rpb24gSW5kZXhlZFNvdXJjZU1hcENvbnN1bWVyX2dlbmVyYXRlZFBvc2l0aW9uRm9yKGFBcmdzKSB7XG4gICAgZm9yICh2YXIgaSA9IDA7IGkgPCB0aGlzLl9zZWN0aW9ucy5sZW5ndGg7IGkrKykge1xuICAgICAgdmFyIHNlY3Rpb24gPSB0aGlzLl9zZWN0aW9uc1tpXTtcblxuICAgICAgLy8gT25seSBjb25zaWRlciB0aGlzIHNlY3Rpb24gaWYgdGhlIHJlcXVlc3RlZCBzb3VyY2UgaXMgaW4gdGhlIGxpc3Qgb2ZcbiAgICAgIC8vIHNvdXJjZXMgb2YgdGhlIGNvbnN1bWVyLlxuICAgICAgaWYgKHNlY3Rpb24uY29uc3VtZXIuc291cmNlcy5pbmRleE9mKHV0aWwuZ2V0QXJnKGFBcmdzLCAnc291cmNlJykpID09PSAtMSkge1xuICAgICAgICBjb250aW51ZTtcbiAgICAgIH1cbiAgICAgIHZhciBnZW5lcmF0ZWRQb3NpdGlvbiA9IHNlY3Rpb24uY29uc3VtZXIuZ2VuZXJhdGVkUG9zaXRpb25Gb3IoYUFyZ3MpO1xuICAgICAgaWYgKGdlbmVyYXRlZFBvc2l0aW9uKSB7XG4gICAgICAgIHZhciByZXQgPSB7XG4gICAgICAgICAgbGluZTogZ2VuZXJhdGVkUG9zaXRpb24ubGluZSArXG4gICAgICAgICAgICAoc2VjdGlvbi5nZW5lcmF0ZWRPZmZzZXQuZ2VuZXJhdGVkTGluZSAtIDEpLFxuICAgICAgICAgIGNvbHVtbjogZ2VuZXJhdGVkUG9zaXRpb24uY29sdW1uICtcbiAgICAgICAgICAgIChzZWN0aW9uLmdlbmVyYXRlZE9mZnNldC5nZW5lcmF0ZWRMaW5lID09PSBnZW5lcmF0ZWRQb3NpdGlvbi5saW5lXG4gICAgICAgICAgICAgPyBzZWN0aW9uLmdlbmVyYXRlZE9mZnNldC5nZW5lcmF0ZWRDb2x1bW4gLSAxXG4gICAgICAgICAgICAgOiAwKVxuICAgICAgICB9O1xuICAgICAgICByZXR1cm4gcmV0O1xuICAgICAgfVxuICAgIH1cblxuICAgIHJldHVybiB7XG4gICAgICBsaW5lOiBudWxsLFxuICAgICAgY29sdW1uOiBudWxsXG4gICAgfTtcbiAgfTtcblxuLyoqXG4gKiBQYXJzZSB0aGUgbWFwcGluZ3MgaW4gYSBzdHJpbmcgaW4gdG8gYSBkYXRhIHN0cnVjdHVyZSB3aGljaCB3ZSBjYW4gZWFzaWx5XG4gKiBxdWVyeSAodGhlIG9yZGVyZWQgYXJyYXlzIGluIHRoZSBgdGhpcy5fX2dlbmVyYXRlZE1hcHBpbmdzYCBhbmRcbiAqIGB0aGlzLl9fb3JpZ2luYWxNYXBwaW5nc2AgcHJvcGVydGllcykuXG4gKi9cbkluZGV4ZWRTb3VyY2VNYXBDb25zdW1lci5wcm90b3R5cGUuX3BhcnNlTWFwcGluZ3MgPVxuICBmdW5jdGlvbiBJbmRleGVkU291cmNlTWFwQ29uc3VtZXJfcGFyc2VNYXBwaW5ncyhhU3RyLCBhU291cmNlUm9vdCkge1xuICAgIHRoaXMuX19nZW5lcmF0ZWRNYXBwaW5ncyA9IFtdO1xuICAgIHRoaXMuX19vcmlnaW5hbE1hcHBpbmdzID0gW107XG4gICAgZm9yICh2YXIgaSA9IDA7IGkgPCB0aGlzLl9zZWN0aW9ucy5sZW5ndGg7IGkrKykge1xuICAgICAgdmFyIHNlY3Rpb24gPSB0aGlzLl9zZWN0aW9uc1tpXTtcbiAgICAgIHZhciBzZWN0aW9uTWFwcGluZ3MgPSBzZWN0aW9uLmNvbnN1bWVyLl9nZW5lcmF0ZWRNYXBwaW5ncztcbiAgICAgIGZvciAodmFyIGogPSAwOyBqIDwgc2VjdGlvbk1hcHBpbmdzLmxlbmd0aDsgaisrKSB7XG4gICAgICAgIHZhciBtYXBwaW5nID0gc2VjdGlvbk1hcHBpbmdzW2pdO1xuXG4gICAgICAgIHZhciBzb3VyY2UgPSBzZWN0aW9uLmNvbnN1bWVyLl9zb3VyY2VzLmF0KG1hcHBpbmcuc291cmNlKTtcbiAgICAgICAgaWYgKHNlY3Rpb24uY29uc3VtZXIuc291cmNlUm9vdCAhPT0gbnVsbCkge1xuICAgICAgICAgIHNvdXJjZSA9IHV0aWwuam9pbihzZWN0aW9uLmNvbnN1bWVyLnNvdXJjZVJvb3QsIHNvdXJjZSk7XG4gICAgICAgIH1cbiAgICAgICAgdGhpcy5fc291cmNlcy5hZGQoc291cmNlKTtcbiAgICAgICAgc291cmNlID0gdGhpcy5fc291cmNlcy5pbmRleE9mKHNvdXJjZSk7XG5cbiAgICAgICAgdmFyIG5hbWUgPSBzZWN0aW9uLmNvbnN1bWVyLl9uYW1lcy5hdChtYXBwaW5nLm5hbWUpO1xuICAgICAgICB0aGlzLl9uYW1lcy5hZGQobmFtZSk7XG4gICAgICAgIG5hbWUgPSB0aGlzLl9uYW1lcy5pbmRleE9mKG5hbWUpO1xuXG4gICAgICAgIC8vIFRoZSBtYXBwaW5ncyBjb21pbmcgZnJvbSB0aGUgY29uc3VtZXIgZm9yIHRoZSBzZWN0aW9uIGhhdmVcbiAgICAgICAgLy8gZ2VuZXJhdGVkIHBvc2l0aW9ucyByZWxhdGl2ZSB0byB0aGUgc3RhcnQgb2YgdGhlIHNlY3Rpb24sIHNvIHdlXG4gICAgICAgIC8vIG5lZWQgdG8gb2Zmc2V0IHRoZW0gdG8gYmUgcmVsYXRpdmUgdG8gdGhlIHN0YXJ0IG9mIHRoZSBjb25jYXRlbmF0ZWRcbiAgICAgICAgLy8gZ2VuZXJhdGVkIGZpbGUuXG4gICAgICAgIHZhciBhZGp1c3RlZE1hcHBpbmcgPSB7XG4gICAgICAgICAgc291cmNlOiBzb3VyY2UsXG4gICAgICAgICAgZ2VuZXJhdGVkTGluZTogbWFwcGluZy5nZW5lcmF0ZWRMaW5lICtcbiAgICAgICAgICAgIChzZWN0aW9uLmdlbmVyYXRlZE9mZnNldC5nZW5lcmF0ZWRMaW5lIC0gMSksXG4gICAgICAgICAgZ2VuZXJhdGVkQ29sdW1uOiBtYXBwaW5nLmdlbmVyYXRlZENvbHVtbiArXG4gICAgICAgICAgICAoc2VjdGlvbi5nZW5lcmF0ZWRPZmZzZXQuZ2VuZXJhdGVkTGluZSA9PT0gbWFwcGluZy5nZW5lcmF0ZWRMaW5lXG4gICAgICAgICAgICA/IHNlY3Rpb24uZ2VuZXJhdGVkT2Zmc2V0LmdlbmVyYXRlZENvbHVtbiAtIDFcbiAgICAgICAgICAgIDogMCksXG4gICAgICAgICAgb3JpZ2luYWxMaW5lOiBtYXBwaW5nLm9yaWdpbmFsTGluZSxcbiAgICAgICAgICBvcmlnaW5hbENvbHVtbjogbWFwcGluZy5vcmlnaW5hbENvbHVtbixcbiAgICAgICAgICBuYW1lOiBuYW1lXG4gICAgICAgIH07XG5cbiAgICAgICAgdGhpcy5fX2dlbmVyYXRlZE1hcHBpbmdzLnB1c2goYWRqdXN0ZWRNYXBwaW5nKTtcbiAgICAgICAgaWYgKHR5cGVvZiBhZGp1c3RlZE1hcHBpbmcub3JpZ2luYWxMaW5lID09PSAnbnVtYmVyJykge1xuICAgICAgICAgIHRoaXMuX19vcmlnaW5hbE1hcHBpbmdzLnB1c2goYWRqdXN0ZWRNYXBwaW5nKTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgIH1cblxuICAgIHF1aWNrU29ydCh0aGlzLl9fZ2VuZXJhdGVkTWFwcGluZ3MsIHV0aWwuY29tcGFyZUJ5R2VuZXJhdGVkUG9zaXRpb25zRGVmbGF0ZWQpO1xuICAgIHF1aWNrU29ydCh0aGlzLl9fb3JpZ2luYWxNYXBwaW5ncywgdXRpbC5jb21wYXJlQnlPcmlnaW5hbFBvc2l0aW9ucyk7XG4gIH07XG5cbmV4cG9ydHMuSW5kZXhlZFNvdXJjZU1hcENvbnN1bWVyID0gSW5kZXhlZFNvdXJjZU1hcENvbnN1bWVyO1xuXG5cblxuLy8vLy8vLy8vLy8vLy8vLy8vXG4vLyBXRUJQQUNLIEZPT1RFUlxuLy8gLi9saWIvc291cmNlLW1hcC1jb25zdW1lci5qc1xuLy8gbW9kdWxlIGlkID0gN1xuLy8gbW9kdWxlIGNodW5rcyA9IDAiLCIvKiAtKi0gTW9kZToganM7IGpzLWluZGVudC1sZXZlbDogMjsgLSotICovXG4vKlxuICogQ29weXJpZ2h0IDIwMTEgTW96aWxsYSBGb3VuZGF0aW9uIGFuZCBjb250cmlidXRvcnNcbiAqIExpY2Vuc2VkIHVuZGVyIHRoZSBOZXcgQlNEIGxpY2Vuc2UuIFNlZSBMSUNFTlNFIG9yOlxuICogaHR0cDovL29wZW5zb3VyY2Uub3JnL2xpY2Vuc2VzL0JTRC0zLUNsYXVzZVxuICovXG5cbmV4cG9ydHMuR1JFQVRFU1RfTE9XRVJfQk9VTkQgPSAxO1xuZXhwb3J0cy5MRUFTVF9VUFBFUl9CT1VORCA9IDI7XG5cbi8qKlxuICogUmVjdXJzaXZlIGltcGxlbWVudGF0aW9uIG9mIGJpbmFyeSBzZWFyY2guXG4gKlxuICogQHBhcmFtIGFMb3cgSW5kaWNlcyBoZXJlIGFuZCBsb3dlciBkbyBub3QgY29udGFpbiB0aGUgbmVlZGxlLlxuICogQHBhcmFtIGFIaWdoIEluZGljZXMgaGVyZSBhbmQgaGlnaGVyIGRvIG5vdCBjb250YWluIHRoZSBuZWVkbGUuXG4gKiBAcGFyYW0gYU5lZWRsZSBUaGUgZWxlbWVudCBiZWluZyBzZWFyY2hlZCBmb3IuXG4gKiBAcGFyYW0gYUhheXN0YWNrIFRoZSBub24tZW1wdHkgYXJyYXkgYmVpbmcgc2VhcmNoZWQuXG4gKiBAcGFyYW0gYUNvbXBhcmUgRnVuY3Rpb24gd2hpY2ggdGFrZXMgdHdvIGVsZW1lbnRzIGFuZCByZXR1cm5zIC0xLCAwLCBvciAxLlxuICogQHBhcmFtIGFCaWFzIEVpdGhlciAnYmluYXJ5U2VhcmNoLkdSRUFURVNUX0xPV0VSX0JPVU5EJyBvclxuICogICAgICdiaW5hcnlTZWFyY2guTEVBU1RfVVBQRVJfQk9VTkQnLiBTcGVjaWZpZXMgd2hldGhlciB0byByZXR1cm4gdGhlXG4gKiAgICAgY2xvc2VzdCBlbGVtZW50IHRoYXQgaXMgc21hbGxlciB0aGFuIG9yIGdyZWF0ZXIgdGhhbiB0aGUgb25lIHdlIGFyZVxuICogICAgIHNlYXJjaGluZyBmb3IsIHJlc3BlY3RpdmVseSwgaWYgdGhlIGV4YWN0IGVsZW1lbnQgY2Fubm90IGJlIGZvdW5kLlxuICovXG5mdW5jdGlvbiByZWN1cnNpdmVTZWFyY2goYUxvdywgYUhpZ2gsIGFOZWVkbGUsIGFIYXlzdGFjaywgYUNvbXBhcmUsIGFCaWFzKSB7XG4gIC8vIFRoaXMgZnVuY3Rpb24gdGVybWluYXRlcyB3aGVuIG9uZSBvZiB0aGUgZm9sbG93aW5nIGlzIHRydWU6XG4gIC8vXG4gIC8vICAgMS4gV2UgZmluZCB0aGUgZXhhY3QgZWxlbWVudCB3ZSBhcmUgbG9va2luZyBmb3IuXG4gIC8vXG4gIC8vICAgMi4gV2UgZGlkIG5vdCBmaW5kIHRoZSBleGFjdCBlbGVtZW50LCBidXQgd2UgY2FuIHJldHVybiB0aGUgaW5kZXggb2ZcbiAgLy8gICAgICB0aGUgbmV4dC1jbG9zZXN0IGVsZW1lbnQuXG4gIC8vXG4gIC8vICAgMy4gV2UgZGlkIG5vdCBmaW5kIHRoZSBleGFjdCBlbGVtZW50LCBhbmQgdGhlcmUgaXMgbm8gbmV4dC1jbG9zZXN0XG4gIC8vICAgICAgZWxlbWVudCB0aGFuIHRoZSBvbmUgd2UgYXJlIHNlYXJjaGluZyBmb3IsIHNvIHdlIHJldHVybiAtMS5cbiAgdmFyIG1pZCA9IE1hdGguZmxvb3IoKGFIaWdoIC0gYUxvdykgLyAyKSArIGFMb3c7XG4gIHZhciBjbXAgPSBhQ29tcGFyZShhTmVlZGxlLCBhSGF5c3RhY2tbbWlkXSwgdHJ1ZSk7XG4gIGlmIChjbXAgPT09IDApIHtcbiAgICAvLyBGb3VuZCB0aGUgZWxlbWVudCB3ZSBhcmUgbG9va2luZyBmb3IuXG4gICAgcmV0dXJuIG1pZDtcbiAgfVxuICBlbHNlIGlmIChjbXAgPiAwKSB7XG4gICAgLy8gT3VyIG5lZWRsZSBpcyBncmVhdGVyIHRoYW4gYUhheXN0YWNrW21pZF0uXG4gICAgaWYgKGFIaWdoIC0gbWlkID4gMSkge1xuICAgICAgLy8gVGhlIGVsZW1lbnQgaXMgaW4gdGhlIHVwcGVyIGhhbGYuXG4gICAgICByZXR1cm4gcmVjdXJzaXZlU2VhcmNoKG1pZCwgYUhpZ2gsIGFOZWVkbGUsIGFIYXlzdGFjaywgYUNvbXBhcmUsIGFCaWFzKTtcbiAgICB9XG5cbiAgICAvLyBUaGUgZXhhY3QgbmVlZGxlIGVsZW1lbnQgd2FzIG5vdCBmb3VuZCBpbiB0aGlzIGhheXN0YWNrLiBEZXRlcm1pbmUgaWZcbiAgICAvLyB3ZSBhcmUgaW4gdGVybWluYXRpb24gY2FzZSAoMykgb3IgKDIpIGFuZCByZXR1cm4gdGhlIGFwcHJvcHJpYXRlIHRoaW5nLlxuICAgIGlmIChhQmlhcyA9PSBleHBvcnRzLkxFQVNUX1VQUEVSX0JPVU5EKSB7XG4gICAgICByZXR1cm4gYUhpZ2ggPCBhSGF5c3RhY2subGVuZ3RoID8gYUhpZ2ggOiAtMTtcbiAgICB9IGVsc2Uge1xuICAgICAgcmV0dXJuIG1pZDtcbiAgICB9XG4gIH1cbiAgZWxzZSB7XG4gICAgLy8gT3VyIG5lZWRsZSBpcyBsZXNzIHRoYW4gYUhheXN0YWNrW21pZF0uXG4gICAgaWYgKG1pZCAtIGFMb3cgPiAxKSB7XG4gICAgICAvLyBUaGUgZWxlbWVudCBpcyBpbiB0aGUgbG93ZXIgaGFsZi5cbiAgICAgIHJldHVybiByZWN1cnNpdmVTZWFyY2goYUxvdywgbWlkLCBhTmVlZGxlLCBhSGF5c3RhY2ssIGFDb21wYXJlLCBhQmlhcyk7XG4gICAgfVxuXG4gICAgLy8gd2UgYXJlIGluIHRlcm1pbmF0aW9uIGNhc2UgKDMpIG9yICgyKSBhbmQgcmV0dXJuIHRoZSBhcHByb3ByaWF0ZSB0aGluZy5cbiAgICBpZiAoYUJpYXMgPT0gZXhwb3J0cy5MRUFTVF9VUFBFUl9CT1VORCkge1xuICAgICAgcmV0dXJuIG1pZDtcbiAgICB9IGVsc2Uge1xuICAgICAgcmV0dXJuIGFMb3cgPCAwID8gLTEgOiBhTG93O1xuICAgIH1cbiAgfVxufVxuXG4vKipcbiAqIFRoaXMgaXMgYW4gaW1wbGVtZW50YXRpb24gb2YgYmluYXJ5IHNlYXJjaCB3aGljaCB3aWxsIGFsd2F5cyB0cnkgYW5kIHJldHVyblxuICogdGhlIGluZGV4IG9mIHRoZSBjbG9zZXN0IGVsZW1lbnQgaWYgdGhlcmUgaXMgbm8gZXhhY3QgaGl0LiBUaGlzIGlzIGJlY2F1c2VcbiAqIG1hcHBpbmdzIGJldHdlZW4gb3JpZ2luYWwgYW5kIGdlbmVyYXRlZCBsaW5lL2NvbCBwYWlycyBhcmUgc2luZ2xlIHBvaW50cyxcbiAqIGFuZCB0aGVyZSBpcyBhbiBpbXBsaWNpdCByZWdpb24gYmV0d2VlbiBlYWNoIG9mIHRoZW0sIHNvIGEgbWlzcyBqdXN0IG1lYW5zXG4gKiB0aGF0IHlvdSBhcmVuJ3Qgb24gdGhlIHZlcnkgc3RhcnQgb2YgYSByZWdpb24uXG4gKlxuICogQHBhcmFtIGFOZWVkbGUgVGhlIGVsZW1lbnQgeW91IGFyZSBsb29raW5nIGZvci5cbiAqIEBwYXJhbSBhSGF5c3RhY2sgVGhlIGFycmF5IHRoYXQgaXMgYmVpbmcgc2VhcmNoZWQuXG4gKiBAcGFyYW0gYUNvbXBhcmUgQSBmdW5jdGlvbiB3aGljaCB0YWtlcyB0aGUgbmVlZGxlIGFuZCBhbiBlbGVtZW50IGluIHRoZVxuICogICAgIGFycmF5IGFuZCByZXR1cm5zIC0xLCAwLCBvciAxIGRlcGVuZGluZyBvbiB3aGV0aGVyIHRoZSBuZWVkbGUgaXMgbGVzc1xuICogICAgIHRoYW4sIGVxdWFsIHRvLCBvciBncmVhdGVyIHRoYW4gdGhlIGVsZW1lbnQsIHJlc3BlY3RpdmVseS5cbiAqIEBwYXJhbSBhQmlhcyBFaXRoZXIgJ2JpbmFyeVNlYXJjaC5HUkVBVEVTVF9MT1dFUl9CT1VORCcgb3JcbiAqICAgICAnYmluYXJ5U2VhcmNoLkxFQVNUX1VQUEVSX0JPVU5EJy4gU3BlY2lmaWVzIHdoZXRoZXIgdG8gcmV0dXJuIHRoZVxuICogICAgIGNsb3Nlc3QgZWxlbWVudCB0aGF0IGlzIHNtYWxsZXIgdGhhbiBvciBncmVhdGVyIHRoYW4gdGhlIG9uZSB3ZSBhcmVcbiAqICAgICBzZWFyY2hpbmcgZm9yLCByZXNwZWN0aXZlbHksIGlmIHRoZSBleGFjdCBlbGVtZW50IGNhbm5vdCBiZSBmb3VuZC5cbiAqICAgICBEZWZhdWx0cyB0byAnYmluYXJ5U2VhcmNoLkdSRUFURVNUX0xPV0VSX0JPVU5EJy5cbiAqL1xuZXhwb3J0cy5zZWFyY2ggPSBmdW5jdGlvbiBzZWFyY2goYU5lZWRsZSwgYUhheXN0YWNrLCBhQ29tcGFyZSwgYUJpYXMpIHtcbiAgaWYgKGFIYXlzdGFjay5sZW5ndGggPT09IDApIHtcbiAgICByZXR1cm4gLTE7XG4gIH1cblxuICB2YXIgaW5kZXggPSByZWN1cnNpdmVTZWFyY2goLTEsIGFIYXlzdGFjay5sZW5ndGgsIGFOZWVkbGUsIGFIYXlzdGFjayxcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGFDb21wYXJlLCBhQmlhcyB8fCBleHBvcnRzLkdSRUFURVNUX0xPV0VSX0JPVU5EKTtcbiAgaWYgKGluZGV4IDwgMCkge1xuICAgIHJldHVybiAtMTtcbiAgfVxuXG4gIC8vIFdlIGhhdmUgZm91bmQgZWl0aGVyIHRoZSBleGFjdCBlbGVtZW50LCBvciB0aGUgbmV4dC1jbG9zZXN0IGVsZW1lbnQgdGhhblxuICAvLyB0aGUgb25lIHdlIGFyZSBzZWFyY2hpbmcgZm9yLiBIb3dldmVyLCB0aGVyZSBtYXkgYmUgbW9yZSB0aGFuIG9uZSBzdWNoXG4gIC8vIGVsZW1lbnQuIE1ha2Ugc3VyZSB3ZSBhbHdheXMgcmV0dXJuIHRoZSBzbWFsbGVzdCBvZiB0aGVzZS5cbiAgd2hpbGUgKGluZGV4IC0gMSA+PSAwKSB7XG4gICAgaWYgKGFDb21wYXJlKGFIYXlzdGFja1tpbmRleF0sIGFIYXlzdGFja1tpbmRleCAtIDFdLCB0cnVlKSAhPT0gMCkge1xuICAgICAgYnJlYWs7XG4gICAgfVxuICAgIC0taW5kZXg7XG4gIH1cblxuICByZXR1cm4gaW5kZXg7XG59O1xuXG5cblxuLy8vLy8vLy8vLy8vLy8vLy8vXG4vLyBXRUJQQUNLIEZPT1RFUlxuLy8gLi9saWIvYmluYXJ5LXNlYXJjaC5qc1xuLy8gbW9kdWxlIGlkID0gOFxuLy8gbW9kdWxlIGNodW5rcyA9IDAiLCIvKiAtKi0gTW9kZToganM7IGpzLWluZGVudC1sZXZlbDogMjsgLSotICovXG4vKlxuICogQ29weXJpZ2h0IDIwMTEgTW96aWxsYSBGb3VuZGF0aW9uIGFuZCBjb250cmlidXRvcnNcbiAqIExpY2Vuc2VkIHVuZGVyIHRoZSBOZXcgQlNEIGxpY2Vuc2UuIFNlZSBMSUNFTlNFIG9yOlxuICogaHR0cDovL29wZW5zb3VyY2Uub3JnL2xpY2Vuc2VzL0JTRC0zLUNsYXVzZVxuICovXG5cbi8vIEl0IHR1cm5zIG91dCB0aGF0IHNvbWUgKG1vc3Q/KSBKYXZhU2NyaXB0IGVuZ2luZXMgZG9uJ3Qgc2VsZi1ob3N0XG4vLyBgQXJyYXkucHJvdG90eXBlLnNvcnRgLiBUaGlzIG1ha2VzIHNlbnNlIGJlY2F1c2UgQysrIHdpbGwgbGlrZWx5IHJlbWFpblxuLy8gZmFzdGVyIHRoYW4gSlMgd2hlbiBkb2luZyByYXcgQ1BVLWludGVuc2l2ZSBzb3J0aW5nLiBIb3dldmVyLCB3aGVuIHVzaW5nIGFcbi8vIGN1c3RvbSBjb21wYXJhdG9yIGZ1bmN0aW9uLCBjYWxsaW5nIGJhY2sgYW5kIGZvcnRoIGJldHdlZW4gdGhlIFZNJ3MgQysrIGFuZFxuLy8gSklUJ2QgSlMgaXMgcmF0aGVyIHNsb3cgKmFuZCogbG9zZXMgSklUIHR5cGUgaW5mb3JtYXRpb24sIHJlc3VsdGluZyBpblxuLy8gd29yc2UgZ2VuZXJhdGVkIGNvZGUgZm9yIHRoZSBjb21wYXJhdG9yIGZ1bmN0aW9uIHRoYW4gd291bGQgYmUgb3B0aW1hbC4gSW5cbi8vIGZhY3QsIHdoZW4gc29ydGluZyB3aXRoIGEgY29tcGFyYXRvciwgdGhlc2UgY29zdHMgb3V0d2VpZ2ggdGhlIGJlbmVmaXRzIG9mXG4vLyBzb3J0aW5nIGluIEMrKy4gQnkgdXNpbmcgb3VyIG93biBKUy1pbXBsZW1lbnRlZCBRdWljayBTb3J0IChiZWxvdyksIHdlIGdldFxuLy8gYSB+MzUwMG1zIG1lYW4gc3BlZWQtdXAgaW4gYGJlbmNoL2JlbmNoLmh0bWxgLlxuXG4vKipcbiAqIFN3YXAgdGhlIGVsZW1lbnRzIGluZGV4ZWQgYnkgYHhgIGFuZCBgeWAgaW4gdGhlIGFycmF5IGBhcnlgLlxuICpcbiAqIEBwYXJhbSB7QXJyYXl9IGFyeVxuICogICAgICAgIFRoZSBhcnJheS5cbiAqIEBwYXJhbSB7TnVtYmVyfSB4XG4gKiAgICAgICAgVGhlIGluZGV4IG9mIHRoZSBmaXJzdCBpdGVtLlxuICogQHBhcmFtIHtOdW1iZXJ9IHlcbiAqICAgICAgICBUaGUgaW5kZXggb2YgdGhlIHNlY29uZCBpdGVtLlxuICovXG5mdW5jdGlvbiBzd2FwKGFyeSwgeCwgeSkge1xuICB2YXIgdGVtcCA9IGFyeVt4XTtcbiAgYXJ5W3hdID0gYXJ5W3ldO1xuICBhcnlbeV0gPSB0ZW1wO1xufVxuXG4vKipcbiAqIFJldHVybnMgYSByYW5kb20gaW50ZWdlciB3aXRoaW4gdGhlIHJhbmdlIGBsb3cgLi4gaGlnaGAgaW5jbHVzaXZlLlxuICpcbiAqIEBwYXJhbSB7TnVtYmVyfSBsb3dcbiAqICAgICAgICBUaGUgbG93ZXIgYm91bmQgb24gdGhlIHJhbmdlLlxuICogQHBhcmFtIHtOdW1iZXJ9IGhpZ2hcbiAqICAgICAgICBUaGUgdXBwZXIgYm91bmQgb24gdGhlIHJhbmdlLlxuICovXG5mdW5jdGlvbiByYW5kb21JbnRJblJhbmdlKGxvdywgaGlnaCkge1xuICByZXR1cm4gTWF0aC5yb3VuZChsb3cgKyAoTWF0aC5yYW5kb20oKSAqIChoaWdoIC0gbG93KSkpO1xufVxuXG4vKipcbiAqIFRoZSBRdWljayBTb3J0IGFsZ29yaXRobS5cbiAqXG4gKiBAcGFyYW0ge0FycmF5fSBhcnlcbiAqICAgICAgICBBbiBhcnJheSB0byBzb3J0LlxuICogQHBhcmFtIHtmdW5jdGlvbn0gY29tcGFyYXRvclxuICogICAgICAgIEZ1bmN0aW9uIHRvIHVzZSB0byBjb21wYXJlIHR3byBpdGVtcy5cbiAqIEBwYXJhbSB7TnVtYmVyfSBwXG4gKiAgICAgICAgU3RhcnQgaW5kZXggb2YgdGhlIGFycmF5XG4gKiBAcGFyYW0ge051bWJlcn0gclxuICogICAgICAgIEVuZCBpbmRleCBvZiB0aGUgYXJyYXlcbiAqL1xuZnVuY3Rpb24gZG9RdWlja1NvcnQoYXJ5LCBjb21wYXJhdG9yLCBwLCByKSB7XG4gIC8vIElmIG91ciBsb3dlciBib3VuZCBpcyBsZXNzIHRoYW4gb3VyIHVwcGVyIGJvdW5kLCB3ZSAoMSkgcGFydGl0aW9uIHRoZVxuICAvLyBhcnJheSBpbnRvIHR3byBwaWVjZXMgYW5kICgyKSByZWN1cnNlIG9uIGVhY2ggaGFsZi4gSWYgaXQgaXMgbm90LCB0aGlzIGlzXG4gIC8vIHRoZSBlbXB0eSBhcnJheSBhbmQgb3VyIGJhc2UgY2FzZS5cblxuICBpZiAocCA8IHIpIHtcbiAgICAvLyAoMSkgUGFydGl0aW9uaW5nLlxuICAgIC8vXG4gICAgLy8gVGhlIHBhcnRpdGlvbmluZyBjaG9vc2VzIGEgcGl2b3QgYmV0d2VlbiBgcGAgYW5kIGByYCBhbmQgbW92ZXMgYWxsXG4gICAgLy8gZWxlbWVudHMgdGhhdCBhcmUgbGVzcyB0aGFuIG9yIGVxdWFsIHRvIHRoZSBwaXZvdCB0byB0aGUgYmVmb3JlIGl0LCBhbmRcbiAgICAvLyBhbGwgdGhlIGVsZW1lbnRzIHRoYXQgYXJlIGdyZWF0ZXIgdGhhbiBpdCBhZnRlciBpdC4gVGhlIGVmZmVjdCBpcyB0aGF0XG4gICAgLy8gb25jZSBwYXJ0aXRpb24gaXMgZG9uZSwgdGhlIHBpdm90IGlzIGluIHRoZSBleGFjdCBwbGFjZSBpdCB3aWxsIGJlIHdoZW5cbiAgICAvLyB0aGUgYXJyYXkgaXMgcHV0IGluIHNvcnRlZCBvcmRlciwgYW5kIGl0IHdpbGwgbm90IG5lZWQgdG8gYmUgbW92ZWRcbiAgICAvLyBhZ2Fpbi4gVGhpcyBydW5zIGluIE8obikgdGltZS5cblxuICAgIC8vIEFsd2F5cyBjaG9vc2UgYSByYW5kb20gcGl2b3Qgc28gdGhhdCBhbiBpbnB1dCBhcnJheSB3aGljaCBpcyByZXZlcnNlXG4gICAgLy8gc29ydGVkIGRvZXMgbm90IGNhdXNlIE8obl4yKSBydW5uaW5nIHRpbWUuXG4gICAgdmFyIHBpdm90SW5kZXggPSByYW5kb21JbnRJblJhbmdlKHAsIHIpO1xuICAgIHZhciBpID0gcCAtIDE7XG5cbiAgICBzd2FwKGFyeSwgcGl2b3RJbmRleCwgcik7XG4gICAgdmFyIHBpdm90ID0gYXJ5W3JdO1xuXG4gICAgLy8gSW1tZWRpYXRlbHkgYWZ0ZXIgYGpgIGlzIGluY3JlbWVudGVkIGluIHRoaXMgbG9vcCwgdGhlIGZvbGxvd2luZyBob2xkXG4gICAgLy8gdHJ1ZTpcbiAgICAvL1xuICAgIC8vICAgKiBFdmVyeSBlbGVtZW50IGluIGBhcnlbcCAuLiBpXWAgaXMgbGVzcyB0aGFuIG9yIGVxdWFsIHRvIHRoZSBwaXZvdC5cbiAgICAvL1xuICAgIC8vICAgKiBFdmVyeSBlbGVtZW50IGluIGBhcnlbaSsxIC4uIGotMV1gIGlzIGdyZWF0ZXIgdGhhbiB0aGUgcGl2b3QuXG4gICAgZm9yICh2YXIgaiA9IHA7IGogPCByOyBqKyspIHtcbiAgICAgIGlmIChjb21wYXJhdG9yKGFyeVtqXSwgcGl2b3QpIDw9IDApIHtcbiAgICAgICAgaSArPSAxO1xuICAgICAgICBzd2FwKGFyeSwgaSwgaik7XG4gICAgICB9XG4gICAgfVxuXG4gICAgc3dhcChhcnksIGkgKyAxLCBqKTtcbiAgICB2YXIgcSA9IGkgKyAxO1xuXG4gICAgLy8gKDIpIFJlY3Vyc2Ugb24gZWFjaCBoYWxmLlxuXG4gICAgZG9RdWlja1NvcnQoYXJ5LCBjb21wYXJhdG9yLCBwLCBxIC0gMSk7XG4gICAgZG9RdWlja1NvcnQoYXJ5LCBjb21wYXJhdG9yLCBxICsgMSwgcik7XG4gIH1cbn1cblxuLyoqXG4gKiBTb3J0IHRoZSBnaXZlbiBhcnJheSBpbi1wbGFjZSB3aXRoIHRoZSBnaXZlbiBjb21wYXJhdG9yIGZ1bmN0aW9uLlxuICpcbiAqIEBwYXJhbSB7QXJyYXl9IGFyeVxuICogICAgICAgIEFuIGFycmF5IHRvIHNvcnQuXG4gKiBAcGFyYW0ge2Z1bmN0aW9ufSBjb21wYXJhdG9yXG4gKiAgICAgICAgRnVuY3Rpb24gdG8gdXNlIHRvIGNvbXBhcmUgdHdvIGl0ZW1zLlxuICovXG5leHBvcnRzLnF1aWNrU29ydCA9IGZ1bmN0aW9uIChhcnksIGNvbXBhcmF0b3IpIHtcbiAgZG9RdWlja1NvcnQoYXJ5LCBjb21wYXJhdG9yLCAwLCBhcnkubGVuZ3RoIC0gMSk7XG59O1xuXG5cblxuLy8vLy8vLy8vLy8vLy8vLy8vXG4vLyBXRUJQQUNLIEZPT1RFUlxuLy8gLi9saWIvcXVpY2stc29ydC5qc1xuLy8gbW9kdWxlIGlkID0gOVxuLy8gbW9kdWxlIGNodW5rcyA9IDAiLCIvKiAtKi0gTW9kZToganM7IGpzLWluZGVudC1sZXZlbDogMjsgLSotICovXG4vKlxuICogQ29weXJpZ2h0IDIwMTEgTW96aWxsYSBGb3VuZGF0aW9uIGFuZCBjb250cmlidXRvcnNcbiAqIExpY2Vuc2VkIHVuZGVyIHRoZSBOZXcgQlNEIGxpY2Vuc2UuIFNlZSBMSUNFTlNFIG9yOlxuICogaHR0cDovL29wZW5zb3VyY2Uub3JnL2xpY2Vuc2VzL0JTRC0zLUNsYXVzZVxuICovXG5cbnZhciBTb3VyY2VNYXBHZW5lcmF0b3IgPSByZXF1aXJlKCcuL3NvdXJjZS1tYXAtZ2VuZXJhdG9yJykuU291cmNlTWFwR2VuZXJhdG9yO1xudmFyIHV0aWwgPSByZXF1aXJlKCcuL3V0aWwnKTtcblxuLy8gTWF0Y2hlcyBhIFdpbmRvd3Mtc3R5bGUgYFxcclxcbmAgbmV3bGluZSBvciBhIGBcXG5gIG5ld2xpbmUgdXNlZCBieSBhbGwgb3RoZXJcbi8vIG9wZXJhdGluZyBzeXN0ZW1zIHRoZXNlIGRheXMgKGNhcHR1cmluZyB0aGUgcmVzdWx0KS5cbnZhciBSRUdFWF9ORVdMSU5FID0gLyhcXHI/XFxuKS87XG5cbi8vIE5ld2xpbmUgY2hhcmFjdGVyIGNvZGUgZm9yIGNoYXJDb2RlQXQoKSBjb21wYXJpc29uc1xudmFyIE5FV0xJTkVfQ09ERSA9IDEwO1xuXG4vLyBQcml2YXRlIHN5bWJvbCBmb3IgaWRlbnRpZnlpbmcgYFNvdXJjZU5vZGVgcyB3aGVuIG11bHRpcGxlIHZlcnNpb25zIG9mXG4vLyB0aGUgc291cmNlLW1hcCBsaWJyYXJ5IGFyZSBsb2FkZWQuIFRoaXMgTVVTVCBOT1QgQ0hBTkdFIGFjcm9zc1xuLy8gdmVyc2lvbnMhXG52YXIgaXNTb3VyY2VOb2RlID0gXCIkJCRpc1NvdXJjZU5vZGUkJCRcIjtcblxuLyoqXG4gKiBTb3VyY2VOb2RlcyBwcm92aWRlIGEgd2F5IHRvIGFic3RyYWN0IG92ZXIgaW50ZXJwb2xhdGluZy9jb25jYXRlbmF0aW5nXG4gKiBzbmlwcGV0cyBvZiBnZW5lcmF0ZWQgSmF2YVNjcmlwdCBzb3VyY2UgY29kZSB3aGlsZSBtYWludGFpbmluZyB0aGUgbGluZSBhbmRcbiAqIGNvbHVtbiBpbmZvcm1hdGlvbiBhc3NvY2lhdGVkIHdpdGggdGhlIG9yaWdpbmFsIHNvdXJjZSBjb2RlLlxuICpcbiAqIEBwYXJhbSBhTGluZSBUaGUgb3JpZ2luYWwgbGluZSBudW1iZXIuXG4gKiBAcGFyYW0gYUNvbHVtbiBUaGUgb3JpZ2luYWwgY29sdW1uIG51bWJlci5cbiAqIEBwYXJhbSBhU291cmNlIFRoZSBvcmlnaW5hbCBzb3VyY2UncyBmaWxlbmFtZS5cbiAqIEBwYXJhbSBhQ2h1bmtzIE9wdGlvbmFsLiBBbiBhcnJheSBvZiBzdHJpbmdzIHdoaWNoIGFyZSBzbmlwcGV0cyBvZlxuICogICAgICAgIGdlbmVyYXRlZCBKUywgb3Igb3RoZXIgU291cmNlTm9kZXMuXG4gKiBAcGFyYW0gYU5hbWUgVGhlIG9yaWdpbmFsIGlkZW50aWZpZXIuXG4gKi9cbmZ1bmN0aW9uIFNvdXJjZU5vZGUoYUxpbmUsIGFDb2x1bW4sIGFTb3VyY2UsIGFDaHVua3MsIGFOYW1lKSB7XG4gIHRoaXMuY2hpbGRyZW4gPSBbXTtcbiAgdGhpcy5zb3VyY2VDb250ZW50cyA9IHt9O1xuICB0aGlzLmxpbmUgPSBhTGluZSA9PSBudWxsID8gbnVsbCA6IGFMaW5lO1xuICB0aGlzLmNvbHVtbiA9IGFDb2x1bW4gPT0gbnVsbCA/IG51bGwgOiBhQ29sdW1uO1xuICB0aGlzLnNvdXJjZSA9IGFTb3VyY2UgPT0gbnVsbCA/IG51bGwgOiBhU291cmNlO1xuICB0aGlzLm5hbWUgPSBhTmFtZSA9PSBudWxsID8gbnVsbCA6IGFOYW1lO1xuICB0aGlzW2lzU291cmNlTm9kZV0gPSB0cnVlO1xuICBpZiAoYUNodW5rcyAhPSBudWxsKSB0aGlzLmFkZChhQ2h1bmtzKTtcbn1cblxuLyoqXG4gKiBDcmVhdGVzIGEgU291cmNlTm9kZSBmcm9tIGdlbmVyYXRlZCBjb2RlIGFuZCBhIFNvdXJjZU1hcENvbnN1bWVyLlxuICpcbiAqIEBwYXJhbSBhR2VuZXJhdGVkQ29kZSBUaGUgZ2VuZXJhdGVkIGNvZGVcbiAqIEBwYXJhbSBhU291cmNlTWFwQ29uc3VtZXIgVGhlIFNvdXJjZU1hcCBmb3IgdGhlIGdlbmVyYXRlZCBjb2RlXG4gKiBAcGFyYW0gYVJlbGF0aXZlUGF0aCBPcHRpb25hbC4gVGhlIHBhdGggdGhhdCByZWxhdGl2ZSBzb3VyY2VzIGluIHRoZVxuICogICAgICAgIFNvdXJjZU1hcENvbnN1bWVyIHNob3VsZCBiZSByZWxhdGl2ZSB0by5cbiAqL1xuU291cmNlTm9kZS5mcm9tU3RyaW5nV2l0aFNvdXJjZU1hcCA9XG4gIGZ1bmN0aW9uIFNvdXJjZU5vZGVfZnJvbVN0cmluZ1dpdGhTb3VyY2VNYXAoYUdlbmVyYXRlZENvZGUsIGFTb3VyY2VNYXBDb25zdW1lciwgYVJlbGF0aXZlUGF0aCkge1xuICAgIC8vIFRoZSBTb3VyY2VOb2RlIHdlIHdhbnQgdG8gZmlsbCB3aXRoIHRoZSBnZW5lcmF0ZWQgY29kZVxuICAgIC8vIGFuZCB0aGUgU291cmNlTWFwXG4gICAgdmFyIG5vZGUgPSBuZXcgU291cmNlTm9kZSgpO1xuXG4gICAgLy8gQWxsIGV2ZW4gaW5kaWNlcyBvZiB0aGlzIGFycmF5IGFyZSBvbmUgbGluZSBvZiB0aGUgZ2VuZXJhdGVkIGNvZGUsXG4gICAgLy8gd2hpbGUgYWxsIG9kZCBpbmRpY2VzIGFyZSB0aGUgbmV3bGluZXMgYmV0d2VlbiB0d28gYWRqYWNlbnQgbGluZXNcbiAgICAvLyAoc2luY2UgYFJFR0VYX05FV0xJTkVgIGNhcHR1cmVzIGl0cyBtYXRjaCkuXG4gICAgLy8gUHJvY2Vzc2VkIGZyYWdtZW50cyBhcmUgYWNjZXNzZWQgYnkgY2FsbGluZyBgc2hpZnROZXh0TGluZWAuXG4gICAgdmFyIHJlbWFpbmluZ0xpbmVzID0gYUdlbmVyYXRlZENvZGUuc3BsaXQoUkVHRVhfTkVXTElORSk7XG4gICAgdmFyIHJlbWFpbmluZ0xpbmVzSW5kZXggPSAwO1xuICAgIHZhciBzaGlmdE5leHRMaW5lID0gZnVuY3Rpb24oKSB7XG4gICAgICB2YXIgbGluZUNvbnRlbnRzID0gZ2V0TmV4dExpbmUoKTtcbiAgICAgIC8vIFRoZSBsYXN0IGxpbmUgb2YgYSBmaWxlIG1pZ2h0IG5vdCBoYXZlIGEgbmV3bGluZS5cbiAgICAgIHZhciBuZXdMaW5lID0gZ2V0TmV4dExpbmUoKSB8fCBcIlwiO1xuICAgICAgcmV0dXJuIGxpbmVDb250ZW50cyArIG5ld0xpbmU7XG5cbiAgICAgIGZ1bmN0aW9uIGdldE5leHRMaW5lKCkge1xuICAgICAgICByZXR1cm4gcmVtYWluaW5nTGluZXNJbmRleCA8IHJlbWFpbmluZ0xpbmVzLmxlbmd0aCA/XG4gICAgICAgICAgICByZW1haW5pbmdMaW5lc1tyZW1haW5pbmdMaW5lc0luZGV4KytdIDogdW5kZWZpbmVkO1xuICAgICAgfVxuICAgIH07XG5cbiAgICAvLyBXZSBuZWVkIHRvIHJlbWVtYmVyIHRoZSBwb3NpdGlvbiBvZiBcInJlbWFpbmluZ0xpbmVzXCJcbiAgICB2YXIgbGFzdEdlbmVyYXRlZExpbmUgPSAxLCBsYXN0R2VuZXJhdGVkQ29sdW1uID0gMDtcblxuICAgIC8vIFRoZSBnZW5lcmF0ZSBTb3VyY2VOb2RlcyB3ZSBuZWVkIGEgY29kZSByYW5nZS5cbiAgICAvLyBUbyBleHRyYWN0IGl0IGN1cnJlbnQgYW5kIGxhc3QgbWFwcGluZyBpcyB1c2VkLlxuICAgIC8vIEhlcmUgd2Ugc3RvcmUgdGhlIGxhc3QgbWFwcGluZy5cbiAgICB2YXIgbGFzdE1hcHBpbmcgPSBudWxsO1xuXG4gICAgYVNvdXJjZU1hcENvbnN1bWVyLmVhY2hNYXBwaW5nKGZ1bmN0aW9uIChtYXBwaW5nKSB7XG4gICAgICBpZiAobGFzdE1hcHBpbmcgIT09IG51bGwpIHtcbiAgICAgICAgLy8gV2UgYWRkIHRoZSBjb2RlIGZyb20gXCJsYXN0TWFwcGluZ1wiIHRvIFwibWFwcGluZ1wiOlxuICAgICAgICAvLyBGaXJzdCBjaGVjayBpZiB0aGVyZSBpcyBhIG5ldyBsaW5lIGluIGJldHdlZW4uXG4gICAgICAgIGlmIChsYXN0R2VuZXJhdGVkTGluZSA8IG1hcHBpbmcuZ2VuZXJhdGVkTGluZSkge1xuICAgICAgICAgIC8vIEFzc29jaWF0ZSBmaXJzdCBsaW5lIHdpdGggXCJsYXN0TWFwcGluZ1wiXG4gICAgICAgICAgYWRkTWFwcGluZ1dpdGhDb2RlKGxhc3RNYXBwaW5nLCBzaGlmdE5leHRMaW5lKCkpO1xuICAgICAgICAgIGxhc3RHZW5lcmF0ZWRMaW5lKys7XG4gICAgICAgICAgbGFzdEdlbmVyYXRlZENvbHVtbiA9IDA7XG4gICAgICAgICAgLy8gVGhlIHJlbWFpbmluZyBjb2RlIGlzIGFkZGVkIHdpdGhvdXQgbWFwcGluZ1xuICAgICAgICB9IGVsc2Uge1xuICAgICAgICAgIC8vIFRoZXJlIGlzIG5vIG5ldyBsaW5lIGluIGJldHdlZW4uXG4gICAgICAgICAgLy8gQXNzb2NpYXRlIHRoZSBjb2RlIGJldHdlZW4gXCJsYXN0R2VuZXJhdGVkQ29sdW1uXCIgYW5kXG4gICAgICAgICAgLy8gXCJtYXBwaW5nLmdlbmVyYXRlZENvbHVtblwiIHdpdGggXCJsYXN0TWFwcGluZ1wiXG4gICAgICAgICAgdmFyIG5leHRMaW5lID0gcmVtYWluaW5nTGluZXNbcmVtYWluaW5nTGluZXNJbmRleF07XG4gICAgICAgICAgdmFyIGNvZGUgPSBuZXh0TGluZS5zdWJzdHIoMCwgbWFwcGluZy5nZW5lcmF0ZWRDb2x1bW4gLVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGxhc3RHZW5lcmF0ZWRDb2x1bW4pO1xuICAgICAgICAgIHJlbWFpbmluZ0xpbmVzW3JlbWFpbmluZ0xpbmVzSW5kZXhdID0gbmV4dExpbmUuc3Vic3RyKG1hcHBpbmcuZ2VuZXJhdGVkQ29sdW1uIC1cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBsYXN0R2VuZXJhdGVkQ29sdW1uKTtcbiAgICAgICAgICBsYXN0R2VuZXJhdGVkQ29sdW1uID0gbWFwcGluZy5nZW5lcmF0ZWRDb2x1bW47XG4gICAgICAgICAgYWRkTWFwcGluZ1dpdGhDb2RlKGxhc3RNYXBwaW5nLCBjb2RlKTtcbiAgICAgICAgICAvLyBObyBtb3JlIHJlbWFpbmluZyBjb2RlLCBjb250aW51ZVxuICAgICAgICAgIGxhc3RNYXBwaW5nID0gbWFwcGluZztcbiAgICAgICAgICByZXR1cm47XG4gICAgICAgIH1cbiAgICAgIH1cbiAgICAgIC8vIFdlIGFkZCB0aGUgZ2VuZXJhdGVkIGNvZGUgdW50aWwgdGhlIGZpcnN0IG1hcHBpbmdcbiAgICAgIC8vIHRvIHRoZSBTb3VyY2VOb2RlIHdpdGhvdXQgYW55IG1hcHBpbmcuXG4gICAgICAvLyBFYWNoIGxpbmUgaXMgYWRkZWQgYXMgc2VwYXJhdGUgc3RyaW5nLlxuICAgICAgd2hpbGUgKGxhc3RHZW5lcmF0ZWRMaW5lIDwgbWFwcGluZy5nZW5lcmF0ZWRMaW5lKSB7XG4gICAgICAgIG5vZGUuYWRkKHNoaWZ0TmV4dExpbmUoKSk7XG4gICAgICAgIGxhc3RHZW5lcmF0ZWRMaW5lKys7XG4gICAgICB9XG4gICAgICBpZiAobGFzdEdlbmVyYXRlZENvbHVtbiA8IG1hcHBpbmcuZ2VuZXJhdGVkQ29sdW1uKSB7XG4gICAgICAgIHZhciBuZXh0TGluZSA9IHJlbWFpbmluZ0xpbmVzW3JlbWFpbmluZ0xpbmVzSW5kZXhdO1xuICAgICAgICBub2RlLmFkZChuZXh0TGluZS5zdWJzdHIoMCwgbWFwcGluZy5nZW5lcmF0ZWRDb2x1bW4pKTtcbiAgICAgICAgcmVtYWluaW5nTGluZXNbcmVtYWluaW5nTGluZXNJbmRleF0gPSBuZXh0TGluZS5zdWJzdHIobWFwcGluZy5nZW5lcmF0ZWRDb2x1bW4pO1xuICAgICAgICBsYXN0R2VuZXJhdGVkQ29sdW1uID0gbWFwcGluZy5nZW5lcmF0ZWRDb2x1bW47XG4gICAgICB9XG4gICAgICBsYXN0TWFwcGluZyA9IG1hcHBpbmc7XG4gICAgfSwgdGhpcyk7XG4gICAgLy8gV2UgaGF2ZSBwcm9jZXNzZWQgYWxsIG1hcHBpbmdzLlxuICAgIGlmIChyZW1haW5pbmdMaW5lc0luZGV4IDwgcmVtYWluaW5nTGluZXMubGVuZ3RoKSB7XG4gICAgICBpZiAobGFzdE1hcHBpbmcpIHtcbiAgICAgICAgLy8gQXNzb2NpYXRlIHRoZSByZW1haW5pbmcgY29kZSBpbiB0aGUgY3VycmVudCBsaW5lIHdpdGggXCJsYXN0TWFwcGluZ1wiXG4gICAgICAgIGFkZE1hcHBpbmdXaXRoQ29kZShsYXN0TWFwcGluZywgc2hpZnROZXh0TGluZSgpKTtcbiAgICAgIH1cbiAgICAgIC8vIGFuZCBhZGQgdGhlIHJlbWFpbmluZyBsaW5lcyB3aXRob3V0IGFueSBtYXBwaW5nXG4gICAgICBub2RlLmFkZChyZW1haW5pbmdMaW5lcy5zcGxpY2UocmVtYWluaW5nTGluZXNJbmRleCkuam9pbihcIlwiKSk7XG4gICAgfVxuXG4gICAgLy8gQ29weSBzb3VyY2VzQ29udGVudCBpbnRvIFNvdXJjZU5vZGVcbiAgICBhU291cmNlTWFwQ29uc3VtZXIuc291cmNlcy5mb3JFYWNoKGZ1bmN0aW9uIChzb3VyY2VGaWxlKSB7XG4gICAgICB2YXIgY29udGVudCA9IGFTb3VyY2VNYXBDb25zdW1lci5zb3VyY2VDb250ZW50Rm9yKHNvdXJjZUZpbGUpO1xuICAgICAgaWYgKGNvbnRlbnQgIT0gbnVsbCkge1xuICAgICAgICBpZiAoYVJlbGF0aXZlUGF0aCAhPSBudWxsKSB7XG4gICAgICAgICAgc291cmNlRmlsZSA9IHV0aWwuam9pbihhUmVsYXRpdmVQYXRoLCBzb3VyY2VGaWxlKTtcbiAgICAgICAgfVxuICAgICAgICBub2RlLnNldFNvdXJjZUNvbnRlbnQoc291cmNlRmlsZSwgY29udGVudCk7XG4gICAgICB9XG4gICAgfSk7XG5cbiAgICByZXR1cm4gbm9kZTtcblxuICAgIGZ1bmN0aW9uIGFkZE1hcHBpbmdXaXRoQ29kZShtYXBwaW5nLCBjb2RlKSB7XG4gICAgICBpZiAobWFwcGluZyA9PT0gbnVsbCB8fCBtYXBwaW5nLnNvdXJjZSA9PT0gdW5kZWZpbmVkKSB7XG4gICAgICAgIG5vZGUuYWRkKGNvZGUpO1xuICAgICAgfSBlbHNlIHtcbiAgICAgICAgdmFyIHNvdXJjZSA9IGFSZWxhdGl2ZVBhdGhcbiAgICAgICAgICA/IHV0aWwuam9pbihhUmVsYXRpdmVQYXRoLCBtYXBwaW5nLnNvdXJjZSlcbiAgICAgICAgICA6IG1hcHBpbmcuc291cmNlO1xuICAgICAgICBub2RlLmFkZChuZXcgU291cmNlTm9kZShtYXBwaW5nLm9yaWdpbmFsTGluZSxcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgbWFwcGluZy5vcmlnaW5hbENvbHVtbixcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgc291cmNlLFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBjb2RlLFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBtYXBwaW5nLm5hbWUpKTtcbiAgICAgIH1cbiAgICB9XG4gIH07XG5cbi8qKlxuICogQWRkIGEgY2h1bmsgb2YgZ2VuZXJhdGVkIEpTIHRvIHRoaXMgc291cmNlIG5vZGUuXG4gKlxuICogQHBhcmFtIGFDaHVuayBBIHN0cmluZyBzbmlwcGV0IG9mIGdlbmVyYXRlZCBKUyBjb2RlLCBhbm90aGVyIGluc3RhbmNlIG9mXG4gKiAgICAgICAgU291cmNlTm9kZSwgb3IgYW4gYXJyYXkgd2hlcmUgZWFjaCBtZW1iZXIgaXMgb25lIG9mIHRob3NlIHRoaW5ncy5cbiAqL1xuU291cmNlTm9kZS5wcm90b3R5cGUuYWRkID0gZnVuY3Rpb24gU291cmNlTm9kZV9hZGQoYUNodW5rKSB7XG4gIGlmIChBcnJheS5pc0FycmF5KGFDaHVuaykpIHtcbiAgICBhQ2h1bmsuZm9yRWFjaChmdW5jdGlvbiAoY2h1bmspIHtcbiAgICAgIHRoaXMuYWRkKGNodW5rKTtcbiAgICB9LCB0aGlzKTtcbiAgfVxuICBlbHNlIGlmIChhQ2h1bmtbaXNTb3VyY2VOb2RlXSB8fCB0eXBlb2YgYUNodW5rID09PSBcInN0cmluZ1wiKSB7XG4gICAgaWYgKGFDaHVuaykge1xuICAgICAgdGhpcy5jaGlsZHJlbi5wdXNoKGFDaHVuayk7XG4gICAgfVxuICB9XG4gIGVsc2Uge1xuICAgIHRocm93IG5ldyBUeXBlRXJyb3IoXG4gICAgICBcIkV4cGVjdGVkIGEgU291cmNlTm9kZSwgc3RyaW5nLCBvciBhbiBhcnJheSBvZiBTb3VyY2VOb2RlcyBhbmQgc3RyaW5ncy4gR290IFwiICsgYUNodW5rXG4gICAgKTtcbiAgfVxuICByZXR1cm4gdGhpcztcbn07XG5cbi8qKlxuICogQWRkIGEgY2h1bmsgb2YgZ2VuZXJhdGVkIEpTIHRvIHRoZSBiZWdpbm5pbmcgb2YgdGhpcyBzb3VyY2Ugbm9kZS5cbiAqXG4gKiBAcGFyYW0gYUNodW5rIEEgc3RyaW5nIHNuaXBwZXQgb2YgZ2VuZXJhdGVkIEpTIGNvZGUsIGFub3RoZXIgaW5zdGFuY2Ugb2ZcbiAqICAgICAgICBTb3VyY2VOb2RlLCBvciBhbiBhcnJheSB3aGVyZSBlYWNoIG1lbWJlciBpcyBvbmUgb2YgdGhvc2UgdGhpbmdzLlxuICovXG5Tb3VyY2VOb2RlLnByb3RvdHlwZS5wcmVwZW5kID0gZnVuY3Rpb24gU291cmNlTm9kZV9wcmVwZW5kKGFDaHVuaykge1xuICBpZiAoQXJyYXkuaXNBcnJheShhQ2h1bmspKSB7XG4gICAgZm9yICh2YXIgaSA9IGFDaHVuay5sZW5ndGgtMTsgaSA+PSAwOyBpLS0pIHtcbiAgICAgIHRoaXMucHJlcGVuZChhQ2h1bmtbaV0pO1xuICAgIH1cbiAgfVxuICBlbHNlIGlmIChhQ2h1bmtbaXNTb3VyY2VOb2RlXSB8fCB0eXBlb2YgYUNodW5rID09PSBcInN0cmluZ1wiKSB7XG4gICAgdGhpcy5jaGlsZHJlbi51bnNoaWZ0KGFDaHVuayk7XG4gIH1cbiAgZWxzZSB7XG4gICAgdGhyb3cgbmV3IFR5cGVFcnJvcihcbiAgICAgIFwiRXhwZWN0ZWQgYSBTb3VyY2VOb2RlLCBzdHJpbmcsIG9yIGFuIGFycmF5IG9mIFNvdXJjZU5vZGVzIGFuZCBzdHJpbmdzLiBHb3QgXCIgKyBhQ2h1bmtcbiAgICApO1xuICB9XG4gIHJldHVybiB0aGlzO1xufTtcblxuLyoqXG4gKiBXYWxrIG92ZXIgdGhlIHRyZWUgb2YgSlMgc25pcHBldHMgaW4gdGhpcyBub2RlIGFuZCBpdHMgY2hpbGRyZW4uIFRoZVxuICogd2Fsa2luZyBmdW5jdGlvbiBpcyBjYWxsZWQgb25jZSBmb3IgZWFjaCBzbmlwcGV0IG9mIEpTIGFuZCBpcyBwYXNzZWQgdGhhdFxuICogc25pcHBldCBhbmQgdGhlIGl0cyBvcmlnaW5hbCBhc3NvY2lhdGVkIHNvdXJjZSdzIGxpbmUvY29sdW1uIGxvY2F0aW9uLlxuICpcbiAqIEBwYXJhbSBhRm4gVGhlIHRyYXZlcnNhbCBmdW5jdGlvbi5cbiAqL1xuU291cmNlTm9kZS5wcm90b3R5cGUud2FsayA9IGZ1bmN0aW9uIFNvdXJjZU5vZGVfd2FsayhhRm4pIHtcbiAgdmFyIGNodW5rO1xuICBmb3IgKHZhciBpID0gMCwgbGVuID0gdGhpcy5jaGlsZHJlbi5sZW5ndGg7IGkgPCBsZW47IGkrKykge1xuICAgIGNodW5rID0gdGhpcy5jaGlsZHJlbltpXTtcbiAgICBpZiAoY2h1bmtbaXNTb3VyY2VOb2RlXSkge1xuICAgICAgY2h1bmsud2FsayhhRm4pO1xuICAgIH1cbiAgICBlbHNlIHtcbiAgICAgIGlmIChjaHVuayAhPT0gJycpIHtcbiAgICAgICAgYUZuKGNodW5rLCB7IHNvdXJjZTogdGhpcy5zb3VyY2UsXG4gICAgICAgICAgICAgICAgICAgICBsaW5lOiB0aGlzLmxpbmUsXG4gICAgICAgICAgICAgICAgICAgICBjb2x1bW46IHRoaXMuY29sdW1uLFxuICAgICAgICAgICAgICAgICAgICAgbmFtZTogdGhpcy5uYW1lIH0pO1xuICAgICAgfVxuICAgIH1cbiAgfVxufTtcblxuLyoqXG4gKiBMaWtlIGBTdHJpbmcucHJvdG90eXBlLmpvaW5gIGV4Y2VwdCBmb3IgU291cmNlTm9kZXMuIEluc2VydHMgYGFTdHJgIGJldHdlZW5cbiAqIGVhY2ggb2YgYHRoaXMuY2hpbGRyZW5gLlxuICpcbiAqIEBwYXJhbSBhU2VwIFRoZSBzZXBhcmF0b3IuXG4gKi9cblNvdXJjZU5vZGUucHJvdG90eXBlLmpvaW4gPSBmdW5jdGlvbiBTb3VyY2VOb2RlX2pvaW4oYVNlcCkge1xuICB2YXIgbmV3Q2hpbGRyZW47XG4gIHZhciBpO1xuICB2YXIgbGVuID0gdGhpcy5jaGlsZHJlbi5sZW5ndGg7XG4gIGlmIChsZW4gPiAwKSB7XG4gICAgbmV3Q2hpbGRyZW4gPSBbXTtcbiAgICBmb3IgKGkgPSAwOyBpIDwgbGVuLTE7IGkrKykge1xuICAgICAgbmV3Q2hpbGRyZW4ucHVzaCh0aGlzLmNoaWxkcmVuW2ldKTtcbiAgICAgIG5ld0NoaWxkcmVuLnB1c2goYVNlcCk7XG4gICAgfVxuICAgIG5ld0NoaWxkcmVuLnB1c2godGhpcy5jaGlsZHJlbltpXSk7XG4gICAgdGhpcy5jaGlsZHJlbiA9IG5ld0NoaWxkcmVuO1xuICB9XG4gIHJldHVybiB0aGlzO1xufTtcblxuLyoqXG4gKiBDYWxsIFN0cmluZy5wcm90b3R5cGUucmVwbGFjZSBvbiB0aGUgdmVyeSByaWdodC1tb3N0IHNvdXJjZSBzbmlwcGV0LiBVc2VmdWxcbiAqIGZvciB0cmltbWluZyB3aGl0ZXNwYWNlIGZyb20gdGhlIGVuZCBvZiBhIHNvdXJjZSBub2RlLCBldGMuXG4gKlxuICogQHBhcmFtIGFQYXR0ZXJuIFRoZSBwYXR0ZXJuIHRvIHJlcGxhY2UuXG4gKiBAcGFyYW0gYVJlcGxhY2VtZW50IFRoZSB0aGluZyB0byByZXBsYWNlIHRoZSBwYXR0ZXJuIHdpdGguXG4gKi9cblNvdXJjZU5vZGUucHJvdG90eXBlLnJlcGxhY2VSaWdodCA9IGZ1bmN0aW9uIFNvdXJjZU5vZGVfcmVwbGFjZVJpZ2h0KGFQYXR0ZXJuLCBhUmVwbGFjZW1lbnQpIHtcbiAgdmFyIGxhc3RDaGlsZCA9IHRoaXMuY2hpbGRyZW5bdGhpcy5jaGlsZHJlbi5sZW5ndGggLSAxXTtcbiAgaWYgKGxhc3RDaGlsZFtpc1NvdXJjZU5vZGVdKSB7XG4gICAgbGFzdENoaWxkLnJlcGxhY2VSaWdodChhUGF0dGVybiwgYVJlcGxhY2VtZW50KTtcbiAgfVxuICBlbHNlIGlmICh0eXBlb2YgbGFzdENoaWxkID09PSAnc3RyaW5nJykge1xuICAgIHRoaXMuY2hpbGRyZW5bdGhpcy5jaGlsZHJlbi5sZW5ndGggLSAxXSA9IGxhc3RDaGlsZC5yZXBsYWNlKGFQYXR0ZXJuLCBhUmVwbGFjZW1lbnQpO1xuICB9XG4gIGVsc2Uge1xuICAgIHRoaXMuY2hpbGRyZW4ucHVzaCgnJy5yZXBsYWNlKGFQYXR0ZXJuLCBhUmVwbGFjZW1lbnQpKTtcbiAgfVxuICByZXR1cm4gdGhpcztcbn07XG5cbi8qKlxuICogU2V0IHRoZSBzb3VyY2UgY29udGVudCBmb3IgYSBzb3VyY2UgZmlsZS4gVGhpcyB3aWxsIGJlIGFkZGVkIHRvIHRoZSBTb3VyY2VNYXBHZW5lcmF0b3JcbiAqIGluIHRoZSBzb3VyY2VzQ29udGVudCBmaWVsZC5cbiAqXG4gKiBAcGFyYW0gYVNvdXJjZUZpbGUgVGhlIGZpbGVuYW1lIG9mIHRoZSBzb3VyY2UgZmlsZVxuICogQHBhcmFtIGFTb3VyY2VDb250ZW50IFRoZSBjb250ZW50IG9mIHRoZSBzb3VyY2UgZmlsZVxuICovXG5Tb3VyY2VOb2RlLnByb3RvdHlwZS5zZXRTb3VyY2VDb250ZW50ID1cbiAgZnVuY3Rpb24gU291cmNlTm9kZV9zZXRTb3VyY2VDb250ZW50KGFTb3VyY2VGaWxlLCBhU291cmNlQ29udGVudCkge1xuICAgIHRoaXMuc291cmNlQ29udGVudHNbdXRpbC50b1NldFN0cmluZyhhU291cmNlRmlsZSldID0gYVNvdXJjZUNvbnRlbnQ7XG4gIH07XG5cbi8qKlxuICogV2FsayBvdmVyIHRoZSB0cmVlIG9mIFNvdXJjZU5vZGVzLiBUaGUgd2Fsa2luZyBmdW5jdGlvbiBpcyBjYWxsZWQgZm9yIGVhY2hcbiAqIHNvdXJjZSBmaWxlIGNvbnRlbnQgYW5kIGlzIHBhc3NlZCB0aGUgZmlsZW5hbWUgYW5kIHNvdXJjZSBjb250ZW50LlxuICpcbiAqIEBwYXJhbSBhRm4gVGhlIHRyYXZlcnNhbCBmdW5jdGlvbi5cbiAqL1xuU291cmNlTm9kZS5wcm90b3R5cGUud2Fsa1NvdXJjZUNvbnRlbnRzID1cbiAgZnVuY3Rpb24gU291cmNlTm9kZV93YWxrU291cmNlQ29udGVudHMoYUZuKSB7XG4gICAgZm9yICh2YXIgaSA9IDAsIGxlbiA9IHRoaXMuY2hpbGRyZW4ubGVuZ3RoOyBpIDwgbGVuOyBpKyspIHtcbiAgICAgIGlmICh0aGlzLmNoaWxkcmVuW2ldW2lzU291cmNlTm9kZV0pIHtcbiAgICAgICAgdGhpcy5jaGlsZHJlbltpXS53YWxrU291cmNlQ29udGVudHMoYUZuKTtcbiAgICAgIH1cbiAgICB9XG5cbiAgICB2YXIgc291cmNlcyA9IE9iamVjdC5rZXlzKHRoaXMuc291cmNlQ29udGVudHMpO1xuICAgIGZvciAodmFyIGkgPSAwLCBsZW4gPSBzb3VyY2VzLmxlbmd0aDsgaSA8IGxlbjsgaSsrKSB7XG4gICAgICBhRm4odXRpbC5mcm9tU2V0U3RyaW5nKHNvdXJjZXNbaV0pLCB0aGlzLnNvdXJjZUNvbnRlbnRzW3NvdXJjZXNbaV1dKTtcbiAgICB9XG4gIH07XG5cbi8qKlxuICogUmV0dXJuIHRoZSBzdHJpbmcgcmVwcmVzZW50YXRpb24gb2YgdGhpcyBzb3VyY2Ugbm9kZS4gV2Fsa3Mgb3ZlciB0aGUgdHJlZVxuICogYW5kIGNvbmNhdGVuYXRlcyBhbGwgdGhlIHZhcmlvdXMgc25pcHBldHMgdG9nZXRoZXIgdG8gb25lIHN0cmluZy5cbiAqL1xuU291cmNlTm9kZS5wcm90b3R5cGUudG9TdHJpbmcgPSBmdW5jdGlvbiBTb3VyY2VOb2RlX3RvU3RyaW5nKCkge1xuICB2YXIgc3RyID0gXCJcIjtcbiAgdGhpcy53YWxrKGZ1bmN0aW9uIChjaHVuaykge1xuICAgIHN0ciArPSBjaHVuaztcbiAgfSk7XG4gIHJldHVybiBzdHI7XG59O1xuXG4vKipcbiAqIFJldHVybnMgdGhlIHN0cmluZyByZXByZXNlbnRhdGlvbiBvZiB0aGlzIHNvdXJjZSBub2RlIGFsb25nIHdpdGggYSBzb3VyY2VcbiAqIG1hcC5cbiAqL1xuU291cmNlTm9kZS5wcm90b3R5cGUudG9TdHJpbmdXaXRoU291cmNlTWFwID0gZnVuY3Rpb24gU291cmNlTm9kZV90b1N0cmluZ1dpdGhTb3VyY2VNYXAoYUFyZ3MpIHtcbiAgdmFyIGdlbmVyYXRlZCA9IHtcbiAgICBjb2RlOiBcIlwiLFxuICAgIGxpbmU6IDEsXG4gICAgY29sdW1uOiAwXG4gIH07XG4gIHZhciBtYXAgPSBuZXcgU291cmNlTWFwR2VuZXJhdG9yKGFBcmdzKTtcbiAgdmFyIHNvdXJjZU1hcHBpbmdBY3RpdmUgPSBmYWxzZTtcbiAgdmFyIGxhc3RPcmlnaW5hbFNvdXJjZSA9IG51bGw7XG4gIHZhciBsYXN0T3JpZ2luYWxMaW5lID0gbnVsbDtcbiAgdmFyIGxhc3RPcmlnaW5hbENvbHVtbiA9IG51bGw7XG4gIHZhciBsYXN0T3JpZ2luYWxOYW1lID0gbnVsbDtcbiAgdGhpcy53YWxrKGZ1bmN0aW9uIChjaHVuaywgb3JpZ2luYWwpIHtcbiAgICBnZW5lcmF0ZWQuY29kZSArPSBjaHVuaztcbiAgICBpZiAob3JpZ2luYWwuc291cmNlICE9PSBudWxsXG4gICAgICAgICYmIG9yaWdpbmFsLmxpbmUgIT09IG51bGxcbiAgICAgICAgJiYgb3JpZ2luYWwuY29sdW1uICE9PSBudWxsKSB7XG4gICAgICBpZihsYXN0T3JpZ2luYWxTb3VyY2UgIT09IG9yaWdpbmFsLnNvdXJjZVxuICAgICAgICAgfHwgbGFzdE9yaWdpbmFsTGluZSAhPT0gb3JpZ2luYWwubGluZVxuICAgICAgICAgfHwgbGFzdE9yaWdpbmFsQ29sdW1uICE9PSBvcmlnaW5hbC5jb2x1bW5cbiAgICAgICAgIHx8IGxhc3RPcmlnaW5hbE5hbWUgIT09IG9yaWdpbmFsLm5hbWUpIHtcbiAgICAgICAgbWFwLmFkZE1hcHBpbmcoe1xuICAgICAgICAgIHNvdXJjZTogb3JpZ2luYWwuc291cmNlLFxuICAgICAgICAgIG9yaWdpbmFsOiB7XG4gICAgICAgICAgICBsaW5lOiBvcmlnaW5hbC5saW5lLFxuICAgICAgICAgICAgY29sdW1uOiBvcmlnaW5hbC5jb2x1bW5cbiAgICAgICAgICB9LFxuICAgICAgICAgIGdlbmVyYXRlZDoge1xuICAgICAgICAgICAgbGluZTogZ2VuZXJhdGVkLmxpbmUsXG4gICAgICAgICAgICBjb2x1bW46IGdlbmVyYXRlZC5jb2x1bW5cbiAgICAgICAgICB9LFxuICAgICAgICAgIG5hbWU6IG9yaWdpbmFsLm5hbWVcbiAgICAgICAgfSk7XG4gICAgICB9XG4gICAgICBsYXN0T3JpZ2luYWxTb3VyY2UgPSBvcmlnaW5hbC5zb3VyY2U7XG4gICAgICBsYXN0T3JpZ2luYWxMaW5lID0gb3JpZ2luYWwubGluZTtcbiAgICAgIGxhc3RPcmlnaW5hbENvbHVtbiA9IG9yaWdpbmFsLmNvbHVtbjtcbiAgICAgIGxhc3RPcmlnaW5hbE5hbWUgPSBvcmlnaW5hbC5uYW1lO1xuICAgICAgc291cmNlTWFwcGluZ0FjdGl2ZSA9IHRydWU7XG4gICAgfSBlbHNlIGlmIChzb3VyY2VNYXBwaW5nQWN0aXZlKSB7XG4gICAgICBtYXAuYWRkTWFwcGluZyh7XG4gICAgICAgIGdlbmVyYXRlZDoge1xuICAgICAgICAgIGxpbmU6IGdlbmVyYXRlZC5saW5lLFxuICAgICAgICAgIGNvbHVtbjogZ2VuZXJhdGVkLmNvbHVtblxuICAgICAgICB9XG4gICAgICB9KTtcbiAgICAgIGxhc3RPcmlnaW5hbFNvdXJjZSA9IG51bGw7XG4gICAgICBzb3VyY2VNYXBwaW5nQWN0aXZlID0gZmFsc2U7XG4gICAgfVxuICAgIGZvciAodmFyIGlkeCA9IDAsIGxlbmd0aCA9IGNodW5rLmxlbmd0aDsgaWR4IDwgbGVuZ3RoOyBpZHgrKykge1xuICAgICAgaWYgKGNodW5rLmNoYXJDb2RlQXQoaWR4KSA9PT0gTkVXTElORV9DT0RFKSB7XG4gICAgICAgIGdlbmVyYXRlZC5saW5lKys7XG4gICAgICAgIGdlbmVyYXRlZC5jb2x1bW4gPSAwO1xuICAgICAgICAvLyBNYXBwaW5ncyBlbmQgYXQgZW9sXG4gICAgICAgIGlmIChpZHggKyAxID09PSBsZW5ndGgpIHtcbiAgICAgICAgICBsYXN0T3JpZ2luYWxTb3VyY2UgPSBudWxsO1xuICAgICAgICAgIHNvdXJjZU1hcHBpbmdBY3RpdmUgPSBmYWxzZTtcbiAgICAgICAgfSBlbHNlIGlmIChzb3VyY2VNYXBwaW5nQWN0aXZlKSB7XG4gICAgICAgICAgbWFwLmFkZE1hcHBpbmcoe1xuICAgICAgICAgICAgc291cmNlOiBvcmlnaW5hbC5zb3VyY2UsXG4gICAgICAgICAgICBvcmlnaW5hbDoge1xuICAgICAgICAgICAgICBsaW5lOiBvcmlnaW5hbC5saW5lLFxuICAgICAgICAgICAgICBjb2x1bW46IG9yaWdpbmFsLmNvbHVtblxuICAgICAgICAgICAgfSxcbiAgICAgICAgICAgIGdlbmVyYXRlZDoge1xuICAgICAgICAgICAgICBsaW5lOiBnZW5lcmF0ZWQubGluZSxcbiAgICAgICAgICAgICAgY29sdW1uOiBnZW5lcmF0ZWQuY29sdW1uXG4gICAgICAgICAgICB9LFxuICAgICAgICAgICAgbmFtZTogb3JpZ2luYWwubmFtZVxuICAgICAgICAgIH0pO1xuICAgICAgICB9XG4gICAgICB9IGVsc2Uge1xuICAgICAgICBnZW5lcmF0ZWQuY29sdW1uKys7XG4gICAgICB9XG4gICAgfVxuICB9KTtcbiAgdGhpcy53YWxrU291cmNlQ29udGVudHMoZnVuY3Rpb24gKHNvdXJjZUZpbGUsIHNvdXJjZUNvbnRlbnQpIHtcbiAgICBtYXAuc2V0U291cmNlQ29udGVudChzb3VyY2VGaWxlLCBzb3VyY2VDb250ZW50KTtcbiAgfSk7XG5cbiAgcmV0dXJuIHsgY29kZTogZ2VuZXJhdGVkLmNvZGUsIG1hcDogbWFwIH07XG59O1xuXG5leHBvcnRzLlNvdXJjZU5vZGUgPSBTb3VyY2VOb2RlO1xuXG5cblxuLy8vLy8vLy8vLy8vLy8vLy8vXG4vLyBXRUJQQUNLIEZPT1RFUlxuLy8gLi9saWIvc291cmNlLW5vZGUuanNcbi8vIG1vZHVsZSBpZCA9IDEwXG4vLyBtb2R1bGUgY2h1bmtzID0gMCJdLCJzb3VyY2VSb290IjoiIn0=