@streamr/cli-tools 4.1.0 → 6.0.0-alpha.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 (126) hide show
  1. package/.eslintignore +3 -0
  2. package/.eslintrc +6 -0
  3. package/CHANGELOG.md +37 -3
  4. package/README.md +52 -27
  5. package/bin/common.ts +94 -0
  6. package/bin/streamr-misc-get-session-token.ts +33 -0
  7. package/bin/streamr-misc.ts +10 -0
  8. package/bin/streamr-mock-data-generate.ts +17 -0
  9. package/bin/streamr-mock-data.ts +10 -0
  10. package/bin/streamr-storage-node-add-stream.ts +32 -0
  11. package/bin/streamr-storage-node-list-stream-parts.ts +38 -0
  12. package/bin/streamr-storage-node-list.ts +52 -0
  13. package/bin/streamr-storage-node-remove-stream.ts +32 -0
  14. package/bin/streamr-storage-node.ts +13 -0
  15. package/bin/streamr-stream-create.ts +35 -0
  16. package/bin/streamr-stream-grant-permission.ts +69 -0
  17. package/bin/streamr-stream-list.ts +33 -0
  18. package/bin/streamr-stream-publish.ts +30 -0
  19. package/bin/streamr-stream-resend.ts +99 -0
  20. package/bin/streamr-stream-revoke-permission.ts +28 -0
  21. package/bin/streamr-stream-show.ts +21 -0
  22. package/bin/streamr-stream-subscribe.ts +23 -0
  23. package/bin/{streamr.js → streamr-stream.ts} +6 -4
  24. package/bin/streamr.ts +13 -0
  25. package/dist/bin/common.d.ts +16 -0
  26. package/dist/bin/common.js +80 -0
  27. package/dist/bin/common.js.map +1 -0
  28. package/dist/bin/streamr-misc-get-session-token.d.ts +2 -0
  29. package/dist/bin/streamr-misc-get-session-token.js +33 -0
  30. package/dist/bin/streamr-misc-get-session-token.js.map +1 -0
  31. package/dist/bin/streamr-misc.d.ts +2 -0
  32. package/dist/bin/streamr-misc.js +15 -0
  33. package/dist/bin/streamr-misc.js.map +1 -0
  34. package/dist/bin/streamr-mock-data-generate.d.ts +2 -0
  35. package/dist/bin/streamr-mock-data-generate.js +21 -0
  36. package/dist/bin/streamr-mock-data-generate.js.map +1 -0
  37. package/dist/bin/streamr-mock-data.d.ts +2 -0
  38. package/dist/bin/streamr-mock-data.js +15 -0
  39. package/dist/bin/streamr-mock-data.js.map +1 -0
  40. package/dist/bin/streamr-storage-node-add-stream.d.ts +2 -0
  41. package/dist/bin/streamr-storage-node-add-stream.js +30 -0
  42. package/dist/bin/streamr-storage-node-add-stream.js.map +1 -0
  43. package/dist/bin/streamr-storage-node-list-stream-parts.d.ts +2 -0
  44. package/dist/bin/streamr-storage-node-list-stream-parts.js +37 -0
  45. package/dist/bin/streamr-storage-node-list-stream-parts.js.map +1 -0
  46. package/dist/bin/streamr-storage-node-list.d.ts +2 -0
  47. package/dist/bin/streamr-storage-node-list.js +48 -0
  48. package/dist/bin/streamr-storage-node-list.js.map +1 -0
  49. package/dist/bin/streamr-storage-node-remove-stream.d.ts +2 -0
  50. package/dist/bin/streamr-storage-node-remove-stream.js +30 -0
  51. package/dist/bin/streamr-storage-node-remove-stream.js.map +1 -0
  52. package/dist/bin/streamr-storage-node.d.ts +2 -0
  53. package/dist/bin/streamr-storage-node.js +18 -0
  54. package/dist/bin/streamr-storage-node.js.map +1 -0
  55. package/dist/bin/streamr-stream-create.d.ts +2 -0
  56. package/dist/bin/streamr-stream-create.js +32 -0
  57. package/dist/bin/streamr-stream-create.js.map +1 -0
  58. package/dist/bin/streamr-stream-grant-permission.d.ts +2 -0
  59. package/dist/bin/streamr-stream-grant-permission.js +68 -0
  60. package/dist/bin/streamr-stream-grant-permission.js.map +1 -0
  61. package/dist/bin/streamr-stream-list.d.ts +2 -0
  62. package/dist/bin/streamr-stream-list.js +37 -0
  63. package/dist/bin/streamr-stream-list.js.map +1 -0
  64. package/dist/bin/streamr-stream-publish.d.ts +2 -0
  65. package/dist/bin/streamr-stream-publish.js +34 -0
  66. package/dist/bin/streamr-stream-publish.js.map +1 -0
  67. package/dist/bin/streamr-stream-resend.d.ts +2 -0
  68. package/dist/bin/streamr-stream-resend.js +95 -0
  69. package/dist/bin/streamr-stream-resend.js.map +1 -0
  70. package/dist/bin/streamr-stream-revoke-permission.d.ts +2 -0
  71. package/dist/bin/streamr-stream-revoke-permission.js +26 -0
  72. package/dist/bin/streamr-stream-revoke-permission.js.map +1 -0
  73. package/dist/bin/streamr-stream-show.d.ts +2 -0
  74. package/dist/bin/streamr-stream-show.js +25 -0
  75. package/dist/bin/streamr-stream-show.js.map +1 -0
  76. package/dist/bin/streamr-stream-subscribe.d.ts +2 -0
  77. package/dist/bin/streamr-stream-subscribe.js +27 -0
  78. package/dist/bin/streamr-stream-subscribe.js.map +1 -0
  79. package/dist/bin/streamr-stream.d.ts +2 -0
  80. package/dist/bin/streamr-stream.js +22 -0
  81. package/dist/bin/streamr-stream.js.map +1 -0
  82. package/dist/bin/streamr.d.ts +2 -0
  83. package/dist/bin/streamr.js +18 -0
  84. package/dist/bin/streamr.js.map +1 -0
  85. package/dist/package.json +50 -0
  86. package/dist/src/create.d.ts +2 -0
  87. package/dist/src/create.js +20 -0
  88. package/dist/src/create.js.map +1 -0
  89. package/dist/src/generate.d.ts +1 -0
  90. package/dist/src/generate.js +32 -0
  91. package/dist/src/generate.js.map +1 -0
  92. package/dist/src/list.d.ts +2 -0
  93. package/dist/src/list.js +29 -0
  94. package/dist/src/list.js.map +1 -0
  95. package/dist/src/publish.d.ts +3 -0
  96. package/dist/src/publish.js +35 -0
  97. package/dist/src/publish.js.map +1 -0
  98. package/dist/src/resend.d.ts +4 -0
  99. package/dist/src/resend.js +29 -0
  100. package/dist/src/resend.js.map +1 -0
  101. package/dist/src/show.d.ts +2 -0
  102. package/dist/src/show.js +23 -0
  103. package/dist/src/show.js.map +1 -0
  104. package/dist/src/subscribe.d.ts +2 -0
  105. package/dist/src/subscribe.js +13 -0
  106. package/dist/src/subscribe.js.map +1 -0
  107. package/dist/tsconfig.tsbuildinfo +1 -0
  108. package/package.json +22 -12
  109. package/src/{create.js → create.ts} +7 -2
  110. package/src/{generate.js → generate.ts} +6 -3
  111. package/src/{list.js → list.ts} +6 -4
  112. package/src/{publish.js → publish.ts} +11 -7
  113. package/src/resend.ts +29 -0
  114. package/src/{show.js → show.ts} +8 -2
  115. package/src/subscribe.ts +9 -0
  116. package/tsconfig.json +7 -0
  117. package/bin/common.js +0 -79
  118. package/bin/streamr-create.js +0 -40
  119. package/bin/streamr-generate.js +0 -14
  120. package/bin/streamr-list.js +0 -35
  121. package/bin/streamr-publish.js +0 -28
  122. package/bin/streamr-resend.js +0 -101
  123. package/bin/streamr-show.js +0 -19
  124. package/bin/streamr-subscribe.js +0 -20
  125. package/src/resend.js +0 -43
  126. package/src/subscribe.js +0 -9
@@ -0,0 +1 @@
1
+ {"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/commander/typings/index.d.ts","../node_modules/@ethersproject/bytes/lib/index.d.ts","../node_modules/@ethersproject/bignumber/lib/bignumber.d.ts","../node_modules/@ethersproject/bignumber/lib/fixednumber.d.ts","../node_modules/@ethersproject/bignumber/lib/index.d.ts","../node_modules/@ethersproject/abi/lib/fragments.d.ts","../node_modules/@ethersproject/abi/lib/coders/abstract-coder.d.ts","../node_modules/@ethersproject/abi/lib/abi-coder.d.ts","../node_modules/@ethersproject/properties/lib/index.d.ts","../node_modules/@ethersproject/abi/lib/interface.d.ts","../node_modules/@ethersproject/abi/lib/index.d.ts","../node_modules/@ethersproject/networks/lib/types.d.ts","../node_modules/@ethersproject/networks/lib/index.d.ts","../node_modules/@ethersproject/transactions/lib/index.d.ts","../node_modules/@ethersproject/web/lib/index.d.ts","../node_modules/@ethersproject/abstract-provider/lib/index.d.ts","../node_modules/@ethersproject/abstract-signer/lib/index.d.ts","../node_modules/@ethersproject/contracts/lib/index.d.ts","../node_modules/@ethersproject/logger/lib/index.d.ts","../node_modules/@ethersproject/wordlists/lib/wordlist.d.ts","../node_modules/@ethersproject/wordlists/lib/wordlists.d.ts","../node_modules/@ethersproject/wordlists/lib/index.d.ts","../node_modules/@ethersproject/hdnode/lib/index.d.ts","../node_modules/@ethersproject/signing-key/lib/index.d.ts","../node_modules/@ethersproject/json-wallets/lib/crowdsale.d.ts","../node_modules/@ethersproject/json-wallets/lib/inspect.d.ts","../node_modules/@ethersproject/json-wallets/lib/keystore.d.ts","../node_modules/@ethersproject/json-wallets/lib/index.d.ts","../node_modules/@ethersproject/wallet/lib/index.d.ts","../node_modules/@ethersproject/constants/lib/addresses.d.ts","../node_modules/@ethersproject/constants/lib/bignumbers.d.ts","../node_modules/@ethersproject/constants/lib/hashes.d.ts","../node_modules/@ethersproject/constants/lib/strings.d.ts","../node_modules/@ethersproject/constants/lib/index.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@ethersproject/providers/lib/formatter.d.ts","../node_modules/@ethersproject/providers/lib/base-provider.d.ts","../node_modules/@ethersproject/providers/lib/json-rpc-provider.d.ts","../node_modules/@ethersproject/providers/lib/websocket-provider.d.ts","../node_modules/@ethersproject/providers/lib/url-json-rpc-provider.d.ts","../node_modules/@ethersproject/providers/lib/alchemy-provider.d.ts","../node_modules/@ethersproject/providers/lib/cloudflare-provider.d.ts","../node_modules/@ethersproject/providers/lib/etherscan-provider.d.ts","../node_modules/@ethersproject/providers/lib/fallback-provider.d.ts","../node_modules/@ethersproject/providers/lib/ipc-provider.d.ts","../node_modules/@ethersproject/providers/lib/infura-provider.d.ts","../node_modules/@ethersproject/providers/lib/json-rpc-batch-provider.d.ts","../node_modules/@ethersproject/providers/lib/nodesmith-provider.d.ts","../node_modules/@ethersproject/providers/lib/pocket-provider.d.ts","../node_modules/@ethersproject/providers/lib/web3-provider.d.ts","../node_modules/@ethersproject/providers/lib/index.d.ts","../node_modules/@ethersproject/address/lib/index.d.ts","../node_modules/@ethersproject/base64/lib/base64.d.ts","../node_modules/@ethersproject/base64/lib/index.d.ts","../node_modules/@ethersproject/basex/lib/index.d.ts","../node_modules/@ethersproject/hash/lib/id.d.ts","../node_modules/@ethersproject/hash/lib/namehash.d.ts","../node_modules/@ethersproject/hash/lib/message.d.ts","../node_modules/@ethersproject/hash/lib/typed-data.d.ts","../node_modules/@ethersproject/hash/lib/index.d.ts","../node_modules/@ethersproject/keccak256/lib/index.d.ts","../node_modules/@ethersproject/sha2/lib/types.d.ts","../node_modules/@ethersproject/sha2/lib/sha2.d.ts","../node_modules/@ethersproject/sha2/lib/index.d.ts","../node_modules/@ethersproject/solidity/lib/index.d.ts","../node_modules/@ethersproject/random/lib/random.d.ts","../node_modules/@ethersproject/random/lib/shuffle.d.ts","../node_modules/@ethersproject/random/lib/index.d.ts","../node_modules/@ethersproject/rlp/lib/index.d.ts","../node_modules/@ethersproject/strings/lib/bytes32.d.ts","../node_modules/@ethersproject/strings/lib/idna.d.ts","../node_modules/@ethersproject/strings/lib/utf8.d.ts","../node_modules/@ethersproject/strings/lib/index.d.ts","../node_modules/@ethersproject/units/lib/index.d.ts","../node_modules/ethers/lib/utils.d.ts","../node_modules/ethers/lib/_version.d.ts","../node_modules/ethers/lib/ethers.d.ts","../node_modules/ethers/lib/index.d.ts","../node_modules/reflect-metadata/index.d.ts","../node_modules/streamr-client/types/src/utils/patchtsyringe.d.ts","../node_modules/tsyringe/dist/typings/types/constructor.d.ts","../node_modules/tsyringe/dist/typings/lazy-helpers.d.ts","../node_modules/tsyringe/dist/typings/providers/class-provider.d.ts","../node_modules/tsyringe/dist/typings/providers/value-provider.d.ts","../node_modules/tsyringe/dist/typings/types/transform.d.ts","../node_modules/tsyringe/dist/typings/providers/injection-token.d.ts","../node_modules/tsyringe/dist/typings/providers/token-provider.d.ts","../node_modules/tsyringe/dist/typings/providers/provider.d.ts","../node_modules/tsyringe/dist/typings/providers/factory-provider.d.ts","../node_modules/tsyringe/dist/typings/types/lifecycle.d.ts","../node_modules/tsyringe/dist/typings/types/registration-options.d.ts","../node_modules/tsyringe/dist/typings/types/frequency.d.ts","../node_modules/tsyringe/dist/typings/types/interceptor-options.d.ts","../node_modules/tsyringe/dist/typings/types/dependency-container.d.ts","../node_modules/tsyringe/dist/typings/types/dictionary.d.ts","../node_modules/tsyringe/dist/typings/types/index.d.ts","../node_modules/tsyringe/dist/typings/decorators/auto-injectable.d.ts","../node_modules/tsyringe/dist/typings/decorators/inject.d.ts","../node_modules/tsyringe/dist/typings/decorators/injectable.d.ts","../node_modules/tsyringe/dist/typings/decorators/registry.d.ts","../node_modules/tsyringe/dist/typings/decorators/singleton.d.ts","../node_modules/tsyringe/dist/typings/decorators/inject-all.d.ts","../node_modules/tsyringe/dist/typings/decorators/inject-all-with-transform.d.ts","../node_modules/tsyringe/dist/typings/providers/index.d.ts","../node_modules/tsyringe/dist/typings/decorators/inject-with-transform.d.ts","../node_modules/tsyringe/dist/typings/decorators/scoped.d.ts","../node_modules/tsyringe/dist/typings/decorators/index.d.ts","../node_modules/tsyringe/dist/typings/factories/factory-function.d.ts","../node_modules/tsyringe/dist/typings/factories/instance-caching-factory.d.ts","../node_modules/tsyringe/dist/typings/factories/instance-per-container-caching-factory.d.ts","../node_modules/tsyringe/dist/typings/factories/predicate-aware-class-factory.d.ts","../node_modules/tsyringe/dist/typings/factories/index.d.ts","../node_modules/tsyringe/dist/typings/dependency-container.d.ts","../node_modules/tsyringe/dist/typings/index.d.ts","../node_modules/ts-toolbelt/out/any/equals.d.ts","../node_modules/ts-toolbelt/out/boolean/_internal.d.ts","../node_modules/ts-toolbelt/out/test.d.ts","../node_modules/ts-toolbelt/out/any/await.d.ts","../node_modules/ts-toolbelt/out/any/key.d.ts","../node_modules/ts-toolbelt/out/list/list.d.ts","../node_modules/ts-toolbelt/out/any/at.d.ts","../node_modules/ts-toolbelt/out/any/cast.d.ts","../node_modules/ts-toolbelt/out/object/_internal.d.ts","../node_modules/ts-toolbelt/out/misc/builtin.d.ts","../node_modules/ts-toolbelt/out/union/has.d.ts","../node_modules/ts-toolbelt/out/any/if.d.ts","../node_modules/ts-toolbelt/out/any/compute.d.ts","../node_modules/ts-toolbelt/out/any/extends.d.ts","../node_modules/ts-toolbelt/out/any/contains.d.ts","../node_modules/ts-toolbelt/out/any/keys.d.ts","../node_modules/ts-toolbelt/out/any/knownkeys.d.ts","../node_modules/ts-toolbelt/out/any/_internal.d.ts","../node_modules/ts-toolbelt/out/any/is.d.ts","../node_modules/ts-toolbelt/out/any/promise.d.ts","../node_modules/ts-toolbelt/out/any/try.d.ts","../node_modules/ts-toolbelt/out/any/type.d.ts","../node_modules/ts-toolbelt/out/any/x.d.ts","../node_modules/ts-toolbelt/out/any/_api.d.ts","../node_modules/ts-toolbelt/out/boolean/and.d.ts","../node_modules/ts-toolbelt/out/boolean/not.d.ts","../node_modules/ts-toolbelt/out/boolean/or.d.ts","../node_modules/ts-toolbelt/out/boolean/xor.d.ts","../node_modules/ts-toolbelt/out/boolean/_api.d.ts","../node_modules/ts-toolbelt/out/class/class.d.ts","../node_modules/ts-toolbelt/out/class/instance.d.ts","../node_modules/ts-toolbelt/out/class/parameters.d.ts","../node_modules/ts-toolbelt/out/class/_api.d.ts","../node_modules/ts-toolbelt/out/object/unionof.d.ts","../node_modules/ts-toolbelt/out/iteration/iteration.d.ts","../node_modules/ts-toolbelt/out/iteration/next.d.ts","../node_modules/ts-toolbelt/out/iteration/prev.d.ts","../node_modules/ts-toolbelt/out/iteration/iterationof.d.ts","../node_modules/ts-toolbelt/out/iteration/pos.d.ts","../node_modules/ts-toolbelt/out/community/includesdeep.d.ts","../node_modules/ts-toolbelt/out/community/isliteral.d.ts","../node_modules/ts-toolbelt/out/community/_api.d.ts","../node_modules/ts-toolbelt/out/list/length.d.ts","../node_modules/ts-toolbelt/out/list/head.d.ts","../node_modules/ts-toolbelt/out/list/pop.d.ts","../node_modules/ts-toolbelt/out/list/tail.d.ts","../node_modules/ts-toolbelt/out/object/path.d.ts","../node_modules/ts-toolbelt/out/union/select.d.ts","../node_modules/ts-toolbelt/out/string/_internal.d.ts","../node_modules/ts-toolbelt/out/string/join.d.ts","../node_modules/ts-toolbelt/out/string/split.d.ts","../node_modules/ts-toolbelt/out/function/autopath.d.ts","../node_modules/ts-toolbelt/out/union/intersectof.d.ts","../node_modules/ts-toolbelt/out/function/function.d.ts","../node_modules/ts-toolbelt/out/list/concat.d.ts","../node_modules/ts-toolbelt/out/function/parameters.d.ts","../node_modules/ts-toolbelt/out/function/return.d.ts","../node_modules/ts-toolbelt/out/union/exclude.d.ts","../node_modules/ts-toolbelt/out/union/nonnullable.d.ts","../node_modules/ts-toolbelt/out/object/pick.d.ts","../node_modules/ts-toolbelt/out/object/omit.d.ts","../node_modules/ts-toolbelt/out/object/patch.d.ts","../node_modules/ts-toolbelt/out/object/nonnullable.d.ts","../node_modules/ts-toolbelt/out/object/requiredkeys.d.ts","../node_modules/ts-toolbelt/out/list/objectof.d.ts","../node_modules/ts-toolbelt/out/list/requiredkeys.d.ts","../node_modules/ts-toolbelt/out/function/curry.d.ts","../node_modules/ts-toolbelt/out/function/compose/list/async.d.ts","../node_modules/ts-toolbelt/out/function/compose/list/sync.d.ts","../node_modules/ts-toolbelt/out/function/compose/multi/async.d.ts","../node_modules/ts-toolbelt/out/function/compose/multi/sync.d.ts","../node_modules/ts-toolbelt/out/function/_internal.d.ts","../node_modules/ts-toolbelt/out/function/compose.d.ts","../node_modules/ts-toolbelt/out/function/exact.d.ts","../node_modules/ts-toolbelt/out/function/narrow.d.ts","../node_modules/ts-toolbelt/out/function/length.d.ts","../node_modules/ts-toolbelt/out/function/noinfer.d.ts","../node_modules/ts-toolbelt/out/function/pipe/list/async.d.ts","../node_modules/ts-toolbelt/out/function/pipe/list/sync.d.ts","../node_modules/ts-toolbelt/out/function/pipe/multi/async.d.ts","../node_modules/ts-toolbelt/out/function/pipe/multi/sync.d.ts","../node_modules/ts-toolbelt/out/function/pipe.d.ts","../node_modules/ts-toolbelt/out/function/promisify.d.ts","../node_modules/ts-toolbelt/out/function/uncurry.d.ts","../node_modules/ts-toolbelt/out/object/overwrite.d.ts","../node_modules/ts-toolbelt/out/list/_internal.d.ts","../node_modules/ts-toolbelt/out/union/replace.d.ts","../node_modules/ts-toolbelt/out/object/update.d.ts","../node_modules/ts-toolbelt/out/list/update.d.ts","../node_modules/ts-toolbelt/out/iteration/key.d.ts","../node_modules/ts-toolbelt/out/function/validpath.d.ts","../node_modules/ts-toolbelt/out/function/_api.d.ts","../node_modules/ts-toolbelt/out/iteration/_api.d.ts","../node_modules/ts-toolbelt/out/misc/json/primitive.d.ts","../node_modules/ts-toolbelt/out/misc/json/object.d.ts","../node_modules/ts-toolbelt/out/misc/json/value.d.ts","../node_modules/ts-toolbelt/out/misc/json/array.d.ts","../node_modules/ts-toolbelt/out/misc/json/_api.d.ts","../node_modules/ts-toolbelt/out/misc/primitive.d.ts","../node_modules/ts-toolbelt/out/misc/_api.d.ts","../node_modules/ts-toolbelt/out/number/negate.d.ts","../node_modules/ts-toolbelt/out/number/isnegative.d.ts","../node_modules/ts-toolbelt/out/number/absolute.d.ts","../node_modules/ts-toolbelt/out/number/add.d.ts","../node_modules/ts-toolbelt/out/number/sub.d.ts","../node_modules/ts-toolbelt/out/number/ispositive.d.ts","../node_modules/ts-toolbelt/out/number/greater.d.ts","../node_modules/ts-toolbelt/out/number/greatereq.d.ts","../node_modules/ts-toolbelt/out/number/iszero.d.ts","../node_modules/ts-toolbelt/out/number/lower.d.ts","../node_modules/ts-toolbelt/out/number/lowereq.d.ts","../node_modules/ts-toolbelt/out/list/prepend.d.ts","../node_modules/ts-toolbelt/out/iteration/_internal.d.ts","../node_modules/ts-toolbelt/out/number/range.d.ts","../node_modules/ts-toolbelt/out/number/_api.d.ts","../node_modules/ts-toolbelt/out/object/optionalkeys.d.ts","../node_modules/ts-toolbelt/out/object/merge.d.ts","../node_modules/ts-toolbelt/out/object/p/merge.d.ts","../node_modules/ts-toolbelt/out/list/append.d.ts","../node_modules/ts-toolbelt/out/object/listof.d.ts","../node_modules/ts-toolbelt/out/list/omit.d.ts","../node_modules/ts-toolbelt/out/object/p/omit.d.ts","../node_modules/ts-toolbelt/out/object/p/pick.d.ts","../node_modules/ts-toolbelt/out/object/readonly.d.ts","../node_modules/ts-toolbelt/out/object/p/readonly.d.ts","../node_modules/ts-toolbelt/out/object/p/update.d.ts","../node_modules/ts-toolbelt/out/list/lastkey.d.ts","../node_modules/ts-toolbelt/out/object/p/record.d.ts","../node_modules/ts-toolbelt/out/object/p/_api.d.ts","../node_modules/ts-toolbelt/out/object/assign.d.ts","../node_modules/ts-toolbelt/out/object/required.d.ts","../node_modules/ts-toolbelt/out/object/optional.d.ts","../node_modules/ts-toolbelt/out/object/atleast.d.ts","../node_modules/ts-toolbelt/out/object/compulsory.d.ts","../node_modules/ts-toolbelt/out/object/compulsorykeys.d.ts","../node_modules/ts-toolbelt/out/object/excludekeys.d.ts","../node_modules/ts-toolbelt/out/object/exclude.d.ts","../node_modules/ts-toolbelt/out/object/diff.d.ts","../node_modules/ts-toolbelt/out/object/record.d.ts","../node_modules/ts-toolbelt/out/union/strict.d.ts","../node_modules/ts-toolbelt/out/object/either.d.ts","../node_modules/ts-toolbelt/out/object/filterkeys.d.ts","../node_modules/ts-toolbelt/out/object/filter.d.ts","../node_modules/ts-toolbelt/out/object/has.d.ts","../node_modules/ts-toolbelt/out/object/haspath.d.ts","../node_modules/ts-toolbelt/out/object/selectkeys.d.ts","../node_modules/ts-toolbelt/out/object/includes.d.ts","../node_modules/ts-toolbelt/out/object/intersectkeys.d.ts","../node_modules/ts-toolbelt/out/object/intersect.d.ts","../node_modules/ts-toolbelt/out/object/invert.d.ts","../node_modules/ts-toolbelt/out/object/mergeall.d.ts","../node_modules/ts-toolbelt/out/object/modify.d.ts","../node_modules/ts-toolbelt/out/object/nonnullablekeys.d.ts","../node_modules/ts-toolbelt/out/union/nullable.d.ts","../node_modules/ts-toolbelt/out/object/nullable.d.ts","../node_modules/ts-toolbelt/out/object/nullablekeys.d.ts","../node_modules/ts-toolbelt/out/object/object.d.ts","../node_modules/ts-toolbelt/out/object/partial.d.ts","../node_modules/ts-toolbelt/out/object/patchall.d.ts","../node_modules/ts-toolbelt/out/object/paths.d.ts","../node_modules/ts-toolbelt/out/object/readonlykeys.d.ts","../node_modules/ts-toolbelt/out/object/replace.d.ts","../node_modules/ts-toolbelt/out/object/select.d.ts","../node_modules/ts-toolbelt/out/object/undefinable.d.ts","../node_modules/ts-toolbelt/out/object/undefinablekeys.d.ts","../node_modules/ts-toolbelt/out/object/unionize.d.ts","../node_modules/ts-toolbelt/out/object/writable.d.ts","../node_modules/ts-toolbelt/out/object/writablekeys.d.ts","../node_modules/ts-toolbelt/out/object/_api.d.ts","../node_modules/ts-toolbelt/out/string/at.d.ts","../node_modules/ts-toolbelt/out/string/length.d.ts","../node_modules/ts-toolbelt/out/string/replace.d.ts","../node_modules/ts-toolbelt/out/string/_api.d.ts","../node_modules/ts-toolbelt/out/list/assign.d.ts","../node_modules/ts-toolbelt/out/list/atleast.d.ts","../node_modules/ts-toolbelt/out/list/compulsory.d.ts","../node_modules/ts-toolbelt/out/list/compulsorykeys.d.ts","../node_modules/ts-toolbelt/out/list/diff.d.ts","../node_modules/ts-toolbelt/out/list/drop.d.ts","../node_modules/ts-toolbelt/out/list/either.d.ts","../node_modules/ts-toolbelt/out/list/exclude.d.ts","../node_modules/ts-toolbelt/out/list/excludekeys.d.ts","../node_modules/ts-toolbelt/out/list/unionof.d.ts","../node_modules/ts-toolbelt/out/list/keyset.d.ts","../node_modules/ts-toolbelt/out/list/pick.d.ts","../node_modules/ts-toolbelt/out/list/extract.d.ts","../node_modules/ts-toolbelt/out/list/filter.d.ts","../node_modules/ts-toolbelt/out/list/filterkeys.d.ts","../node_modules/ts-toolbelt/out/list/unnest.d.ts","../node_modules/ts-toolbelt/out/list/flatten.d.ts","../node_modules/ts-toolbelt/out/list/take.d.ts","../node_modules/ts-toolbelt/out/list/group.d.ts","../node_modules/ts-toolbelt/out/list/has.d.ts","../node_modules/ts-toolbelt/out/list/haspath.d.ts","../node_modules/ts-toolbelt/out/list/includes.d.ts","../node_modules/ts-toolbelt/out/list/intersect.d.ts","../node_modules/ts-toolbelt/out/list/intersectkeys.d.ts","../node_modules/ts-toolbelt/out/list/last.d.ts","../node_modules/ts-toolbelt/out/list/longest.d.ts","../node_modules/ts-toolbelt/out/list/merge.d.ts","../node_modules/ts-toolbelt/out/list/mergeall.d.ts","../node_modules/ts-toolbelt/out/list/modify.d.ts","../node_modules/ts-toolbelt/out/list/nonnullable.d.ts","../node_modules/ts-toolbelt/out/list/nonnullablekeys.d.ts","../node_modules/ts-toolbelt/out/list/nullable.d.ts","../node_modules/ts-toolbelt/out/list/nullablekeys.d.ts","../node_modules/ts-toolbelt/out/list/optional.d.ts","../node_modules/ts-toolbelt/out/list/optionalkeys.d.ts","../node_modules/ts-toolbelt/out/list/overwrite.d.ts","../node_modules/ts-toolbelt/out/list/partial.d.ts","../node_modules/ts-toolbelt/out/list/patch.d.ts","../node_modules/ts-toolbelt/out/list/patchall.d.ts","../node_modules/ts-toolbelt/out/list/path.d.ts","../node_modules/ts-toolbelt/out/list/paths.d.ts","../node_modules/ts-toolbelt/out/list/readonly.d.ts","../node_modules/ts-toolbelt/out/list/readonlykeys.d.ts","../node_modules/ts-toolbelt/out/list/remove.d.ts","../node_modules/ts-toolbelt/out/list/repeat.d.ts","../node_modules/ts-toolbelt/out/list/replace.d.ts","../node_modules/ts-toolbelt/out/list/required.d.ts","../node_modules/ts-toolbelt/out/list/reverse.d.ts","../node_modules/ts-toolbelt/out/list/select.d.ts","../node_modules/ts-toolbelt/out/list/selectkeys.d.ts","../node_modules/ts-toolbelt/out/list/shortest.d.ts","../node_modules/ts-toolbelt/out/list/undefinable.d.ts","../node_modules/ts-toolbelt/out/list/undefinablekeys.d.ts","../node_modules/ts-toolbelt/out/list/unionize.d.ts","../node_modules/ts-toolbelt/out/list/writable.d.ts","../node_modules/ts-toolbelt/out/list/writablekeys.d.ts","../node_modules/ts-toolbelt/out/list/zip.d.ts","../node_modules/ts-toolbelt/out/list/zipobj.d.ts","../node_modules/ts-toolbelt/out/list/_api.d.ts","../node_modules/ts-toolbelt/out/union/diff.d.ts","../node_modules/ts-toolbelt/out/union/filter.d.ts","../node_modules/ts-toolbelt/out/union/intersect.d.ts","../node_modules/ts-toolbelt/out/union/last.d.ts","../node_modules/ts-toolbelt/out/union/merge.d.ts","../node_modules/ts-toolbelt/out/union/pop.d.ts","../node_modules/ts-toolbelt/out/union/listof.d.ts","../node_modules/ts-toolbelt/out/union/_api.d.ts","../node_modules/ts-toolbelt/out/index.d.ts","../node_modules/streamr-client/types/src/types.d.ts","../node_modules/streamr-client/types/src/ethereum.d.ts","../node_modules/@types/ms/index.d.ts","../node_modules/@types/debug/index.d.ts","../node_modules/streamr-client/types/src/utils/log.d.ts","../node_modules/streamr-client/types/src/utils/context.d.ts","../node_modules/streamr-client-protocol/dist/src/serializer.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/controlmessage.d.ts","../node_modules/streamr-client-protocol/dist/src/utils/spid.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/message_layer/messageref.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/message_layer/messageid.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/message_layer/encryptedgroupkey.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/message_layer/streammessage.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/broadcast_message/broadcastmessage.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/error_response/errorresponse.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/publish_request/publishrequest.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/resend_request/resendfromrequest.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/resend_request/resendlastrequest.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/resend_request/resendrangerequest.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/resend_response/resendresponsenoresend.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/resend_response/resendresponseresending.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/resend_response/resendresponseresent.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/subscribe_request/subscriberequest.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/subscribe_response/subscriberesponse.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/unicast_message/unicastmessage.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/unsubscribe_request/unsubscriberequest.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/unsubscribe_response/unsubscriberesponse.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/broadcast_message/broadcastmessageserializerv1.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/broadcast_message/broadcastmessageserializerv2.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/error_response/errorresponseserializerv1.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/error_response/errorresponseserializerv2.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/publish_request/publishrequestserializerv1.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/publish_request/publishrequestserializerv2.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/resend_request/resendfromrequestserializerv1.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/resend_request/resendfromrequestserializerv2.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/resend_request/resendlastrequestserializerv1.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/resend_request/resendlastrequestserializerv2.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/resend_request/resendrangerequestserializerv1.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/resend_request/resendrangerequestserializerv2.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/resend_response/resendresponsenoresendserializerv1.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/resend_response/resendresponsenoresendserializerv2.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/resend_response/resendresponseresendingserializerv1.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/resend_response/resendresponseresendingserializerv2.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/resend_response/resendresponseresentserializerv1.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/resend_response/resendresponseresentserializerv2.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/subscribe_request/subscriberequestserializerv1.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/subscribe_request/subscriberequestserializerv2.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/subscribe_response/subscriberesponseserializerv1.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/subscribe_response/subscriberesponseserializerv2.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/unicast_message/unicastmessageserializerv1.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/unicast_message/unicastmessageserializerv2.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/unsubscribe_request/unsubscriberequestserializerv1.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/unsubscribe_request/unsubscriberequestserializerv2.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/unsubscribe_response/unsubscriberesponseserializerv1.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/unsubscribe_response/unsubscriberesponseserializerv2.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/control_layer/index.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/message_layer/messageidstrict.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/message_layer/messagerefstrict.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/message_layer/groupkeymessage.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/message_layer/groupkeyrequest.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/message_layer/groupkeyresponse.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/message_layer/groupkeyannounce.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/message_layer/groupkeyerrorresponse.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/message_layer/streammessageserializerv30.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/message_layer/streammessageserializerv31.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/message_layer/streammessageserializerv32.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/message_layer/index.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/tracker_layer/trackermessage.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/tracker_layer/instruction_message/instructionmessage.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/tracker_layer/error_message/errormessage.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/tracker_layer/originator.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/tracker_layer/relay_message/relaymessage.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/tracker_layer/status_message/statusmessage.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/tracker_layer/error_message/errormessageserializerv2.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/tracker_layer/instruction_message/instructionmessageserializerv2.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/tracker_layer/relay_message/relaymessageserializerv2.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/tracker_layer/status_message/statusmessageserializerv2.d.ts","../node_modules/streamr-client-protocol/dist/src/protocol/tracker_layer/index.d.ts","../node_modules/streamr-client-protocol/dist/src/errors/validationerror.d.ts","../node_modules/streamr-client-protocol/dist/src/errors/streammessageerror.d.ts","../node_modules/streamr-client-protocol/dist/src/errors/invalidjsonerror.d.ts","../node_modules/streamr-client-protocol/dist/src/errors/unsupportedversionerror.d.ts","../node_modules/streamr-client-protocol/dist/src/errors/gapfillfailederror.d.ts","../node_modules/streamr-client-protocol/dist/src/errors/index.d.ts","../node_modules/streamr-client-protocol/dist/src/utils/timestamputil.d.ts","../node_modules/strict-event-emitter-types/types/src/index.d.ts","../node_modules/streamr-client-protocol/dist/src/utils/orderedmsgchain.d.ts","../node_modules/streamr-client-protocol/dist/src/utils/orderingutil.d.ts","../node_modules/streamr-client-protocol/dist/src/utils/streammessagevalidator.d.ts","../node_modules/streamr-client-protocol/dist/src/utils/cachingstreammessagevalidator.d.ts","../node_modules/streamr-client-protocol/dist/src/utils/signingutil.d.ts","../node_modules/streamr-client-protocol/dist/src/utils/trackerregistry.d.ts","../node_modules/streamr-client-protocol/dist/src/utils/storagenoderegistry.d.ts","../node_modules/streamr-client-protocol/dist/src/utils/nodeutil.d.ts","../node_modules/streamr-client-protocol/dist/src/utils/hashutil.d.ts","../node_modules/streamr-client-protocol/dist/src/utils/index.d.ts","../node_modules/streamr-client-protocol/dist/src/index.d.ts","../node_modules/streamr-network/dist/src/connection/iwebrtcendpoint.d.ts","../node_modules/streamr-network/dist/src/protocol/nodetonode.d.ts","../node_modules/streamr-network/dist/src/helpers/logger/loggercommon.d.ts","../node_modules/streamr-network/dist/src/helpers/logger/loggernode.d.ts","../node_modules/streamr-network/dist/src/helpers/logger.d.ts","../node_modules/streamr-network/dist/src/connection/ws/abstractwsconnection.d.ts","../node_modules/streamr-network/dist/src/connection/ws/abstractwsendpoint.d.ts","../node_modules/streamr-network/dist/src/connection/ws/abstractclientwsendpoint.d.ts","../node_modules/streamr-network/dist/src/connection/ws/serverwsconnection.d.ts","../node_modules/streamr-network/dist/src/connection/ws/serverwsendpoint.d.ts","../node_modules/streamr-network/dist/src/protocol/trackerserver.d.ts","../node_modules/streamr-network/dist/src/logic/tracker/overlaytopology.d.ts","../node_modules/streamr-network/dist/src/logic/tracker/tracker.d.ts","../node_modules/streamr-network/dist/src/protocol/nodetotracker.d.ts","../node_modules/streamr-network/dist/src/logic/node/streammanager.d.ts","../node_modules/streamr-network/dist/src/logic/node/trackermanager.d.ts","../node_modules/streamr-network/dist/src/logic/node/node.d.ts","../node_modules/streamr-network/dist/src/identifiers.d.ts","../node_modules/streamr-network/dist/src/connection/peerinfo.d.ts","../node_modules/streamr-network/dist/src/helpers/metricscontext.d.ts","../node_modules/streamr-network/dist/src/logic/node/networknode.d.ts","../node_modules/streamr-network/dist/src/namedirectory.d.ts","../node_modules/streamr-network/dist/src/createnetworknode.d.ts","../node_modules/streamr-network/dist/src/starttracker.d.ts","../node_modules/streamr-network/dist/src/composition.d.ts","../node_modules/streamr-client/types/src/utils/aggregatederror.d.ts","../node_modules/streamr-client/types/src/utils/scaffold.d.ts","../node_modules/streamr-client/types/src/utils/uuid.d.ts","../node_modules/streamr-client/types/src/utils/index.d.ts","../node_modules/streamr-client/types/src/utils/plugin.d.ts","../node_modules/streamr-client/types/src/utils/signal.d.ts","../node_modules/streamr-client/types/src/destroysignal.d.ts","../node_modules/streamr-client/types/src/utils/stoppable.d.ts","../node_modules/streamr-client/types/src/utils/gate.d.ts","../node_modules/streamr-client/types/src/utils/generatorutils.d.ts","../node_modules/streamr-client/types/src/utils/pushbuffer.d.ts","../node_modules/streamr-client/types/src/utils/pipeline.d.ts","../node_modules/streamr-client/types/src/messagestream.d.ts","../node_modules/streamr-client/types/src/subscription.d.ts","../node_modules/streamr-client/types/src/brubecknode.d.ts","../node_modules/streamr-client/types/src/subscriptionsession.d.ts","../node_modules/streamr-client/types/src/subscriber.d.ts","../node_modules/streamr-client/types/src/encryption/encryption.d.ts","../node_modules/eventemitter3/index.d.ts","../node_modules/streamr-client/types/src/loginendpoints.d.ts","../node_modules/streamr-client/types/src/session.d.ts","../../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../node_modules/streamr-client/types/src/rest.d.ts","../node_modules/streamr-client/types/src/storagenoderegistry.d.ts","../node_modules/streamr-client/types/src/resends.d.ts","../node_modules/streamr-client/types/src/streamendpointscached.d.ts","../node_modules/streamr-client/types/src/stream.d.ts","../node_modules/streamr-client/types/src/streamendpoints.d.ts","../node_modules/streamr-client/types/src/streampartitioner.d.ts","../node_modules/streamr-client/types/src/messagechain.d.ts","../node_modules/streamr-client/types/src/messagecreator.d.ts","../node_modules/streamr-client/types/src/signer.d.ts","../node_modules/streamr-client/types/src/encryption/persistentstore.d.ts","../node_modules/streamr-client/types/src/encryption/serverpersistentstore.d.ts","../node_modules/streamr-client/types/src/encryption/groupkeystore.d.ts","../node_modules/streamr-client/types/src/encryption/groupkeystorefactory.d.ts","../node_modules/streamr-client/types/src/encryption/keyexchangepublisher.d.ts","../node_modules/streamr-client/types/src/encrypt.d.ts","../node_modules/streamr-client/types/src/validator.d.ts","../node_modules/streamr-client/types/src/publishpipeline.d.ts","../node_modules/streamr-client/types/src/publisher.d.ts","../node_modules/streamr-client/types/src/encryption/keyexchangeutils.d.ts","../node_modules/streamr-client/types/src/configbase.d.ts","../node_modules/streamr-client/types/src/config.d.ts","../node_modules/streamr-client/types/src/resendsubscribe.d.ts","../node_modules/streamr-client/types/src/dataunion/contracts.d.ts","../node_modules/streamr-client/types/src/dataunion/dataunion.d.ts","../node_modules/streamr-client/types/src/dataunion/index.d.ts","../node_modules/streamr-client/types/src/streamrclient.d.ts","../node_modules/streamr-client/types/src/storagenode.d.ts","../node_modules/streamr-client/types/src/configtest.d.ts","../node_modules/streamr-client/types/src/authfetch.d.ts","../node_modules/streamr-client/types/src/index-exports.d.ts","../node_modules/streamr-client/types/src/index.d.ts","../bin/common.ts","../package.json","../bin/streamr-misc-get-session-token.ts","../bin/streamr-misc.ts","../src/generate.ts","../bin/streamr-mock-data-generate.ts","../bin/streamr-mock-data.ts","../bin/streamr-storage-node-add-stream.ts","../node_modules/easy-table/table.d.ts","../bin/streamr-storage-node-list-stream-parts.ts","../bin/streamr-storage-node-list.ts","../bin/streamr-storage-node-remove-stream.ts","../bin/streamr-storage-node.ts","../src/create.ts","../bin/streamr-stream-create.ts","../bin/streamr-stream-grant-permission.ts","../src/list.ts","../bin/streamr-stream-list.ts","../node_modules/@types/event-stream/index.d.ts","../src/publish.ts","../bin/streamr-stream-publish.ts","../src/resend.ts","../bin/streamr-stream-resend.ts","../bin/streamr-stream-revoke-permission.ts","../src/show.ts","../bin/streamr-stream-show.ts","../src/subscribe.ts","../bin/streamr-stream-subscribe.ts","../bin/streamr-stream.ts","../bin/streamr.ts","../node_modules/jest-diff/build/cleanupsemantic.d.ts","../node_modules/jest-diff/build/types.d.ts","../node_modules/jest-diff/build/difflines.d.ts","../node_modules/jest-diff/build/printdiffs.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/pretty-format/build/types.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"aa9fb4c70f369237c2f45f9d969c9a59e0eae9a192962eb48581fe864aa609db","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"51b8b27c21c066bf877646e320bf6a722b80d1ade65e686923cd9d4494aef1ca","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"2c8c5ee58f30e7c944e04ab1fb5506fdbb4dd507c9efa6972cf4b91cec90c503","affectsGlobalScope":true},{"version":"2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"9f1817f7c3f02f6d56e0f403b927e90bb133f371dcebc36fa7d6d208ef6899da","affectsGlobalScope":true},{"version":"4632665b87204bb1caa8b44d165bce0c50dfab177df5b561b345a567cabacf9a","affectsGlobalScope":true},"7717e1ba82d36aee8d76cb53e218b2ffc78d2177c089775244ddde9118b88c83","2b87abc33d1d34762475c9393c087d2308547de24327d98b2c719826f4874b23","bdf5a95eb0a2dd1d39805bdf51b46ba012bb9b92b2ddaae16219595bba7678a5","9f794a0e8550a03baff865a3961cc22afbd85bc4ba9672bdda036971928f85f4","66a697d1e4cdbf25cdce4644a8085a8563041fa8c7731d4d9f5e8f22e66ba72c","a0c8e17f4d1ea2704c62d7349bc3b8d9a12e3761b5960cb44144d3f0333b3fcb","3471c0df3d0391e1dffe6e8bf150294531b2b71a2afa5f2b86e52bf84a5db60a","5d4df4de055eddf3187094f938a640f8d96e4c551a47d6686596fdb6ba4c3014","8bc2cad630da1033c1fd8d7df2bffb18af0da6113bd086a8bbec04a2471a1e00","1d78a21af7e7cda775de5a3c4c2947a4f502e8c3bafdfe7bc6fb22c12c187342","5134885e9648e2c6745f8aa1c3e7f5ab3b3617258b3d81ca02de6655ede3d74e","4f1ae3f24125216cf07c5211a3f00d2bb4782d7cc76c0681603f8249f9232ff0","d3fb92a5640f83f7844d60b35317a0f95c27e3658a749d76d218c461ad091668","d1f8bfcd91b284657ef8187c55ace7db91a3c43e642c3f14e54364154932f7e4","d74331ab414bcf86fd0e39cb1f5368f30353340fa2d8e9b15c1bfbb04c72c256","df446aa58c21040d726b32c422420275a19bceed76f44875c308c91701638998","c993f7ed1b8e1023c1f2ee5b262dbc3b70b27475674e40a53a58591f9972dacc","a331c0852fa505d23c0d0055df7405e6183d8a96bc611b9e50da4f90fd96a55d","c1f7caeb1e61fe740debd686ac3fc381a9944d99e6944043f0b731c2506fd9f4","267eb41d7d34151d8b5fdf8b73ddefe0684d7921f4b7db14101f600ea3e8ed02","eb848e4da1fa7568c893e0a0e1f221572c56768dedfe21d2f7741d383c381552","bd6b7d9ff1992fbde49e974f6bf4e8c35922042fc0b6f5326e61fa17a912ffe6","ac443b1f93babbfadff3aef4490044012ff461ba1cf1c7d90ac45f5a26863358","42e4cdd55aa23586b9aff929e2c216150276a37d30c2cf7c0f32ba917722b5e0","4a1ed19ead46b1dd5a319d533fb92162b4ef052ab1c690889cb2eaee293441a1","d0d5b967e5c36354b2f13b4bfb78aae4c1685efa9df3fd946d2e576d370e9302","8076164b388640f7856b25e945a2ded7738e0f8674ac50c256734067b0f0b1b9","36819a1e04a8dbed754a5b3ba2fd5aca2eafb95977eaad6356d77df596c732f4","5fe9c19f085365b73956e27becc5167ad25c5fb024bed4728884966a0faab3f3","d67961ebada9a5e5c393d9c46a4155877a9f7a48b02a0afc6bbe4e87061e46f5","d5e88cd4816669da170c646844042bc83f4523275f85060cf3e2b5b3bf902ee0","137ee20e77a23986e9a1fdf6397b555e6d3073bdcca15927c40671d1ac564aac","a28b00d18def7993bc502f19be6abdb89db2548fe946a51f0771b8ed26a6786c","0fc6ddce4aabc8d84a6aa6644e1012a1474ba844ed6bddc7bea7115583e8a72e","0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"92d63add669d18ebc349efbacd88966d6f2ccdddfb1b880b2db98ae3aa7bf7c4","affectsGlobalScope":true},"ccc94049a9841fe47abe5baef6be9a38fc6228807974ae675fb15dc22531b4be",{"version":"9acfe4d1ff027015151ce81d60797b04b52bffe97ad8310bb0ec2e8fd61e1303","affectsGlobalScope":true},"43978f18d1165eea81040bc9bfac1a551717f5cc9bd0f13b31bf490c5fcdc75f","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","57a558a99ab24fdff45a2c2db0c34285de2dcbc66149d9a3d83fcde844426e37","260aad3a6bd3fc510b7f97cfb05859bfc045ce185f8c2b4d73ddb9c43b0eb3c0","cb428529763c6c8e38e42db2a39f333ffcc6d3aab396b24ac84b22da752c1de0","ad4b60488fb1e562bf375dac9299815f7028bf667d9b5887b2d01d501b7d1ddd","246341c3a7a2638cf830d690e69de1e6085a102c6a30596435b050e6ac86c11a","6972fca26f6e9bd56197568d4379f99071a90766e06b4fcb5920a0130a9202be",{"version":"4a2628e95962c8ab756121faa3ac2ed348112ff7a87b5c286dd2cc3326546b4c","affectsGlobalScope":true},"fd5d2f531376b1e84df315df0fe724445353a0ae2e2c4de7bae01e24c6c2047a","84214d474bed6e36b7608ba8a39d463ff90061b8af47cbd1a8f7ecb775e21fac","944660c079e97f62f513c33ec64cebc44154374053d3a9adb04bf02f67ee1066","b287b810b5035d5685f1df6e1e418f1ca452a3ed4f59fd5cc081dbf2045f0d9b","4b9a003b5c556c96784132945bb41c655ea11273b1917f5c8d0c154dd5fd20dd","62a00c9cc0c78d9f282dcd7b0a7776aefe220106c3bc327e259e5f6484c6f556",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"f3e8bcce378a26bc672fce0ec05affabbbbfa18493b76f24c39136dea87100d0","abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","cd4854d38f4eb5592afd98ab95ca17389a7dfe38013d9079e802d739bdbcc939","94eed4cc2f5f658d5e229ff1ccd38860bddf4233e347bf78edd2154dee1f2b99",{"version":"e51bee3200733b1f58818b5a9ea90fcd61c5b8afa3a0378391991f3696826a65","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553","e70339a3d63f806c43f24250c42aa0000093923457b0ed7dfc10e0ac910ebca9","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","d7838022c7dab596357a9604b9c6adffe37dc34085ce0779c958ce9545bd7139","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"a279435e7813d1f061c0cab6ab77b1b9377e8d96851e5ed4a76a1ce6eb6e628f","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637",{"version":"b42b47e17b8ece2424ae8039feb944c2e3ba4b262986aebd582e51efbdca93dc","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","2408611d9b4146e35d1dbd1f443ccd8e187c74614a54b80300728277529dbf11","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4","b810390059fc34122556c644f586e7a2b4598ded8afe5ba70bb82fc2e50577b1","ba9de5c5823e06ee3314f959c138cdaf4477d3a1a0769f0d24e62911020e8088","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"893f4b8552c248f6542174b53d1519f739b20428c970dda89cd90485dab059d0","277afd6ab6ec72889e2988e0ddd7d138c1f512e68a1fa4e90eedfd71e2097a51","8a62391de4fa87a23f6cbe76c9c9374c02b53c5cd940ef7d5eb895b72d3754be","080e4c13d4d137e22ac0bf5a7f9389644821b9a3ddcb723acdf58936f3d99946","53df875d52e0838dee95623391d839f0f25193ce304598edba55db893b692c0c","3633f87c97d359cb55fa7bf0668fb2be8a23342951af6ec2d06e6d0cf7409371","cc3a5427d44fc77ff25e80b3edee4650a51f83de761faf5e633994ecf1ab1b44","f421882756b6714834ae4687ab1aeadf344a1cc45437d2edffbac020ff3801c1","dfb1d4f5b00473a54a4f025ca7606173036bdf111f9806d957d5099e2cd55c62","e5cef5de3e5ad3436d414d20743231e284733b9cf4375dc79eff4fcca4282f99","e624419ba84e33e661e89a28083119ca41f6953dba09a4f82b660684087afe6d","942be430bd0feaced2e3e598273b17e50ea565ec9dac840b580b0b99e1a3cd5c","73350006cec5a0c6b71d53b0b0ddbfb82be96752a9c4e3c904c59e633bc9485e","a7df5c2e9594966c7e0d4a763b13ed5727506d892669df5f7bc9826f539c1d35","2286a5599f5746d6ae48dceef0322b020e6d0b0b0b64683492ac6cda6809c6d0","00a6db28fc4df6ddf10adbe630d9df620ec13af19039c1869653e60dafa739d2","36391aa57df571cd7035c2a968849881b632262b259ab7e168cc7d32afbb0914","f02da9dd36d7a9aa33c9b2e37ef1f54b0d9ad6a713bae372ae4b72890e40c168","3a5652c44d7b3ee47b1d294b1893b30253d8fb6a1ecaafaf5fdef5fdc118f54c","4fba134e9015779329678ff1fd1afc32bbbf391b1f419f7622a3ecde7bbfc355","af75984f58aa9205be02b0a2248d05f6105a8d4bf8be0baca294b5ceaa10e33e","45a910666b455daf042c0a0cfa610c20ea59a0aaf702f93d3b467a05f9a27e20","3f8ca49b21fda09ca4b77d0811c328dd796a00ae95c825b0532a9441855ccd41","84fb7c52fc116ddcbd1b34535e387053f2a0134d11c5e39b193f4c1328fb1fb5","fd3cd8bf3c90ef4694195a617a5daaac561d8be52ba33c607f170c11f3c50154","da594046013790b1b7048441bdcf896eefe5a2470bfc405c29b126249c8a11fb","9f963b28320dd50221cd23f23059bc23cc7799c7025b44942da68974f90c2e6c","c17329bcf495af58e3010f8e61af51709aaa24a6664d8557a7d01a82b5397c59","4eebb617b12f21864e6641d0a9eefaca77a9ccf93f00bb7d50b26d8073866e53","ca0b43e2565d78809383e9a025b0638a5e65bcde4a2b68ff2c6fa5013642db46","1d0a0e5c6471d81467c3fecfa4db4e93ee87d364b776feb83b18d773ad9496d5","ef6eddcbf08e7ae71cd9ba8da47e9a3cfc7db36650af48f1b440a5ed50eeee7a","e14ee3cb4b764895f2ff2fed229df10b59df8a761c79d8e91d868793322b8896","7e36003872035a49bc3a5f21351c37d0e418f60d994ecc470a9463b33b4a7c12","b862345e219e6a4d829f7b7cf6d2d6e91e6fa00c29a7c6c86a3f68c77c25de39","5b919d9204446816876000e03f033458527bde5e3637783b2bc2e7e9ef7ce897","213984ba990f03127a98c3f022d5ca0f0d42df64d4dca199f7319448ce6f3021","020ab2020569964d12e40c68ceae39f40f6c0bee9d502a180f039fcb59c2e34d","aa50dc8a102c76282915e78944293a777866efe6d220a28884ac4a42d7f4c4e2","2b88f02598c9de626b35fbe3ffb1ef33ad9fd175e36e06ba27dc79e444796f6c","a783c6e25799d8e306880b01327256427bb92b5dc5a8ec32f1ebdd90841a8acf","dc648f4900b630671d0ea724822471dc7f1e7fc6ba2a2feeaaa1ae581ff179cb","ec8bbb5222284a2c6be22cb20b84ea08413f120b1129c73c75ca58262678cc87","d6068e4b05f9fd73c11ffead8f51eedb4a6dcee816e845d80b192f60fa0d5ccc",{"version":"8d6d51a5118d000ed3bfe6e1dd1335bebfff3fef23cd2af2f84a24d30f90cc90","affectsGlobalScope":true},"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","dc9db798c605d6aca65d8671c7c83708f6f21c468c6a5154c2c215db716e85de","f4e1782993dd70717ee36648fe233c0d3ca092d262591227067a7ead3a125e1a","2c9dd6a0d4560397e574fa5bee2c91bf7b3324ce263f2f9e5ce3bc958b1e9c37","ff7b207d9330382e879e5f6b7400e3654a7aff89fdd3772fa68fa8d249090bfa","0bce4a5303f795de76667a9f1a1f27eea3ac35cb373ff2fb5447b6c83017192c","5e7ba8783276dd3722f04cdaecfdb2dc1037d1b9b752f293c183e7902391d20f","4cdc739297d1472c5be48be0a533eddfb48744979337d0d44b23baa80642b682","4965db36895b5c73e1ffb8618693273d8bff1023f34827782c453e2308d5e901","d23463a649a21062f25db690d6bf4d132b039caff460f2df7c19e0637b2cad24","c442590ef92fcb502f7762f61913c0db9027839a63f04b12fcd687996853e2f0","81698b4d02b5402da4c93e9c42fed5871eb7db309b7197ba0a5c88209c9166a9","b09577e6d3e3d30676bbe845435fe9c54d3bc35d2080746b8b6311a0cad051a8","4a414077d6debe40ef7c90dea94a659dfce04fe6b13dd4b54c5809da432623fa","524b9dc5801f1d7436562cb61cd41d77da537d5d1969d8596205a2ff222de59c","b79fbdf51e1f2d9f9ddb5d2f0f268e6994a6995a6fd4c8dc7d15bbcf14898368","888209fa0a362ad71cae45db08be3e3faeed46079cc029d215f938de7d517fa1","5936874e57154afe573f2be06aff14c0633fba79c933e64a96dd700b61420159","277adce710482965e2d9a12040fac58b36bb39e91026412f67e5306450679892","f89ff6d031862d7740c3200b208abac2be2df7175e6a2a0d6557cd2a9e4881c4","486db679bd2a44646d50cc0f2ca117c57f3077bb583917dc7ee8af6aad88f1da","f2ab5958425520dbbb16293b42fbdf8c8ddc287758a513cad37b73c614542e88","e696a94d07951ca63b43ab2fedd9ee2ade83d75ad9b95e6a4fb609080ac28337","158cea8f2780ac4c397140521ac0a8b777e40c8cfd95c7dbf7fe7704a8f289cf","9be18c81419bcee8b2d07485f10980bffd711adf319d27eac3a8bb623624e883","c747747b53ee8323bcfd7dc08a03194c36bdb64e3b1b1ebdbec6f8e29fed35e5","9760150ca6e8646fac3d89eac6b2a29892671dfcfcafdb590bf9248b512389b1","88b1ab4925fb25ba67cb06994203487fc42d77706f83c5ff7c007890bedfd580","b62917efdaa93203b769e6dd3924fbd560e5ed1077ae9bf4302dc859e2732fc9","7bcf1ebe7527831bbe01b7bea8cf1621d0df7c8de0b1fcfeab2147da433cd0d7","d29b1c1ed9ed02dfd097d22b010f2bc464f01b2fdd8598f1535ffa60d02bc836","308f5a6feb41ed9399c2c566d5a651cc1260967a90449c79d63ffe51ad855e9b","a0ac2951002254928898562ffb771a1dc0e9dac7fc4b4c4e77149354888ed645","da88a126c1c6fbdba4e0b525c4658b4ef33ae9ccead34c5c583966ea7f7201ca","28989563e2b2795261f17007b1e5af45801bb8aeff7f23f6f09cf165717a56f6","49d517397ccdd8af34efbba95696f3dccd284d91c93d462939625b03a59d1d9f","86b6347a977ad0869f2e42fbc6d268a7d4c4aaf4c8e04643cb470abff08864e4","391caffe78d4f21bb52bacdcc64dc221bc83151e73197b4c6de34aac6c7bb7d1","b331476315c5ec0e107c06429eef6c3675e058d72517a9ce459ad379ddd17049","85a540e17e5a40bf238b0230ca526dcd994e90f47142a7d2575701e793f514c4","49bd16e22ec83aa6b3285322ae4ad0e5f6280afa09511b8bc78b90051df221ac","181de1e45bd11acbf269ea14b47d35943a9940c93111709925fb0703ef307eb7","4cb7dc25cec224c4470330468ff9e203013b7a7dbf9031fd75b2a03bea72f4e2","8be80212c78a4e3b3049a5bc14eb665197c178d2e1bfed4338569713505032d5","c1429cd23570435225ec53062e6f5f6459c3cda259db73c15039522c46577b21","d90fed5411c957e3ab59f4933033421e9c85ec6bd7ae300f5f79a26ea16fd6bc","8c4406c20aec6bed089d3f6b00699254d735d95a5bbc089eb7ceb6586c10de47","b6bc6e9e9850083b8ce60475424431f9dc4e29525c48fb1ec1645c95ede8735a","40cc833241ee315bc3037d40b73c6af40f5552c0cb555d1446f36367283b1ac7","5781dd8c82a75faed062064e875a244ff882b792015387cc3b93ac1f611f5433","cc47cb0997254656d28dec4d2a6363b06a917c0f52e2d97d7dfcd259106bf639","6bf6e412862bb08e16e8e2baa1c169b4f4565f717cc9c7c86c671ff5c0ac7309","46959bc5425d9ed3467e69b93b72ccb7970db46ff6eb8ea5eb7937f3313fdd97","ad1b83098a9ed7376a24f157e9c901fdb52b9ce6d4bff15b470f77a7f4c86492","2e4dcb5eb12fd4915e9c20ad955e83935112dbc13eb51ac811e10b6cf6132a15","9313cce8161a896f448703ab1dd758ca966d6986de2f406eddcbc63758563305","3aa10dbc4dea4b0086be02454e5906497d77cd081a183063e336e8f8629749d2","e15a510968f3e8f2504e939d3a96d65adedd4721cf4a7c72aeba23c6414cda91","2ec3abe6ac100da9bbfd8245f71a0013cabb5f080f0a44bcda35567293fae175","15e01f8f8a8ccd42780fd4eb6368c0649252710cf6e363a7c79540a4e6a2b062","701b54562482a7853ce5743642822f1c4dc15a594a7b21f893c916a19f476554","22023b800458911f463a2d86465833d139fce77a2f48b5e31ced4145da65b178","f00de470a890328a74ec0fc3e6ebb7cb06ce6ffba64308c5d27f9c42aba4aa94","99c4935ed632703172250d609815ce81f58bf20d5926b6808b0816db13a309b0","50db2e60419e7d97382784f09d7596253fb498ae68d4d323b8614266493c0d66","7a942b6ca3ab4c91b0bbab7794fd216f63d998f59063c6a86e19fae7cf057b57","57fd89884820c99c97db50cdd512c4aeab95141b37eccf361d9d801a7da3dc3e","9ff2ca78391a14fb7438ac49fe33735acbffdbf2285eb314dbad27913cd80739","364aa3dd0e2153299b770f45f510e3ce52af60a17c3b45e07e6d00a2bb1bbd02","475e6bd83438e9f284b314a277dd2fff3f980cd1023dd606e202e41e347377dc","fe85c1b0d6e4891211acbf4578765e475c1593e6d352d6d6598a7b21ed9ba45a","92baca8d644541faa11e10fe564fd3f6754163939fe36cc2f08e09f8b48022e3","368a08d9aa36369758f8f286b77b619fc808f795a067d79c09104a0c285eea53","102beacff4852d0412d90f369bea81debcdc7e6cf7efb4077802aa6b573d047c","07144eded9435c2cf3062632be9d51593d4c420c787f2d129ceba5f703dbe020","d4718b5d0b4c4318155b601c8b3f68b015935199b583f1406409301b00bd1d6b","b33658245c4914767ce31327b0cebea0dbf5564ada9fda90b133abb26fc24b8d","0dd3c392fd7ed1aa54b25577335f95bf7144bfc877692049e00fb67f8d6d294f","459e6018ee215d3ae37755be2404e7943b0c7af384cf3d56915fefa13bd3271a","4f68880edf67ba8bddb8f4df1f5c209a4c6cedcd60932088d5afc3c33089d11b","1f28941ad5d5d8cf1548c4e68d802e5a405e33d9524a206317187c5e0042e5ad","f753f7773220e8d632391073297bf966313d5f8851730630aafe8c1641ccf4db","0351fc47f58a6d068e6c2f21bb267d00517ac7b895f55325c2f6cf9229154726","4ff549b115867e2da5e0ab5403259f6cfed9b029dff08ca4c39b87a3222a51f9","eefb15426d20edaf921f3eb9b5b5060df86ffa5133d06c6d773d7ee0929880d7","cbdcdbea0e5540a0dad26916529cebf68757a9af4f09e9983c4306db25be74c5","129a96959bdfac4ad021405a19611ac1f9cde5027c85db7796979502531c9c06","419bc24ce644fb446acc1559a98b92e2e7bc53c6e561c0860728709426901c92","31d53737270a509db5c5d49e828194556171ca3fd5b1d970c82a76c88c295ada","0592367c739b578b5949c588ebc76c036e6d0bbb265b3e01507031e6a7b1b153","2ad460ebd18c805ec626d218c6c06b7a2dcb10c393aea0b77c0bfd9929f5d6f5","0f3b3a4c91e1aa90abc35183a49d87c9f9309fb8306133bb2db155d0e8dfce61","198e5a2880329d9537551d8f5408e2f79e421c1980f39fbaa6de145d09281f00","c7283fddda2858de4fb58249018b0b80df8cbb0975e80d3eb10e3dbf0f4adce5","ba7d70775822a57ff4f232a9b9e33fbb5df669cf03c059d427767174660ba3a8","24975f25fe2598e4816972fc0e3fe34da2a3682f61c82db441e0cd05676df7aa","ac63a5fbea801e907854283baeefdc2a32b18e78ed4dd74b7d89fbcdcb93cae0","d981366885ff318fbf35a5f39efb2075f0c118f0e4c0733d8693f7858efbf0fb","69771fce5de38914144de651490e425b602e83094a173a19a3f98042ff598fa2","652892b3791b1237c7390c3f332096fdc4c5e1c53eaa62b8e6b31d942812e1ee","65dbccc1b98541db5ba93fbc8e12683db9e00164833a4a47768371315f0a61c8","ffce955ea2bb000fa6e463872a4da6a737dd523380ef37729597a4d4023d06e6","68afbe1b51f70ece516ea1a4ab1b5825b4ff0a358c0f490ce031f92bc5aa312c","5bcbbf13363c1fec9f1e656b7135959718d28f3487708bb9cd8b8b7a1e615689","bc638869b24c892bddf9d40ee6fcdc9d9a1f26a6f43da535d5db610e5f3ecf6f","1076ac925e97a8f12c0a5b2d2400af3b826fb5eb8de3527fa7c267d99bf76877","ea7418ad0ac4a1470f4ad32851c07dcf52572db01a12a47e7e2316a419629216","b7358a62805bda51b2d780703e5ef049d86fd469d1f9cbc4b5f6b51db91b4e7e","4f57546d3e9b134db97c4e7e08ebb5a14489c22741327fdaac22aff2b44e14bc","da934bfe6827f3e06c8f1fcc33209a89a0b93c43f113dd0fe7644f5af412cb00","6e1ef142fe72f639730a382a6a4248ad672fd6a2b34547dbc280155e7fea19b8","e3db1a85a13fd5622651bf1adb8aaa772c6a13441d4a64d71e8ce2ea423010c2","6e241b46fbdeac8ef0df54fba1c780269cc10759141fca7a8f4040cc972d8c71","aa0dd854e0f7b1d3a1ade69b7fe3e93405032a69bd81966374acc3aae5aabb84","a28676f2e1ebb7609c210bcab1e6e36a31119dbee9c09ff1c7bc65a790c13157","b028f3c7ed061ec62de1bf0d33cffd9a36b984c58afe9d141eaf05819de807af","49657de6eec3d59834d560e2ff31dccd012fef3e9c13d0b95392c74332c34808","18d106dcd162beb6eb262fb250d4a10899d26ee36e03ed14314b387b3bb23363","a0a9f6adc1e492b528234d462cc3b4c9860476271488cb4f244bf0b89a1ce170","cc798e571def36a3088a60382a05dcd665fe69b0209ce3a2844b7a6832a054c2","e208a0bee9ce6b3b590beb29a9e5bb05178c537134e4f62144acb2cd85b96768","3ed6da284bf80f39b936b8d5acb528401c1919dac19ec508919e51511576977a","99cbd4b69cff91497d39d4083a89123397c20efda29aa5221bdb81052715519d","217687faed81c01b6ae6df175da247e6830da75f4fe0bb7ec8b25ebb474dfe73","a71e802264bd001b9c28b4cda633e64986042ffd8ecdf6a55a86e68bba324c00","15d04f9ea225091f08975d3cc8349498273f948b8147efd2dd437658ce20f526","8730260a96f57a24d3f2861439c3a7cee7af6e963c18d9f75ea7a26892a80a17","9129386d5c86cd29d084327abb2241683206900d28ecf29a725a04ad91d11fa5","32d38f47f4b2e4960109406d7e79f6968265a98fed6d8195b823012c82314641","5346f4c6a67d875cf285902b5b66f75f5652af145fbbcdba08eca693353abdd2","e8167b02378abf9e05ed78721f26fb3c25f55e786f7300067176f95d7a1e1f82","b1b98b9c13bd5d88eb614356a9b784da25543a6123f0d7ea1ea58f1389d1aa9c","7b9a4751738e3ede760d6ca46ae253370096a2f7a87375c6e5d8a61a17d870a0","ea5b465826c08f0d477d4181c6738d29c46752e2d10332208d158546b6a48589","6d4a750f6360e0b95392f7c2a6df19a3726f6f5be5d1d46a050f450917503013","19a7d16b94c4a0e740dd02b91fddaeea23bcd57dd7860bf8a0ddcd442ac01963","033e0c64bb92eb550d0e9a9e0763abb4b1fd37e9badf9918d8e891d952d2d633","b515934a0a5152321ec9d212825231e4a01438ff176e8e983fa55f256d2d8013","68d756b8f1be6c9f658a21161d911145bf4de844343da811c096beab26a280ec","5fdd38bdad727f33604425b849dd6e44b21cf31014f52ee17d8a6fed4f05749a","907aae20311432228ed2a7dd8b3ed6fb4281a424259fb1cd2a3c1111513f65a0","bcdfc967c8eeffec385f2234c2ba0d49db6f6853b1c8d8f9aea222ea85b81484","b50455cbf6dd642acdfaa8e97d941b0ead1421ade751b9e69d1fa4f48114c73b","5d817a3f6ef0f2b6ee44f4abf8b71fb10c55e3ff1d8442593b630be86cbb8e82","a6c19b5c1c6da6f8689f072141680d183214d6a19d86feb38b88866751964dd9","6757ce008b00f90b0c1d4305c581e61fe0f8041816e16f5e3af04a057bf5104e","09088e6d5417051b8dc865c1d4d1ee7d81f525a6eb8328d28070ce7ccfd15cdb","439ce9b4e6dfeddded703257f94c0f9c9e23cb82774617fdbbd03c9d78e586f0","b8c3f193a5db4403265c40073f2334fd0f99d34cfdd38df465d674bdad705414","01eb993ada8737b6aca6758bbfd1e5c5a28c9bf65d4bf78eea06e303bda4c06b","5b7e4edb184a66eb9acd1f378b077eb8773dfbea62cf98feef03f06d3fe6eb4d","97cee0059d30a6567981ba64fe58f961e885cf50b9a4c1bd506c49a2a09aec48","bfa504dd3056fb2e1f4706b9c5f159f2f2c606408af37fe9d17420474cedb217","47fa2edb7ba57f3b84bfbc175a2e05172d7abf1b5e52fe4c00e89c9b435d32cd","3700512fb892d47541b4f223954e98e45c3c19ac33b7174c1bce46fe83018f70","f16aeb789210054b1288262d50d7f9d17ebf0882d96372f64aef6988e07bb18f","6fa2e60e7cf76a8213cb53722740ee7011e1c42280001a3b7d1f0dde5e008f75","bb34e420ccfefa0c34298db38ab8d3b7b2bd973c7d70a60a96cb2575044d216c","c20b5a84e3e388818db3c366dc7e11412385bcf7c77630a0b85aa81012bfa5cc","5e4e6e19c3d1249c6a7b865f411d886d56fdf0e5214c6a350ae694632207f501","6aeca56b7f79775a42d56818b325b3b28f0388e5aa7081d0cdc987210443c090","baeae67b87b0ac0c35fb86fbe9eaef4a232656316aa513783b07050b4a4f197f","ff32c6151594e31864ac6ef78317818418933e8578aa514aba43ad353c8eab2a","29643312c19512b8fa92662efa9e28023d72cbb0507b32d995ccfdff8d940fff","78c2c1340292b5e4fa2ef8d09f6d7ee151067b6ee94fe39490a2541d891cd94f","da6535ababf9a9928b891ce9e11e13e47800351b77d2c4356cb2a1c88f2bf017","5cd5451095758696c757c09093c907ca7d0bf89cc1a78e92651a7dab048a8d73","8c0a1df4219514dae3a3de367536e2fdef9e28336ad550d270742090dee136b9","371208d527c7fce7c30b1603ae28dcac04dec29db7181c9c4d6d1a65a46582ed","43c88e097dc39ff36427d531d1ffc84ac7ae1ebb319e19d2ea3a984580a4d05f","9e0fa46a27cbfd5d24a248100757e54e35ca910be5c88327176b0d664593acd2","2bddad4baa898b33313fd79c3d13aaaab2dd9fe5ef139bcc446e9b30d2db09df","d575bb0a701a61379392c7c4d3686eccfd2c17acd0d8066ea765f4e328fe6531","8d7dba65fa0991008f88ce763e8db7170b49b4af76bc9945d762fc7aac02bcf9","2894d786ee9896f06270eb62f49c4f21a3d0238185235aa671b1d825d868cc94","d0d2a6de0d3130d5444c31fb74655648728945d655323dfa2e404643c0caa264","4b0baf5af5cb8d0815b2db3a0aedb74ef7791ba0ba115842393eeca2c7c75f9d","7429338cc080a6a82df35a9f09522aa8b041c9b9f068f41aec55f6158d3b8549","8b40338dd41af130da612a15034731e1433079c2c73f741778a6a4fbdc500fa3","ff9ac186a4b43bd6341ca34a9e1f093b04c93df0bea7366bafd0964af319cf1e","8b13092eb098c3df7a06dee3bfa636965ffab262b8468ab7c37eaa1a6ccdd0c9","09d3fecfc6ea0881102199f1eca725041045bccf7023a5594c88d684812b75ee","ae399589c51ad0f0dc8290a28d78a59fa4c2f14b07d1c0aef35c7f9b176804a6","f93526f808fbcb0eec7c12bd09e79cbf234d13554cee04bb0a69a10aa9a75df6","51cc79f01da7aa816e364c9c66520bfb63d8c1b8ffefe6f880e68d4eed2c53ea","0d5b1e36f5b505f7682d0da5615705546cb6eaceba6f4979fe52686dac30d1da","df79b1b02e4eb71ce5c806f9c7ee1a23e7f655cd41c425fe6b2ed8e0c70a9da7","a55fa6c44f796ac044d565dde0376038df3fde01a714539c002de639f8a9a2c9","fef22682822a361bc7e3bdff742c689ea3e324ba7ab06d3b9cfbfb6c5f2c2b2f","82296270945b829070705bec22e9d542bcd842e5094b00ea4e4cf15c9d1ef885","97e0d26b88ddd15b1777db9a881c877e6536f1ce9650bff1bb14775bef0a7b54","fd52e2b4db3ae4fa44678b615c987ffe8b2f421ff0e27013197b66d91601f0eb","73600af29aded0e1dd57d74f377ba2864f4230a7e9ce6a72884dd71ac2969e07","c6873d468f65ad0a92c2429168884d1a549f4a8b2ec792eba4be22add5c89f96","acff5667885e4295c0091388ba9f3a3b57494f0f9538fa486a71285177171c70","ba25123f296e7ad2efea980cf9069db459edd95d4500c3c7695e8383c8724ab7","bf1917eb140356f14fd2e6c20177936789edf25f0d85c8d280279f5b82768b9f","27a301f388c5e871a1b1628cb7640a8d7b1652f5eb5618db67af4aaf9be7cb7f","1d990d753dc41a1e513883b2a65c9729027c898f178a704a3d37df72ac2259fa","dfed3afe3f3acfad9043536b80e477def9d2be6285aa087c27feefc205984e3d","0c13d93d1448d81fe6079c53649876d0394eb7543667d1ff335b81b60c3be49b","904ca20530814a692c25542dbb0ded03e25039256c5c1162eb135e3c38c12d70","bf50e0b0b63d663a786980d9bd7c201dfe3f7cba85152337d4a5525802703648","3dd361850bffc1e396c9c9da80e01429269b11a556368248492f35c1a7443e80","18255171df005ba761c07fc57a10bb699451f1ab19da680f2bef9a0fbead3e21","24c0e9df81cbdd0c3b7785399012ac13616184015bd73a96d1680bd22a777f65","9ff34744735965462b2c888324b21ae226ad397120eeed219550ee5a857b03c2","0b47806491ca24a56fcd92d3127356594c430847aeb4e82445b6437ee9ae1b28","f6d3ca3722734851115097aed33906fb8e1904c4abe816af24aea38ed3519d43","a04edf070af33225df053f41f0ae77894510bf507d628ff9c678724778295c7c","3c53f703cd3b277b70f07c1cfbad2e692395e9a0cb7c3c3ec4bdb6a48b3ed6c9","f74a589e72d7a7261a92289bab0fb54b10973aaeac828dff3f776d25d87f8fdf","5eb7114cb4b910c5b959a44b602e66e6965bbb5fc79a17f21995fbedfd1d7962","68235a9d95e0117d504a8b2fd47dbd3818e326e05b2b919b44bc2bb9c3008782","8499ad8071184909e40778a7354ec9e6ea6f33698a732c745eb095e18912e5e4","8e1f9fbfcd374e53fe4082f661fd3aa5511a69a0543e24aae4441826d7da4a5b","5733afb7cfc74449f0f911715900488fe538821ab832ff67b0d5b0a0ebbb5ca0","8a083c820e0a1628351072b75f4ba560e70a6eb79bfa55590784819e454f4186","82b0dbb4d8978e5d40b76defcc7fb0a32f8c753a4228c4d253ed192de0e05d41","045a4f8a4c8e3aff257222fa41586cc47485024b69b4241360a538990ca8665c","f5c766a06eedcee54771dfc309d5c7c685ffe5cd79d6a14f04261d3ad8252812","f195c9ec932516755503a68e7f3e14c03487d9f12d2de8a62e11590b42baa025","a89d8f42529c8d7784112b2cc83bcbc9d6fc3d8b6ed1d20689827e607e012dd7","62723186a53dde8c662cf7fc222e49b22123ce64d08eec2f1f6abc6b90bc92e5","9be06514bdfbf72d73685d41510c301241644d8a9d3b0c6d303917f79f1929d6","cb0a6ccab112b60d877f2bb009a94164ebeaa097ef12c10ca4069d9713f56293","44b7cb050466a6a3740b6317810d42b6381959f382f901d74ae114d2ad252c52","4ee5c2f85e20e69e4b193631ed034250dcb52bd520114dae94e63ccd20eb5c68","bfc672e7f703fb836cf8b86f220892a033341903eee468957ee3d12d812ef219","8f867d97bb19e4584d5d01a80fffbea4205c923014d08ed854793f4a076053ca","c3f4ede903e243376fef95995533d4cfb3971af10234468cc165f297294ca5cd","e5cbb25db8f70caf1b51e251453f24be7827f3f4fa347428f04b17a2641a7fe3","1e7063ba344e3589345717f99d7dbe2ec6345a6139a5182848175ff2bd4a97a5","5edbe50705bb94241f8f9b1dc6609f08cf390b5685e594b64494044934a3df28","a18ba5ebf257a8fe358e25b49603d7105036b36d161d17667c90f8fb2dc8dc7c","1e6ddd249075d290c5cf2d2579e2dd8a0216a41401cde2387ade46ae7f9a0369","8e7c855f585d0b83c222e5896a923b73af1308952e917698bf2cfff5bce161e2","7db65895ea2891cfcd336a7e3e15641aef08eafb2bd660becd4c55d5e77d35f5","d48183dc7be487dc5bb80743109d5952d5e623fcde041278d11e5a9389466c6b","7d2d15e17f0da7b45c4fa470bcd95424f9a7597a6cc9c1887185cea2d3e06576","3643a2e3f4d439bb8c4308af3bdf4e734419bcc66becbcb3d4d90ae3621ddf3d","eb2691b65e7d0b4f3afe05cd678ad766e07b9f396147742234ccaeaff6c299d2","0f351d1c9e173de1d367ded1c821e275cbe0696fa6dd477b5ab7ad11cf2861eb","3c7ebeab5a6d1f9894eb29c63690abd560e51e428d78ada3c776cc339d906ee8","03d7a52183c40091d77ea6b63182c7d44a6f74de294cd3ea0f1335985b1e0f5f","7a11e6fdc19e340b5b283cead76fbaf3a40e9fd9a56db717c8115194a38c693f","003c9760735b870826a1bac599e286b20f2c27c693cf08c117012709c02ea9ab","f84d2b7eb4caa98e6181140786379f0666ac6a3dd436c2b045ac55fb6137f0c2","8a08b9683f1306458c90ec23c89f98894b835c9f189af71f602fe0ecabadacb2","aee8ebb70020a765f015ac1a1cfa6cdd5ebd47eb0724ff342c8f4fabec54a3e5","6cb743016b3e8eb649995ecddec1ba740f3964d09b3de8346e012cc64a0b56cf","0a0c0801abafb46ab98b001c7f6006f2477a4a86fb5e8781332c52487143177d","c26640cbf5e5d08b4e22b467e736f1265df0083648a6ba9096744c699934deb6","086ef1a8e3d87a474c36c01c6d8a60774e001148c4862e4f3f795e9460e26d19","678c629374e464ee1c3f28494d2320053a20fcc9ebc38c50312dc7ad98412231","5cae0c8cfdfb3b4119f9d720f75bf879fb29ae1c8b2ebff3c23e50e05881c0d2","6a52bff9f53cfb3bf3a5fc6f76d801da5562898740c0d82942f5a2395cf7da26","6a0949d2ca294df9d001981b40e7e99a38074419118063ff773a7d09d87795f2","d127f06c67140db6f1893fc1abdb850561cd708ec816f9b4625d5f4a6e8c365d","e16f8daa137f95bfd65272b9fa3192a5805b0d2a0c499848cfc0a080e09aa9d4","a82925da86e7a472e62cd30f27b8f54293063af9aadbe0c738b2634fcb424707","8badb0eab798a5ca88674826f66f4717a246cc6b890a186bf0443407070347eb","5eaad399c3c2ebc51c2c1a6cb93aedf9f750aa531efc8d057d07871a92257de0","7c964419b0b1b90e3d09d3edd8991c0f60dcd1821018721321f22b40e6b3ba28","85af9f184e482655927c5752c5d4a923a04d64ed7a9c801da8be8149cf686e00","0d177358e70dfc47b097a6028039538e1639dc50aecc75732d7820e05735dc2e","651d2156cf793e6387ccff732fd85c6d492940ce69405bc36b480978bdaac6af","6e1ec41734e65b4fa0b0dfda726fcc3d6c5adc9b6daab1fd0e40b8b165bc7815","9d497d49ce3f588ad981f948011b083ee6c9a975bba95afb7eb5379ef2b153f6","21aaac7e6a8e6e35a9575a4fdc1efe3f8fb0d4d507ca879ecb6fee8b62fbb978","7b7f870347b569725c251b59223f30a179635ce793044ef3416e626cccded3d2","a38fe932352b99589037bae2794b5173ca3616744e23264d099d5de8cf072b1d","2ffa25e94ec60a73936131f37b4d95bff0ca8a9adf2733bd0cfdccbfc6b18315","66de6643105fee941b2257f9c6b45af79ce8208f72ffe0eb8d1818bdcd85e938","24d942d7667bf7af0600df7dd9964c8885f6550363da8fd4db109d05b82c6a0f","6ce4761452a4cc32525ad2cb0659f800e9931331d15557d37ba5a8ce9d39a863","9856eb059d9a81608f68128ebe570f4c84db7907043f9faf286c572b16bd64f0","7cc7967a9a45b87b31fa06828ad2864512dffe6075d9458ab6613190e2292de6","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41","e2fe54f037f8efa4aba3fb10543cea3daa1cba6acef500cb86dcf3905ed49324","1d89c9edb87f49f60cf24bb8a863f518deb11d9f4822e6400e777016fab429cb","33a5a6876951028f9aad67d3b499c5581f04df0fcbeaabf4b872cdc66bff9669","fe969ff028b3bbc4feb1659daa37839488651ed429e7136ea7e5f8c923a3f0f9","cd167a5477c6184564be18d4774015e9da40b6ff82c507bdeac0deaf59c301b1","eb7abe818c5c9304801cc63ff7e5786dd7be27d911c44552f4ffb8fad6b46d28","f6c7d8724cdb7ba08ee40823ec07bdf292b3ddae753ccd2b0a8bc1dea8b3503e","796c21b18773a7ca4eb00a69cfeccbd40acefcecbf71a2c2703895602da7630b","fd39ced3d74fb5d8b2bb05f25a8e38184cee267fa5781af9cc8e62cacb572856","c87dbbdce40589071c7886de04df45c6d6772e638e06d07d1d213b0ae0599582","b4fc4d331bb35cd215b4ab7d070be0d271b195ae3dda11c57d133e2fc1104d5c","53fa615ed5a08a22af9f9cc6f45b6617c740e805e2405dbb759e39be0a3ae068","77e9c1c699163452459fad59f7111548dfcefda3a2b475855dedf8741e616733","b2974817002c175c84206aaf9388400261f5ad6abb8aa3b9d4ce4ff638bab176","3e51b305273cd5e7bfeec439e1098d570c678ccc9991ef3b88539a28ca3eb1c1","12d89bd020c76cf0775cf4f5307a35008c4eb020b6ba9afea6bc20acd8e52db5","1ab713ebd5c2ff2175ed3477dd5ed785361bf1bd47697c5006a11f1f26847a75","30f929d4e652d3ae0089a9e3e0895e8095b2ff82a80f96793649194c147efb21","d26f0882898a3f277b4542a6771e55b72212d3e0feda2caa92ea1ee725b94b52","a28fff700e977367e0af35ed99b44053b898708b5b141f82e84e56b7e8dd7eff","0a12c69e425004d964ba8c0ed38ef16a2a25bb349513c98db7e77435a7ea7e7e","bfd30ae1e57c37feb62b47284eaef7920084a7e564097006732c8526424b7c69","8ebe3accdbda0a95e19856956f03df67f570372d2b83c8fdc4778a8405314d43","ce7ea4fd0232cb275700277202fa9f4e0af57aed2f387e110a65df2d7e9c770d","c4e9d640617fa3cdf2666e11d6fe66b91f89b30865eeeee23ae6a912bd225a20","3fe6ead7dd3d9d54e31c3ad311873242756e3e11c6a77f5c85ffb5e55e4c418d","5727a535f588790e662728d7c41d7f41573375315b458106e73d557022d0b52a","e40651506dbedbc21fef323117fe4e0fb9db07edfd5e555f024a8cc60915db8f","3ab51b4c9f2dbbd8037ca07b6fc0f56616294d54db73f2f14edf5d37f831e814","4d96832d81c2ac92dff90ac4c0f44853da907a63b465a7df0dd6b1721d79a15c","b2b39ca67be902e7384a7e9bf62417889ac7bc5b310fc23087ec472001e353a0","672da9eab8527c6856ba3d508329db10e9960d01361bd3d5e5323b4556d753c3","0246e0d2a7d98c98fc4fabac1c3ffff8ae2eeb9b9532bfab672068b29fc17fc9","99a311f720975b9af11c1da8519d0f8e4b05999a3a64746a7299eb9872ec183d","36d8b3efcafff9eabd4600e9e0e3a994e454bcc7a9ba3d6759c3b84b7b454516","142ca74444f5fa54a4e5c4860d060cc2eb987008da1b7335fe935e73f6b87a9b","9a77b7e9d4ab7746306bfc6da10e169441472e4ac3e3fbd3e4ab1bb7f8420050","33d1cad605f5e878b3c75f801ded1aba8431ec066bf11d25cd67a68da8b7da63","ad915b23a60cf0f8e5dd551fb3ce9029e2db53a85afe24ebebd4946d89984214","088047b3949f272c0415c1bc4bc5b890b4a418928489e37852f4b240e008b563","3e1db076ab5e1a1968f6a2e1cfb7325b727a496b5d67d27a6b8e8f3a8700375e","151e67942c4b76a6c3a8d9f24f9c5e7140275a00f576060c4009cac52b525db7","2f34b23d4da8e3abb3ece2131ed54021f5868dfa42b75268488f0ed8e771e267","c9ea049d14e8814728c249c1df135e97dd1891253e75439051ac115de63700f4","0ff4eb71355db49b9f2ee3edc43b16e9758537d4a91cccdde87d023d581751d5","e6b37f4fc78ffb52b25ed67d93345f4f20ee798201b288b8378e810ba8714314","e0839024138cf5157ae6f36eebf4dae5625986c923978b2632227db15d1dc4f7","4079c7725625c2691ae2dacd9de20c2357728e438f8332aceea3c2b55d36c7c6","21cb20862e310e42c0768be9fd28eddf56ee29dd94213c736c615936f8202b66","40f7e6d06e7c8273a5522ff9ad8b24dad3c4a793f0f2313545c3160f2f6b968a","02f15b1e657fd6d909c7800166995c61e6ba799b30fa9032686c04f0d52f3772","139e830a5f324d474019349da1606786e15dc7f8ddc60681da5f28b32efa6df9","b9bbfae1f6469b7a618b1a6052848dca28db880555c7ffa14415ac4cc57d4f5f","f7ef40a3cf5bd5dea2577ab286e99ee828467497e65d5efd6e652c750a5a964a","731c981fb48d195e91643b95fbc0450dcbc65009b4cd75811c03376e59923dce","6359602bf24b82d11513c15782eab07e2e9aecf19041bbb151f008801f38ec36","e72b9419883218341dd1d9cf457836fa4dd61917df8713173f9e0488ed1d5322","f4b055d0384e8439c228e79d440a75751cc0981db0d5fae1be3d8ad4994435fc","bba32bbed8fa98ada7057a977cec6f4ee7ee6f89751b56519a64d78f26c4a210","b321222cc4d3f23c605efc4f70ebd99bf99e677d6dab25823a5bf52ea6ba8390","4f2eb577a490c88301864d5543158bafafc4e3c3b0554df2df93dd0b0c373c9c","eac5c415a0079c60e27cb77d1330f9df5724bb0b81d962e58ca006edbdfbac9b","2c6205c82e1f98da2511c2c9fff458a41c3f7271c6ab7d5e2af1e08dd68bdbbc","faf17b477fc7f3679f8d183c241e0070910bfbb10c72428b838b093062d13610","0ad8e72d7d518f2e2c291374c5133a4e99fbeb264062911291cc538f2c50ad22","1c981af987d5b5e6ef90680cd1e7e3d23d036dec4bd09fc85fa0f021143a730a","6977aab833b73005f119143afe90eb2df563bedd8f7fffab7017db99682115b4","16f8ba9a646eb734896f117245afe7953162d1d078e01b8112b5f11a073ac2db","e8db67c3f3423a774561067fcfac21b879dc215e79423a2018b30508ebc5ae23","65eee92f2b9606f4730a21e8518a9bf1779af6d9964f4350c0ac354437ef0734","de9875d849a41708f4a6cf918eb106746e8d09d64e3babcb5a3bd1f3fb146e80","8421cff54d5e3db6acd2b7c302b3da5b5cb1468d4c91c63165e4571b9aff7b52","f39591e3343c2b8b954b7a2d15cdf5ef434a874e8516f5374391ea0d97f3b127","68c5f122d4f7b2251718a7ca200c07049a1188e2a271e395c3942096863ed263","5a526cf0a4197eec895ef84fc3998c56a35d16e9ea206f540437358227392dcb","647bc51c92f7f3edbc61f56c210caa720584a53d8df6b6b4c5030cab76b5c6d5","0fe1e05c42f260e0cd35bbb5b8a43bef3260d5d9c2153b20b5fcc49925242a42","d19c63b002fb19d5259576690951a764a4d99c9cf9822df19f0b315f6f20d8fb","2eeec6ad2c8d2e946672bee420f013f313aeeabee13b06161e55a052ccc42d66","22c8982d616b121c8e4d277a6ff5ec74c843188400d266408afe03c6e6aa74c3","a5aa9557fa8bb04d39b45e967ea231eebe380b8eaee8c120d09da4f4dc258a90","9839c1851f1cf27325ec7dba80b236faa307203e886da5c2ddb763a7e7771e23","7f180fc7a39c21aa2ac7b0a7112911ab5e4f072c18099684a80019a5a0d8ca85","6e95437043aa09da4b42b4b1917912184e65de563a61b571227c726b6eb03b95","8710f2b39b8f6425eacc9b7b4a47f8ba04fadb66a127f0d1de6eee3423f14fed","eaaad5d669d995776fdfa2542659a1ec8319b5221f976d3dc3193c2ccfd5e91d","f59d1248a59b212aeed668604d71e78690f5649c6443e2cd55e616890d176220","34afd28efa1c1ef829ef70d027164ca3ddd88491c4b937c9b5b8f5f4f2b439e3","83eca53212a4030b54f6828bb3b6f86274817fc048de563e864a9fee8c0822a3","16213b23e36d1dcaf4990942cbf23d67f6c3a89e4bfe087b6e56c17521bc22be","015adb034acb077014d2aa68345fc869a5cdf956a65e0b36da9cea29787546d0","fee8253ee5e3eb42df38f32a9a480c134ebce174b04e2b53320ad6c2f071abeb","1a07731c4895d24fdeb281ec5ff7d73e4ce8dd1ff6c57d321823945b4342bbdf","9bef31c411cd1c5142f961110d45197bae87757acff6e8421aa9c8273e5f6a25","266a007ec3f8fc5e277c38d09d34023b13076e6c7b33f620d690c174a9824878","20f0ecf979f19e0a43fde1fa35cf0f44fd8a6a4bdc572412a4660152093eeda0","ffbc7f187f4f0dec10b8a3c932a77e31e3963718b4cbacc8fa412dcc6c57acca","c816c429cf32f460add5562cdb39188d996a02b66e2e76994a8074069f6c1713","15ff7e0b9d502af29e36176798d9039e3bc73c68e5145299a558bc38e90d1cad","cb2568f5bd0a44053e5535848fcf1eb8f83298057896e759406f2ead59a0286f","bb75405ec90e6a4fd85b9243e81acca9bfd7b0a8115ee39c208f6de74b4197d4","6b53dcea03fe971063b30eefd2b72b637fd7621a8e69c4c02d39657190065851","ca688c4ca6a7643add9dda904090503c04954b712a82a888a7509570a89326ec","33c21811baa0403dbd10d5281f9ab0a42a190a2168d73d1cb1abbd99294a7545","393cdab2fedd7cb22e8444f256354eb649ac185757f9fcc85f23827199a80a7a","b48c152a7e6064be16d428412f934b2c07f267d822b05039b79d804565e4411d","b1347a0c0a32e9597542cce02f7010409924ce0c1b2098820a83bbd88ee1d863","e875338b8d98a8e93e5bce9fd8365f95a1595ac6d384754361c566370e966954","649f598786b93d17f8238fba4170a04f87a12b6c308fe8082900394eea86b9bf","dd2ce40a9a71bcb60170ed970a723bdc820b1ada09492c2c9d8db57daf8feb34","de92ad1906cea9bec097a7a6c118280ad19063872d65677634291685024e3ad2","de9feda520d4bc016dc651fcef63416349c5b5a3a458682f47f58708d6a5a570","29a332555f34f73cc65516d49e1c01296d27d2784f0954c4e4f7a1d1aa70c5dd","b8ede77589d72ee0b11eeb514db16b21a4db50acaa10cf515e0bc822110d9198","090652560e321b3b86c5aca670f724a44a33669b9d3adf8d3f0e4d90692e82e0","88d288432fd8a513839f55eef51e391a086d0d398d0a9de8469e57b891c16f13","aee6e2a7ff2658c5a4a5e5c21df6cddcf13f6922496730231bd7693621484dd1","95e9baf4ad2ab28eb7b3abad6036dc3f15c9b0c45fc0d92d4756dba435dba3a5","70783de26b9c2687446c85c959cc9e52288556f228e4eb9db164762d816848c0","805af2ffb29b014cdb788f86861a66795d4962223fe2c06f8a236c141247264f","3205d28adabf5ae23079a68dcc23c74ddff9511fc49a2a1a452cfafd319eade0","1f5e02a201bba22b8eead355237293abfc6f3a7ce6dd3e325f789474d560f015","4e0bfeacf07e0558251229c6199b30ea3afa92f312e17b0e396638388b930baf","769e8de2f24dd477e7c181a51f3e8ac8a715be5cbe9312d03deb3051fe5d46bd","a407b408f3f1986b0d873428704df38926f3cf0ee9b43ac838c3ea6c745ae50e","7147338a2c743adcd76f48a540936d2a439d7faf18a06addf1600f759f14270e","54b5ec088b5aeb6262a9400a146f1426597838ff9d2c67ea42f5f54e97e4fc4b","05b82cbef2e77c4f7b6a271fea296c0b75764c094326154104b4b901b1ac2b74","ac812ada7a6d930c0076dd214ab9d82adc04ce275027431c85c8b89ffe75c2f5","8f0de96a33157b9050bea1e6e41565572062f04c16c0762d58b27c67b9a953a3","7023c2c5b8c1e32419282ffc1e6fa3365c1d3a2dcfa60923f617638c6d255ba4","dd25ad5754b938c4a81a55fb5ac35ae3b9a0176c873d90a0d704167d901918e1","056bb9a58d39bfa91d3bc5e62216e0c855ec0842aec49ace4743104d4f2fd42d","3769481af26cbaa503395ad95210049a6c59a5eb7dcf54fb19a9a489a4c6c200","f8fdbe60b4d301f453695fa370c236e19153422d5574e9fca0ffd8404c0a5c31","0ed5030af250181f8dd1152325f26bfb26b7a7ad00dbacbf3104a51ca6bb36e1","b80c780c52524beb13488942543972c8b0e54400e8b59cee0169f38d0fabb968","f432ef6e480a464557ba6e2054829aa6a030ad6919468dc3feae78c1b7aaefde","0152321e0c2f5ea4987897232cb8b054093e63da91886dee114e3436448979a7","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","8fe9135b86994075c4192f3358a4350389e80d3abec712db2a82061962d9d21c","e0014889f31fee76a572b6b15e74b2174cbcf6346ae8ab5c69eb553a10e5c944","edd9c86c0d505820e3c104fb2ccd9da5baa085740d6c2c7e622ac2f49658efd1","7deefce377fc46b6a49f8092f41ab66a5218c6d1ba235c2a6b49dcdee31564cc","4e8467cb65fafc51619e967d1b3e69372372d20522a2c1e13287ff8deaa67f77","16c6c8bb4e55d105d3e085632c6307895b256f2a833cffeee627b1dbb47490b6","ba12a9965444e7d2465abfaa3dbc9c5ce5633531b4df89343b898c047bd80bd0","7d9b039791315b0bb282c9b518ed1f447674ff797b2ce21f6478bc100984e939","ad3817855367dad4059b516ca0e281ad5bc64844e4caa8b9f66db61af43c190e","cbc7ca29058c95a8f7183fe196d315fc35863da7922f7b02074d7c0f1f2b07eb","070bc133eb9a15e2be322b31b1f3643af5e70d7f9ba8088f62aefbcef60e7435","1353d519c554fb5c0c2a26a40a275121d57b580af07c541285cd8dc3f012ba2d","a9e03bd1a617c8b4875eab295f12223f4401f5c8a5cdf0db63584e5295206c56","7e01996e74903d56f060f5935b9c583c2294952636aa5b9e8ad1246e2851c2c0","d5f68fed232e2b796c8d743eb82abf629d47c110d29c8583263540b96a5c07bf","19eaabd7801407a6ea9d560c76898012e32a7a087ffee6ea24c8dd53dbcc200f","4c986ef5c8f84d658e2bd517d717704f414b3274f3a2754e5d87d1682afbf7e0","597e95076b24b01f3fca7dfa32dc76741db92bf44135bff4afc6cf4898a18d47","6ed2cc39b92709abbb0a74d4968c35f1624f5bdb39b1579618d9bcef06806cc8","905324331f4bf2dbf367e94a765a2c5dacfa3af4afa80138787f10c9ef5fd2f6","754676884a2a1e1f55d8a055a52a99ce5731f3a367539e88988f34af91c81ccd","9a676b218943eae151795dd48f3ccf74c69076d385d5b3981e5480ddeeb609d6","86953a83058f2b41ba05d14151b517be594b49798ef3aa880879bfc47a77ba21","4e8804df8b83decf34a695e7aad3003b02c20e1fb54a2416abe1d2c6643da246","c487b26225bb1c61f420ba4a10040bb2ea613cf09bd1879a18990200bb2c6994","40b1988c8472021e1f525db45dbfffef131e76635ff318593f57aae3bd8246d3","9ad52266a9df3edf36b773d5dba808d2b573fa5a29b2c928509a70a4226ca766","cee65c5176750ffc436d02adf98d4a832f5a9c50c1104e858c973b8de6e9021e","2da11976333509df13ef16cdf7edd6c6d983f1a344696aaf658a7cf533371537","1e271cbe4ae905fd4640c7f3e810a1d3baa63a3c2ef09612c9e6e7e577ea6d2a","001b4d328afff36f90b9d1647cb42aab44e729cb0d94f97c04103d824c4f89a8","72322f5fee9a518fe1a34eebb4cbcde374550992516c6e2af72df5b478e92d1f","10139c84a2292fc2535b6cdff52ea60195b8a1685cd85b825bc1ae6a36d5b821","2d128fb81a58de1b3e522c6e97921a90fb2c4fc8a9c636ead86337220f784cf0",{"version":"e87fe7f89708ed0bb742a7f07ab611069ec4a68787516136b94f81e987a42b37","signature":"fa62399a64b991f0f3fd7cabd2e6e2cd81c96c260a43848725f7159c9201b02c"},{"version":"140e0413c0b2281ab27ab37c7f1892ae6935c65847cca7e7293bdf18894f0ba4","signature":"e9076055fc3b3ec978fc32d4c12cf026a48f81a6531637c8a99d05e5c04b2d03"},{"version":"5be9c4725f21f84f80d560341060d67c78e2e63a79dceba305417188244e1aea","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"},{"version":"ff18e83cb7f5b48babb377495d96c487eefd4ae7f2a922de3ab736e295fecddf","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"},{"version":"916666ea7252e01880f3ff8ca9729cf16c5f08632480972ffa77050fa297cc37","signature":"7cc7af31e0096c528fc835b3420c534f1b962de5adced893560d83abeca86d4c"},{"version":"b7a353d61cab9cdb3882a8daf7695da5f0ca4b71fc437604704155d208090eee","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"},{"version":"19c2f5e1bfc1834c9e117799e660e325010326a88c70a6a4bf07687d3da960c9","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"},{"version":"686629169e84d508bfb7b696352ede1c4d898ff251b6834629944dadf9ac2158","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"},"d6a8eac909ab37e8f36dac2ea4cc7dca19ace0c461a69f830c0f37c27c098eb8",{"version":"3e3cd66c6618c00e22cb5efcb22fdd49188bfde493452847495dc44122ed21e6","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"},{"version":"a8cb5a72f555aebda3c596acf86deb045b20a6a8c4f9c113852fc80fc6b2ea91","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"},{"version":"ef72aeb78c6b1f37637c3e1014c67ea578e73686a7465527ada2894417cd503c","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"},{"version":"06fd716c92759246ee6bc0753778734353fbc00b3624faef314361ed2e2e0617","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"},{"version":"3ac2fe683295bce4e044d55539dbeb28901852a599b035cdc1e690d681d7915d","signature":"c0789ff5071f22d03ff0087b4a035cd2011df46e1e3e0e13646fb7f93cd35f80"},{"version":"df47a742833eb37c7d245d06409359a9bc4c1f4e863236c138340afdde72a342","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"},{"version":"022672cde85855bb43385e94d9e03fd112678d13005b2d495b13dd57dc2786a4","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"},{"version":"64a98d738f35a9fa691febb86226b34f318e221fd2e3ebd22d3bd0b651e0432a","signature":"8605b3ef31a036d9af66bbbb186ef2eb4627b4e93887c26b1149370bb28e3f02"},{"version":"8e75b23565bb55a2f16b446159a278b58b1e0650739469974f93af9c3df53385","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"},"98516cd43ff1e45b37459a8af943d680e62a49d551b558df34acd11adc6f6828",{"version":"df8a926479e2d28940f79ced0585a7bb583fedc8e3845d53f4ddde17c6e0a08c","signature":"6bc6c7879111ffd66b0828b2947889c8daf9ff0494a2b8600ddb74e8611b1515"},{"version":"67d876683929481bc0f0fc80611ee576bac306557d942dda9bc244c98e75f366","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"},{"version":"5e455f92566ee43fb260753f682cf8c8698c5f2dab287b7cb4f4f7f416bfcbcd","signature":"0e6d2a4725c8438e67a4d1a2ce41cfdb6d80a7562aa244cf6d2b6b2a13b69e4f"},{"version":"9b6628969ac81b33335bd932417953464c2e29d10c70d7c43b40fdd0c232eeee","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"},{"version":"d498cc43f73f40cb83187a01423d329b92710d9bd07563bf2194ebc71d834aea","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"},{"version":"8675a43b5e87c3cffd7ba0e4c3062e4b6b7361577aa17434d4fda7884e3fa5f7","signature":"656260386fd96aed714b16581d316166902ec89e272750f716d7ea4840ac8b6a"},{"version":"2d6e1192683c2682933d231baa4c873527a02d503d6589b588719e5e38d67845","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"},{"version":"41af4aacfc48184e6a23cfcae3d9df3b399d0644be81fe9e3a54f91e1868eb3b","signature":"af21da2bf9fd5940537a6190ef62597338bb519985f3a6d2926cc1a2358ae542"},{"version":"6191022764ae77b83fc64562363f1e8051636a6832e2388dc40ce29238bd8ced","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"},{"version":"edca9a80cd695fb8ec9e4654f5ae3761f9ad73d62a776b43cc6a0ce520bd2ab7","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"},{"version":"2802b74ed7b87ad1b40080675442fe47951f51e943fb8d2d6f0a9896085afc56","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"},"d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2","561eca7a381b96d6ccac6e4061e6d2ae53f5bc44203f3fd9f5b26864c32ae6e9","62ea38627e3ebab429f7616812a9394d327c2bc271003dfba985de9b4137369f","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","f014d6d053cb1840965952268a589c9e2a74d66c8c88286562d5699350e28e19","66851b263230decb3684072b2cb777f70ea3e52d4489b88f78f185618d4d398e",{"version":"e9f2cdc4e98e73a606ff68c470a8cb4f23cd638c47649d71b90a2d9413102080","affectsGlobalScope":true}],"options":{"declaration":true,"esModuleInterop":true,"module":1,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":6,"useUnknownInCatchVariables":false},"fileIdsList":[[116],[91,115,116,123,587,588],[91,105,116,123],[39,116,166,621],[39,116,621,622,623],[39,116,623],[39,116,622,623,626],[39,116,621,622,623,630],[39,116,622,623,635],[39,116,622,623,638],[39,116,622,623,640,641],[39,116,621,622,623,643],[39,116,622,623,646],[39,116,622,623,648],[40,44,45,116],[40,43,116],[43,116],[44,46,48,116],[40,43,44,45,46,47,116],[40,43,47,51,52,53,116],[40,43,47,54,116],[40,116],[116,141],[40,41,116],[41,42,116],[68,69,70,71,116],[40,43,49,52,54,55,116],[116,144,145,146,147],[55,116],[40,55,60,116],[40,47,55,116],[40,55,63,64,65,116],[40,47,55,61,116],[50,116],[51,53,116,124,127,128],[43,47,51,52,54,116,123,124],[51,116,128],[51,54,116,125],[43,52,54,116],[51,54,116,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138],[51,116,126],[116,123,126],[40,47,51,52,53,54,55,116,125],[51,53,116,128],[51,53,116,124,126],[51,116,125,126],[116,154,155],[116,150,151],[40,116,150],[116,158,159,160],[40,54,55,60,61,62,66,116],[58,59,116],[57,116],[58,116],[116,446],[105,116,123],[116,656,658],[73,116],[76,116],[77,82,116],[78,88,89,96,105,115,116],[78,79,88,96,116],[80,116],[81,82,89,97,116],[82,105,112,116],[83,85,88,96,116],[84,116],[85,86,116],[87,88,116],[88,116],[88,89,90,105,115,116],[88,89,90,105,116],[91,96,105,115,116],[88,89,91,92,96,105,112,115,116],[91,93,105,112,115,116],[73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122],[88,94,116],[95,115,116],[85,88,96,105,116],[97,116],[98,116],[76,99,116],[100,114,116,120],[101,116],[102,116],[88,103,116],[103,104,116,118],[88,105,106,107,116],[105,107,116],[105,106,116],[108,116],[109,116],[88,110,111,116],[110,111,116],[82,96,112,116],[113,116],[96,114,116],[77,91,102,115,116],[82,116],[105,116,117],[116,118],[116,119],[77,82,88,90,99,105,115,116,118,120],[105,116,121],[40,43,52,55,56,57,60,67,72,116,139,163,164],[116,165],[40,47,49,52,53,57,61,62,66,67,116,140,142,143,148,149,152,153,156,157,161,162],[116,652,653],[116,652,653,654,655],[116,657],[116,453],[116,522,523,524,525,526],[116,456,523],[116,510,522],[116,499,510,521,527,539],[116,451,456],[116,450,457],[116,450],[116,451],[116,450,458],[116,451,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498],[116,450,459],[116,451,453],[116,450,460],[116,450,461],[116,450,462],[116,450,463],[116,450,464],[116,450,465],[116,450,466],[116,450,467],[116,450,468],[116,450,469],[116,450,470],[116,455,456,502],[116,456,502],[116,453,454,456],[116,453,454,455,456,500,501,502,503,504,505,506,507,508,509],[116,454],[116,450,452,453,454,455],[116,450,456],[116,511],[116,450,513],[116,511,512,513,514,515,516,517,518,519,520],[116,450,512],[116,511,514],[116,450,515],[116,450,516],[116,532],[116,452,528,531,532,533,534,535,536,537,538],[88,116,123,447,453,456,529],[116,456,530],[116,123],[116,139],[116,456],[116,448,586,589],[116,445,447,449,540,565,572],[116,123,167,565,591,610],[43,116,444,445,609],[40,43,56,116,444,445,615],[40,43,55,56,116,444,613,615],[40,43,116,444,445,590,611,614],[116,447,449,570,571],[116,445,540,573,593,604],[82,116,123,443,540],[116,447,449,583,600,601],[116,445,447,449,583,602,609,611],[116,447,449,540,583,593,602,603,608,609,621],[116,444,445,447,449,540,572,573,579,582,583,586,608],[116,447,449,600],[40,53,55,116,139,444],[40,43,53,56,116,444,582,583,585,594,595,611,614,616,617,618,619],[116,616,620],[116,445,447,449,590],[116,540,611],[116,445,540,569,573,596,597,611],[116,449,540,575,577],[116,447,449,540,573,577,580,595,604,606,607],[116,447,449,540,569,572,573,577,580,598,599,605,606],[116,202,447,449,540,578,586,591,595],[116,202,447,449,540,570,571,578,579,581,582,592],[105,116,123,202,447,448,449,586,589,611],[116,202,445,584,585],[116,445,540],[116,202,447,449],[116,202,444,532,540,583,590,591,592,593,595,608],[116,202,444,445,447,449,456,540,590,591,594,611],[116,447,449,594,595,611],[116,593,611],[116,167,168,202,445,447,449,570,571,572,578,579,580,582,585,586,591,592,593,595,603,608,611,612,615],[116,202,447,449,540,579,581],[116,540,578,581],[116,202,447,449,540,570,571,573,578,579,580],[116,443],[116,448],[116,447,449],[116,444],[88,116,123,444,447,566,567,568],[116,123,447],[116,447,449,570,571,575,576],[116,569],[116,447,449,574,575],[116,570],[116,447,449,540,573,593,611],[116,540,545,553,558,560,561,562,563,564],[116,558,559],[116,553,557,558],[116,123,546,547,559,560],[116,547,559],[88,116,123,545,546,558,559,560],[105,116,123,545,546,547,559],[91,93,105,116,123,547,549,559,560],[116,558,561],[116,544],[116,123,543],[116,559],[116,540,557,560],[116,540,557],[88,116,123,540,542,553,554,555,556,558,559,560],[116,540,557,558],[116,553,554,555,557,558,560],[116,557],[88,116,123,540,551,552,557,558,559,560],[88,116,123,540,541,557,558,559],[88,116,123,540,546,548,553,557,558,559],[88,116,123,540,550,557,558,559],[116,550,553,558],[116,203,206,207,209,210,215,216,217,218,219,221,222,223,224,225],[116,207,208],[116,207,211,212,213,214],[116,216],[116,204],[116,203,216,217,220],[116,208],[116,218],[116,207],[116,227,228,229,230],[116,232,233,234],[116,232],[116,242,243],[116,204,210,220,221,236,237,238,239,240,241],[116,216,227,229],[116,254,256,258,259,269,275,276,277,278,279,284,285,286,293],[116,207,208,236,246,247,248,249,250,252,253],[116,255,270,271,272,273,274],[116,206,256,269],[116,256,269],[116,208,210,216,225,237,238,240,241,245,248,256,257,258,259,265,268],[116,274],[116,245,256,258],[116,223,274],[116,256],[116,255,274,280,281,282,283],[116,222,256,258,259],[116,208,256],[116,269],[116,207,208,209,210,216,237,238,240,241,245,261,291,292],[116,205,226,231,235,244,294,295,302,317,371,375,434,442],[116,237,238,239,240,241,292],[116,237],[116,208,245,246,247,248,257,267,268,291,314,321,323,329,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433],[116,208,287],[116,208,210,211,212,332],[116,208,218,267,288,322,335],[116,208,210,211,336],[116,208,267,337],[116,208,220,267,322,340],[116,208,210,216,237,239,240,241,248,288,314,315],[116,204,208,267,288,322,343],[116,208,220,267,322,339],[116,208,220,267,338],[116,208,386,387],[116,208,220,267,322,345],[116,208,220,267,344],[116,203,204,208,210,216,229,237,238,240,391],[116,208,210,216,321,381,393],[116,208,220,267,288,346],[116,207,208,220,267,347],[116,208,245],[116,208,220,267,349],[116,208,220,267,322,351],[116,208,220,267,350],[116,316,385],[116,208,245,248],[116,208,213],[116,208,210,211,212,319],[116,208,210,211,212,353],[116,208,209,210,225,289],[116,208,210,211,212,261,288],[116,208,267,355],[116,208,210,225,288,290],[116,208,267,358],[116,208,245,262,263],[116,208,263,267,288,322],[116,208,210,211,334],[116,208,267,318],[116,208,210,287],[116,208,210,211,360],[116,208,210,211,212,264],[116,208,210,211,212,361],[116,207,208,249],[116,208,267,362],[116,208,262,267,288,322],[116,208,210,211,326],[116,208,267,363],[116,208,323,386],[116,208,210,216,237,238,240,241,314],[116,208,210,220,364],[116,208,210,211,333],[116,208,266,267],[116,208,210,216,237,238,240,241,245,288,314],[116,208,220,267,322,365],[116,208,220,267,348],[116,208,210,216,237,239,240,241,248,314,315],[116,208,267,367],[116,207,208,209],[116,204,208,210,216,227,228,237,238,240,241,245,257,288,321,385],[116,208,210,288,290],[116,208,210,211,369],[116,208,267,370],[116,208,210,216,237,238,240,241,245,288,321],[116,207,208,210,216,237,238,240,241,245,264,288,341],[116,212,300,301],[116,296,297,298,299],[116,298],[116,296,297,299],[116,303,304,305,306,307,308,309,310,311,312,313,316],[116,237,240,303,304],[116,210,237,238,239,240,241,304],[116,237,240,307,308],[116,203,229,237,240,309],[116,237,240],[116,237,240,309],[116,310],[116,208,210,216,237,238,239,240,241,314,315],[116,236,249,262,263,264,265,266,287,290,318,319,322,326,331,332,333,334,335,336,337,338,339,340,341,343,344,345,346,347,348,349,350,351,352,353,354,355,357,358,359,360,361,362,363,364,365,366,367,368,369,370],[116,208,210,211,212,216,237,238,240,241,245,319],[116,207,215,216,218,262,333,334],[116,207,211,212,261,262,264],[116,220,264,339],[116,204,207,215,262,263,342],[116,220,262,338],[116,209,218,220,221,260],[116,220,262,344],[116,220,221],[116,207,209,220,221],[116,207,208,220,221,249],[116,220,348],[116,220,262,350],[116,209,218,220,221],[116,207,215,255,341],[116,208,210,216,237,238,240,241,250,260,292,321],[116,207,208,209,211,212,213,245,260,268,318],[116,209,225,260,289],[116,207,211,262,264,356],[116,207,341],[116,207,260,262],[116,203,207,211,262,264],[116,320,324,325,327,328,330],[116,207,208,211,212,248,319],[116,207,208,212,248,263,323],[116,207,208,212,248,262,322],[116,207,208,211,212,248,326],[116,207,208,211,237,238,240,241,329],[116,207,208,212,248,290,291],[116,211,334],[116,207,208,209,211,212,213,245,263],[116,208,210,211,212,216,237,238,240,241,245,264],[116,207,208,209,210,216,237,238,240,241,245],[116,207,208,210,212,218,245,265,301],[116,207,211,212,262,264],[116,203],[116,207,211],[116,220,262,348],[116,207,209],[116,207,225,289],[116,252,253,372,373,374],[116,209,253],[116,208,210,251],[116,245,253],[116,210,251],[116,210,247],[116,203,204],[116,213,250,255,260,261,289,342,356,435,436,437,438,439,440,441],[116,260],[116,226],[116,255],[116,208,210,216,260,314,438],[116,209,215,255,287,342],[116,260,438],[116,215,218,334,341],[116,169],[116,185,186,187,188,189,190,191,193,194],[116,173,174],[116,174],[116,173,192],[116,174,176,179],[116,169,178,192],[116,169,174,176,179,182],[116,182],[116,196,197,198,199],[116,196],[116,169,182,196],[116,170,184,192,195,200,201],[116,169,170,176],[116,176,182],[116,171,172,174,175,176,177],[116,169,170,173],[116,171,172,175,177],[116,174,176],[116,176],[116,169,171,172,174,175,177,179,181],[116,169,173,178,179,180,181,182,183],[116,180],[116,178],[116,621],[116,621,630],[105,116,621],[39,621],[621],[105,621]],"referencedMap":[[588,1],[589,2],[587,3],[622,4],[624,5],[625,6],[627,7],[628,6],[629,5],[631,8],[632,8],[633,5],[634,6],[636,9],[637,8],[639,10],[642,11],[644,12],[645,5],[647,13],[649,14],[650,6],[651,6],[46,15],[45,16],[44,17],[49,18],[48,19],[54,20],[55,21],[140,16],[141,22],[142,23],[143,22],[41,22],[42,24],[43,25],[40,1],[68,1],[69,17],[70,1],[72,26],[71,1],[56,27],[144,1],[148,28],[146,22],[145,1],[147,29],[61,30],[63,31],[66,32],[64,1],[65,33],[149,22],[57,1],[51,34],[50,1],[47,1],[129,35],[125,36],[130,37],[131,38],[132,38],[124,39],[139,40],[134,35],[133,41],[135,42],[126,43],[136,37],[137,44],[128,45],[138,41],[127,46],[156,47],[154,1],[155,1],[157,22],[152,48],[151,49],[150,1],[62,22],[153,1],[158,22],[159,1],[161,50],[160,22],[52,16],[162,17],[67,51],[53,1],[60,52],[58,53],[59,54],[447,55],[640,56],[659,57],[446,1],[73,58],[74,58],[76,59],[77,60],[78,61],[79,62],[80,63],[81,64],[82,65],[83,66],[84,67],[85,68],[86,68],[87,69],[88,70],[89,71],[90,72],[75,1],[122,1],[91,73],[92,74],[93,75],[123,76],[94,77],[95,78],[96,79],[97,80],[98,81],[99,82],[100,83],[101,84],[102,85],[103,86],[104,87],[105,88],[107,89],[106,90],[108,91],[109,92],[110,93],[111,94],[112,95],[113,96],[114,97],[115,98],[116,99],[117,100],[118,101],[119,102],[120,103],[121,104],[39,1],[630,1],[164,1],[165,105],[166,106],[163,107],[584,1],[652,1],[654,108],[656,109],[655,108],[653,1],[658,110],[657,1],[167,1],[526,111],[527,112],[524,113],[523,114],[525,1],[522,1],[540,115],[457,116],[471,117],[472,117],[451,118],[458,119],[473,120],[474,120],[499,121],[459,116],[475,122],[476,122],[460,123],[477,124],[478,124],[461,119],[479,125],[480,125],[462,123],[481,126],[482,126],[463,119],[483,127],[484,127],[464,119],[485,128],[486,128],[465,119],[487,129],[488,129],[466,119],[489,130],[490,130],[467,119],[491,131],[492,131],[468,116],[493,132],[494,132],[469,119],[495,133],[496,133],[470,119],[497,134],[498,134],[455,1],[505,135],[506,136],[502,137],[503,136],[504,135],[510,138],[454,111],[500,139],[453,1],[501,111],[456,140],[507,141],[508,141],[509,141],[513,142],[517,143],[521,144],[512,142],[518,145],[514,1],[515,146],[519,147],[516,142],[520,148],[511,118],[450,1],[533,149],[538,1],[539,150],[537,1],[530,151],[531,152],[534,153],[452,1],[536,154],[532,155],[528,1],[535,154],[619,156],[580,157],[611,158],[610,159],[618,1],[613,160],[614,161],[615,162],[572,163],[605,164],[583,165],[602,166],[603,167],[604,168],[609,169],[600,1],[601,170],[445,171],[620,172],[621,173],[585,174],[597,175],[598,176],[578,177],[608,178],[607,179],[592,180],[612,181],[590,182],[586,183],[599,184],[617,1],[591,185],[594,186],[595,187],[593,188],[596,189],[616,190],[582,191],[579,192],[581,193],[444,194],[566,1],[449,195],[574,196],[575,197],[569,198],[448,199],[168,1],[577,200],[570,201],[576,202],[567,197],[571,203],[573,1],[568,1],[606,204],[565,205],[541,206],[559,207],[548,208],[546,209],[547,210],[549,211],[550,212],[563,213],[545,214],[543,1],[544,215],[560,216],[558,217],[561,218],[557,219],[555,220],[556,221],[552,222],[553,223],[562,216],[542,224],[554,225],[551,226],[564,227],[529,1],[226,228],[220,1],[209,229],[206,1],[210,1],[215,230],[217,231],[203,1],[216,1],[214,232],[221,233],[207,1],[218,234],[219,235],[222,1],[223,1],[224,236],[225,1],[231,237],[204,1],[227,232],[228,232],[229,232],[230,232],[235,238],[232,234],[233,239],[234,239],[244,240],[242,241],[243,242],[294,243],[274,1],[254,244],[275,245],[270,246],[271,247],[272,246],[273,247],[269,248],[276,249],[256,234],[278,250],[277,251],[279,1],[258,252],[284,253],[280,246],[281,247],[282,246],[283,247],[285,254],[259,255],[286,256],[293,257],[443,258],[295,259],[315,1],[237,1],[240,260],[292,260],[238,260],[241,260],[239,260],[434,261],[288,262],[321,234],[376,263],[377,264],[378,265],[379,266],[257,234],[380,267],[381,268],[382,269],[383,270],[384,271],[388,272],[389,273],[390,274],[392,275],[394,276],[395,277],[396,278],[246,279],[397,280],[398,281],[399,282],[386,283],[400,284],[329,284],[245,234],[208,1],[401,285],[402,286],[403,287],[404,288],[405,289],[406,290],[407,291],[408,292],[267,293],[323,294],[409,295],[410,296],[411,297],[412,298],[413,299],[414,300],[415,301],[416,302],[387,303],[247,234],[314,234],[417,304],[418,305],[419,306],[420,307],[421,308],[422,309],[268,310],[423,311],[424,312],[425,313],[426,285],[248,234],[393,314],[427,291],[428,315],[429,316],[385,234],[391,317],[291,318],[430,319],[431,320],[432,321],[433,322],[302,323],[212,1],[300,324],[299,325],[297,325],[296,1],[298,326],[301,1],[317,327],[305,328],[306,329],[309,330],[310,331],[304,332],[308,332],[311,332],[312,333],[313,334],[303,332],[316,335],[307,329],[371,336],[211,1],[332,337],[335,338],[336,339],[337,1],[340,340],[343,341],[339,342],[338,343],[345,344],[344,345],[346,346],[347,347],[349,348],[351,349],[350,350],[352,351],[322,352],[319,353],[353,337],[354,354],[265,339],[355,1],[357,355],[358,1],[359,356],[263,357],[334,358],[318,1],[287,1],[331,359],[320,360],[324,361],[325,362],[327,363],[330,364],[328,365],[360,366],[264,367],[361,368],[249,369],[362,370],[262,236],[326,371],[363,372],[341,373],[364,345],[333,371],[266,1],[365,374],[348,345],[366,371],[367,1],[368,375],[236,1],[290,376],[369,371],[370,372],[375,377],[251,1],[372,378],[252,379],[373,380],[374,381],[253,382],[205,383],[442,384],[435,385],[260,1],[436,345],[213,1],[437,386],[255,1],[438,387],[441,388],[439,389],[261,385],[356,1],[440,390],[289,345],[250,345],[342,391],[185,392],[195,393],[191,394],[190,395],[193,396],[186,395],[187,392],[188,397],[194,398],[189,392],[201,399],[196,400],[200,401],[197,402],[198,402],[199,403],[202,404],[170,392],[171,405],[177,406],[192,407],[174,408],[176,409],[175,410],[172,411],[169,1],[182,412],[183,1],[180,1],[184,413],[181,414],[178,1],[179,415],[173,1],[9,1],[8,1],[2,1],[10,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[3,1],[4,1],[21,1],[18,1],[19,1],[20,1],[22,1],[23,1],[24,1],[5,1],[25,1],[26,1],[27,1],[28,1],[6,1],[29,1],[30,1],[31,1],[32,1],[7,1],[37,1],[33,1],[34,1],[35,1],[36,1],[1,1],[38,1],[623,1],[635,416],[626,1],[638,417],[641,418],[643,416],[646,416],[648,416]],"exportedModulesMap":[[588,1],[589,2],[587,3],[622,419],[46,15],[45,16],[44,17],[49,18],[48,19],[54,20],[55,21],[140,16],[141,22],[142,23],[143,22],[41,22],[42,24],[43,25],[40,1],[68,1],[69,17],[70,1],[72,26],[71,1],[56,27],[144,1],[148,28],[146,22],[145,1],[147,29],[61,30],[63,31],[66,32],[64,1],[65,33],[149,22],[57,1],[51,34],[50,1],[47,1],[129,35],[125,36],[130,37],[131,38],[132,38],[124,39],[139,40],[134,35],[133,41],[135,42],[126,43],[136,37],[137,44],[128,45],[138,41],[127,46],[156,47],[154,1],[155,1],[157,22],[152,48],[151,49],[150,1],[62,22],[153,1],[158,22],[159,1],[161,50],[160,22],[52,16],[162,17],[67,51],[53,1],[60,52],[58,53],[59,54],[447,55],[640,56],[659,57],[446,1],[73,58],[74,58],[76,59],[77,60],[78,61],[79,62],[80,63],[81,64],[82,65],[83,66],[84,67],[85,68],[86,68],[87,69],[88,70],[89,71],[90,72],[75,1],[122,1],[91,73],[92,74],[93,75],[123,76],[94,77],[95,78],[96,79],[97,80],[98,81],[99,82],[100,83],[101,84],[102,85],[103,86],[104,87],[105,88],[107,89],[106,90],[108,91],[109,92],[110,93],[111,94],[112,95],[113,96],[114,97],[115,98],[116,99],[117,100],[118,101],[119,102],[120,103],[121,104],[39,1],[630,1],[164,1],[165,105],[166,106],[163,107],[584,1],[652,1],[654,108],[656,109],[655,108],[653,1],[658,110],[657,1],[167,1],[526,111],[527,112],[524,113],[523,114],[525,1],[522,1],[540,115],[457,116],[471,117],[472,117],[451,118],[458,119],[473,120],[474,120],[499,121],[459,116],[475,122],[476,122],[460,123],[477,124],[478,124],[461,119],[479,125],[480,125],[462,123],[481,126],[482,126],[463,119],[483,127],[484,127],[464,119],[485,128],[486,128],[465,119],[487,129],[488,129],[466,119],[489,130],[490,130],[467,119],[491,131],[492,131],[468,116],[493,132],[494,132],[469,119],[495,133],[496,133],[470,119],[497,134],[498,134],[455,1],[505,135],[506,136],[502,137],[503,136],[504,135],[510,138],[454,111],[500,139],[453,1],[501,111],[456,140],[507,141],[508,141],[509,141],[513,142],[517,143],[521,144],[512,142],[518,145],[514,1],[515,146],[519,147],[516,142],[520,148],[511,118],[450,1],[533,149],[538,1],[539,150],[537,1],[530,151],[531,152],[534,153],[452,1],[536,154],[532,155],[528,1],[535,154],[619,156],[580,157],[611,158],[610,159],[618,1],[613,160],[614,161],[615,162],[572,163],[605,164],[583,165],[602,166],[603,167],[604,168],[609,169],[600,1],[601,170],[445,171],[620,172],[621,173],[585,174],[597,175],[598,176],[578,177],[608,178],[607,179],[592,180],[612,181],[590,182],[586,183],[599,184],[617,1],[591,185],[594,186],[595,187],[593,188],[596,189],[616,190],[582,191],[579,192],[581,193],[444,194],[566,1],[449,195],[574,196],[575,197],[569,198],[448,199],[168,1],[577,200],[570,201],[576,202],[567,197],[571,203],[573,1],[568,1],[606,204],[565,205],[541,206],[559,207],[548,208],[546,209],[547,210],[549,211],[550,212],[563,213],[545,214],[543,1],[544,215],[560,216],[558,217],[561,218],[557,219],[555,220],[556,221],[552,222],[553,223],[562,216],[542,224],[554,225],[551,226],[564,227],[529,1],[226,228],[220,1],[209,229],[206,1],[210,1],[215,230],[217,231],[203,1],[216,1],[214,232],[221,233],[207,1],[218,234],[219,235],[222,1],[223,1],[224,236],[225,1],[231,237],[204,1],[227,232],[228,232],[229,232],[230,232],[235,238],[232,234],[233,239],[234,239],[244,240],[242,241],[243,242],[294,243],[274,1],[254,244],[275,245],[270,246],[271,247],[272,246],[273,247],[269,248],[276,249],[256,234],[278,250],[277,251],[279,1],[258,252],[284,253],[280,246],[281,247],[282,246],[283,247],[285,254],[259,255],[286,256],[293,257],[443,258],[295,259],[315,1],[237,1],[240,260],[292,260],[238,260],[241,260],[239,260],[434,261],[288,262],[321,234],[376,263],[377,264],[378,265],[379,266],[257,234],[380,267],[381,268],[382,269],[383,270],[384,271],[388,272],[389,273],[390,274],[392,275],[394,276],[395,277],[396,278],[246,279],[397,280],[398,281],[399,282],[386,283],[400,284],[329,284],[245,234],[208,1],[401,285],[402,286],[403,287],[404,288],[405,289],[406,290],[407,291],[408,292],[267,293],[323,294],[409,295],[410,296],[411,297],[412,298],[413,299],[414,300],[415,301],[416,302],[387,303],[247,234],[314,234],[417,304],[418,305],[419,306],[420,307],[421,308],[422,309],[268,310],[423,311],[424,312],[425,313],[426,285],[248,234],[393,314],[427,291],[428,315],[429,316],[385,234],[391,317],[291,318],[430,319],[431,320],[432,321],[433,322],[302,323],[212,1],[300,324],[299,325],[297,325],[296,1],[298,326],[301,1],[317,327],[305,328],[306,329],[309,330],[310,331],[304,332],[308,332],[311,332],[312,333],[313,334],[303,332],[316,335],[307,329],[371,336],[211,1],[332,337],[335,338],[336,339],[337,1],[340,340],[343,341],[339,342],[338,343],[345,344],[344,345],[346,346],[347,347],[349,348],[351,349],[350,350],[352,351],[322,352],[319,353],[353,337],[354,354],[265,339],[355,1],[357,355],[358,1],[359,356],[263,357],[334,358],[318,1],[287,1],[331,359],[320,360],[324,361],[325,362],[327,363],[330,364],[328,365],[360,366],[264,367],[361,368],[249,369],[362,370],[262,236],[326,371],[363,372],[341,373],[364,345],[333,371],[266,1],[365,374],[348,345],[366,371],[367,1],[368,375],[236,1],[290,376],[369,371],[370,372],[375,377],[251,1],[372,378],[252,379],[373,380],[374,381],[253,382],[205,383],[442,384],[435,385],[260,1],[436,345],[213,1],[437,386],[255,1],[438,387],[441,388],[439,389],[261,385],[356,1],[440,390],[289,345],[250,345],[342,391],[185,392],[195,393],[191,394],[190,395],[193,396],[186,395],[187,392],[188,397],[194,398],[189,392],[201,399],[196,400],[200,401],[197,402],[198,402],[199,403],[202,404],[170,392],[171,405],[177,406],[192,407],[174,408],[176,409],[175,410],[172,411],[169,1],[182,412],[183,1],[180,1],[184,413],[181,414],[178,1],[179,415],[173,1],[9,1],[8,1],[2,1],[10,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[3,1],[4,1],[21,1],[18,1],[19,1],[20,1],[22,1],[23,1],[24,1],[5,1],[25,1],[26,1],[27,1],[28,1],[6,1],[29,1],[30,1],[31,1],[32,1],[7,1],[37,1],[33,1],[34,1],[35,1],[36,1],[1,1],[38,1],[635,420],[638,420],[641,421],[643,420],[646,420],[648,420]],"semanticDiagnosticsPerFile":[588,589,587,622,624,625,627,628,629,631,632,633,634,636,637,639,642,644,645,647,649,650,651,46,45,44,49,48,54,55,140,141,142,143,41,42,43,40,68,69,70,72,71,56,144,148,146,145,147,61,63,66,64,65,149,57,51,50,47,129,125,130,131,132,124,139,134,133,135,126,136,137,128,138,127,156,154,155,157,152,151,150,62,153,158,159,161,160,52,162,67,53,60,58,59,447,640,659,446,73,74,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,75,122,91,92,93,123,94,95,96,97,98,99,100,101,102,103,104,105,107,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,39,630,164,165,166,163,584,652,654,656,655,653,658,657,167,526,527,524,523,525,522,540,457,471,472,451,458,473,474,499,459,475,476,460,477,478,461,479,480,462,481,482,463,483,484,464,485,486,465,487,488,466,489,490,467,491,492,468,493,494,469,495,496,470,497,498,455,505,506,502,503,504,510,454,500,453,501,456,507,508,509,513,517,521,512,518,514,515,519,516,520,511,450,533,538,539,537,530,531,534,452,536,532,528,535,619,580,611,610,618,613,614,615,572,605,583,602,603,604,609,600,601,445,620,621,585,597,598,578,608,607,592,612,590,586,599,617,591,594,595,593,596,616,582,579,581,444,566,449,574,575,569,448,168,577,570,576,567,571,573,568,606,565,541,559,548,546,547,549,550,563,545,543,544,560,558,561,557,555,556,552,553,562,542,554,551,564,529,226,220,209,206,210,215,217,203,216,214,221,207,218,219,222,223,224,225,231,204,227,228,229,230,235,232,233,234,244,242,243,294,274,254,275,270,271,272,273,269,276,256,278,277,279,258,284,280,281,282,283,285,259,286,293,443,295,315,237,240,292,238,241,239,434,288,321,376,377,378,379,257,380,381,382,383,384,388,389,390,392,394,395,396,246,397,398,399,386,400,329,245,208,401,402,403,404,405,406,407,408,267,323,409,410,411,412,413,414,415,416,387,247,314,417,418,419,420,421,422,268,423,424,425,426,248,393,427,428,429,385,391,291,430,431,432,433,302,212,300,299,297,296,298,301,317,305,306,309,310,304,308,311,312,313,303,316,307,371,211,332,335,336,337,340,343,339,338,345,344,346,347,349,351,350,352,322,319,353,354,265,355,357,358,359,263,334,318,287,331,320,324,325,327,330,328,360,264,361,249,362,262,326,363,341,364,333,266,365,348,366,367,368,236,290,369,370,375,251,372,252,373,374,253,205,442,435,260,436,213,437,255,438,441,439,261,356,440,289,250,342,185,195,191,190,193,186,187,188,194,189,201,196,200,197,198,199,202,170,171,177,192,174,176,175,172,169,182,183,180,184,181,178,179,173,9,8,2,10,11,12,13,14,15,16,17,3,4,21,18,19,20,22,23,24,5,25,26,27,28,6,29,30,31,32,7,37,33,34,35,36,1,38,623,635,626,638,641,643,646,648]},"version":"4.4.3"}
package/package.json CHANGED
@@ -1,23 +1,20 @@
1
1
  {
2
2
  "name": "@streamr/cli-tools",
3
- "version": "4.1.0",
3
+ "version": "6.0.0-alpha.0",
4
4
  "description": "Command line tools for Streamr.",
5
5
  "bin": {
6
- "streamr": "bin/streamr.js",
7
- "streamr-create": "bin/streamr-create.js",
8
- "streamr-generate": "bin/streamr-generate.js",
9
- "streamr-list": "bin/streamr-list.js",
10
- "streamr-publish": "bin/streamr-publish.js",
11
- "streamr-resend": "bin/streamr-resend.js",
12
- "streamr-subscribe": "bin/streamr-subscribe.js",
13
- "streamr-show": "bin/streamr-show.js"
6
+ "streamr": "dist/bin/streamr.js"
14
7
  },
15
8
  "scripts": {
9
+ "eslint": "eslint .",
10
+ "prepare": "eslint . && tsc",
11
+ "build": "tsc",
16
12
  "test": "echo \"Error: no test specified\" && exit 1"
17
13
  },
18
14
  "repository": {
19
15
  "type": "git",
20
- "url": "git@github.com:streamr-dev/cli-tools.git"
16
+ "url": "git+https://github.com/streamr-dev/network-monorepo.git",
17
+ "directory": "packages/cli-tools"
21
18
  },
22
19
  "keywords": [
23
20
  "streamr",
@@ -32,9 +29,22 @@
32
29
  },
33
30
  "homepage": "https://github.com/streamr-dev/cli-tools#readme",
34
31
  "dependencies": {
35
- "commander": "^4.0.1",
32
+ "commander": "^7.2.0",
36
33
  "easy-table": "^1.1.1",
34
+ "ethers": "^5.3.1",
37
35
  "event-stream": "^4.0.1",
38
- "streamr-client": "^4.1.1"
36
+ "streamr-client": "6.0.0-alpha.17"
37
+ },
38
+ "devDependencies": {
39
+ "@streamr/dev-config": "^1.0.0",
40
+ "@types/easy-table": "0.0.32",
41
+ "@types/event-stream": "^3.3.34",
42
+ "@types/jest": "^27.0.1",
43
+ "@typescript-eslint/eslint-plugin": "^4.31.2",
44
+ "@typescript-eslint/parser": "^4.31.2",
45
+ "eslint": "^7.32.0",
46
+ "eslint-config-streamr-ts": "^4.0.1",
47
+ "eslint-plugin-promise": "^5.1.0",
48
+ "typescript": "^4.3.4"
39
49
  }
40
50
  }
@@ -1,12 +1,17 @@
1
- const StreamrClient = require('streamr-client')
1
+ import { StreamProperties, StreamrClient, StreamrClientOptions} from 'streamr-client'
2
2
 
3
- module.exports = function create(body, streamrOptions) {
3
+ export const create = (
4
+ // id is required
5
+ body: Partial<StreamProperties> & Required<Pick<StreamProperties, "id">>,
6
+ streamrOptions: StreamrClientOptions
7
+ ): void => {
4
8
  const options = { ...streamrOptions }
5
9
 
6
10
  const client = new StreamrClient(options)
7
11
  client.createStream(body).then((stream) => {
8
12
  console.info(JSON.stringify(stream.toObject(), null, 2))
9
13
  process.exit(0)
14
+ return true
10
15
  }).catch((err) => {
11
16
  console.error(err.message ? err.message : err)
12
17
  process.exit(1)
@@ -1,5 +1,8 @@
1
1
  // From: https://stackoverflow.com/questions/10726909/random-alpha-numeric-string-in-javascript
2
- function randomString(length, chars = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ') {
2
+ function randomString(
3
+ length: number,
4
+ chars = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
5
+ ): string {
3
6
  let result = ''
4
7
  for (let i = length; i > 0; --i) {
5
8
  result += chars[Math.floor(Math.random() * chars.length)]
@@ -7,7 +10,7 @@ function randomString(length, chars = '0123456789abcdefghijklmnopqrstuvwxyzABCDE
7
10
  return result
8
11
  }
9
12
 
10
- function genArray(size, elementFn) {
13
+ function genArray<T>(size: number, elementFn: () => T): T[] {
11
14
  const arr = []
12
15
  for (let i=0; i < size; ++i) {
13
16
  arr.push(elementFn())
@@ -15,7 +18,7 @@ function genArray(size, elementFn) {
15
18
  return arr
16
19
  }
17
20
 
18
- module.exports = (rate) => {
21
+ export const generate = (rate: number): void => {
19
22
  setInterval(() => {
20
23
  console.info(JSON.stringify({
21
24
  someText: randomString(64),
@@ -1,11 +1,12 @@
1
- const StreamrClient = require('streamr-client')
2
- const EasyTable = require('easy-table')
1
+ import { StreamListQuery, StreamrClient, StreamrClientOptions } from 'streamr-client'
2
+ import EasyTable from 'easy-table'
3
3
 
4
- module.exports = function list(query, streamrOptions) {
4
+ export const list = (query: StreamListQuery, streamrOptions: StreamrClientOptions): void => {
5
5
  const options = { ...streamrOptions }
6
6
  const client = new StreamrClient(options)
7
7
  client.listStreams(query).then((streams) => {
8
8
  if (streams.length > 0) {
9
+ // @ts-expect-error: TODO: lastUpdated not officially part of stream object?
9
10
  console.info(EasyTable.print(streams.map(({id, name, lastUpdated}) => ({
10
11
  lastUpdated,
11
12
  id,
@@ -13,7 +14,8 @@ module.exports = function list(query, streamrOptions) {
13
14
  }))))
14
15
  }
15
16
  process.exit(0)
16
- }, (err) => {
17
+ return true
18
+ }).catch((err) => {
17
19
  console.error(err.message ? err.message : err)
18
20
  process.exit(1)
19
21
  })
@@ -1,13 +1,17 @@
1
- const Writable = require('stream').Writable
2
- const StreamrClient = require('streamr-client')
1
+ import { Writable } from 'stream'
2
+ import { StreamrClient, StreamrClientOptions } from 'streamr-client'
3
3
 
4
- module.exports = function publishStream(stream, partitionKey, streamrOptions) {
4
+ export const publishStream = (
5
+ stream: string,
6
+ partitionKey: string | undefined,
7
+ streamrOptions: StreamrClientOptions
8
+ ): Writable => {
5
9
  const options = { ...streamrOptions }
6
10
 
7
11
  const client = new StreamrClient(options)
8
12
  const writable = new Writable({
9
13
  objectMode: true,
10
- write: (data, _, done) => {
14
+ write: (data: any, _: any, done: any) => {
11
15
  let json = null
12
16
  // ignore newlines, etc
13
17
  if (!data || String(data).trim() === '') {
@@ -23,6 +27,7 @@ module.exports = function publishStream(stream, partitionKey, streamrOptions) {
23
27
  return
24
28
  }
25
29
 
30
+ // @ts-expect-error TODO: the last argument here looks wrong, should be just `partitionKey`?
26
31
  client.publish(stream, json, Date.now(), json[partitionKey]).then(
27
32
  () => done(),
28
33
  (err) => done(err)
@@ -30,8 +35,7 @@ module.exports = function publishStream(stream, partitionKey, streamrOptions) {
30
35
  }
31
36
  })
32
37
 
33
- client.on('error', (err) => writable.emit('error', err))
34
- // disconnect client when upstream pipe ends and data flushed
35
- writable.once('finish', () => client.ensureDisconnected())
38
+ // destroy client when upstream pipe ends and data flushed
39
+ writable.once('finish', () => client.destroy())
36
40
  return writable
37
41
  }
package/src/resend.ts ADDED
@@ -0,0 +1,29 @@
1
+ import { StreamrClient, StreamrClientOptions, ResendOptions } from 'streamr-client'
2
+
3
+ export const resend = async (
4
+ streamId: string,
5
+ resendOpts: ResendOptions,
6
+ streamrOptions: StreamrClientOptions & { subscribe?: boolean }
7
+ ): Promise<void> => {
8
+ const options = { ...streamrOptions }
9
+ const client = new StreamrClient(options)
10
+
11
+ try {
12
+ const subscribeOpts = {
13
+ stream: streamId,
14
+ resend: resendOpts
15
+ }
16
+ const handler = (message: any) => {
17
+ console.info(JSON.stringify(message))
18
+ }
19
+
20
+ if (options.subscribe) {
21
+ await client.subscribe(subscribeOpts, handler)
22
+ } else {
23
+ await client.resend(subscribeOpts, handler)
24
+ }
25
+ } catch (err) {
26
+ console.error(err.message ? err.message : err)
27
+ process.exit(1)
28
+ }
29
+ }
@@ -1,15 +1,21 @@
1
- const StreamrClient = require('streamr-client')
1
+ import { StreamrClient, StreamrClientOptions } from 'streamr-client'
2
2
 
3
- module.exports = function show(streamId, includePermissions, streamrOptions) {
3
+ export const show = (
4
+ streamId: string,
5
+ includePermissions: boolean | undefined,
6
+ streamrOptions: StreamrClientOptions
7
+ ): void => {
4
8
  const options = { ...streamrOptions }
5
9
  const client = new StreamrClient(options)
6
10
  client.getStream(streamId).then(async (stream) => {
7
11
  const obj = stream.toObject()
8
12
  if (includePermissions) {
13
+ // @ts-expect-error permissions not on {}
9
14
  obj.permissions = await stream.getPermissions()
10
15
  }
11
16
  console.info(JSON.stringify(obj, null, 2))
12
17
  process.exit(0)
18
+ return true
13
19
  }).catch((err) => {
14
20
  console.error(err.message ? err.message : err)
15
21
  process.exit(1)
@@ -0,0 +1,9 @@
1
+ import { StreamrClient, StreamrClientOptions } from 'streamr-client'
2
+
3
+ export const subscribe = (streamId: string, streamPartition: number, streamrOptions: StreamrClientOptions): void => {
4
+ const options = { ...streamrOptions }
5
+ new StreamrClient(options).subscribe({
6
+ streamId,
7
+ streamPartition,
8
+ }, (message) => console.info(JSON.stringify(message)))
9
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,7 @@
1
+ {
2
+ "extends": "@streamr/dev-config/ts/tsconfig.node.json",
3
+ "compilerOptions": {
4
+ "outDir": "dist",
5
+ "rootDirs": ["src", "bin"]
6
+ }
7
+ }