ipfs-unixfs-importer 12.0.1 → 14.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (137) hide show
  1. package/README.md +15 -51
  2. package/dist/index.min.js +1 -1
  3. package/dist/src/chunker/fixed-size.d.ts +5 -2
  4. package/dist/src/chunker/fixed-size.d.ts.map +1 -1
  5. package/dist/src/chunker/fixed-size.js +35 -0
  6. package/dist/src/chunker/fixed-size.js.map +1 -0
  7. package/dist/src/chunker/index.d.ts +6 -0
  8. package/dist/src/chunker/index.d.ts.map +1 -0
  9. package/dist/src/chunker/index.js +3 -0
  10. package/dist/src/chunker/index.js.map +1 -0
  11. package/dist/src/chunker/rabin.d.ts +8 -9
  12. package/dist/src/chunker/rabin.d.ts.map +1 -1
  13. package/dist/src/chunker/rabin.js +56 -0
  14. package/dist/src/chunker/rabin.js.map +1 -0
  15. package/dist/src/dag-builder/buffer-importer.d.ts +10 -0
  16. package/dist/src/dag-builder/buffer-importer.d.ts.map +1 -0
  17. package/dist/src/dag-builder/buffer-importer.js +38 -0
  18. package/dist/src/dag-builder/buffer-importer.js.map +1 -0
  19. package/dist/src/dag-builder/dir.d.ts +8 -9
  20. package/dist/src/dag-builder/dir.d.ts.map +1 -1
  21. package/dist/src/dag-builder/dir.js +21 -0
  22. package/dist/src/dag-builder/dir.js.map +1 -0
  23. package/dist/src/dag-builder/file.d.ts +19 -0
  24. package/dist/src/dag-builder/file.d.ts.map +1 -0
  25. package/dist/src/dag-builder/file.js +133 -0
  26. package/dist/src/dag-builder/file.js.map +1 -0
  27. package/dist/src/dag-builder/index.d.ts +16 -7
  28. package/dist/src/dag-builder/index.d.ts.map +1 -1
  29. package/dist/src/dag-builder/index.js +67 -0
  30. package/dist/src/dag-builder/index.js.map +1 -0
  31. package/dist/src/dag-builder/validate-chunks.d.ts +4 -3
  32. package/dist/src/dag-builder/validate-chunks.d.ts.map +1 -1
  33. package/dist/src/dag-builder/validate-chunks.js +24 -0
  34. package/dist/src/dag-builder/validate-chunks.js.map +1 -0
  35. package/dist/src/dir-flat.d.ts +14 -30
  36. package/dist/src/dir-flat.d.ts.map +1 -1
  37. package/dist/src/dir-flat.js +91 -0
  38. package/dist/src/dir-flat.js.map +1 -0
  39. package/dist/src/dir-sharded.d.ts +15 -22
  40. package/dist/src/dir-sharded.d.ts.map +1 -1
  41. package/dist/src/dir-sharded.js +210 -0
  42. package/dist/src/dir-sharded.js.map +1 -0
  43. package/dist/src/dir.d.ts +31 -67
  44. package/dist/src/dir.d.ts.map +1 -1
  45. package/dist/src/dir.js +23 -0
  46. package/dist/src/dir.js.map +1 -0
  47. package/dist/src/flat-to-shard.d.ts +4 -16
  48. package/dist/src/flat-to-shard.d.ts.map +1 -1
  49. package/dist/src/flat-to-shard.js +41 -0
  50. package/dist/src/flat-to-shard.js.map +1 -0
  51. package/dist/src/index.d.ts +250 -34
  52. package/dist/src/index.d.ts.map +1 -1
  53. package/dist/src/index.js +162 -0
  54. package/dist/src/index.js.map +1 -0
  55. package/dist/src/layout/balanced.d.ts +6 -0
  56. package/dist/src/layout/balanced.d.ts.map +1 -0
  57. package/dist/src/layout/balanced.js +16 -0
  58. package/dist/src/layout/balanced.js.map +1 -0
  59. package/dist/src/layout/flat.d.ts +3 -0
  60. package/dist/src/layout/flat.d.ts.map +1 -0
  61. package/dist/src/layout/flat.js +7 -0
  62. package/dist/src/layout/flat.js.map +1 -0
  63. package/dist/src/layout/index.d.ts +11 -0
  64. package/dist/src/layout/index.d.ts.map +1 -0
  65. package/dist/src/layout/index.js +4 -0
  66. package/dist/src/layout/index.js.map +1 -0
  67. package/dist/src/layout/trickle.d.ts +10 -0
  68. package/dist/src/layout/trickle.d.ts.map +1 -0
  69. package/dist/src/layout/trickle.js +121 -0
  70. package/dist/src/layout/trickle.js.map +1 -0
  71. package/dist/src/tree-builder.d.ts +9 -7
  72. package/dist/src/tree-builder.d.ts.map +1 -1
  73. package/dist/src/tree-builder.js +96 -0
  74. package/dist/src/tree-builder.js.map +1 -0
  75. package/dist/src/utils/persist.d.ts +10 -8
  76. package/dist/src/utils/persist.d.ts.map +1 -1
  77. package/dist/src/utils/persist.js +15 -0
  78. package/dist/src/utils/persist.js.map +1 -0
  79. package/dist/src/utils/to-path-components.d.ts +1 -2
  80. package/dist/src/utils/to-path-components.d.ts.map +1 -1
  81. package/dist/src/utils/to-path-components.js +8 -0
  82. package/dist/src/utils/to-path-components.js.map +1 -0
  83. package/dist/typedoc-urls.json +14 -8
  84. package/package.json +15 -7
  85. package/src/chunker/fixed-size.ts +47 -0
  86. package/src/chunker/index.ts +5 -0
  87. package/src/chunker/rabin.ts +79 -0
  88. package/src/dag-builder/buffer-importer.ts +50 -0
  89. package/src/dag-builder/dir.ts +31 -0
  90. package/src/dag-builder/{file/index.js → file.ts} +44 -81
  91. package/src/dag-builder/index.ts +86 -0
  92. package/src/dag-builder/validate-chunks.ts +24 -0
  93. package/src/dir-flat.ts +116 -0
  94. package/src/dir-sharded.ts +258 -0
  95. package/src/dir.ts +64 -0
  96. package/src/flat-to-shard.ts +53 -0
  97. package/src/index.ts +344 -0
  98. package/src/layout/balanced.ts +27 -0
  99. package/src/layout/flat.ts +9 -0
  100. package/src/layout/index.ts +8 -0
  101. package/src/layout/trickle.ts +187 -0
  102. package/src/tree-builder.ts +124 -0
  103. package/src/utils/persist.ts +27 -0
  104. package/src/utils/to-path-components.ts +7 -0
  105. package/dist/src/dag-builder/file/balanced.d.ts +0 -4
  106. package/dist/src/dag-builder/file/balanced.d.ts.map +0 -1
  107. package/dist/src/dag-builder/file/buffer-importer.d.ts +0 -4
  108. package/dist/src/dag-builder/file/buffer-importer.d.ts.map +0 -1
  109. package/dist/src/dag-builder/file/flat.d.ts +0 -3
  110. package/dist/src/dag-builder/file/flat.d.ts.map +0 -1
  111. package/dist/src/dag-builder/file/index.d.ts +0 -9
  112. package/dist/src/dag-builder/file/index.d.ts.map +0 -1
  113. package/dist/src/dag-builder/file/trickle.d.ts +0 -9
  114. package/dist/src/dag-builder/file/trickle.d.ts.map +0 -1
  115. package/dist/src/options.d.ts +0 -5
  116. package/dist/src/options.d.ts.map +0 -1
  117. package/dist/src/types.d.ts +0 -145
  118. package/dist/src/types.d.ts.map +0 -1
  119. package/src/chunker/fixed-size.js +0 -42
  120. package/src/chunker/rabin.js +0 -86
  121. package/src/dag-builder/dir.js +0 -31
  122. package/src/dag-builder/file/balanced.js +0 -31
  123. package/src/dag-builder/file/buffer-importer.js +0 -51
  124. package/src/dag-builder/file/flat.js +0 -10
  125. package/src/dag-builder/file/trickle.js +0 -199
  126. package/src/dag-builder/index.js +0 -121
  127. package/src/dag-builder/validate-chunks.js +0 -29
  128. package/src/dir-flat.js +0 -129
  129. package/src/dir-sharded.js +0 -185
  130. package/src/dir.js +0 -71
  131. package/src/flat-to-shard.js +0 -69
  132. package/src/index.js +0 -68
  133. package/src/options.js +0 -64
  134. package/src/tree-builder.js +0 -118
  135. package/src/types.ts +0 -135
  136. package/src/utils/persist.js +0 -39
  137. package/src/utils/to-path-components.js +0 -9
package/README.md CHANGED
@@ -14,7 +14,9 @@
14
14
  - [Example](#example)
15
15
  - [API](#api)
16
16
  - [const stream = importer(source, blockstore \[, options\])](#const-stream--importersource-blockstore--options)
17
- - [Overriding internals](#overriding-internals)
17
+ - [const result = await importContent(content, blockstore \[, options\])](#const-result--await-importcontentcontent-blockstore--options)
18
+ - [const result = await importBytes(buf, blockstore \[, options\])](#const-result--await-importbytesbuf-blockstore--options)
19
+ - [const result = await importByteStream(source, blockstore \[, options\])](#const-result--await-importbytestreamsource-blockstore--options)
18
20
  - [API Docs](#api-docs)
19
21
  - [License](#license)
20
22
  - [Contribute](#contribute)
@@ -95,7 +97,7 @@ When run, metadata about DAGNodes in the created tree is printed until the root:
95
97
  ## API
96
98
 
97
99
  ```js
98
- import { importer } from 'ipfs-unixfs-importer'
100
+ import { importer, importContent, importBytes } from 'ipfs-unixfs-importer'
99
101
  ```
100
102
 
101
103
  ### const stream = importer(source, blockstore \[, options])
@@ -117,55 +119,17 @@ The `importer` function returns an async iterator takes a source async iterator
117
119
 
118
120
  The input's file paths and directory structure will be preserved in the [`dag-pb`](https://github.com/ipld/js-dag-pb) created nodes.
119
121
 
120
- `options` is an JavaScript option that might include the following keys:
121
-
122
- - `wrapWithDirectory` (boolean, defaults to false): if true, a wrapping node will be created
123
- - `shardSplitThreshold` (positive integer, defaults to 1000): the number of directory entries above which we decide to use a sharding directory builder (instead of the default flat one)
124
- - `chunker` (string, defaults to `"fixed"`): the chunking strategy. Supports:
125
- - `fixed`
126
- - `rabin`
127
- - `avgChunkSize` (positive integer, defaults to `262144`): the average chunk size (rabin chunker only)
128
- - `minChunkSize` (positive integer): the minimum chunk size (rabin chunker only)
129
- - `maxChunkSize` (positive integer, defaults to `262144`): the maximum chunk size
130
- - `strategy` (string, defaults to `"balanced"`): the DAG builder strategy name. Supports:
131
- - `flat`: flat list of chunks
132
- - `balanced`: builds a balanced tree
133
- - `trickle`: builds [a trickle tree](https://github.com/ipfs/specs/pull/57#issuecomment-265205384)
134
- - `maxChildrenPerNode` (positive integer, defaults to `174`): the maximum children per node for the `balanced` and `trickle` DAG builder strategies
135
- - `layerRepeat` (positive integer, defaults to 4): (only applicable to the `trickle` DAG builder strategy). The maximum repetition of parent nodes for each layer of the tree.
136
- - `reduceSingleLeafToSelf` (boolean, defaults to `true`): optimization for, when reducing a set of nodes with one node, reduce it to that node.
137
- - `hamtHashFn` (async function(string) Buffer): a function that hashes file names to create HAMT shards
138
- - `hamtBucketBits` (positive integer, defaults to `8`): the number of bits at each bucket of the HAMT
139
- - `progress` (function): a function that will be called with the byte length of chunks as a file is added to ipfs.
140
- - `onlyHash` (boolean, defaults to false): Only chunk and hash - do not write to disk
141
- - `hashAlg` (string): multihash hashing algorithm to use
142
- - `cidVersion` (integer, default 0): the CID version to use when storing the data (storage keys are based on the CID, *including* it's version)
143
- - `rawLeaves` (boolean, defaults to false): When a file would span multiple DAGNodes, if this is true the leaf nodes will not be wrapped in `UnixFS` protobufs and will instead contain the raw file bytes
144
- - `leafType` (string, defaults to `'file'`) what type of UnixFS node leaves should be - can be `'file'` or `'raw'` (ignored when `rawLeaves` is `true`)
145
- - `blockWriteConcurrency` (positive integer, defaults to 10) How many blocks to hash and write to the block store concurrently. For small numbers of large files this should be high (e.g. 50).
146
- - `fileImportConcurrency` (number, defaults to 50) How many files to import concurrently. For large numbers of small files this should be high (e.g. 50).
147
-
148
- ## Overriding internals
149
-
150
- Several aspects of the importer are overridable by specifying functions as part of the options object with these keys:
151
-
152
- - `chunkValidator` (function): Optional function that supports the signature `async function * (source, options)`
153
- - This function takes input from the `content` field of imported entries. It should transform them into `Buffer`s, throwing an error if it cannot.
154
- - It should yield `Buffer` objects constructed from the `source` or throw an `Error`
155
- - `chunker` (function): Optional function that supports the signature `async function * (source, options)` where `source` is an async generator and `options` is an options object
156
- - It should yield `Buffer` objects.
157
- - `bufferImporter` (function): Optional function that supports the signature `async function * (entry, blockstore, options)`
158
- - This function should read `Buffer`s from `source` and persist them using `blockstore.put` or similar
159
- - `entry` is the `{ path, content }` entry, where `entry.content` is an async generator that yields Buffers
160
- - It should yield functions that return a Promise that resolves to an object with the properties `{ cid, unixfs, size }` where `cid` is a [CID], `unixfs` is a [UnixFS] entry and `size` is a `Number` that represents the serialized size of the [IPLD] node that holds the buffer data.
161
- - Values will be pulled from this generator in parallel - the amount of parallelisation is controlled by the `blockWriteConcurrency` option (default: 10)
162
- - `dagBuilder` (function): Optional function that supports the signature `async function * (source, blockstore, options)`
163
- - This function should read `{ path, content }` entries from `source` and turn them into DAGs
164
- - It should yield a `function` that returns a `Promise` that resolves to `{ cid, path, unixfs, node }` where `cid` is a `CID`, `path` is a string, `unixfs` is a UnixFS entry and `node` is a `DAGNode`.
165
- - Values will be pulled from this generator in parallel - the amount of parallelisation is controlled by the `fileImportConcurrency` option (default: 50)
166
- - `treeBuilder` (function): Optional function that supports the signature `async function * (source, blockstore, options)`
167
- - This function should read `{ cid, path, unixfs, node }` entries from `source` and place them in a directory structure
168
- - It should yield an object with the properties `{ cid, path, unixfs, size }` where `cid` is a `CID`, `path` is a string, `unixfs` is a UnixFS entry and `size` is a `Number`.
122
+ ### const result = await importContent(content, blockstore \[, options])
123
+
124
+ A convenience function for importing a single file or directory.
125
+
126
+ ### const result = await importBytes(buf, blockstore \[, options])
127
+
128
+ A convenience function for importing a single Uint8Array.
129
+
130
+ ### const result = await importByteStream(source, blockstore \[, options])
131
+
132
+ A convenience function for importing a single stream of Uint8Arrays.
169
133
 
170
134
  ## API Docs
171
135
 
package/dist/index.min.js CHANGED
@@ -1,3 +1,3 @@
1
1
  (function (root, factory) {(typeof module === 'object' && module.exports) ? module.exports = factory() : root.IpfsUnixfsImporter = factory()}(typeof self !== 'undefined' ? self : this, function () {
2
- "use strict";var IpfsUnixfsImporter=(()=>{var Xi=Object.create;var Wt=Object.defineProperty;var Qi=Object.getOwnPropertyDescriptor;var to=Object.getOwnPropertyNames;var eo=Object.getPrototypeOf,ro=Object.prototype.hasOwnProperty;var F=(r,e)=>()=>(e||r((e={exports:{}}).exports,e),e.exports),U=(r,e)=>{for(var t in e)Wt(r,t,{get:e[t],enumerable:!0})},dr=(r,e,t,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of to(e))!ro.call(r,i)&&i!==t&&Wt(r,i,{get:()=>e[i],enumerable:!(n=Qi(e,i))||n.enumerable});return r};var Z=(r,e,t)=>(t=r!=null?Xi(eo(r)):{},dr(e||!r||!r.__esModule?Wt(t,"default",{value:r,enumerable:!0}):t,r)),no=r=>dr(Wt({},"__esModule",{value:!0}),r);var yr=F((R1,pr)=>{"use strict";pr.exports=r=>{if(Object.prototype.toString.call(r)!=="[object Object]")return!1;let e=Object.getPrototypeOf(r);return e===null||e===Object.prototype}});var Ar=F((wr,_r)=>{"use strict";var $t=yr(),{hasOwnProperty:mr}=Object.prototype,{propertyIsEnumerable:io}=Object,mt=(r,e,t)=>Object.defineProperty(r,e,{value:t,writable:!0,enumerable:!0,configurable:!0}),oo=wr,gr={concatArrays:!1,ignoreUndefined:!1},Kt=r=>{let e=[];for(let t in r)mr.call(r,t)&&e.push(t);if(Object.getOwnPropertySymbols){let t=Object.getOwnPropertySymbols(r);for(let n of t)io.call(r,n)&&e.push(n)}return e};function bt(r){return Array.isArray(r)?so(r):$t(r)?ao(r):r}function so(r){let e=r.slice(0,0);return Kt(r).forEach(t=>{mt(e,t,bt(r[t]))}),e}function ao(r){let e=Object.getPrototypeOf(r)===null?Object.create(null):{};return Kt(r).forEach(t=>{mt(e,t,bt(r[t]))}),e}var br=(r,e,t,n)=>(t.forEach(i=>{typeof e[i]>"u"&&n.ignoreUndefined||(i in r&&r[i]!==Object.getPrototypeOf(r)?mt(r,i,le(r[i],e[i],n)):mt(r,i,bt(e[i])))}),r),co=(r,e,t)=>{let n=r.slice(0,0),i=0;return[r,e].forEach(o=>{let s=[];for(let f=0;f<o.length;f++)mr.call(o,f)&&(s.push(String(f)),o===r?mt(n,i++,o[f]):mt(n,i++,bt(o[f])));n=br(n,o,Kt(o).filter(f=>!s.includes(f)),t)}),n};function le(r,e,t){return t.concatArrays&&Array.isArray(r)&&Array.isArray(e)?co(r,e,t):!$t(e)||!$t(r)?bt(e):br(r,e,Kt(e),t)}_r.exports=function(...r){let e=le(bt(gr),this!==oo&&this||{},gr),t={_:{}};for(let n of r)if(n!==void 0){if(!$t(n))throw new TypeError("`"+n+"` is not an Option Object");t=le(t,{_:n},e)}return t._}});var Pr=F((It,Zt)=>{(function(r,e){"use strict";var t={version:"3.0.0",x86:{},x64:{},inputValidation:!0};function n(a){if(!Array.isArray(a)&&!ArrayBuffer.isView(a))return!1;for(var h=0;h<a.length;h++)if(!Number.isInteger(a[h])||a[h]<0||a[h]>255)return!1;return!0}function i(a,h){return(a&65535)*h+(((a>>>16)*h&65535)<<16)}function o(a,h){return a<<h|a>>>32-h}function s(a){return a^=a>>>16,a=i(a,2246822507),a^=a>>>13,a=i(a,3266489909),a^=a>>>16,a}function f(a,h){a=[a[0]>>>16,a[0]&65535,a[1]>>>16,a[1]&65535],h=[h[0]>>>16,h[0]&65535,h[1]>>>16,h[1]&65535];var g=[0,0,0,0];return g[3]+=a[3]+h[3],g[2]+=g[3]>>>16,g[3]&=65535,g[2]+=a[2]+h[2],g[1]+=g[2]>>>16,g[2]&=65535,g[1]+=a[1]+h[1],g[0]+=g[1]>>>16,g[1]&=65535,g[0]+=a[0]+h[0],g[0]&=65535,[g[0]<<16|g[1],g[2]<<16|g[3]]}function c(a,h){a=[a[0]>>>16,a[0]&65535,a[1]>>>16,a[1]&65535],h=[h[0]>>>16,h[0]&65535,h[1]>>>16,h[1]&65535];var g=[0,0,0,0];return g[3]+=a[3]*h[3],g[2]+=g[3]>>>16,g[3]&=65535,g[2]+=a[2]*h[3],g[1]+=g[2]>>>16,g[2]&=65535,g[2]+=a[3]*h[2],g[1]+=g[2]>>>16,g[2]&=65535,g[1]+=a[1]*h[3],g[0]+=g[1]>>>16,g[1]&=65535,g[1]+=a[2]*h[2],g[0]+=g[1]>>>16,g[1]&=65535,g[1]+=a[3]*h[1],g[0]+=g[1]>>>16,g[1]&=65535,g[0]+=a[0]*h[3]+a[1]*h[2]+a[2]*h[1]+a[3]*h[0],g[0]&=65535,[g[0]<<16|g[1],g[2]<<16|g[3]]}function l(a,h){return h%=64,h===32?[a[1],a[0]]:h<32?[a[0]<<h|a[1]>>>32-h,a[1]<<h|a[0]>>>32-h]:(h-=32,[a[1]<<h|a[0]>>>32-h,a[0]<<h|a[1]>>>32-h])}function u(a,h){return h%=64,h===0?a:h<32?[a[0]<<h|a[1]>>>32-h,a[1]<<h]:[a[1]<<h-32,0]}function y(a,h){return[a[0]^h[0],a[1]^h[1]]}function T(a){return a=y(a,[0,a[0]>>>1]),a=c(a,[4283543511,3981806797]),a=y(a,[0,a[0]>>>1]),a=c(a,[3301882366,444984403]),a=y(a,[0,a[0]>>>1]),a}t.x86.hash32=function(a,h){if(t.inputValidation&&!n(a))return e;h=h||0;for(var g=a.length%4,L=a.length-g,p=h,m=0,w=3432918353,_=461845907,E=0;E<L;E=E+4)m=a[E]|a[E+1]<<8|a[E+2]<<16|a[E+3]<<24,m=i(m,w),m=o(m,15),m=i(m,_),p^=m,p=o(p,13),p=i(p,5)+3864292196;switch(m=0,g){case 3:m^=a[E+2]<<16;case 2:m^=a[E+1]<<8;case 1:m^=a[E],m=i(m,w),m=o(m,15),m=i(m,_),p^=m}return p^=a.length,p=s(p),p>>>0},t.x86.hash128=function(a,h){if(t.inputValidation&&!n(a))return e;h=h||0;for(var g=a.length%16,L=a.length-g,p=h,m=h,w=h,_=h,E=0,b=0,d=0,A=0,v=597399067,O=2869860233,I=951274213,H=2716044179,B=0;B<L;B=B+16)E=a[B]|a[B+1]<<8|a[B+2]<<16|a[B+3]<<24,b=a[B+4]|a[B+5]<<8|a[B+6]<<16|a[B+7]<<24,d=a[B+8]|a[B+9]<<8|a[B+10]<<16|a[B+11]<<24,A=a[B+12]|a[B+13]<<8|a[B+14]<<16|a[B+15]<<24,E=i(E,v),E=o(E,15),E=i(E,O),p^=E,p=o(p,19),p+=m,p=i(p,5)+1444728091,b=i(b,O),b=o(b,16),b=i(b,I),m^=b,m=o(m,17),m+=w,m=i(m,5)+197830471,d=i(d,I),d=o(d,17),d=i(d,H),w^=d,w=o(w,15),w+=_,w=i(w,5)+2530024501,A=i(A,H),A=o(A,18),A=i(A,v),_^=A,_=o(_,13),_+=p,_=i(_,5)+850148119;switch(E=0,b=0,d=0,A=0,g){case 15:A^=a[B+14]<<16;case 14:A^=a[B+13]<<8;case 13:A^=a[B+12],A=i(A,H),A=o(A,18),A=i(A,v),_^=A;case 12:d^=a[B+11]<<24;case 11:d^=a[B+10]<<16;case 10:d^=a[B+9]<<8;case 9:d^=a[B+8],d=i(d,I),d=o(d,17),d=i(d,H),w^=d;case 8:b^=a[B+7]<<24;case 7:b^=a[B+6]<<16;case 6:b^=a[B+5]<<8;case 5:b^=a[B+4],b=i(b,O),b=o(b,16),b=i(b,I),m^=b;case 4:E^=a[B+3]<<24;case 3:E^=a[B+2]<<16;case 2:E^=a[B+1]<<8;case 1:E^=a[B],E=i(E,v),E=o(E,15),E=i(E,O),p^=E}return p^=a.length,m^=a.length,w^=a.length,_^=a.length,p+=m,p+=w,p+=_,m+=p,w+=p,_+=p,p=s(p),m=s(m),w=s(w),_=s(_),p+=m,p+=w,p+=_,m+=p,w+=p,_+=p,("00000000"+(p>>>0).toString(16)).slice(-8)+("00000000"+(m>>>0).toString(16)).slice(-8)+("00000000"+(w>>>0).toString(16)).slice(-8)+("00000000"+(_>>>0).toString(16)).slice(-8)},t.x64.hash128=function(a,h){if(t.inputValidation&&!n(a))return e;h=h||0;for(var g=a.length%16,L=a.length-g,p=[0,h],m=[0,h],w=[0,0],_=[0,0],E=[2277735313,289559509],b=[1291169091,658871167],d=0;d<L;d=d+16)w=[a[d+4]|a[d+5]<<8|a[d+6]<<16|a[d+7]<<24,a[d]|a[d+1]<<8|a[d+2]<<16|a[d+3]<<24],_=[a[d+12]|a[d+13]<<8|a[d+14]<<16|a[d+15]<<24,a[d+8]|a[d+9]<<8|a[d+10]<<16|a[d+11]<<24],w=c(w,E),w=l(w,31),w=c(w,b),p=y(p,w),p=l(p,27),p=f(p,m),p=f(c(p,[0,5]),[0,1390208809]),_=c(_,b),_=l(_,33),_=c(_,E),m=y(m,_),m=l(m,31),m=f(m,p),m=f(c(m,[0,5]),[0,944331445]);switch(w=[0,0],_=[0,0],g){case 15:_=y(_,u([0,a[d+14]],48));case 14:_=y(_,u([0,a[d+13]],40));case 13:_=y(_,u([0,a[d+12]],32));case 12:_=y(_,u([0,a[d+11]],24));case 11:_=y(_,u([0,a[d+10]],16));case 10:_=y(_,u([0,a[d+9]],8));case 9:_=y(_,[0,a[d+8]]),_=c(_,b),_=l(_,33),_=c(_,E),m=y(m,_);case 8:w=y(w,u([0,a[d+7]],56));case 7:w=y(w,u([0,a[d+6]],48));case 6:w=y(w,u([0,a[d+5]],40));case 5:w=y(w,u([0,a[d+4]],32));case 4:w=y(w,u([0,a[d+3]],24));case 3:w=y(w,u([0,a[d+2]],16));case 2:w=y(w,u([0,a[d+1]],8));case 1:w=y(w,[0,a[d]]),w=c(w,E),w=l(w,31),w=c(w,b),p=y(p,w)}return p=y(p,[0,a.length]),m=y(m,[0,a.length]),p=f(p,m),m=f(m,p),p=T(p),m=T(m),p=f(p,m),m=f(m,p),("00000000"+(p[0]>>>0).toString(16)).slice(-8)+("00000000"+(p[1]>>>0).toString(16)).slice(-8)+("00000000"+(m[0]>>>0).toString(16)).slice(-8)+("00000000"+(m[1]>>>0).toString(16)).slice(-8)},typeof It<"u"?(typeof Zt<"u"&&Zt.exports&&(It=Zt.exports=t),It.murmurHash3=t):typeof define=="function"&&define.amd?define([],function(){return t}):(t._murmurHash3=r.murmurHash3,t.noConflict=function(){return r.murmurHash3=t._murmurHash3,t._murmurHash3=e,t.noConflict=e,t},r.murmurHash3=t)})(It)});var Rr=F((oa,Ur)=>{Ur.exports=Pr()});var vt=F((ya,Mr)=>{"use strict";function Hr(r,e){for(let t in e)Object.defineProperty(r,t,{value:e[t],enumerable:!0,configurable:!0});return r}function ts(r,e,t){if(!r||typeof r=="string")throw new TypeError("Please pass an Error to err-code");t||(t={}),typeof e=="object"&&(t=e,e=""),e&&(t.code=e);try{return Hr(r,t)}catch{t.message=r.message,t.stack=r.stack;let i=function(){};return i.prototype=Object.create(Object.getPrototypeOf(r)),Hr(new i,t)}}Mr.exports=ts});var Gr=F((ga,qr)=>{"use strict";qr.exports=es;function es(r,e){for(var t=new Array(arguments.length-1),n=0,i=2,o=!0;i<arguments.length;)t[n++]=arguments[i++];return new Promise(function(f,c){t[n]=function(u){if(o)if(o=!1,u)c(u);else{for(var y=new Array(arguments.length-1),T=0;T<y.length;)y[T++]=arguments[T];f.apply(null,y)}};try{r.apply(e||null,t)}catch(l){o&&(o=!1,c(l))}})}});var Kr=F($r=>{"use strict";var Qt=$r;Qt.length=function(e){var t=e.length;if(!t)return 0;for(var n=0;--t%4>1&&e.charAt(t)==="=";)++n;return Math.ceil(e.length*3)/4-n};var Bt=new Array(64),Wr=new Array(123);for($=0;$<64;)Wr[Bt[$]=$<26?$+65:$<52?$+71:$<62?$-4:$-59|43]=$++;var $;Qt.encode=function(e,t,n){for(var i=null,o=[],s=0,f=0,c;t<n;){var l=e[t++];switch(f){case 0:o[s++]=Bt[l>>2],c=(l&3)<<4,f=1;break;case 1:o[s++]=Bt[c|l>>4],c=(l&15)<<2,f=2;break;case 2:o[s++]=Bt[c|l>>6],o[s++]=Bt[l&63],f=0;break}s>8191&&((i||(i=[])).push(String.fromCharCode.apply(String,o)),s=0)}return f&&(o[s++]=Bt[c],o[s++]=61,f===1&&(o[s++]=61)),i?(s&&i.push(String.fromCharCode.apply(String,o.slice(0,s))),i.join("")):String.fromCharCode.apply(String,o.slice(0,s))};var Yr="invalid encoding";Qt.decode=function(e,t,n){for(var i=n,o=0,s,f=0;f<e.length;){var c=e.charCodeAt(f++);if(c===61&&o>1)break;if((c=Wr[c])===void 0)throw Error(Yr);switch(o){case 0:s=c,o=1;break;case 1:t[n++]=s<<2|(c&48)>>4,s=c,o=2;break;case 2:t[n++]=(s&15)<<4|(c&60)>>2,s=c,o=3;break;case 3:t[n++]=(s&3)<<6|c,o=0;break}}if(o===1)throw Error(Yr);return n-i};Qt.test=function(e){return/^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$/.test(e)}});var Zr=F((ba,Jr)=>{"use strict";Jr.exports=te;function te(){this._listeners={}}te.prototype.on=function(e,t,n){return(this._listeners[e]||(this._listeners[e]=[])).push({fn:t,ctx:n||this}),this};te.prototype.off=function(e,t){if(e===void 0)this._listeners={};else if(t===void 0)this._listeners[e]=[];else for(var n=this._listeners[e],i=0;i<n.length;)n[i].fn===t?n.splice(i,1):++i;return this};te.prototype.emit=function(e){var t=this._listeners[e];if(t){for(var n=[],i=1;i<arguments.length;)n.push(arguments[i++]);for(i=0;i<t.length;)t[i].fn.apply(t[i++].ctx,n)}return this}});var on=F((wa,nn)=>{"use strict";nn.exports=Xr(Xr);function Xr(r){return typeof Float32Array<"u"?function(){var e=new Float32Array([-0]),t=new Uint8Array(e.buffer),n=t[3]===128;function i(c,l,u){e[0]=c,l[u]=t[0],l[u+1]=t[1],l[u+2]=t[2],l[u+3]=t[3]}function o(c,l,u){e[0]=c,l[u]=t[3],l[u+1]=t[2],l[u+2]=t[1],l[u+3]=t[0]}r.writeFloatLE=n?i:o,r.writeFloatBE=n?o:i;function s(c,l){return t[0]=c[l],t[1]=c[l+1],t[2]=c[l+2],t[3]=c[l+3],e[0]}function f(c,l){return t[3]=c[l],t[2]=c[l+1],t[1]=c[l+2],t[0]=c[l+3],e[0]}r.readFloatLE=n?s:f,r.readFloatBE=n?f:s}():function(){function e(n,i,o,s){var f=i<0?1:0;if(f&&(i=-i),i===0)n(1/i>0?0:2147483648,o,s);else if(isNaN(i))n(2143289344,o,s);else if(i>34028234663852886e22)n((f<<31|2139095040)>>>0,o,s);else if(i<11754943508222875e-54)n((f<<31|Math.round(i/1401298464324817e-60))>>>0,o,s);else{var c=Math.floor(Math.log(i)/Math.LN2),l=Math.round(i*Math.pow(2,-c)*8388608)&8388607;n((f<<31|c+127<<23|l)>>>0,o,s)}}r.writeFloatLE=e.bind(null,Qr),r.writeFloatBE=e.bind(null,tn);function t(n,i,o){var s=n(i,o),f=(s>>31)*2+1,c=s>>>23&255,l=s&8388607;return c===255?l?NaN:f*(1/0):c===0?f*1401298464324817e-60*l:f*Math.pow(2,c-150)*(l+8388608)}r.readFloatLE=t.bind(null,en),r.readFloatBE=t.bind(null,rn)}(),typeof Float64Array<"u"?function(){var e=new Float64Array([-0]),t=new Uint8Array(e.buffer),n=t[7]===128;function i(c,l,u){e[0]=c,l[u]=t[0],l[u+1]=t[1],l[u+2]=t[2],l[u+3]=t[3],l[u+4]=t[4],l[u+5]=t[5],l[u+6]=t[6],l[u+7]=t[7]}function o(c,l,u){e[0]=c,l[u]=t[7],l[u+1]=t[6],l[u+2]=t[5],l[u+3]=t[4],l[u+4]=t[3],l[u+5]=t[2],l[u+6]=t[1],l[u+7]=t[0]}r.writeDoubleLE=n?i:o,r.writeDoubleBE=n?o:i;function s(c,l){return t[0]=c[l],t[1]=c[l+1],t[2]=c[l+2],t[3]=c[l+3],t[4]=c[l+4],t[5]=c[l+5],t[6]=c[l+6],t[7]=c[l+7],e[0]}function f(c,l){return t[7]=c[l],t[6]=c[l+1],t[5]=c[l+2],t[4]=c[l+3],t[3]=c[l+4],t[2]=c[l+5],t[1]=c[l+6],t[0]=c[l+7],e[0]}r.readDoubleLE=n?s:f,r.readDoubleBE=n?f:s}():function(){function e(n,i,o,s,f,c){var l=s<0?1:0;if(l&&(s=-s),s===0)n(0,f,c+i),n(1/s>0?0:2147483648,f,c+o);else if(isNaN(s))n(0,f,c+i),n(2146959360,f,c+o);else if(s>17976931348623157e292)n(0,f,c+i),n((l<<31|2146435072)>>>0,f,c+o);else{var u;if(s<22250738585072014e-324)u=s/5e-324,n(u>>>0,f,c+i),n((l<<31|u/4294967296)>>>0,f,c+o);else{var y=Math.floor(Math.log(s)/Math.LN2);y===1024&&(y=1023),u=s*Math.pow(2,-y),n(u*4503599627370496>>>0,f,c+i),n((l<<31|y+1023<<20|u*1048576&1048575)>>>0,f,c+o)}}}r.writeDoubleLE=e.bind(null,Qr,0,4),r.writeDoubleBE=e.bind(null,tn,4,0);function t(n,i,o,s,f){var c=n(s,f+i),l=n(s,f+o),u=(l>>31)*2+1,y=l>>>20&2047,T=4294967296*(l&1048575)+c;return y===2047?T?NaN:u*(1/0):y===0?u*5e-324*T:u*Math.pow(2,y-1075)*(T+4503599627370496)}r.readDoubleLE=t.bind(null,en,0,4),r.readDoubleBE=t.bind(null,rn,4,0)}(),r}function Qr(r,e,t){e[t]=r&255,e[t+1]=r>>>8&255,e[t+2]=r>>>16&255,e[t+3]=r>>>24}function tn(r,e,t){e[t]=r>>>24,e[t+1]=r>>>16&255,e[t+2]=r>>>8&255,e[t+3]=r&255}function en(r,e){return(r[e]|r[e+1]<<8|r[e+2]<<16|r[e+3]<<24)>>>0}function rn(r,e){return(r[e]<<24|r[e+1]<<16|r[e+2]<<8|r[e+3])>>>0}});var sn=F((exports,module)=>{"use strict";module.exports=inquire;function inquire(moduleName){try{var mod=eval("quire".replace(/^/,"re"))(moduleName);if(mod&&(mod.length||Object.keys(mod).length))return mod}catch(r){}return null}});var cn=F(an=>{"use strict";var Te=an;Te.length=function(e){for(var t=0,n=0,i=0;i<e.length;++i)n=e.charCodeAt(i),n<128?t+=1:n<2048?t+=2:(n&64512)===55296&&(e.charCodeAt(i+1)&64512)===56320?(++i,t+=4):t+=3;return t};Te.read=function(e,t,n){var i=n-t;if(i<1)return"";for(var o=null,s=[],f=0,c;t<n;)c=e[t++],c<128?s[f++]=c:c>191&&c<224?s[f++]=(c&31)<<6|e[t++]&63:c>239&&c<365?(c=((c&7)<<18|(e[t++]&63)<<12|(e[t++]&63)<<6|e[t++]&63)-65536,s[f++]=55296+(c>>10),s[f++]=56320+(c&1023)):s[f++]=(c&15)<<12|(e[t++]&63)<<6|e[t++]&63,f>8191&&((o||(o=[])).push(String.fromCharCode.apply(String,s)),f=0);return o?(f&&o.push(String.fromCharCode.apply(String,s.slice(0,f))),o.join("")):String.fromCharCode.apply(String,s.slice(0,f))};Te.write=function(e,t,n){for(var i=n,o,s,f=0;f<e.length;++f)o=e.charCodeAt(f),o<128?t[n++]=o:o<2048?(t[n++]=o>>6|192,t[n++]=o&63|128):(o&64512)===55296&&((s=e.charCodeAt(f+1))&64512)===56320?(o=65536+((o&1023)<<10)+(s&1023),++f,t[n++]=o>>18|240,t[n++]=o>>12&63|128,t[n++]=o>>6&63|128,t[n++]=o&63|128):(t[n++]=o>>12|224,t[n++]=o>>6&63|128,t[n++]=o&63|128);return n-i}});var un=F((Aa,fn)=>{"use strict";fn.exports=rs;function rs(r,e,t){var n=t||8192,i=n>>>1,o=null,s=n;return function(c){if(c<1||c>i)return r(c);s+c>n&&(o=r(n),s=0);var l=e.call(o,s,s+=c);return s&7&&(s=(s|7)+1),l}}});var hn=F((xa,ln)=>{"use strict";ln.exports=C;var Ct=st();function C(r,e){this.lo=r>>>0,this.hi=e>>>0}var dt=C.zero=new C(0,0);dt.toNumber=function(){return 0};dt.zzEncode=dt.zzDecode=function(){return this};dt.length=function(){return 1};var ns=C.zeroHash="\0\0\0\0\0\0\0\0";C.fromNumber=function(e){if(e===0)return dt;var t=e<0;t&&(e=-e);var n=e>>>0,i=(e-n)/4294967296>>>0;return t&&(i=~i>>>0,n=~n>>>0,++n>4294967295&&(n=0,++i>4294967295&&(i=0))),new C(n,i)};C.from=function(e){if(typeof e=="number")return C.fromNumber(e);if(Ct.isString(e))if(Ct.Long)e=Ct.Long.fromString(e);else return C.fromNumber(parseInt(e,10));return e.low||e.high?new C(e.low>>>0,e.high>>>0):dt};C.prototype.toNumber=function(e){if(!e&&this.hi>>>31){var t=~this.lo+1>>>0,n=~this.hi>>>0;return t||(n=n+1>>>0),-(t+n*4294967296)}return this.lo+this.hi*4294967296};C.prototype.toLong=function(e){return Ct.Long?new Ct.Long(this.lo|0,this.hi|0,Boolean(e)):{low:this.lo|0,high:this.hi|0,unsigned:Boolean(e)}};var ot=String.prototype.charCodeAt;C.fromHash=function(e){return e===ns?dt:new C((ot.call(e,0)|ot.call(e,1)<<8|ot.call(e,2)<<16|ot.call(e,3)<<24)>>>0,(ot.call(e,4)|ot.call(e,5)<<8|ot.call(e,6)<<16|ot.call(e,7)<<24)>>>0)};C.prototype.toHash=function(){return String.fromCharCode(this.lo&255,this.lo>>>8&255,this.lo>>>16&255,this.lo>>>24,this.hi&255,this.hi>>>8&255,this.hi>>>16&255,this.hi>>>24)};C.prototype.zzEncode=function(){var e=this.hi>>31;return this.hi=((this.hi<<1|this.lo>>>31)^e)>>>0,this.lo=(this.lo<<1^e)>>>0,this};C.prototype.zzDecode=function(){var e=-(this.lo&1);return this.lo=((this.lo>>>1|this.hi<<31)^e)>>>0,this.hi=(this.hi>>>1^e)>>>0,this};C.prototype.length=function(){var e=this.lo,t=(this.lo>>>28|this.hi<<4)>>>0,n=this.hi>>>24;return n===0?t===0?e<16384?e<128?1:2:e<2097152?3:4:t<16384?t<128?5:6:t<2097152?7:8:n<128?9:10}});var st=F(ve=>{"use strict";var x=ve;x.asPromise=Gr();x.base64=Kr();x.EventEmitter=Zr();x.float=on();x.inquire=sn();x.utf8=cn();x.pool=un();x.LongBits=hn();x.isNode=Boolean(typeof globalThis<"u"&&globalThis&&globalThis.process&&globalThis.process.versions&&globalThis.process.versions.node);x.global=x.isNode&&globalThis||typeof window<"u"&&window||typeof self<"u"&&self||ve;x.emptyArray=Object.freeze?Object.freeze([]):[];x.emptyObject=Object.freeze?Object.freeze({}):{};x.isInteger=Number.isInteger||function(e){return typeof e=="number"&&isFinite(e)&&Math.floor(e)===e};x.isString=function(e){return typeof e=="string"||e instanceof String};x.isObject=function(e){return e&&typeof e=="object"};x.isset=x.isSet=function(e,t){var n=e[t];return n!=null&&e.hasOwnProperty(t)?typeof n!="object"||(Array.isArray(n)?n.length:Object.keys(n).length)>0:!1};x.Buffer=function(){try{var r=x.inquire("buffer").Buffer;return r.prototype.utf8Write?r:null}catch{return null}}();x._Buffer_from=null;x._Buffer_allocUnsafe=null;x.newBuffer=function(e){return typeof e=="number"?x.Buffer?x._Buffer_allocUnsafe(e):new x.Array(e):x.Buffer?x._Buffer_from(e):typeof Uint8Array>"u"?e:new Uint8Array(e)};x.Array=typeof Uint8Array<"u"?Uint8Array:Array;x.Long=x.global.dcodeIO&&x.global.dcodeIO.Long||x.global.Long||x.inquire("long");x.key2Re=/^true|false|0|1$/;x.key32Re=/^-?(?:0|[1-9][0-9]*)$/;x.key64Re=/^(?:[\\x00-\\xff]{8}|-?(?:0|[1-9][0-9]*))$/;x.longToHash=function(e){return e?x.LongBits.from(e).toHash():x.LongBits.zeroHash};x.longFromHash=function(e,t){var n=x.LongBits.fromHash(e);return x.Long?x.Long.fromBits(n.lo,n.hi,t):n.toNumber(Boolean(t))};function dn(r,e,t){for(var n=Object.keys(e),i=0;i<n.length;++i)(r[n[i]]===void 0||!t)&&(r[n[i]]=e[n[i]]);return r}x.merge=dn;x.lcFirst=function(e){return e.charAt(0).toLowerCase()+e.substring(1)};function pn(r){function e(t,n){if(!(this instanceof e))return new e(t,n);Object.defineProperty(this,"message",{get:function(){return t}}),Error.captureStackTrace?Error.captureStackTrace(this,e):Object.defineProperty(this,"stack",{value:new Error().stack||""}),n&&dn(this,n)}return e.prototype=Object.create(Error.prototype,{constructor:{value:e,writable:!0,enumerable:!1,configurable:!0},name:{get:function(){return r},set:void 0,enumerable:!1,configurable:!0},toString:{value:function(){return this.name+": "+this.message},writable:!0,enumerable:!1,configurable:!0}}),e}x.newError=pn;x.ProtocolError=pn("ProtocolError");x.oneOfGetter=function(e){for(var t={},n=0;n<e.length;++n)t[e[n]]=1;return function(){for(var i=Object.keys(this),o=i.length-1;o>-1;--o)if(t[i[o]]===1&&this[i[o]]!==void 0&&this[i[o]]!==null)return i[o]}};x.oneOfSetter=function(e){return function(t){for(var n=0;n<e.length;++n)e[n]!==t&&delete this[e[n]]}};x.toJSONOptions={longs:String,enums:String,bytes:String,json:!0};x._configure=function(){var r=x.Buffer;if(!r){x._Buffer_from=x._Buffer_allocUnsafe=null;return}x._Buffer_from=r.from!==Uint8Array.from&&r.from||function(t,n){return new r(t,n)},x._Buffer_allocUnsafe=r.allocUnsafe||function(t){return new r(t)}}});var ze=F((Ea,bn)=>{"use strict";bn.exports=D;var q=st(),Be,ee=q.LongBits,yn=q.base64,gn=q.utf8;function Pt(r,e,t){this.fn=r,this.len=e,this.next=void 0,this.val=t}function ke(){}function is(r){this.head=r.head,this.tail=r.tail,this.len=r.len,this.next=r.states}function D(){this.len=0,this.head=new Pt(ke,0,0),this.tail=this.head,this.states=null}var mn=function(){return q.Buffer?function(){return(D.create=function(){return new Be})()}:function(){return new D}};D.create=mn();D.alloc=function(e){return new q.Array(e)};q.Array!==Array&&(D.alloc=q.pool(D.alloc,q.Array.prototype.subarray));D.prototype._push=function(e,t,n){return this.tail=this.tail.next=new Pt(e,t,n),this.len+=t,this};function Le(r,e,t){e[t]=r&255}function os(r,e,t){for(;r>127;)e[t++]=r&127|128,r>>>=7;e[t]=r}function Fe(r,e){this.len=r,this.next=void 0,this.val=e}Fe.prototype=Object.create(Pt.prototype);Fe.prototype.fn=os;D.prototype.uint32=function(e){return this.len+=(this.tail=this.tail.next=new Fe((e=e>>>0)<128?1:e<16384?2:e<2097152?3:e<268435456?4:5,e)).len,this};D.prototype.int32=function(e){return e<0?this._push(Oe,10,ee.fromNumber(e)):this.uint32(e)};D.prototype.sint32=function(e){return this.uint32((e<<1^e>>31)>>>0)};function Oe(r,e,t){for(;r.hi;)e[t++]=r.lo&127|128,r.lo=(r.lo>>>7|r.hi<<25)>>>0,r.hi>>>=7;for(;r.lo>127;)e[t++]=r.lo&127|128,r.lo=r.lo>>>7;e[t++]=r.lo}D.prototype.uint64=function(e){var t=ee.from(e);return this._push(Oe,t.length(),t)};D.prototype.int64=D.prototype.uint64;D.prototype.sint64=function(e){var t=ee.from(e).zzEncode();return this._push(Oe,t.length(),t)};D.prototype.bool=function(e){return this._push(Le,1,e?1:0)};function De(r,e,t){e[t]=r&255,e[t+1]=r>>>8&255,e[t+2]=r>>>16&255,e[t+3]=r>>>24}D.prototype.fixed32=function(e){return this._push(De,4,e>>>0)};D.prototype.sfixed32=D.prototype.fixed32;D.prototype.fixed64=function(e){var t=ee.from(e);return this._push(De,4,t.lo)._push(De,4,t.hi)};D.prototype.sfixed64=D.prototype.fixed64;D.prototype.float=function(e){return this._push(q.float.writeFloatLE,4,e)};D.prototype.double=function(e){return this._push(q.float.writeDoubleLE,8,e)};var ss=q.Array.prototype.set?function(e,t,n){t.set(e,n)}:function(e,t,n){for(var i=0;i<e.length;++i)t[n+i]=e[i]};D.prototype.bytes=function(e){var t=e.length>>>0;if(!t)return this._push(Le,1,0);if(q.isString(e)){var n=D.alloc(t=yn.length(e));yn.decode(e,n,0),e=n}return this.uint32(t)._push(ss,t,e)};D.prototype.string=function(e){var t=gn.length(e);return t?this.uint32(t)._push(gn.write,t,e):this._push(Le,1,0)};D.prototype.fork=function(){return this.states=new is(this),this.head=this.tail=new Pt(ke,0,0),this.len=0,this};D.prototype.reset=function(){return this.states?(this.head=this.states.head,this.tail=this.states.tail,this.len=this.states.len,this.states=this.states.next):(this.head=this.tail=new Pt(ke,0,0),this.len=0),this};D.prototype.ldelim=function(){var e=this.head,t=this.tail,n=this.len;return this.reset().uint32(n),n&&(this.tail.next=e.next,this.tail=t,this.len+=n),this};D.prototype.finish=function(){for(var e=this.head.next,t=this.constructor.alloc(this.len),n=0;e;)e.fn(e.val,t,n),n+=e.len,e=e.next;return t};D._configure=function(r){Be=r,D.create=mn(),Be._configure()}});var An=F((Ta,_n)=>{"use strict";_n.exports=Q;var wn=ze();(Q.prototype=Object.create(wn.prototype)).constructor=Q;var at=st();function Q(){wn.call(this)}Q._configure=function(){Q.alloc=at._Buffer_allocUnsafe,Q.writeBytesBuffer=at.Buffer&&at.Buffer.prototype instanceof Uint8Array&&at.Buffer.prototype.set.name==="set"?function(e,t,n){t.set(e,n)}:function(e,t,n){if(e.copy)e.copy(t,n,0,e.length);else for(var i=0;i<e.length;)t[n++]=e[i++]}};Q.prototype.bytes=function(e){at.isString(e)&&(e=at._Buffer_from(e,"base64"));var t=e.length>>>0;return this.uint32(t),t&&this._push(Q.writeBytesBuffer,t,e),this};function as(r,e,t){r.length<40?at.utf8.write(r,e,t):e.utf8Write?e.utf8Write(r,t):e.write(r,t)}Q.prototype.string=function(e){var t=at.Buffer.byteLength(e);return this.uint32(t),t&&this._push(as,t,e),this};Q._configure()});var Ce=F((va,vn)=>{"use strict";vn.exports=N;var tt=st(),Ie,En=tt.LongBits,cs=tt.utf8;function K(r,e){return RangeError("index out of range: "+r.pos+" + "+(e||1)+" > "+r.len)}function N(r){this.buf=r,this.pos=0,this.len=r.length}var xn=typeof Uint8Array<"u"?function(e){if(e instanceof Uint8Array||Array.isArray(e))return new N(e);throw Error("illegal buffer")}:function(e){if(Array.isArray(e))return new N(e);throw Error("illegal buffer")},Tn=function(){return tt.Buffer?function(t){return(N.create=function(i){return tt.Buffer.isBuffer(i)?new Ie(i):xn(i)})(t)}:xn};N.create=Tn();N.prototype._slice=tt.Array.prototype.subarray||tt.Array.prototype.slice;N.prototype.uint32=function(){var e=4294967295;return function(){if(e=(this.buf[this.pos]&127)>>>0,this.buf[this.pos++]<128||(e=(e|(this.buf[this.pos]&127)<<7)>>>0,this.buf[this.pos++]<128)||(e=(e|(this.buf[this.pos]&127)<<14)>>>0,this.buf[this.pos++]<128)||(e=(e|(this.buf[this.pos]&127)<<21)>>>0,this.buf[this.pos++]<128)||(e=(e|(this.buf[this.pos]&15)<<28)>>>0,this.buf[this.pos++]<128))return e;if((this.pos+=5)>this.len)throw this.pos=this.len,K(this,10);return e}}();N.prototype.int32=function(){return this.uint32()|0};N.prototype.sint32=function(){var e=this.uint32();return e>>>1^-(e&1)|0};function Ne(){var r=new En(0,0),e=0;if(this.len-this.pos>4){for(;e<4;++e)if(r.lo=(r.lo|(this.buf[this.pos]&127)<<e*7)>>>0,this.buf[this.pos++]<128)return r;if(r.lo=(r.lo|(this.buf[this.pos]&127)<<28)>>>0,r.hi=(r.hi|(this.buf[this.pos]&127)>>4)>>>0,this.buf[this.pos++]<128)return r;e=0}else{for(;e<3;++e){if(this.pos>=this.len)throw K(this);if(r.lo=(r.lo|(this.buf[this.pos]&127)<<e*7)>>>0,this.buf[this.pos++]<128)return r}return r.lo=(r.lo|(this.buf[this.pos++]&127)<<e*7)>>>0,r}if(this.len-this.pos>4){for(;e<5;++e)if(r.hi=(r.hi|(this.buf[this.pos]&127)<<e*7+3)>>>0,this.buf[this.pos++]<128)return r}else for(;e<5;++e){if(this.pos>=this.len)throw K(this);if(r.hi=(r.hi|(this.buf[this.pos]&127)<<e*7+3)>>>0,this.buf[this.pos++]<128)return r}throw Error("invalid varint encoding")}N.prototype.bool=function(){return this.uint32()!==0};function re(r,e){return(r[e-4]|r[e-3]<<8|r[e-2]<<16|r[e-1]<<24)>>>0}N.prototype.fixed32=function(){if(this.pos+4>this.len)throw K(this,4);return re(this.buf,this.pos+=4)};N.prototype.sfixed32=function(){if(this.pos+4>this.len)throw K(this,4);return re(this.buf,this.pos+=4)|0};function Sn(){if(this.pos+8>this.len)throw K(this,8);return new En(re(this.buf,this.pos+=4),re(this.buf,this.pos+=4))}N.prototype.float=function(){if(this.pos+4>this.len)throw K(this,4);var e=tt.float.readFloatLE(this.buf,this.pos);return this.pos+=4,e};N.prototype.double=function(){if(this.pos+8>this.len)throw K(this,4);var e=tt.float.readDoubleLE(this.buf,this.pos);return this.pos+=8,e};N.prototype.bytes=function(){var e=this.uint32(),t=this.pos,n=this.pos+e;if(n>this.len)throw K(this,e);return this.pos+=e,Array.isArray(this.buf)?this.buf.slice(t,n):t===n?new this.buf.constructor(0):this._slice.call(this.buf,t,n)};N.prototype.string=function(){var e=this.bytes();return cs.read(e,0,e.length)};N.prototype.skip=function(e){if(typeof e=="number"){if(this.pos+e>this.len)throw K(this,e);this.pos+=e}else do if(this.pos>=this.len)throw K(this);while(this.buf[this.pos++]&128);return this};N.prototype.skipType=function(r){switch(r){case 0:this.skip();break;case 1:this.skip(8);break;case 2:this.skip(this.uint32());break;case 3:for(;(r=this.uint32()&7)!==4;)this.skipType(r);break;case 5:this.skip(4);break;default:throw Error("invalid wire type "+r+" at offset "+this.pos)}return this};N._configure=function(r){Ie=r,N.create=Tn(),Ie._configure();var e=tt.Long?"toLong":"toNumber";tt.merge(N.prototype,{int64:function(){return Ne.call(this)[e](!1)},uint64:function(){return Ne.call(this)[e](!0)},sint64:function(){return Ne.call(this).zzDecode()[e](!1)},fixed64:function(){return Sn.call(this)[e](!0)},sfixed64:function(){return Sn.call(this)[e](!1)}})}});var Ln=F((Ba,kn)=>{"use strict";kn.exports=pt;var Dn=Ce();(pt.prototype=Object.create(Dn.prototype)).constructor=pt;var Bn=st();function pt(r){Dn.call(this,r)}pt._configure=function(){Bn.Buffer&&(pt.prototype._slice=Bn.Buffer.prototype.slice)};pt.prototype.string=function(){var e=this.uint32();return this.buf.utf8Slice?this.buf.utf8Slice(this.pos,this.pos=Math.min(this.pos+e,this.len)):this.buf.toString("utf-8",this.pos,this.pos=Math.min(this.pos+e,this.len))};pt._configure()});var On=F((Da,Fn)=>{"use strict";Fn.exports=Ut;var Pe=st();(Ut.prototype=Object.create(Pe.EventEmitter.prototype)).constructor=Ut;function Ut(r,e,t){if(typeof r!="function")throw TypeError("rpcImpl must be a function");Pe.EventEmitter.call(this),this.rpcImpl=r,this.requestDelimited=Boolean(e),this.responseDelimited=Boolean(t)}Ut.prototype.rpcCall=function r(e,t,n,i,o){if(!i)throw TypeError("request must be specified");var s=this;if(!o)return Pe.asPromise(r,s,e,t,n,i);if(!s.rpcImpl){setTimeout(function(){o(Error("already ended"))},0);return}try{return s.rpcImpl(e,t[s.requestDelimited?"encodeDelimited":"encode"](i).finish(),function(c,l){if(c)return s.emit("error",c,e),o(c);if(l===null){s.end(!0);return}if(!(l instanceof n))try{l=n[s.responseDelimited?"decodeDelimited":"decode"](l)}catch(u){return s.emit("error",u,e),o(u)}return s.emit("data",l,e),o(null,l)})}catch(f){s.emit("error",f,e),setTimeout(function(){o(f)},0);return}};Ut.prototype.end=function(e){return this.rpcImpl&&(e||this.rpcImpl(null,null,null),this.rpcImpl=null,this.emit("end").off()),this}});var Nn=F(zn=>{"use strict";var fs=zn;fs.Service=On()});var Cn=F((La,In)=>{"use strict";In.exports={}});var Rn=F(Un=>{"use strict";var j=Un;j.build="minimal";j.Writer=ze();j.BufferWriter=An();j.Reader=Ce();j.BufferReader=Ln();j.util=st();j.rpc=Nn();j.roots=Cn();j.configure=Pn;function Pn(){j.util._configure(),j.Writer._configure(j.BufferWriter),j.Reader._configure(j.BufferReader)}Pn()});var jn=F((Oa,Vn)=>{"use strict";Vn.exports=Rn()});var yi=F((D0,pi)=>{var Ge=class{constructor(e,t=12,n=8*1024,i=32*1024,o=64,s){this.bits=t,this.min=n,this.max=i,this.asModule=e,this.rabin=new e.Rabin(t,n,i,o,s),this.polynomial=s}fingerprint(e){let{__retain:t,__release:n,__allocArray:i,__getInt32Array:o,Int32Array_ID:s,Uint8Array_ID:f}=this.asModule,c=new Int32Array(Math.ceil(e.length/this.min)),l=t(i(s,c)),u=t(i(f,e)),y=this.rabin.fingerprint(u,l),T=o(y);n(u),n(l);let a=T.indexOf(0);return a>=0?T.subarray(0,a):T}};pi.exports=Ge});var Ai=F(qt=>{"use strict";var Us=typeof BigUint64Array<"u",Ht=Symbol(),Mt=1024;function gi(r,e){let t=new Uint32Array(r),n=new Uint16Array(r);var i=t[e+-4>>>2]>>>1,o=e>>>1;if(i<=Mt)return String.fromCharCode.apply(String,n.subarray(o,o+i));let s=[];do{let f=n[o+Mt-1],c=f>=55296&&f<56320?Mt-1:Mt;s.push(String.fromCharCode.apply(String,n.subarray(o,o+=c))),i-=c}while(i>Mt);return s.join("")+String.fromCharCode.apply(String,n.subarray(o,o+i))}function Ye(r){let e={};function t(i,o){return i?gi(i.buffer,o):"<yet unknown>"}let n=r.env=r.env||{};return n.abort=n.abort||function(o,s,f,c){let l=e.memory||n.memory;throw Error("abort: "+t(l,o)+" at "+t(l,s)+":"+f+":"+c)},n.trace=n.trace||function(o,s){let f=e.memory||n.memory;console.log("trace: "+t(f,o)+(s?" ":"")+Array.prototype.slice.call(arguments,2,2+s).join(", "))},r.Math=r.Math||Math,r.Date=r.Date||Date,e}function We(r,e){let t=e.exports,n=t.memory,i=t.table,o=t.__alloc,s=t.__retain,f=t.__rtti_base||-1;function c(b){let d=new Uint32Array(n.buffer),A=d[f>>>2];if((b>>>=0)>=A)throw Error("invalid id: "+b);return d[(f+4>>>2)+b*2]}function l(b){let d=new Uint32Array(n.buffer),A=d[f>>>2];if((b>>>=0)>=A)throw Error("invalid id: "+b);return d[(f+4>>>2)+b*2+1]}function u(b){return 31-Math.clz32(b>>>5&31)}function y(b){return 31-Math.clz32(b>>>14&31)}function T(b){let d=b.length,A=o(d<<1,1),v=new Uint16Array(n.buffer);for(var O=0,I=A>>>1;O<d;++O)v[I+O]=b.charCodeAt(O);return A}r.__allocString=T;function a(b){let d=n.buffer;if(new Uint32Array(d)[b+-8>>>2]!==1)throw Error("not a string: "+b);return gi(d,b)}r.__getString=a;function h(b,d,A){let v=n.buffer;if(A)switch(b){case 2:return new Float32Array(v);case 3:return new Float64Array(v)}else switch(b){case 0:return new(d?Int8Array:Uint8Array)(v);case 1:return new(d?Int16Array:Uint16Array)(v);case 2:return new(d?Int32Array:Uint32Array)(v);case 3:return new(d?BigInt64Array:BigUint64Array)(v)}throw Error("unsupported align: "+b)}function g(b,d){let A=c(b);if(!(A&3))throw Error("not an array: "+b+" @ "+A);let v=u(A),O=d.length,I=o(O<<v,0),H=o(A&2?16:12,b),B=new Uint32Array(n.buffer);B[H+0>>>2]=s(I),B[H+4>>>2]=I,B[H+8>>>2]=O<<v,A&2&&(B[H+12>>>2]=O);let hr=h(v,A&1024,A&2048);if(A&8192)for(let Yt=0;Yt<O;++Yt)hr[(I>>>v)+Yt]=s(d[Yt]);else hr.set(d,I>>>v);return H}r.__allocArray=g;function L(b){let d=new Uint32Array(n.buffer),A=d[b+-8>>>2],v=c(A);if(!(v&1))throw Error("not an array: "+A);let O=u(v);var I=d[b+4>>>2];let H=v&2?d[b+12>>>2]:d[I+-4>>>2]>>>O;return h(O,v&1024,v&2048).subarray(I>>>=O,I+H)}r.__getArrayView=L;function p(b){let d=L(b),A=d.length,v=new Array(A);for(let O=0;O<A;O++)v[O]=d[O];return v}r.__getArray=p;function m(b){let d=n.buffer,A=new Uint32Array(d)[b+-4>>>2];return d.slice(b,b+A)}r.__getArrayBuffer=m;function w(b,d,A){return new b(_(b,d,A))}function _(b,d,A){let v=n.buffer,O=new Uint32Array(v),I=O[A+4>>>2];return new b(v,I,O[I+-4>>>2]>>>d)}r.__getInt8Array=w.bind(null,Int8Array,0),r.__getInt8ArrayView=_.bind(null,Int8Array,0),r.__getUint8Array=w.bind(null,Uint8Array,0),r.__getUint8ArrayView=_.bind(null,Uint8Array,0),r.__getUint8ClampedArray=w.bind(null,Uint8ClampedArray,0),r.__getUint8ClampedArrayView=_.bind(null,Uint8ClampedArray,0),r.__getInt16Array=w.bind(null,Int16Array,1),r.__getInt16ArrayView=_.bind(null,Int16Array,1),r.__getUint16Array=w.bind(null,Uint16Array,1),r.__getUint16ArrayView=_.bind(null,Uint16Array,1),r.__getInt32Array=w.bind(null,Int32Array,2),r.__getInt32ArrayView=_.bind(null,Int32Array,2),r.__getUint32Array=w.bind(null,Uint32Array,2),r.__getUint32ArrayView=_.bind(null,Uint32Array,2),Us&&(r.__getInt64Array=w.bind(null,BigInt64Array,3),r.__getInt64ArrayView=_.bind(null,BigInt64Array,3),r.__getUint64Array=w.bind(null,BigUint64Array,3),r.__getUint64ArrayView=_.bind(null,BigUint64Array,3)),r.__getFloat32Array=w.bind(null,Float32Array,2),r.__getFloat32ArrayView=_.bind(null,Float32Array,2),r.__getFloat64Array=w.bind(null,Float64Array,3),r.__getFloat64ArrayView=_.bind(null,Float64Array,3);function E(b,d){let A=new Uint32Array(n.buffer);var v=A[b+-8>>>2];if(v<=A[f>>>2])do if(v==d)return!0;while(v=l(v));return!1}return r.__instanceof=E,r.memory=r.memory||n,r.table=r.table||i,_i(t,r)}function mi(r){return typeof Response<"u"&&r instanceof Response}async function bi(r,e){return mi(r=await r)?wi(r,e):We(Ye(e||(e={})),await WebAssembly.instantiate(r instanceof WebAssembly.Module?r:await WebAssembly.compile(r),e))}qt.instantiate=bi;function Rs(r,e){return We(Ye(e||(e={})),new WebAssembly.Instance(r instanceof WebAssembly.Module?r:new WebAssembly.Module(r),e))}qt.instantiateSync=Rs;async function wi(r,e){return WebAssembly.instantiateStreaming?We(Ye(e||(e={})),(await WebAssembly.instantiateStreaming(r,e)).instance):bi(mi(r=await r)?r.arrayBuffer():r,e)}qt.instantiateStreaming=wi;function _i(r,e){var t=e?Object.create(e):{},n=r.__argumentsLength?function(i){r.__argumentsLength.value=i}:r.__setArgumentsLength||r.__setargc||function(){};for(let i in r){if(!Object.prototype.hasOwnProperty.call(r,i))continue;let o=r[i],s=i.split("."),f=t;for(;s.length>1;){let u=s.shift();Object.prototype.hasOwnProperty.call(f,u)||(f[u]={}),f=f[u]}let c=s[0],l=c.indexOf("#");if(l>=0){let u=c.substring(0,l),y=f[u];if(typeof y>"u"||!y.prototype){let T=function(...a){return T.wrap(T.prototype.constructor(0,...a))};T.prototype={valueOf:function(){return this[Ht]}},T.wrap=function(a){return Object.create(T.prototype,{[Ht]:{value:a,writable:!1}})},y&&Object.getOwnPropertyNames(y).forEach(a=>Object.defineProperty(T,a,Object.getOwnPropertyDescriptor(y,a))),f[u]=T}if(c=c.substring(l+1),f=f[u].prototype,/^(get|set):/.test(c)){if(!Object.prototype.hasOwnProperty.call(f,c=c.substring(4))){let T=r[i.replace("set:","get:")],a=r[i.replace("get:","set:")];Object.defineProperty(f,c,{get:function(){return T(this[Ht])},set:function(h){a(this[Ht],h)},enumerable:!0})}}else c==="constructor"?(f[c]=(...T)=>(n(T.length),o(...T))).original=o:(f[c]=function(...T){return n(T.length),o(this[Ht],...T)}).original=o}else/^(get|set):/.test(c)?Object.prototype.hasOwnProperty.call(f,c=c.substring(4))||Object.defineProperty(f,c,{get:r[i.replace("set:","get:")],set:r[i.replace("get:","set:")],enumerable:!0}):typeof o=="function"&&o!==n?(f[c]=(...u)=>(n(u.length),o(...u))).original=o:f[c]=o}return t}qt.demangle=_i});var Si=F((L0,xi)=>{var{instantiate:Vs}=Ai();$e.supported=typeof WebAssembly<"u";function $e(r={}){if(!$e.supported)return null;var e=new Uint8Array([0,97,115,109,1,0,0,0,1,78,14,96,2,127,126,0,96,1,127,1,126,96,2,127,127,0,96,1,127,1,127,96,1,127,0,96,2,127,127,1,127,96,3,127,127,127,1,127,96,0,0,96,3,127,127,127,0,96,0,1,127,96,4,127,127,127,127,0,96,5,127,127,127,127,127,1,127,96,1,126,1,127,96,2,126,126,1,126,2,13,1,3,101,110,118,5,97,98,111,114,116,0,10,3,54,53,2,2,8,9,3,5,2,8,6,5,3,4,2,6,9,12,13,2,5,11,3,2,3,2,3,2,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,6,7,7,4,4,5,3,1,0,1,6,47,9,127,1,65,0,11,127,1,65,0,11,127,0,65,3,11,127,0,65,4,11,127,1,65,0,11,127,1,65,0,11,127,1,65,0,11,127,0,65,240,2,11,127,0,65,6,11,7,240,5,41,6,109,101,109,111,114,121,2,0,7,95,95,97,108,108,111,99,0,10,8,95,95,114,101,116,97,105,110,0,11,9,95,95,114,101,108,101,97,115,101,0,12,9,95,95,99,111,108,108,101,99,116,0,51,11,95,95,114,116,116,105,95,98,97,115,101,3,7,13,73,110,116,51,50,65,114,114,97,121,95,73,68,3,2,13,85,105,110,116,56,65,114,114,97,121,95,73,68,3,3,6,100,101,103,114,101,101,0,16,3,109,111,100,0,17,5,82,97,98,105,110,3,8,16,82,97,98,105,110,35,103,101,116,58,119,105,110,100,111,119,0,21,16,82,97,98,105,110,35,115,101,116,58,119,105,110,100,111,119,0,22,21,82,97,98,105,110,35,103,101,116,58,119,105,110,100,111,119,95,115,105,122,101,0,23,21,82,97,98,105,110,35,115,101,116,58,119,105,110,100,111,119,95,115,105,122,101,0,24,14,82,97,98,105,110,35,103,101,116,58,119,112,111,115,0,25,14,82,97,98,105,110,35,115,101,116,58,119,112,111,115,0,26,15,82,97,98,105,110,35,103,101,116,58,99,111,117,110,116,0,27,15,82,97,98,105,110,35,115,101,116,58,99,111,117,110,116,0,28,13,82,97,98,105,110,35,103,101,116,58,112,111,115,0,29,13,82,97,98,105,110,35,115,101,116,58,112,111,115,0,30,15,82,97,98,105,110,35,103,101,116,58,115,116,97,114,116,0,31,15,82,97,98,105,110,35,115,101,116,58,115,116,97,114,116,0,32,16,82,97,98,105,110,35,103,101,116,58,100,105,103,101,115,116,0,33,16,82,97,98,105,110,35,115,101,116,58,100,105,103,101,115,116,0,34,21,82,97,98,105,110,35,103,101,116,58,99,104,117,110,107,95,115,116,97,114,116,0,35,21,82,97,98,105,110,35,115,101,116,58,99,104,117,110,107,95,115,116,97,114,116,0,36,22,82,97,98,105,110,35,103,101,116,58,99,104,117,110,107,95,108,101,110,103,116,104,0,37,22,82,97,98,105,110,35,115,101,116,58,99,104,117,110,107,95,108,101,110,103,116,104,0,38,31,82,97,98,105,110,35,103,101,116,58,99,104,117,110,107,95,99,117,116,95,102,105,110,103,101,114,112,114,105,110,116,0,39,31,82,97,98,105,110,35,115,101,116,58,99,104,117,110,107,95,99,117,116,95,102,105,110,103,101,114,112,114,105,110,116,0,40,20,82,97,98,105,110,35,103,101,116,58,112,111,108,121,110,111,109,105,97,108,0,41,20,82,97,98,105,110,35,115,101,116,58,112,111,108,121,110,111,109,105,97,108,0,42,17,82,97,98,105,110,35,103,101,116,58,109,105,110,115,105,122,101,0,43,17,82,97,98,105,110,35,115,101,116,58,109,105,110,115,105,122,101,0,44,17,82,97,98,105,110,35,103,101,116,58,109,97,120,115,105,122,101,0,45,17,82,97,98,105,110,35,115,101,116,58,109,97,120,115,105,122,101,0,46,14,82,97,98,105,110,35,103,101,116,58,109,97,115,107,0,47,14,82,97,98,105,110,35,115,101,116,58,109,97,115,107,0,48,17,82,97,98,105,110,35,99,111,110,115,116,114,117,99,116,111,114,0,20,17,82,97,98,105,110,35,102,105,110,103,101,114,112,114,105,110,116,0,49,8,1,50,10,165,31,53,199,1,1,4,127,32,1,40,2,0,65,124,113,34,2,65,128,2,73,4,127,32,2,65,4,118,33,4,65,0,5,32,2,65,31,32,2,103,107,34,3,65,4,107,118,65,16,115,33,4,32,3,65,7,107,11,33,3,32,1,40,2,20,33,2,32,1,40,2,16,34,5,4,64,32,5,32,2,54,2,20,11,32,2,4,64,32,2,32,5,54,2,16,11,32,1,32,0,32,4,32,3,65,4,116,106,65,2,116,106,40,2,96,70,4,64,32,0,32,4,32,3,65,4,116,106,65,2,116,106,32,2,54,2,96,32,2,69,4,64,32,0,32,3,65,2,116,106,32,0,32,3,65,2,116,106,40,2,4,65,1,32,4,116,65,127,115,113,34,1,54,2,4,32,1,69,4,64,32,0,32,0,40,2,0,65,1,32,3,116,65,127,115,113,54,2,0,11,11,11,11,226,2,1,6,127,32,1,40,2,0,33,3,32,1,65,16,106,32,1,40,2,0,65,124,113,106,34,4,40,2,0,34,5,65,1,113,4,64,32,3,65,124,113,65,16,106,32,5,65,124,113,106,34,2,65,240,255,255,255,3,73,4,64,32,0,32,4,16,1,32,1,32,2,32,3,65,3,113,114,34,3,54,2,0,32,1,65,16,106,32,1,40,2,0,65,124,113,106,34,4,40,2,0,33,5,11,11,32,3,65,2,113,4,64,32,1,65,4,107,40,2,0,34,2,40,2,0,34,6,65,124,113,65,16,106,32,3,65,124,113,106,34,7,65,240,255,255,255,3,73,4,64,32,0,32,2,16,1,32,2,32,7,32,6,65,3,113,114,34,3,54,2,0,32,2,33,1,11,11,32,4,32,5,65,2,114,54,2,0,32,4,65,4,107,32,1,54,2,0,32,0,32,3,65,124,113,34,2,65,128,2,73,4,127,32,2,65,4,118,33,4,65,0,5,32,2,65,31,32,2,103,107,34,2,65,4,107,118,65,16,115,33,4,32,2,65,7,107,11,34,3,65,4,116,32,4,106,65,2,116,106,40,2,96,33,2,32,1,65,0,54,2,16,32,1,32,2,54,2,20,32,2,4,64,32,2,32,1,54,2,16,11,32,0,32,4,32,3,65,4,116,106,65,2,116,106,32,1,54,2,96,32,0,32,0,40,2,0,65,1,32,3,116,114,54,2,0,32,0,32,3,65,2,116,106,32,0,32,3,65,2,116,106,40,2,4,65,1,32,4,116,114,54,2,4,11,119,1,1,127,32,2,2,127,32,0,40,2,160,12,34,2,4,64,32,2,32,1,65,16,107,70,4,64,32,2,40,2,0,33,3,32,1,65,16,107,33,1,11,11,32,1,11,107,34,2,65,48,73,4,64,15,11,32,1,32,3,65,2,113,32,2,65,32,107,65,1,114,114,54,2,0,32,1,65,0,54,2,16,32,1,65,0,54,2,20,32,1,32,2,106,65,16,107,34,2,65,2,54,2,0,32,0,32,2,54,2,160,12,32,0,32,1,16,2,11,155,1,1,3,127,35,0,34,0,69,4,64,65,1,63,0,34,0,74,4,127,65,1,32,0,107,64,0,65,0,72,5,65,0,11,4,64,0,11,65,176,3,34,0,65,0,54,2,0,65,208,15,65,0,54,2,0,3,64,32,1,65,23,73,4,64,32,1,65,2,116,65,176,3,106,65,0,54,2,4,65,0,33,2,3,64,32,2,65,16,73,4,64,32,1,65,4,116,32,2,106,65,2,116,65,176,3,106,65,0,54,2,96,32,2,65,1,106,33,2,12,1,11,11,32,1,65,1,106,33,1,12,1,11,11,65,176,3,65,224,15,63,0,65,16,116,16,3,65,176,3,36,0,11,32,0,11,45,0,32,0,65,240,255,255,255,3,79,4,64,65,32,65,224,0,65,201,3,65,29,16,0,0,11,32,0,65,15,106,65,112,113,34,0,65,16,32,0,65,16,75,27,11,169,1,1,1,127,32,0,32,1,65,128,2,73,4,127,32,1,65,4,118,33,1,65,0,5,32,1,65,248,255,255,255,1,73,4,64,32,1,65,1,65,27,32,1,103,107,116,106,65,1,107,33,1,11,32,1,65,31,32,1,103,107,34,2,65,4,107,118,65,16,115,33,1,32,2,65,7,107,11,34,2,65,2,116,106,40,2,4,65,127,32,1,116,113,34,1,4,127,32,0,32,1,104,32,2,65,4,116,106,65,2,116,106,40,2,96,5,32,0,40,2,0,65,127,32,2,65,1,106,116,113,34,1,4,127,32,0,32,0,32,1,104,34,0,65,2,116,106,40,2,4,104,32,0,65,4,116,106,65,2,116,106,40,2,96,5,65,0,11,11,11,111,1,1,127,63,0,34,2,32,1,65,248,255,255,255,1,73,4,127,32,1,65,1,65,27,32,1,103,107,116,65,1,107,106,5,32,1,11,65,16,32,0,40,2,160,12,32,2,65,16,116,65,16,107,71,116,106,65,255,255,3,106,65,128,128,124,113,65,16,118,34,1,32,2,32,1,74,27,64,0,65,0,72,4,64,32,1,64,0,65,0,72,4,64,0,11,11,32,0,32,2,65,16,116,63,0,65,16,116,16,3,11,113,1,2,127,32,1,40,2,0,34,3,65,124,113,32,2,107,34,4,65,32,79,4,64,32,1,32,2,32,3,65,2,113,114,54,2,0,32,2,32,1,65,16,106,106,34,1,32,4,65,16,107,65,1,114,54,2,0,32,0,32,1,16,2,5,32,1,32,3,65,126,113,54,2,0,32,1,65,16,106,32,1,40,2,0,65,124,113,106,32,1,65,16,106,32,1,40,2,0,65,124,113,106,40,2,0,65,125,113,54,2,0,11,11,91,1,2,127,32,0,32,1,16,5,34,4,16,6,34,3,69,4,64,65,1,36,1,65,0,36,1,32,0,32,4,16,6,34,3,69,4,64,32,0,32,4,16,7,32,0,32,4,16,6,33,3,11,11,32,3,65,0,54,2,4,32,3,32,2,54,2,8,32,3,32,1,54,2,12,32,0,32,3,16,1,32,0,32,3,32,4,16,8,32,3,11,13,0,16,4,32,0,32,1,16,9,65,16,106,11,33,1,1,127,32,0,65,172,3,75,4,64,32,0,65,16,107,34,1,32,1,40,2,4,65,1,106,54,2,4,11,32,0,11,18,0,32,0,65,172,3,75,4,64,32,0,65,16,107,16,52,11,11,140,3,1,1,127,2,64,32,1,69,13,0,32,0,65,0,58,0,0,32,0,32,1,106,65,1,107,65,0,58,0,0,32,1,65,2,77,13,0,32,0,65,1,106,65,0,58,0,0,32,0,65,2,106,65,0,58,0,0,32,0,32,1,106,34,2,65,2,107,65,0,58,0,0,32,2,65,3,107,65,0,58,0,0,32,1,65,6,77,13,0,32,0,65,3,106,65,0,58,0,0,32,0,32,1,106,65,4,107,65,0,58,0,0,32,1,65,8,77,13,0,32,1,65,0,32,0,107,65,3,113,34,1,107,33,2,32,0,32,1,106,34,0,65,0,54,2,0,32,0,32,2,65,124,113,34,1,106,65,4,107,65,0,54,2,0,32,1,65,8,77,13,0,32,0,65,4,106,65,0,54,2,0,32,0,65,8,106,65,0,54,2,0,32,0,32,1,106,34,2,65,12,107,65,0,54,2,0,32,2,65,8,107,65,0,54,2,0,32,1,65,24,77,13,0,32,0,65,12,106,65,0,54,2,0,32,0,65,16,106,65,0,54,2,0,32,0,65,20,106,65,0,54,2,0,32,0,65,24,106,65,0,54,2,0,32,0,32,1,106,34,2,65,28,107,65,0,54,2,0,32,2,65,24,107,65,0,54,2,0,32,2,65,20,107,65,0,54,2,0,32,2,65,16,107,65,0,54,2,0,32,0,32,0,65,4,113,65,24,106,34,2,106,33,0,32,1,32,2,107,33,1,3,64,32,1,65,32,79,4,64,32,0,66,0,55,3,0,32,0,65,8,106,66,0,55,3,0,32,0,65,16,106,66,0,55,3,0,32,0,65,24,106,66,0,55,3,0,32,1,65,32,107,33,1,32,0,65,32,106,33,0,12,1,11,11,11,11,178,1,1,3,127,32,1,65,240,255,255,255,3,32,2,118,75,4,64,65,144,1,65,192,1,65,23,65,56,16,0,0,11,32,1,32,2,116,34,3,65,0,16,10,34,2,32,3,16,13,32,0,69,4,64,65,12,65,2,16,10,34,0,65,172,3,75,4,64,32,0,65,16,107,34,1,32,1,40,2,4,65,1,106,54,2,4,11,11,32,0,65,0,54,2,0,32,0,65,0,54,2,4,32,0,65,0,54,2,8,32,2,34,1,32,0,40,2,0,34,4,71,4,64,32,1,65,172,3,75,4,64,32,1,65,16,107,34,5,32,5,40,2,4,65,1,106,54,2,4,11,32,4,16,12,11,32,0,32,1,54,2,0,32,0,32,2,54,2,4,32,0,32,3,54,2,8,32,0,11,46,1,2,127,65,12,65,5,16,10,34,0,65,172,3,75,4,64,32,0,65,16,107,34,1,32,1,40,2,4,65,1,106,54,2,4,11,32,0,65,128,2,65,3,16,14,11,9,0,65,63,32,0,121,167,107,11,49,1,2,127,65,63,32,1,121,167,107,33,2,3,64,65,63,32,0,121,167,107,32,2,107,34,3,65,0,78,4,64,32,0,32,1,32,3,172,134,133,33,0,12,1,11,11,32,0,11,40,0,32,1,32,0,40,2,8,79,4,64,65,128,2,65,192,2,65,163,1,65,44,16,0,0,11,32,1,32,0,40,2,4,106,65,0,58,0,0,11,38,0,32,1,32,0,40,2,8,79,4,64,65,128,2,65,192,2,65,152,1,65,44,16,0,0,11,32,1,32,0,40,2,4,106,45,0,0,11,254,5,2,1,127,4,126,32,0,69,4,64,65,232,0,65,6,16,10,34,0,65,172,3,75,4,64,32,0,65,16,107,34,5,32,5,40,2,4,65,1,106,54,2,4,11,11,32,0,65,0,54,2,0,32,0,65,0,54,2,4,32,0,65,0,54,2,8,32,0,66,0,55,3,16,32,0,66,0,55,3,24,32,0,66,0,55,3,32,32,0,66,0,55,3,40,32,0,66,0,55,3,48,32,0,66,0,55,3,56,32,0,66,0,55,3,64,32,0,66,0,55,3,72,32,0,66,0,55,3,80,32,0,66,0,55,3,88,32,0,66,0,55,3,96,32,0,32,2,173,55,3,80,32,0,32,3,173,55,3,88,65,12,65,4,16,10,34,2,65,172,3,75,4,64,32,2,65,16,107,34,3,32,3,40,2,4,65,1,106,54,2,4,11,32,2,32,4,65,0,16,14,33,2,32,0,40,2,0,16,12,32,0,32,2,54,2,0,32,0,32,4,54,2,4,32,0,66,1,32,1,173,134,66,1,125,55,3,96,32,0,66,243,130,183,218,216,230,232,30,55,3,72,35,4,69,4,64,65,0,33,2,3,64,32,2,65,128,2,72,4,64,32,2,65,255,1,113,173,33,6,32,0,41,3,72,34,7,33,8,65,63,32,7,121,167,107,33,1,3,64,65,63,32,6,121,167,107,32,1,107,34,3,65,0,78,4,64,32,6,32,8,32,3,172,134,133,33,6,12,1,11,11,65,0,33,4,3,64,32,4,32,0,40,2,4,65,1,107,72,4,64,32,6,66,8,134,33,6,32,0,41,3,72,34,7,33,8,65,63,32,7,121,167,107,33,1,3,64,65,63,32,6,121,167,107,32,1,107,34,3,65,0,78,4,64,32,6,32,8,32,3,172,134,133,33,6,12,1,11,11,32,4,65,1,106,33,4,12,1,11,11,35,6,40,2,4,32,2,65,3,116,106,32,6,55,3,0,32,2,65,1,106,33,2,12,1,11,11,65,63,32,0,41,3,72,121,167,107,172,33,7,65,0,33,2,3,64,32,2,65,128,2,72,4,64,35,5,33,1,32,2,172,32,7,134,34,8,33,6,65,63,32,0,41,3,72,34,9,121,167,107,33,3,3,64,65,63,32,6,121,167,107,32,3,107,34,4,65,0,78,4,64,32,6,32,9,32,4,172,134,133,33,6,12,1,11,11,32,1,40,2,4,32,2,65,3,116,106,32,6,32,8,132,55,3,0,32,2,65,1,106,33,2,12,1,11,11,65,1,36,4,11,32,0,66,0,55,3,24,32,0,66,0,55,3,32,65,0,33,2,3,64,32,2,32,0,40,2,4,72,4,64,32,0,40,2,0,32,2,16,18,32,2,65,1,106,33,2,12,1,11,11,32,0,66,0,55,3,40,32,0,65,0,54,2,8,32,0,66,0,55,3,16,32,0,66,0,55,3,40,32,0,40,2,0,32,0,40,2,8,16,19,33,1,32,0,40,2,8,32,0,40,2,0,40,2,4,106,65,1,58,0,0,32,0,32,0,41,3,40,35,6,40,2,4,32,1,65,3,116,106,41,3,0,133,55,3,40,32,0,32,0,40,2,8,65,1,106,32,0,40,2,4,111,54,2,8,32,0,35,5,40,2,4,32,0,41,3,40,34,6,66,45,136,167,65,3,116,106,41,3,0,32,6,66,8,134,66,1,132,133,55,3,40,32,0,11,38,1,1,127,32,0,40,2,0,34,0,65,172,3,75,4,64,32,0,65,16,107,34,1,32,1,40,2,4,65,1,106,54,2,4,11,32,0,11,55,1,2,127,32,1,32,0,40,2,0,34,2,71,4,64,32,1,65,172,3,75,4,64,32,1,65,16,107,34,3,32,3,40,2,4,65,1,106,54,2,4,11,32,2,16,12,11,32,0,32,1,54,2,0,11,7,0,32,0,40,2,4,11,9,0,32,0,32,1,54,2,4,11,7,0,32,0,40,2,8,11,9,0,32,0,32,1,54,2,8,11,7,0,32,0,41,3,16,11,9,0,32,0,32,1,55,3,16,11,7,0,32,0,41,3,24,11,9,0,32,0,32,1,55,3,24,11,7,0,32,0,41,3,32,11,9,0,32,0,32,1,55,3,32,11,7,0,32,0,41,3,40,11,9,0,32,0,32,1,55,3,40,11,7,0,32,0,41,3,48,11,9,0,32,0,32,1,55,3,48,11,7,0,32,0,41,3,56,11,9,0,32,0,32,1,55,3,56,11,7,0,32,0,41,3,64,11,9,0,32,0,32,1,55,3,64,11,7,0,32,0,41,3,72,11,9,0,32,0,32,1,55,3,72,11,7,0,32,0,41,3,80,11,9,0,32,0,32,1,55,3,80,11,7,0,32,0,41,3,88,11,9,0,32,0,32,1,55,3,88,11,7,0,32,0,41,3,96,11,9,0,32,0,32,1,55,3,96,11,172,4,2,5,127,1,126,32,2,65,172,3,75,4,64,32,2,65,16,107,34,4,32,4,40,2,4,65,1,106,54,2,4,11,32,2,33,4,65,0,33,2,32,1,40,2,8,33,5,32,1,40,2,4,33,6,3,64,2,127,65,0,33,3,3,64,32,3,32,5,72,4,64,32,3,32,6,106,45,0,0,33,1,32,0,40,2,0,32,0,40,2,8,16,19,33,7,32,0,40,2,8,32,0,40,2,0,40,2,4,106,32,1,58,0,0,32,0,32,0,41,3,40,35,6,40,2,4,32,7,65,3,116,106,41,3,0,133,55,3,40,32,0,32,0,40,2,8,65,1,106,32,0,40,2,4,111,54,2,8,32,0,35,5,40,2,4,32,0,41,3,40,34,8,66,45,136,167,65,3,116,106,41,3,0,32,1,173,32,8,66,8,134,132,133,55,3,40,32,0,32,0,41,3,16,66,1,124,55,3,16,32,0,32,0,41,3,24,66,1,124,55,3,24,32,0,41,3,16,32,0,41,3,80,90,4,127,32,0,41,3,40,32,0,41,3,96,131,80,5,65,0,11,4,127,65,1,5,32,0,41,3,16,32,0,41,3,88,90,11,4,64,32,0,32,0,41,3,32,55,3,48,32,0,32,0,41,3,16,55,3,56,32,0,32,0,41,3,40,55,3,64,65,0,33,1,3,64,32,1,32,0,40,2,4,72,4,64,32,0,40,2,0,32,1,16,18,32,1,65,1,106,33,1,12,1,11,11,32,0,66,0,55,3,40,32,0,65,0,54,2,8,32,0,66,0,55,3,16,32,0,66,0,55,3,40,32,0,40,2,0,32,0,40,2,8,16,19,33,1,32,0,40,2,8,32,0,40,2,0,40,2,4,106,65,1,58,0,0,32,0,32,0,41,3,40,35,6,40,2,4,32,1,65,3,116,106,41,3,0,133,55,3,40,32,0,32,0,40,2,8,65,1,106,32,0,40,2,4,111,54,2,8,32,0,35,5,40,2,4,32,0,41,3,40,34,8,66,45,136,167,65,3,116,106,41,3,0,32,8,66,8,134,66,1,132,133,55,3,40,32,3,65,1,106,12,3,11,32,3,65,1,106,33,3,12,1,11,11,65,127,11,34,1,65,0,78,4,64,32,5,32,1,107,33,5,32,1,32,6,106,33,6,32,2,34,1,65,1,106,33,2,32,4,40,2,4,32,1,65,2,116,106,32,0,41,3,56,62,2,0,12,1,11,11,32,4,11,10,0,16,15,36,5,16,15,36,6,11,3,0,1,11,73,1,2,127,32,0,40,2,4,34,1,65,255,255,255,255,0,113,34,2,65,1,70,4,64,32,0,65,16,106,16,53,32,0,32,0,40,2,0,65,1,114,54,2,0,35,0,32,0,16,2,5,32,0,32,2,65,1,107,32,1,65,128,128,128,128,127,113,114,54,2,4,11,11,58,0,2,64,2,64,2,64,32,0,65,8,107,40,2,0,14,7,0,0,1,1,1,1,1,2,11,15,11,32,0,40,2,0,34,0,4,64,32,0,65,172,3,79,4,64,32,0,65,16,107,16,52,11,11,15,11,0,11,11,137,3,7,0,65,16,11,55,40,0,0,0,1,0,0,0,1,0,0,0,40,0,0,0,97,0,108,0,108,0,111,0,99,0,97,0,116,0,105,0,111,0,110,0,32,0,116,0,111,0,111,0,32,0,108,0,97,0,114,0,103,0,101,0,65,208,0,11,45,30,0,0,0,1,0,0,0,1,0,0,0,30,0,0,0,126,0,108,0,105,0,98,0,47,0,114,0,116,0,47,0,116,0,108,0,115,0,102,0,46,0,116,0,115,0,65,128,1,11,43,28,0,0,0,1,0,0,0,1,0,0,0,28,0,0,0,73,0,110,0,118,0,97,0,108,0,105,0,100,0,32,0,108,0,101,0,110,0,103,0,116,0,104,0,65,176,1,11,53,38,0,0,0,1,0,0,0,1,0,0,0,38,0,0,0,126,0,108,0,105,0,98,0,47,0,97,0,114,0,114,0,97,0,121,0,98,0,117,0,102,0,102,0,101,0,114,0,46,0,116,0,115,0,65,240,1,11,51,36,0,0,0,1,0,0,0,1,0,0,0,36,0,0,0,73,0,110,0,100,0,101,0,120,0,32,0,111,0,117,0,116,0,32,0,111,0,102,0,32,0,114,0,97,0,110,0,103,0,101,0,65,176,2,11,51,36,0,0,0,1,0,0,0,1,0,0,0,36,0,0,0,126,0,108,0,105,0,98,0,47,0,116,0,121,0,112,0,101,0,100,0,97,0,114,0,114,0,97,0,121,0,46,0,116,0,115,0,65,240,2,11,53,7,0,0,0,16,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,145,4,0,0,2,0,0,0,49,0,0,0,2,0,0,0,17,1,0,0,2,0,0,0,16,0,34,16,115,111,117,114,99,101,77,97,112,112,105,110,103,85,82,76,16,46,47,114,97,98,105,110,46,119,97,115,109,46,109,97,112]);return Vs(new Response(new Blob([e],{type:"application/wasm"})),r)}xi.exports=$e});var vi=F((F0,Ti)=>{var Ei=yi(),js=Si(),Hs=async(r,e,t,n,i)=>{let o=await js();return new Ei(o,r,e,t,n,i)};Ti.exports={Rabin:Ei,create:Hs}});var Vi=F((bc,Ri)=>{"use strict";Ri.exports=class{constructor(){this._bitArrays=[],this._data=[],this._length=0,this._changedLength=!1,this._changedData=!1}set(e,t){let n=this._internalPositionFor(e,!1);if(t===void 0)n!==-1&&(this._unsetInternalPos(n),this._unsetBit(e),this._changedLength=!0,this._changedData=!0);else{let i=!1;n===-1?(n=this._data.length,this._setBit(e),this._changedData=!0):i=!0,this._setInternalPos(n,e,t,i),this._changedLength=!0}}unset(e){this.set(e,void 0)}get(e){this._sortData();let t=this._internalPositionFor(e,!0);if(t!==-1)return this._data[t][1]}push(e){return this.set(this.length,e),this.length}get length(){if(this._sortData(),this._changedLength){let e=this._data[this._data.length-1];this._length=e?e[0]+1:0,this._changedLength=!1}return this._length}forEach(e){let t=0;for(;t<this.length;)e(this.get(t),t,this),t++}map(e){let t=0,n=new Array(this.length);for(;t<this.length;)n[t]=e(this.get(t),t,this),t++;return n}reduce(e,t){let n=0,i=t;for(;n<this.length;){let o=this.get(n);i=e(i,o,n),n++}return i}find(e){let t=0,n,i;for(;t<this.length&&!n;)i=this.get(t),n=e(i),t++;return n?i:void 0}_internalPositionFor(e,t){let n=this._bytePosFor(e,t);if(n>=this._bitArrays.length)return-1;let i=this._bitArrays[n],o=e-n*7;if(!((i&1<<o)>0))return-1;let f=this._bitArrays.slice(0,n).reduce(w1,0),c=~(4294967295<<o+1),l=Ui(i&c);return f+l-1}_bytePosFor(e,t){let n=Math.floor(e/7),i=n+1;for(;!t&&this._bitArrays.length<i;)this._bitArrays.push(0);return n}_setBit(e){let t=this._bytePosFor(e,!1);this._bitArrays[t]|=1<<e-t*7}_unsetBit(e){let t=this._bytePosFor(e,!1);this._bitArrays[t]&=~(1<<e-t*7)}_setInternalPos(e,t,n,i){let o=this._data,s=[t,n];if(i)this._sortData(),o[e]=s;else{if(o.length)if(o[o.length-1][0]>=t)o.push(s);else if(o[0][0]<=t)o.unshift(s);else{let f=Math.round(o.length/2);this._data=o.slice(0,f).concat(s).concat(o.slice(f))}else this._data.push(s);this._changedData=!0,this._changedLength=!0}}_unsetInternalPos(e){this._data.splice(e,1)}_sortData(){this._changedData&&this._data.sort(_1),this._changedData=!1}bitField(){let e=[],t=8,n=0,i=0,o,s=this._bitArrays.slice();for(;s.length||n;){n===0&&(o=s.shift(),n=7);let c=Math.min(n,t),l=~(255<<c),u=o&l;i|=u<<8-t,o=o>>>c,n-=c,t-=c,(!t||!n&&!s.length)&&(e.push(i),i=0,t=8)}for(var f=e.length-1;f>0&&e[f]===0;f--)e.pop();return e}compactArray(){return this._sortData(),this._data.map(A1)}};function w1(r,e){return r+Ui(e)}function Ui(r){let e=r;return e=e-(e>>1&1431655765),e=(e&858993459)+(e>>2&858993459),(e+(e>>4)&252645135)*16843009>>24}function _1(r,e){return r[0]-e[0]}function A1(r){return r[1]}});var N1={};U(N1,{importer:()=>z1});async function*ut(r,e=1){let t=[];e<1&&(e=1);for await(let n of r)for(t.push(n);t.length>=e;)yield t.slice(0,e),t=t.slice(e);for(;t.length>0;)yield t.slice(0,e),t=t.slice(e)}async function*Lt(r,e=1){for await(let t of ut(r,e)){let n=t.map(async i=>await i().then(o=>({ok:!0,value:o}),o=>({ok:!1,err:o})));for(let i=0;i<n.length;i++){let o=await n[i];if(o.ok)yield o.value;else throw o.err}}}var xr=Z(Ar(),1),Sr=xr.default;var me={};U(me,{sha256:()=>St,sha512:()=>Fo});var wt={};U(wt,{coerce:()=>M,empty:()=>Er,equals:()=>he,fromHex:()=>uo,fromString:()=>de,isBinary:()=>lo,toHex:()=>fo,toString:()=>pe});var Er=new Uint8Array(0),fo=r=>r.reduce((e,t)=>e+t.toString(16).padStart(2,"0"),""),uo=r=>{let e=r.match(/../g);return e?new Uint8Array(e.map(t=>parseInt(t,16))):Er},he=(r,e)=>{if(r===e)return!0;if(r.byteLength!==e.byteLength)return!1;for(let t=0;t<r.byteLength;t++)if(r[t]!==e[t])return!1;return!0},M=r=>{if(r instanceof Uint8Array&&r.constructor.name==="Uint8Array")return r;if(r instanceof ArrayBuffer)return new Uint8Array(r);if(ArrayBuffer.isView(r))return new Uint8Array(r.buffer,r.byteOffset,r.byteLength);throw new Error("Unknown type, must be binary type")},lo=r=>r instanceof ArrayBuffer||ArrayBuffer.isView(r),de=r=>new TextEncoder().encode(r),pe=r=>new TextDecoder().decode(r);var ho=Br,Tr=128,po=127,yo=~po,go=Math.pow(2,31);function Br(r,e,t){e=e||[],t=t||0;for(var n=t;r>=go;)e[t++]=r&255|Tr,r/=128;for(;r&yo;)e[t++]=r&255|Tr,r>>>=7;return e[t]=r|0,Br.bytes=t-n+1,e}var mo=ye,bo=128,vr=127;function ye(r,n){var t=0,n=n||0,i=0,o=n,s,f=r.length;do{if(o>=f)throw ye.bytes=0,new RangeError("Could not decode varint");s=r[o++],t+=i<28?(s&vr)<<i:(s&vr)*Math.pow(2,i),i+=7}while(s>=bo);return ye.bytes=o-n,t}var wo=Math.pow(2,7),_o=Math.pow(2,14),Ao=Math.pow(2,21),xo=Math.pow(2,28),So=Math.pow(2,35),Eo=Math.pow(2,42),To=Math.pow(2,49),vo=Math.pow(2,56),Bo=Math.pow(2,63),Do=function(r){return r<wo?1:r<_o?2:r<Ao?3:r<xo?4:r<So?5:r<Eo?6:r<To?7:r<vo?8:r<Bo?9:10},ko={encode:ho,decode:mo,encodingLength:Do},Lo=ko,Ft=Lo;var Ot=(r,e=0)=>[Ft.decode(r,e),Ft.decode.bytes],_t=(r,e,t=0)=>(Ft.encode(r,e,t),e),At=r=>Ft.encodingLength(r);var lt=(r,e)=>{let t=e.byteLength,n=At(r),i=n+At(t),o=new Uint8Array(i+t);return _t(r,o,0),_t(t,o,n),o.set(e,i),new xt(r,t,e,o)},Dr=r=>{let e=M(r),[t,n]=Ot(e),[i,o]=Ot(e.subarray(n)),s=e.subarray(n+o);if(s.byteLength!==i)throw new Error("Incorrect length");return new xt(t,i,s,e)},kr=(r,e)=>{if(r===e)return!0;{let t=e;return r.code===t.code&&r.size===t.size&&t.bytes instanceof Uint8Array&&he(r.bytes,t.bytes)}},xt=class{constructor(e,t,n,i){this.code=e,this.size=t,this.digest=n,this.bytes=i}};var ht=({name:r,code:e,encode:t})=>new ge(r,e,t),ge=class{constructor(e,t,n){this.name=e,this.code=t,this.encode=n}digest(e){if(e instanceof Uint8Array){let t=this.encode(e);return t instanceof Uint8Array?lt(this.code,t):t.then(n=>lt(this.code,n))}else throw Error("Unknown type, must be binary type")}};var Fr=r=>async e=>new Uint8Array(await crypto.subtle.digest(r,e)),St=ht({name:"sha2-256",code:18,encode:Fr("SHA-256")}),Fo=ht({name:"sha2-512",code:19,encode:Fr("SHA-512")});var xe={};U(xe,{base58btc:()=>X,base58flickr:()=>Po});function Oo(r,e){if(r.length>=255)throw new TypeError("Alphabet too long");for(var t=new Uint8Array(256),n=0;n<t.length;n++)t[n]=255;for(var i=0;i<r.length;i++){var o=r.charAt(i),s=o.charCodeAt(0);if(t[s]!==255)throw new TypeError(o+" is ambiguous");t[s]=i}var f=r.length,c=r.charAt(0),l=Math.log(f)/Math.log(256),u=Math.log(256)/Math.log(f);function y(h){if(h instanceof Uint8Array||(ArrayBuffer.isView(h)?h=new Uint8Array(h.buffer,h.byteOffset,h.byteLength):Array.isArray(h)&&(h=Uint8Array.from(h))),!(h instanceof Uint8Array))throw new TypeError("Expected Uint8Array");if(h.length===0)return"";for(var g=0,L=0,p=0,m=h.length;p!==m&&h[p]===0;)p++,g++;for(var w=(m-p)*u+1>>>0,_=new Uint8Array(w);p!==m;){for(var E=h[p],b=0,d=w-1;(E!==0||b<L)&&d!==-1;d--,b++)E+=256*_[d]>>>0,_[d]=E%f>>>0,E=E/f>>>0;if(E!==0)throw new Error("Non-zero carry");L=b,p++}for(var A=w-L;A!==w&&_[A]===0;)A++;for(var v=c.repeat(g);A<w;++A)v+=r.charAt(_[A]);return v}function T(h){if(typeof h!="string")throw new TypeError("Expected String");if(h.length===0)return new Uint8Array;var g=0;if(h[g]!==" "){for(var L=0,p=0;h[g]===c;)L++,g++;for(var m=(h.length-g)*l+1>>>0,w=new Uint8Array(m);h[g];){var _=t[h.charCodeAt(g)];if(_===255)return;for(var E=0,b=m-1;(_!==0||E<p)&&b!==-1;b--,E++)_+=f*w[b]>>>0,w[b]=_%256>>>0,_=_/256>>>0;if(_!==0)throw new Error("Non-zero carry");p=E,g++}if(h[g]!==" "){for(var d=m-p;d!==m&&w[d]===0;)d++;for(var A=new Uint8Array(L+(m-d)),v=L;d!==m;)A[v++]=w[d++];return A}}}function a(h){var g=T(h);if(g)return g;throw new Error(`Non-${e} character`)}return{encode:y,decodeUnsafe:T,decode:a}}var zo=Oo,No=zo,Or=No;var be=class{constructor(e,t,n){this.name=e,this.prefix=t,this.baseEncode=n}encode(e){if(e instanceof Uint8Array)return`${this.prefix}${this.baseEncode(e)}`;throw Error("Unknown type, must be binary type")}},we=class{constructor(e,t,n){if(this.name=e,this.prefix=t,t.codePointAt(0)===void 0)throw new Error("Invalid prefix character");this.prefixCodePoint=t.codePointAt(0),this.baseDecode=n}decode(e){if(typeof e=="string"){if(e.codePointAt(0)!==this.prefixCodePoint)throw Error(`Unable to decode multibase string ${JSON.stringify(e)}, ${this.name} decoder only supports inputs prefixed with ${this.prefix}`);return this.baseDecode(e.slice(this.prefix.length))}else throw Error("Can only multibase decode strings")}or(e){return zr(this,e)}},_e=class{constructor(e){this.decoders=e}or(e){return zr(this,e)}decode(e){let t=e[0],n=this.decoders[t];if(n)return n.decode(e);throw RangeError(`Unable to decode multibase string ${JSON.stringify(e)}, only inputs prefixed with ${Object.keys(this.decoders)} are supported`)}},zr=(r,e)=>new _e({...r.decoders||{[r.prefix]:r},...e.decoders||{[e.prefix]:e}}),Ae=class{constructor(e,t,n,i){this.name=e,this.prefix=t,this.baseEncode=n,this.baseDecode=i,this.encoder=new be(e,t,n),this.decoder=new we(e,t,i)}encode(e){return this.encoder.encode(e)}decode(e){return this.decoder.decode(e)}},Et=({name:r,prefix:e,encode:t,decode:n})=>new Ae(r,e,t,n),it=({prefix:r,name:e,alphabet:t})=>{let{encode:n,decode:i}=Or(t,e);return Et({prefix:r,name:e,encode:n,decode:o=>M(i(o))})},Io=(r,e,t,n)=>{let i={};for(let u=0;u<e.length;++u)i[e[u]]=u;let o=r.length;for(;r[o-1]==="=";)--o;let s=new Uint8Array(o*t/8|0),f=0,c=0,l=0;for(let u=0;u<o;++u){let y=i[r[u]];if(y===void 0)throw new SyntaxError(`Non-${n} character`);c=c<<t|y,f+=t,f>=8&&(f-=8,s[l++]=255&c>>f)}if(f>=t||255&c<<8-f)throw new SyntaxError("Unexpected end of data");return s},Co=(r,e,t)=>{let n=e[e.length-1]==="=",i=(1<<t)-1,o="",s=0,f=0;for(let c=0;c<r.length;++c)for(f=f<<8|r[c],s+=8;s>t;)s-=t,o+=e[i&f>>s];if(s&&(o+=e[i&f<<t-s]),n)for(;o.length*t&7;)o+="=";return o},z=({name:r,prefix:e,bitsPerChar:t,alphabet:n})=>Et({prefix:e,name:r,encode(i){return Co(i,n,t)},decode(i){return Io(i,n,t,r)}});var X=it({name:"base58btc",prefix:"z",alphabet:"123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz"}),Po=it({name:"base58flickr",prefix:"Z",alphabet:"123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ"});var Se={};U(Se,{base32:()=>Tt,base32hex:()=>jo,base32hexpad:()=>Mo,base32hexpadupper:()=>qo,base32hexupper:()=>Ho,base32pad:()=>Ro,base32padupper:()=>Vo,base32upper:()=>Uo,base32z:()=>Go});var Tt=z({prefix:"b",name:"base32",alphabet:"abcdefghijklmnopqrstuvwxyz234567",bitsPerChar:5}),Uo=z({prefix:"B",name:"base32upper",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZ234567",bitsPerChar:5}),Ro=z({prefix:"c",name:"base32pad",alphabet:"abcdefghijklmnopqrstuvwxyz234567=",bitsPerChar:5}),Vo=z({prefix:"C",name:"base32padupper",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZ234567=",bitsPerChar:5}),jo=z({prefix:"v",name:"base32hex",alphabet:"0123456789abcdefghijklmnopqrstuv",bitsPerChar:5}),Ho=z({prefix:"V",name:"base32hexupper",alphabet:"0123456789ABCDEFGHIJKLMNOPQRSTUV",bitsPerChar:5}),Mo=z({prefix:"t",name:"base32hexpad",alphabet:"0123456789abcdefghijklmnopqrstuv=",bitsPerChar:5}),qo=z({prefix:"T",name:"base32hexpadupper",alphabet:"0123456789ABCDEFGHIJKLMNOPQRSTUV=",bitsPerChar:5}),Go=z({prefix:"h",name:"base32z",alphabet:"ybndrfg8ejkmcpqxot1uwisza345h769",bitsPerChar:5});var Nr=(r,e)=>{let{bytes:t,version:n}=r;switch(n){case 0:return Wo(t,Ee(r),e||X.encoder);default:return $o(t,Ee(r),e||Tt.encoder)}};var Ir=new WeakMap,Ee=r=>{let e=Ir.get(r);if(e==null){let t=new Map;return Ir.set(r,t),t}return e},k=class{constructor(e,t,n,i){this.code=t,this.version=e,this.multihash=n,this.bytes=i,this["/"]=i}get asCID(){return this}get byteOffset(){return this.bytes.byteOffset}get byteLength(){return this.bytes.byteLength}toV0(){switch(this.version){case 0:return this;case 1:{let{code:e,multihash:t}=this;if(e!==Nt)throw new Error("Cannot convert a non dag-pb CID to CIDv0");if(t.code!==Ko)throw new Error("Cannot convert non sha2-256 multihash CID to CIDv0");return k.createV0(t)}default:throw Error(`Can not convert CID version ${this.version} to version 0. This is a bug please report`)}}toV1(){switch(this.version){case 0:{let{code:e,digest:t}=this.multihash,n=lt(e,t);return k.createV1(this.code,n)}case 1:return this;default:throw Error(`Can not convert CID version ${this.version} to version 1. This is a bug please report`)}}equals(e){return k.equals(this,e)}static equals(e,t){let n=t;return n&&e.code===n.code&&e.version===n.version&&kr(e.multihash,n.multihash)}toString(e){return Nr(this,e)}toJSON(){return{"/":Nr(this)}}link(){return this}get[Symbol.toStringTag](){return"CID"}[Symbol.for("nodejs.util.inspect.custom")](){return`CID(${this.toString()})`}static asCID(e){if(e==null)return null;let t=e;if(t instanceof k)return t;if(t["/"]!=null&&t["/"]===t.bytes||t.asCID===t){let{version:n,code:i,multihash:o,bytes:s}=t;return new k(n,i,o,s||Cr(n,i,o.bytes))}else if(t[Jo]===!0){let{version:n,multihash:i,code:o}=t,s=Dr(i);return k.create(n,o,s)}else return null}static create(e,t,n){if(typeof t!="number")throw new Error("String codecs are no longer supported");if(!(n.bytes instanceof Uint8Array))throw new Error("Invalid digest");switch(e){case 0:{if(t!==Nt)throw new Error(`Version 0 CID must use dag-pb (code: ${Nt}) block encoding`);return new k(e,t,n,n.bytes)}case 1:{let i=Cr(e,t,n.bytes);return new k(e,t,n,i)}default:throw new Error("Invalid version")}}static createV0(e){return k.create(0,Nt,e)}static createV1(e,t){return k.create(1,e,t)}static decode(e){let[t,n]=k.decodeFirst(e);if(n.length)throw new Error("Incorrect length");return t}static decodeFirst(e){let t=k.inspectBytes(e),n=t.size-t.multihashSize,i=M(e.subarray(n,n+t.multihashSize));if(i.byteLength!==t.multihashSize)throw new Error("Incorrect length");let o=i.subarray(t.multihashSize-t.digestSize),s=new xt(t.multihashCode,t.digestSize,o,i);return[t.version===0?k.createV0(s):k.createV1(t.codec,s),e.subarray(t.size)]}static inspectBytes(e){let t=0,n=()=>{let[y,T]=Ot(e.subarray(t));return t+=T,y},i=n(),o=Nt;if(i===18?(i=0,t=0):o=n(),i!==0&&i!==1)throw new RangeError(`Invalid CID version ${i}`);let s=t,f=n(),c=n(),l=t+c,u=l-s;return{version:i,codec:o,multihashCode:f,digestSize:c,multihashSize:u,size:l}}static parse(e,t){let[n,i]=Yo(e,t),o=k.decode(i);if(o.version===0&&e[0]!=="Q")throw Error("Version 0 CID string must not include multibase prefix");return Ee(o).set(n,e),o}},Yo=(r,e)=>{switch(r[0]){case"Q":{let t=e||X;return[X.prefix,t.decode(`${X.prefix}${r}`)]}case X.prefix:{let t=e||X;return[X.prefix,t.decode(r)]}case Tt.prefix:{let t=e||Tt;return[Tt.prefix,t.decode(r)]}default:{if(e==null)throw Error("To parse non base32 or base58btc encoded CID multibase decoder must be provided");return[r[0],e.decode(r)]}}},Wo=(r,e,t)=>{let{prefix:n}=t;if(n!==X.prefix)throw Error(`Cannot string encode V0 in ${t.name} encoding`);let i=e.get(n);if(i==null){let o=t.encode(r).slice(1);return e.set(n,o),o}else return i},$o=(r,e,t)=>{let{prefix:n}=t,i=e.get(n);if(i==null){let o=t.encode(r);return e.set(n,o),o}else return i},Nt=112,Ko=18,Cr=(r,e,t)=>{let n=At(r),i=n+At(e),o=new Uint8Array(i+t.byteLength);return _t(r,o,0),_t(e,o,n),o.set(t,i),o},Jo=Symbol.for("@ipld/js-cid/CID");var Xt=Z(Rr(),1);function Zo(r){let e=new Array(4);for(let t=0;t<4;t++)e[t]=r&255,r=r>>8;return new Uint8Array(e)}var ca=ht({name:"murmur3-32",code:35,encode:r=>Zo(Xt.default.x86.hash32(r))}),Vr=ht({name:"murmur3-128",code:34,encode:r=>wt.fromHex(Xt.default.x64.hash128(r))}),fa=ht({name:"murmur3-x64-64",code:34,encode:r=>wt.fromHex(Xt.default.x64.hash128(r)).subarray(0,8)});async function Xo(r){return(await Vr.encode(r)).slice(0,8).reverse()}var Qo={chunker:"fixed",strategy:"balanced",rawLeaves:!1,onlyHash:!1,reduceSingleLeafToSelf:!0,hasher:St,leafType:"file",cidVersion:0,progress:()=>()=>{},shardSplitThreshold:1e3,fileImportConcurrency:50,blockWriteConcurrency:10,minChunkSize:262144,maxChunkSize:262144,avgChunkSize:262144,window:16,polynomial:0x3df305dfb2a804,maxChildrenPerNode:174,layerRepeat:4,wrapWithDirectory:!1,recursive:!1,hidden:!1,timeout:void 0,hamtHashFn:Xo,hamtHashCode:34,hamtBucketBits:8},jr=(r={})=>Sr.bind({ignoreUndefined:!0})(Qo,r);var ne=Z(vt(),1);var et=Z(jn(),1),Dt=et.default.Reader,Ue=et.default.Writer,S=et.default.util,P=et.default.roots["ipfs-unixfs"]||(et.default.roots["ipfs-unixfs"]={}),Hn=P.Data=(()=>{function r(e){if(this.blocksizes=[],e)for(var t=Object.keys(e),n=0;n<t.length;++n)e[t[n]]!=null&&(this[t[n]]=e[t[n]])}return r.prototype.Type=0,r.prototype.Data=S.newBuffer([]),r.prototype.filesize=S.Long?S.Long.fromBits(0,0,!0):0,r.prototype.blocksizes=S.emptyArray,r.prototype.hashType=S.Long?S.Long.fromBits(0,0,!0):0,r.prototype.fanout=S.Long?S.Long.fromBits(0,0,!0):0,r.prototype.mode=0,r.prototype.mtime=null,r.encode=function(t,n){if(n||(n=Ue.create()),n.uint32(8).int32(t.Type),t.Data!=null&&Object.hasOwnProperty.call(t,"Data")&&n.uint32(18).bytes(t.Data),t.filesize!=null&&Object.hasOwnProperty.call(t,"filesize")&&n.uint32(24).uint64(t.filesize),t.blocksizes!=null&&t.blocksizes.length)for(var i=0;i<t.blocksizes.length;++i)n.uint32(32).uint64(t.blocksizes[i]);return t.hashType!=null&&Object.hasOwnProperty.call(t,"hashType")&&n.uint32(40).uint64(t.hashType),t.fanout!=null&&Object.hasOwnProperty.call(t,"fanout")&&n.uint32(48).uint64(t.fanout),t.mode!=null&&Object.hasOwnProperty.call(t,"mode")&&n.uint32(56).uint32(t.mode),t.mtime!=null&&Object.hasOwnProperty.call(t,"mtime")&&P.UnixTime.encode(t.mtime,n.uint32(66).fork()).ldelim(),n},r.decode=function(t,n){t instanceof Dt||(t=Dt.create(t));for(var i=n===void 0?t.len:t.pos+n,o=new P.Data;t.pos<i;){var s=t.uint32();switch(s>>>3){case 1:o.Type=t.int32();break;case 2:o.Data=t.bytes();break;case 3:o.filesize=t.uint64();break;case 4:if(o.blocksizes&&o.blocksizes.length||(o.blocksizes=[]),(s&7)===2)for(var f=t.uint32()+t.pos;t.pos<f;)o.blocksizes.push(t.uint64());else o.blocksizes.push(t.uint64());break;case 5:o.hashType=t.uint64();break;case 6:o.fanout=t.uint64();break;case 7:o.mode=t.uint32();break;case 8:o.mtime=P.UnixTime.decode(t,t.uint32());break;default:t.skipType(s&7);break}}if(!o.hasOwnProperty("Type"))throw S.ProtocolError("missing required 'Type'",{instance:o});return o},r.fromObject=function(t){if(t instanceof P.Data)return t;var n=new P.Data;switch(t.Type){case"Raw":case 0:n.Type=0;break;case"Directory":case 1:n.Type=1;break;case"File":case 2:n.Type=2;break;case"Metadata":case 3:n.Type=3;break;case"Symlink":case 4:n.Type=4;break;case"HAMTShard":case 5:n.Type=5;break}if(t.Data!=null&&(typeof t.Data=="string"?S.base64.decode(t.Data,n.Data=S.newBuffer(S.base64.length(t.Data)),0):t.Data.length&&(n.Data=t.Data)),t.filesize!=null&&(S.Long?(n.filesize=S.Long.fromValue(t.filesize)).unsigned=!0:typeof t.filesize=="string"?n.filesize=parseInt(t.filesize,10):typeof t.filesize=="number"?n.filesize=t.filesize:typeof t.filesize=="object"&&(n.filesize=new S.LongBits(t.filesize.low>>>0,t.filesize.high>>>0).toNumber(!0))),t.blocksizes){if(!Array.isArray(t.blocksizes))throw TypeError(".Data.blocksizes: array expected");n.blocksizes=[];for(var i=0;i<t.blocksizes.length;++i)S.Long?(n.blocksizes[i]=S.Long.fromValue(t.blocksizes[i])).unsigned=!0:typeof t.blocksizes[i]=="string"?n.blocksizes[i]=parseInt(t.blocksizes[i],10):typeof t.blocksizes[i]=="number"?n.blocksizes[i]=t.blocksizes[i]:typeof t.blocksizes[i]=="object"&&(n.blocksizes[i]=new S.LongBits(t.blocksizes[i].low>>>0,t.blocksizes[i].high>>>0).toNumber(!0))}if(t.hashType!=null&&(S.Long?(n.hashType=S.Long.fromValue(t.hashType)).unsigned=!0:typeof t.hashType=="string"?n.hashType=parseInt(t.hashType,10):typeof t.hashType=="number"?n.hashType=t.hashType:typeof t.hashType=="object"&&(n.hashType=new S.LongBits(t.hashType.low>>>0,t.hashType.high>>>0).toNumber(!0))),t.fanout!=null&&(S.Long?(n.fanout=S.Long.fromValue(t.fanout)).unsigned=!0:typeof t.fanout=="string"?n.fanout=parseInt(t.fanout,10):typeof t.fanout=="number"?n.fanout=t.fanout:typeof t.fanout=="object"&&(n.fanout=new S.LongBits(t.fanout.low>>>0,t.fanout.high>>>0).toNumber(!0))),t.mode!=null&&(n.mode=t.mode>>>0),t.mtime!=null){if(typeof t.mtime!="object")throw TypeError(".Data.mtime: object expected");n.mtime=P.UnixTime.fromObject(t.mtime)}return n},r.toObject=function(t,n){n||(n={});var i={};if((n.arrays||n.defaults)&&(i.blocksizes=[]),n.defaults){if(i.Type=n.enums===String?"Raw":0,n.bytes===String?i.Data="":(i.Data=[],n.bytes!==Array&&(i.Data=S.newBuffer(i.Data))),S.Long){var o=new S.Long(0,0,!0);i.filesize=n.longs===String?o.toString():n.longs===Number?o.toNumber():o}else i.filesize=n.longs===String?"0":0;if(S.Long){var o=new S.Long(0,0,!0);i.hashType=n.longs===String?o.toString():n.longs===Number?o.toNumber():o}else i.hashType=n.longs===String?"0":0;if(S.Long){var o=new S.Long(0,0,!0);i.fanout=n.longs===String?o.toString():n.longs===Number?o.toNumber():o}else i.fanout=n.longs===String?"0":0;i.mode=0,i.mtime=null}if(t.Type!=null&&t.hasOwnProperty("Type")&&(i.Type=n.enums===String?P.Data.DataType[t.Type]:t.Type),t.Data!=null&&t.hasOwnProperty("Data")&&(i.Data=n.bytes===String?S.base64.encode(t.Data,0,t.Data.length):n.bytes===Array?Array.prototype.slice.call(t.Data):t.Data),t.filesize!=null&&t.hasOwnProperty("filesize")&&(typeof t.filesize=="number"?i.filesize=n.longs===String?String(t.filesize):t.filesize:i.filesize=n.longs===String?S.Long.prototype.toString.call(t.filesize):n.longs===Number?new S.LongBits(t.filesize.low>>>0,t.filesize.high>>>0).toNumber(!0):t.filesize),t.blocksizes&&t.blocksizes.length){i.blocksizes=[];for(var s=0;s<t.blocksizes.length;++s)typeof t.blocksizes[s]=="number"?i.blocksizes[s]=n.longs===String?String(t.blocksizes[s]):t.blocksizes[s]:i.blocksizes[s]=n.longs===String?S.Long.prototype.toString.call(t.blocksizes[s]):n.longs===Number?new S.LongBits(t.blocksizes[s].low>>>0,t.blocksizes[s].high>>>0).toNumber(!0):t.blocksizes[s]}return t.hashType!=null&&t.hasOwnProperty("hashType")&&(typeof t.hashType=="number"?i.hashType=n.longs===String?String(t.hashType):t.hashType:i.hashType=n.longs===String?S.Long.prototype.toString.call(t.hashType):n.longs===Number?new S.LongBits(t.hashType.low>>>0,t.hashType.high>>>0).toNumber(!0):t.hashType),t.fanout!=null&&t.hasOwnProperty("fanout")&&(typeof t.fanout=="number"?i.fanout=n.longs===String?String(t.fanout):t.fanout:i.fanout=n.longs===String?S.Long.prototype.toString.call(t.fanout):n.longs===Number?new S.LongBits(t.fanout.low>>>0,t.fanout.high>>>0).toNumber(!0):t.fanout),t.mode!=null&&t.hasOwnProperty("mode")&&(i.mode=t.mode),t.mtime!=null&&t.hasOwnProperty("mtime")&&(i.mtime=P.UnixTime.toObject(t.mtime,n)),i},r.prototype.toJSON=function(){return this.constructor.toObject(this,et.default.util.toJSONOptions)},r.DataType=function(){let e={},t=Object.create(e);return t[e[0]="Raw"]=0,t[e[1]="Directory"]=1,t[e[2]="File"]=2,t[e[3]="Metadata"]=3,t[e[4]="Symlink"]=4,t[e[5]="HAMTShard"]=5,t}(),r})(),za=P.UnixTime=(()=>{function r(e){if(e)for(var t=Object.keys(e),n=0;n<t.length;++n)e[t[n]]!=null&&(this[t[n]]=e[t[n]])}return r.prototype.Seconds=S.Long?S.Long.fromBits(0,0,!1):0,r.prototype.FractionalNanoseconds=0,r.encode=function(t,n){return n||(n=Ue.create()),n.uint32(8).int64(t.Seconds),t.FractionalNanoseconds!=null&&Object.hasOwnProperty.call(t,"FractionalNanoseconds")&&n.uint32(21).fixed32(t.FractionalNanoseconds),n},r.decode=function(t,n){t instanceof Dt||(t=Dt.create(t));for(var i=n===void 0?t.len:t.pos+n,o=new P.UnixTime;t.pos<i;){var s=t.uint32();switch(s>>>3){case 1:o.Seconds=t.int64();break;case 2:o.FractionalNanoseconds=t.fixed32();break;default:t.skipType(s&7);break}}if(!o.hasOwnProperty("Seconds"))throw S.ProtocolError("missing required 'Seconds'",{instance:o});return o},r.fromObject=function(t){if(t instanceof P.UnixTime)return t;var n=new P.UnixTime;return t.Seconds!=null&&(S.Long?(n.Seconds=S.Long.fromValue(t.Seconds)).unsigned=!1:typeof t.Seconds=="string"?n.Seconds=parseInt(t.Seconds,10):typeof t.Seconds=="number"?n.Seconds=t.Seconds:typeof t.Seconds=="object"&&(n.Seconds=new S.LongBits(t.Seconds.low>>>0,t.Seconds.high>>>0).toNumber())),t.FractionalNanoseconds!=null&&(n.FractionalNanoseconds=t.FractionalNanoseconds>>>0),n},r.toObject=function(t,n){n||(n={});var i={};if(n.defaults){if(S.Long){var o=new S.Long(0,0,!1);i.Seconds=n.longs===String?o.toString():n.longs===Number?o.toNumber():o}else i.Seconds=n.longs===String?"0":0;i.FractionalNanoseconds=0}return t.Seconds!=null&&t.hasOwnProperty("Seconds")&&(typeof t.Seconds=="number"?i.Seconds=n.longs===String?String(t.Seconds):t.Seconds:i.Seconds=n.longs===String?S.Long.prototype.toString.call(t.Seconds):n.longs===Number?new S.LongBits(t.Seconds.low>>>0,t.Seconds.high>>>0).toNumber():t.Seconds),t.FractionalNanoseconds!=null&&t.hasOwnProperty("FractionalNanoseconds")&&(i.FractionalNanoseconds=t.FractionalNanoseconds),i},r.prototype.toJSON=function(){return this.constructor.toObject(this,et.default.util.toJSONOptions)},r})(),Na=P.Metadata=(()=>{function r(e){if(e)for(var t=Object.keys(e),n=0;n<t.length;++n)e[t[n]]!=null&&(this[t[n]]=e[t[n]])}return r.prototype.MimeType="",r.encode=function(t,n){return n||(n=Ue.create()),t.MimeType!=null&&Object.hasOwnProperty.call(t,"MimeType")&&n.uint32(10).string(t.MimeType),n},r.decode=function(t,n){t instanceof Dt||(t=Dt.create(t));for(var i=n===void 0?t.len:t.pos+n,o=new P.Metadata;t.pos<i;){var s=t.uint32();switch(s>>>3){case 1:o.MimeType=t.string();break;default:t.skipType(s&7);break}}return o},r.fromObject=function(t){if(t instanceof P.Metadata)return t;var n=new P.Metadata;return t.MimeType!=null&&(n.MimeType=String(t.MimeType)),n},r.toObject=function(t,n){n||(n={});var i={};return n.defaults&&(i.MimeType=""),t.MimeType!=null&&t.hasOwnProperty("MimeType")&&(i.MimeType=t.MimeType),i},r.prototype.toJSON=function(){return this.constructor.toObject(this,et.default.util.toJSONOptions)},r})();var rt=Hn,Mn=["raw","directory","file","metadata","symlink","hamt-sharded-directory"],ls=["directory","hamt-sharded-directory"],qn=parseInt("0644",8),Gn=parseInt("0755",8);function Re(r){if(r!=null)return typeof r=="number"?r&4095:(r=r.toString(),r.substring(0,1)==="0"?parseInt(r,8)&4095:parseInt(r,10)&4095)}function Yn(r){if(r==null)return;let e;if(r.secs!=null&&(e={secs:r.secs,nsecs:r.nsecs}),r.Seconds!=null&&(e={secs:r.Seconds,nsecs:r.FractionalNanoseconds}),Array.isArray(r)&&(e={secs:r[0],nsecs:r[1]}),r instanceof Date){let t=r.getTime(),n=Math.floor(t/1e3);e={secs:n,nsecs:(t-n*1e3)*1e3}}if(Object.prototype.hasOwnProperty.call(e,"secs")){if(e!=null&&e.nsecs!=null&&(e.nsecs<0||e.nsecs>999999999))throw(0,ne.default)(new Error("mtime-nsecs must be within the range [0,999999999]"),"ERR_INVALID_MTIME_NSECS");return e}}var R=class{static unmarshal(e){let t=rt.decode(e),n=rt.toObject(t,{defaults:!1,arrays:!0,longs:Number,objects:!1}),i=new R({type:Mn[n.Type],data:n.Data,blockSizes:n.blocksizes,mode:n.mode,mtime:n.mtime?{secs:n.mtime.Seconds,nsecs:n.mtime.FractionalNanoseconds}:void 0});return i._originalMode=n.mode||0,i}constructor(e={type:"file"}){let{type:t,data:n,blockSizes:i,hashType:o,fanout:s,mtime:f,mode:c}=e;if(t&&!Mn.includes(t))throw(0,ne.default)(new Error("Type: "+t+" is not valid"),"ERR_INVALID_TYPE");this.type=t||"file",this.data=n,this.hashType=o,this.fanout=s,this.blockSizes=i||[],this._originalMode=0,this.mode=Re(c),f&&(this.mtime=Yn(f),this.mtime&&!this.mtime.nsecs&&(this.mtime.nsecs=0))}set mode(e){this._mode=this.isDirectory()?Gn:qn;let t=Re(e);t!==void 0&&(this._mode=t)}get mode(){return this._mode}isDirectory(){return Boolean(this.type&&ls.includes(this.type))}addBlockSize(e){this.blockSizes.push(e)}removeBlockSize(e){this.blockSizes.splice(e,1)}fileSize(){if(this.isDirectory())return 0;let e=0;return this.blockSizes.forEach(t=>{e+=t}),this.data&&(e+=this.data.length),e}marshal(){let e;switch(this.type){case"raw":e=rt.DataType.Raw;break;case"directory":e=rt.DataType.Directory;break;case"file":e=rt.DataType.File;break;case"metadata":e=rt.DataType.Metadata;break;case"symlink":e=rt.DataType.Symlink;break;case"hamt-sharded-directory":e=rt.DataType.HAMTShard;break;default:throw(0,ne.default)(new Error("Type: "+e+" is not valid"),"ERR_INVALID_TYPE")}let t=this.data;(!this.data||!this.data.length)&&(t=void 0);let n;this.mode!=null&&(n=this._originalMode&4294963200|(Re(this.mode)||0),n===qn&&!this.isDirectory()&&(n=void 0),n===Gn&&this.isDirectory()&&(n=void 0));let i;if(this.mtime!=null){let s=Yn(this.mtime);s&&(i={Seconds:s.secs,FractionalNanoseconds:s.nsecs},i.FractionalNanoseconds===0&&delete i.FractionalNanoseconds)}let o={Type:e,Data:t,filesize:this.isDirectory()?void 0:this.fileSize(),blocksizes:this.blockSizes,hashType:this.hashType,fanout:this.fanout,mode:n,mtime:i};return rt.encode(o).finish()}};var ct={};U(ct,{code:()=>Ss,createLink:()=>ri,createNode:()=>ei,decode:()=>Es,encode:()=>Y,name:()=>xs,prepare:()=>G,validate:()=>He});var hs=new TextDecoder;function Ve(r,e){let t=0;for(let n=0;;n+=7){if(n>=64)throw new Error("protobuf: varint overflow");if(e>=r.length)throw new Error("protobuf: unexpected end of data");let i=r[e++];if(t+=n<28?(i&127)<<n:(i&127)*2**n,i<128)break}return[t,e]}function ie(r,e){let t;[t,e]=Ve(r,e);let n=e+t;if(t<0||n<0)throw new Error("protobuf: invalid length");if(n>r.length)throw new Error("protobuf: unexpected end of data");return[r.subarray(e,n),n]}function Wn(r,e){let t;return[t,e]=Ve(r,e),[t&7,t>>3,e]}function ds(r){let e={},t=r.length,n=0;for(;n<t;){let i,o;if([i,o,n]=Wn(r,n),o===1){if(e.Hash)throw new Error("protobuf: (PBLink) duplicate Hash section");if(i!==2)throw new Error(`protobuf: (PBLink) wrong wireType (${i}) for Hash`);if(e.Name!==void 0)throw new Error("protobuf: (PBLink) invalid order, found Name before Hash");if(e.Tsize!==void 0)throw new Error("protobuf: (PBLink) invalid order, found Tsize before Hash");[e.Hash,n]=ie(r,n)}else if(o===2){if(e.Name!==void 0)throw new Error("protobuf: (PBLink) duplicate Name section");if(i!==2)throw new Error(`protobuf: (PBLink) wrong wireType (${i}) for Name`);if(e.Tsize!==void 0)throw new Error("protobuf: (PBLink) invalid order, found Tsize before Name");let s;[s,n]=ie(r,n),e.Name=hs.decode(s)}else if(o===3){if(e.Tsize!==void 0)throw new Error("protobuf: (PBLink) duplicate Tsize section");if(i!==0)throw new Error(`protobuf: (PBLink) wrong wireType (${i}) for Tsize`);[e.Tsize,n]=Ve(r,n)}else throw new Error(`protobuf: (PBLink) invalid fieldNumber, expected 1, 2 or 3, got ${o}`)}if(n>t)throw new Error("protobuf: (PBLink) unexpected end of data");return e}function $n(r){let e=r.length,t=0,n,i=!1,o;for(;t<e;){let f,c;if([f,c,t]=Wn(r,t),f!==2)throw new Error(`protobuf: (PBNode) invalid wireType, expected 2, got ${f}`);if(c===1){if(o)throw new Error("protobuf: (PBNode) duplicate Data section");[o,t]=ie(r,t),n&&(i=!0)}else if(c===2){if(i)throw new Error("protobuf: (PBNode) duplicate Links section");n||(n=[]);let l;[l,t]=ie(r,t),n.push(ds(l))}else throw new Error(`protobuf: (PBNode) invalid fieldNumber, expected 1 or 2, got ${c}`)}if(t>e)throw new Error("protobuf: (PBNode) unexpected end of data");let s={};return o&&(s.Data=o),s.Links=n||[],s}var Jn=new TextEncoder,Kn=2**32,ps=2**31;function ys(r,e){let t=e.length;if(typeof r.Tsize=="number"){if(r.Tsize<0)throw new Error("Tsize cannot be negative");if(!Number.isSafeInteger(r.Tsize))throw new Error("Tsize too large for encoding");t=Rt(e,t,r.Tsize)-1,e[t]=24}if(typeof r.Name=="string"){let n=Jn.encode(r.Name);t-=n.length,e.set(n,t),t=Rt(e,t,n.length)-1,e[t]=18}return r.Hash&&(t-=r.Hash.length,e.set(r.Hash,t),t=Rt(e,t,r.Hash.length)-1,e[t]=10),e.length-t}function Zn(r){let e=ms(r),t=new Uint8Array(e),n=e;if(r.Data&&(n-=r.Data.length,t.set(r.Data,n),n=Rt(t,n,r.Data.length)-1,t[n]=10),r.Links)for(let i=r.Links.length-1;i>=0;i--){let o=ys(r.Links[i],t.subarray(0,n));n-=o,n=Rt(t,n,o)-1,t[n]=18}return t}function gs(r){let e=0;if(r.Hash){let t=r.Hash.length;e+=1+t+kt(t)}if(typeof r.Name=="string"){let t=Jn.encode(r.Name).length;e+=1+t+kt(t)}return typeof r.Tsize=="number"&&(e+=1+kt(r.Tsize)),e}function ms(r){let e=0;if(r.Data){let t=r.Data.length;e+=1+t+kt(t)}if(r.Links)for(let t of r.Links){let n=gs(t);e+=1+n+kt(n)}return e}function Rt(r,e,t){e-=kt(t);let n=e;for(;t>=ps;)r[e++]=t&127|128,t/=128;for(;t>=128;)r[e++]=t&127|128,t>>>=7;return r[e]=t,n}function kt(r){return r%2===0&&r++,Math.floor((bs(r)+6)/7)}function bs(r){let e=0;return r>=Kn&&(r=Math.floor(r/Kn),e=32),r>=1<<16&&(r>>>=16,e+=16),r>=1<<8&&(r>>>=8,e+=8),e+ws[r]}var ws=[0,1,2,2,3,3,3,3,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8];var _s=["Data","Links"],As=["Hash","Name","Tsize"],je=new TextEncoder;function Qn(r,e){if(r===e)return 0;let t=r.Name?je.encode(r.Name):[],n=e.Name?je.encode(e.Name):[],i=t.length,o=n.length;for(let s=0,f=Math.min(i,o);s<f;++s)if(t[s]!==n[s]){i=t[s],o=n[s];break}return i<o?-1:o<i?1:0}function Xn(r,e){return!Object.keys(r).some(t=>!e.includes(t))}function ti(r){if(typeof r.asCID=="object"){let t=k.asCID(r);if(!t)throw new TypeError("Invalid DAG-PB form");return{Hash:t}}if(typeof r!="object"||Array.isArray(r))throw new TypeError("Invalid DAG-PB form");let e={};if(r.Hash){let t=k.asCID(r.Hash);try{t||(typeof r.Hash=="string"?t=k.parse(r.Hash):r.Hash instanceof Uint8Array&&(t=k.decode(r.Hash)))}catch(n){throw new TypeError(`Invalid DAG-PB form: ${n.message}`)}t&&(e.Hash=t)}if(!e.Hash)throw new TypeError("Invalid DAG-PB form");return typeof r.Name=="string"&&(e.Name=r.Name),typeof r.Tsize=="number"&&(e.Tsize=r.Tsize),e}function G(r){if((r instanceof Uint8Array||typeof r=="string")&&(r={Data:r}),typeof r!="object"||Array.isArray(r))throw new TypeError("Invalid DAG-PB form");let e={};if(r.Data!==void 0)if(typeof r.Data=="string")e.Data=je.encode(r.Data);else if(r.Data instanceof Uint8Array)e.Data=r.Data;else throw new TypeError("Invalid DAG-PB form");if(r.Links!==void 0)if(Array.isArray(r.Links))e.Links=r.Links.map(ti),e.Links.sort(Qn);else throw new TypeError("Invalid DAG-PB form");else e.Links=[];return e}function He(r){if(!r||typeof r!="object"||Array.isArray(r)||r instanceof Uint8Array||r["/"]&&r["/"]===r.bytes)throw new TypeError("Invalid DAG-PB form");if(!Xn(r,_s))throw new TypeError("Invalid DAG-PB form (extraneous properties)");if(r.Data!==void 0&&!(r.Data instanceof Uint8Array))throw new TypeError("Invalid DAG-PB form (Data must be bytes)");if(!Array.isArray(r.Links))throw new TypeError("Invalid DAG-PB form (Links must be a list)");for(let e=0;e<r.Links.length;e++){let t=r.Links[e];if(!t||typeof t!="object"||Array.isArray(t)||t instanceof Uint8Array||t["/"]&&t["/"]===t.bytes)throw new TypeError("Invalid DAG-PB form (bad link)");if(!Xn(t,As))throw new TypeError("Invalid DAG-PB form (extraneous properties on link)");if(t.Hash===void 0)throw new TypeError("Invalid DAG-PB form (link must have a Hash)");if(t.Hash==null||!t.Hash["/"]||t.Hash["/"]!==t.Hash.bytes)throw new TypeError("Invalid DAG-PB form (link Hash must be a CID)");if(t.Name!==void 0&&typeof t.Name!="string")throw new TypeError("Invalid DAG-PB form (link Name must be a string)");if(t.Tsize!==void 0){if(typeof t.Tsize!="number"||t.Tsize%1!==0)throw new TypeError("Invalid DAG-PB form (link Tsize must be an integer)");if(t.Tsize<0)throw new TypeError("Invalid DAG-PB form (link Tsize cannot be negative)")}if(e>0&&Qn(t,r.Links[e-1])===-1)throw new TypeError("Invalid DAG-PB form (links must be sorted by Name bytes)")}}function ei(r,e=[]){return G({Data:r,Links:e})}function ri(r,e,t){return ti({Hash:t,Name:r,Tsize:e})}var xs="dag-pb",Ss=112;function Y(r){He(r);let e={};return r.Links&&(e.Links=r.Links.map(t=>{let n={};return t.Hash&&(n.Hash=t.Hash.bytes),t.Name!==void 0&&(n.Name=t.Name),t.Tsize!==void 0&&(n.Tsize=t.Tsize),n})),r.Data&&(e.Data=r.Data),Zn(e)}function Es(r){let e=$n(r),t={};return e.Data&&(t.Data=e.Data),e.Links&&(t.Links=e.Links.map(n=>{let i={};try{i.Hash=k.decode(n.Hash)}catch{}if(!i.Hash)throw new Error("Invalid Hash field found in link, expected CID");return n.Name!==void 0&&(i.Name=n.Name),n.Tsize!==void 0&&(i.Tsize=n.Tsize),i})),t}var Ts=async(r,e,t)=>{t.codec||(t.codec=ct),t.hasher||(t.hasher=St),t.cidVersion===void 0&&(t.cidVersion=1),t.codec===ct&&t.hasher!==St&&(t.cidVersion=1);let n=await t.hasher.digest(r),i=k.create(t.cidVersion,t.codec.code,n);return t.onlyHash||await e.put(i,r,{signal:t.signal}),i},J=Ts;var vs=async(r,e,t)=>{let n=new R({type:"directory",mtime:r.mtime,mode:r.mode}),i=Y(G({Data:n.marshal()})),o=await J(i,e,t),s=r.path;return{cid:o,path:s,unixfs:n,size:i.length}},ni=vs;var fi=Z(vt(),1);var Vt={};U(Vt,{code:()=>oe,decode:()=>ks,encode:()=>Ds,name:()=>Bs});var Bs="raw",oe=85,Ds=r=>M(r),ks=r=>M(r);async function Me(r){let e=[];for await(let t of r)e.push(t);return e}async function Ls(r,e){return e(await Me(r))}var ii=Ls;function Fs(r,e,t){return oi(r,e,t)}async function oi(r,e,t){let n=[];for await(let i of ut(r,t.maxChildrenPerNode))n.push(await e(i));return n.length>1?oi(n,e,t):n[0]}var si=Fs;async function Os(r,e,t){let n=new qe(t.layerRepeat),i=0,o=1,s=n;for await(let f of ut(r,t.maxChildrenPerNode))s.isFull()&&(s!==n&&n.addChild(await s.reduce(e)),i&&i%t.layerRepeat===0&&o++,s=new se(o,t.layerRepeat,i),i++),s.append(f);return s&&s!==n&&n.addChild(await s.reduce(e)),n.reduce(e)}var ai=Os,se=class{constructor(e,t,n=0){this.maxDepth=e,this.layerRepeat=t,this.currentDepth=1,this.iteration=n,this.root=this.node=this.parent={children:[],depth:this.currentDepth,maxDepth:e,maxChildren:(this.maxDepth-this.currentDepth)*this.layerRepeat}}isFull(){if(!this.root.data)return!1;if(this.currentDepth<this.maxDepth&&this.node.maxChildren)return this._addNextNodeToParent(this.node),!1;let e=this._findParent(this.node,this.currentDepth);return e?(this._addNextNodeToParent(e),!1):!0}_addNextNodeToParent(e){this.parent=e;let t={children:[],depth:e.depth+1,parent:e,maxDepth:this.maxDepth,maxChildren:Math.floor(e.children.length/this.layerRepeat)*this.layerRepeat};e.children.push(t),this.currentDepth=t.depth,this.node=t}append(e){this.node.data=e}reduce(e){return this._reduce(this.root,e)}async _reduce(e,t){let n=[];return e.children.length&&(n=await Promise.all(e.children.filter(i=>i.data).map(i=>this._reduce(i,t)))),t((e.data||[]).concat(n))}_findParent(e,t){let n=e.parent;if(!(!n||n.depth===0))return n.children.length===n.maxChildren||!n.maxChildren?this._findParent(n,t):n}},qe=class extends se{constructor(e){super(0,e),this.root.depth=0,this.currentDepth=1}addChild(e){this.root.children.push(e)}reduce(e){return e((this.root.data||[]).concat(this.root.children))}};async function*zs(r,e,t){for await(let n of r.content)yield async()=>{t.progress(n.length,r.path);let i,o={codec:ct,cidVersion:t.cidVersion,hasher:t.hasher,onlyHash:t.onlyHash};return t.rawLeaves?(o.codec=Vt,o.cidVersion=1):(i=new R({type:t.leafType,data:n}),n=Y({Data:i.marshal(),Links:[]})),{cid:await J(n,e,o),unixfs:i,size:n.length}}}var ci=zs;var Ns={flat:ii,balanced:si,trickle:ai};async function*Is(r,e,t){let n=-1,i,o;typeof t.bufferImporter=="function"?o=t.bufferImporter:o=ci;for await(let s of Lt(o(r,e,t),t.blockWriteConcurrency)){if(n++,n===0){i=s;continue}else n===1&&i&&(yield i,i=null);yield s}i&&(i.single=!0,yield i)}var Cs=(r,e,t)=>{async function n(i){if(i.length===1&&i[0].single&&t.reduceSingleLeafToSelf){let u=i[0];if(r.mtime!==void 0||r.mode!==void 0){let y=await e.get(u.cid);u.unixfs=new R({type:"file",mtime:r.mtime,mode:r.mode,data:y}),y=Y(G({Data:u.unixfs.marshal()})),u.cid=await J(y,e,{...t,codec:ct,hasher:t.hasher,cidVersion:t.cidVersion}),u.size=y.length}return{cid:u.cid,path:r.path,unixfs:u.unixfs,size:u.size}}let o=new R({type:"file",mtime:r.mtime,mode:r.mode}),s=i.filter(u=>u.cid.code===oe&&u.size||u.unixfs&&!u.unixfs.data&&u.unixfs.fileSize()?!0:Boolean(u.unixfs&&u.unixfs.data&&u.unixfs.data.length)).map(u=>u.cid.code===oe?(o.addBlockSize(u.size),{Name:"",Tsize:u.size,Hash:u.cid}):(!u.unixfs||!u.unixfs.data?o.addBlockSize(u.unixfs&&u.unixfs.fileSize()||0):o.addBlockSize(u.unixfs.data.length),{Name:"",Tsize:u.size,Hash:u.cid})),f={Data:o.marshal(),Links:s},c=Y(G(f));return{cid:await J(c,e,t),path:r.path,unixfs:o,size:c.length+f.Links.reduce((u,y)=>u+y.Tsize,0)}}return n};function Ps(r,e,t){let n=Ns[t.strategy];if(!n)throw(0,fi.default)(new Error(`Unknown importer build strategy name: ${t.strategy}`),"ERR_BAD_STRATEGY");return n(Is(r,e,t),Cs(r,e,t),t)}var ui=Ps;var cr=Z(vt(),1);function yt(r){return globalThis.Buffer!=null?new Uint8Array(r.buffer,r.byteOffset,r.byteLength):r}function nt(r=0){return globalThis.Buffer?.alloc!=null?yt(globalThis.Buffer.alloc(r)):new Uint8Array(r)}function gt(r=0){return globalThis.Buffer?.allocUnsafe!=null?yt(globalThis.Buffer.allocUnsafe(r)):new Uint8Array(r)}function jt(r,e){e==null&&(e=r.reduce((i,o)=>i+o.length,0));let t=gt(e),n=0;for(let i of r)t.set(i,n),n+=i.length;return yt(t)}function li(r,e){if(r===e)return!0;if(r.byteLength!==e.byteLength)return!1;for(let t=0;t<r.byteLength;t++)if(r[t]!==e[t])return!1;return!0}var di=Symbol.for("@achingbrain/uint8arraylist");function hi(r,e){if(e==null||e<0)throw new RangeError("index is out of bounds");let t=0;for(let n of r){let i=t+n.byteLength;if(e<i)return{buf:n,index:e-t};t=i}throw new RangeError("index is out of bounds")}function ae(r){return Boolean(r?.[di])}var W=class{constructor(...e){Object.defineProperty(this,di,{value:!0}),this.bufs=[],this.length=0,e.length>0&&this.appendAll(e)}*[Symbol.iterator](){yield*this.bufs}get byteLength(){return this.length}append(...e){this.appendAll(e)}appendAll(e){let t=0;for(let n of e)if(n instanceof Uint8Array)t+=n.byteLength,this.bufs.push(n);else if(ae(n))t+=n.byteLength,this.bufs.push(...n.bufs);else throw new Error("Could not append value, must be an Uint8Array or a Uint8ArrayList");this.length+=t}prepend(...e){this.prependAll(e)}prependAll(e){let t=0;for(let n of e.reverse())if(n instanceof Uint8Array)t+=n.byteLength,this.bufs.unshift(n);else if(ae(n))t+=n.byteLength,this.bufs.unshift(...n.bufs);else throw new Error("Could not prepend value, must be an Uint8Array or a Uint8ArrayList");this.length+=t}get(e){let t=hi(this.bufs,e);return t.buf[t.index]}set(e,t){let n=hi(this.bufs,e);n.buf[n.index]=t}write(e,t=0){if(e instanceof Uint8Array)for(let n=0;n<e.length;n++)this.set(t+n,e[n]);else if(ae(e))for(let n=0;n<e.length;n++)this.set(t+n,e.get(n));else throw new Error("Could not write value, must be an Uint8Array or a Uint8ArrayList")}consume(e){if(e=Math.trunc(e),!(Number.isNaN(e)||e<=0)){if(e===this.byteLength){this.bufs=[],this.length=0;return}for(;this.bufs.length>0;)if(e>=this.bufs[0].byteLength)e-=this.bufs[0].byteLength,this.length-=this.bufs[0].byteLength,this.bufs.shift();else{this.bufs[0]=this.bufs[0].subarray(e),this.length-=e;break}}}slice(e,t){let{bufs:n,length:i}=this._subList(e,t);return jt(n,i)}subarray(e,t){let{bufs:n,length:i}=this._subList(e,t);return n.length===1?n[0]:jt(n,i)}sublist(e,t){let{bufs:n,length:i}=this._subList(e,t),o=new W;return o.length=i,o.bufs=n,o}_subList(e,t){if(e=e??0,t=t??this.length,e<0&&(e=this.length+e),t<0&&(t=this.length+t),e<0||t>this.length)throw new RangeError("index is out of bounds");if(e===t)return{bufs:[],length:0};if(e===0&&t===this.length)return{bufs:[...this.bufs],length:this.length};let n=[],i=0;for(let o=0;o<this.bufs.length;o++){let s=this.bufs[o],f=i,c=f+s.byteLength;if(i=c,e>=c)continue;let l=e>=f&&e<c,u=t>f&&t<=c;if(l&&u){if(e===f&&t===c){n.push(s);break}let y=e-f;n.push(s.subarray(y,y+(t-e)));break}if(l){if(e===0){n.push(s);continue}n.push(s.subarray(e-f));continue}if(u){if(t===c){n.push(s);break}n.push(s.subarray(0,t-f));break}n.push(s)}return{bufs:n,length:t-e}}indexOf(e,t=0){if(!ae(e)&&!(e instanceof Uint8Array))throw new TypeError('The "value" argument must be a Uint8ArrayList or Uint8Array');let n=e instanceof Uint8Array?e:e.subarray();if(t=Number(t??0),isNaN(t)&&(t=0),t<0&&(t=this.length+t),t<0&&(t=0),e.length===0)return t>this.length?this.length:t;let i=n.byteLength;if(i===0)throw new TypeError("search must be at least 1 byte long");let o=256,s=new Int32Array(o);for(let y=0;y<o;y++)s[y]=-1;for(let y=0;y<i;y++)s[n[y]]=y;let f=s,c=this.byteLength-n.byteLength,l=n.byteLength-1,u;for(let y=t;y<=c;y+=u){u=0;for(let T=l;T>=0;T--){let a=this.get(y+T);if(n[T]!==a){u=Math.max(1,T-f[a]);break}}if(u===0)return y}return-1}getInt8(e){let t=this.subarray(e,e+1);return new DataView(t.buffer,t.byteOffset,t.byteLength).getInt8(0)}setInt8(e,t){let n=gt(1);new DataView(n.buffer,n.byteOffset,n.byteLength).setInt8(0,t),this.write(n,e)}getInt16(e,t){let n=this.subarray(e,e+2);return new DataView(n.buffer,n.byteOffset,n.byteLength).getInt16(0,t)}setInt16(e,t,n){let i=nt(2);new DataView(i.buffer,i.byteOffset,i.byteLength).setInt16(0,t,n),this.write(i,e)}getInt32(e,t){let n=this.subarray(e,e+4);return new DataView(n.buffer,n.byteOffset,n.byteLength).getInt32(0,t)}setInt32(e,t,n){let i=nt(4);new DataView(i.buffer,i.byteOffset,i.byteLength).setInt32(0,t,n),this.write(i,e)}getBigInt64(e,t){let n=this.subarray(e,e+8);return new DataView(n.buffer,n.byteOffset,n.byteLength).getBigInt64(0,t)}setBigInt64(e,t,n){let i=nt(8);new DataView(i.buffer,i.byteOffset,i.byteLength).setBigInt64(0,t,n),this.write(i,e)}getUint8(e){let t=this.subarray(e,e+1);return new DataView(t.buffer,t.byteOffset,t.byteLength).getUint8(0)}setUint8(e,t){let n=gt(1);new DataView(n.buffer,n.byteOffset,n.byteLength).setUint8(0,t),this.write(n,e)}getUint16(e,t){let n=this.subarray(e,e+2);return new DataView(n.buffer,n.byteOffset,n.byteLength).getUint16(0,t)}setUint16(e,t,n){let i=nt(2);new DataView(i.buffer,i.byteOffset,i.byteLength).setUint16(0,t,n),this.write(i,e)}getUint32(e,t){let n=this.subarray(e,e+4);return new DataView(n.buffer,n.byteOffset,n.byteLength).getUint32(0,t)}setUint32(e,t,n){let i=nt(4);new DataView(i.buffer,i.byteOffset,i.byteLength).setUint32(0,t,n),this.write(i,e)}getBigUint64(e,t){let n=this.subarray(e,e+8);return new DataView(n.buffer,n.byteOffset,n.byteLength).getBigUint64(0,t)}setBigUint64(e,t,n){let i=nt(8);new DataView(i.buffer,i.byteOffset,i.byteLength).setBigUint64(0,t,n),this.write(i,e)}getFloat32(e,t){let n=this.subarray(e,e+4);return new DataView(n.buffer,n.byteOffset,n.byteLength).getFloat32(0,t)}setFloat32(e,t,n){let i=nt(4);new DataView(i.buffer,i.byteOffset,i.byteLength).setFloat32(0,t,n),this.write(i,e)}getFloat64(e,t){let n=this.subarray(e,e+8);return new DataView(n.buffer,n.byteOffset,n.byteLength).getFloat64(0,t)}setFloat64(e,t,n){let i=nt(8);new DataView(i.buffer,i.byteOffset,i.byteLength).setFloat64(0,t,n),this.write(i,e)}equals(e){if(e==null||!(e instanceof W)||e.bufs.length!==this.bufs.length)return!1;for(let t=0;t<this.bufs.length;t++)if(!li(this.bufs[t],e.bufs[t]))return!1;return!0}static fromUint8Arrays(e,t){let n=new W;return n.bufs=e,t==null&&(t=e.reduce((i,o)=>i+o.byteLength,0)),n.length=t,n}};var Bi=Z(vi(),1),Ke=Z(vt(),1);async function*Ms(r,e){let t,n,i;if(e.minChunkSize&&e.maxChunkSize&&e.avgChunkSize)i=e.avgChunkSize,t=e.minChunkSize,n=e.maxChunkSize;else if(e.avgChunkSize)i=e.avgChunkSize,t=i/3,n=i+i/2;else throw(0,Ke.default)(new Error("please specify an average chunk size"),"ERR_INVALID_AVG_CHUNK_SIZE");if(t<16)throw(0,Ke.default)(new Error("rabin min must be greater than 16"),"ERR_INVALID_MIN_CHUNK_SIZE");n<t&&(n=t),i<t&&(i=t);let o=Math.floor(Math.log2(i));for await(let s of qs(r,{min:t,max:n,bits:o,window:e.window,polynomial:e.polynomial}))yield s}var Di=Ms;async function*qs(r,e){let t=await(0,Bi.create)(e.bits,e.min,e.max,e.window),n=new W;for await(let i of r){n.append(i);let o=t.fingerprint(i);for(let s=0;s<o.length;s++){let f=o[s],c=n.slice(0,f);n.consume(f),yield c}}n.length&&(yield n.subarray(0))}async function*Gs(r,e){let t=new W,n=0,i=!1,o=e.maxChunkSize;for await(let s of r)for(t.append(s),n+=s.length;n>=o;)if(yield t.slice(0,o),i=!0,o===t.length)t=new W,n=0;else{let f=new W;f.append(t.sublist(o)),t=f,n-=o}(!i||n)&&(yield t.subarray(0,n))}var ki=Gs;var ar=Z(vt(),1);var Je={};U(Je,{identity:()=>Ys});var Ys=Et({prefix:"\0",name:"identity",encode:r=>pe(r),decode:r=>de(r)});var Ze={};U(Ze,{base2:()=>Ws});var Ws=z({prefix:"0",name:"base2",alphabet:"01",bitsPerChar:1});var Xe={};U(Xe,{base8:()=>$s});var $s=z({prefix:"7",name:"base8",alphabet:"01234567",bitsPerChar:3});var Qe={};U(Qe,{base10:()=>Ks});var Ks=it({prefix:"9",name:"base10",alphabet:"0123456789"});var tr={};U(tr,{base16:()=>Js,base16upper:()=>Zs});var Js=z({prefix:"f",name:"base16",alphabet:"0123456789abcdef",bitsPerChar:4}),Zs=z({prefix:"F",name:"base16upper",alphabet:"0123456789ABCDEF",bitsPerChar:4});var er={};U(er,{base36:()=>Xs,base36upper:()=>Qs});var Xs=it({prefix:"k",name:"base36",alphabet:"0123456789abcdefghijklmnopqrstuvwxyz"}),Qs=it({prefix:"K",name:"base36upper",alphabet:"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"});var rr={};U(rr,{base64:()=>t1,base64pad:()=>e1,base64url:()=>r1,base64urlpad:()=>n1});var t1=z({prefix:"m",name:"base64",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",bitsPerChar:6}),e1=z({prefix:"M",name:"base64pad",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",bitsPerChar:6}),r1=z({prefix:"u",name:"base64url",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_",bitsPerChar:6}),n1=z({prefix:"U",name:"base64urlpad",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_=",bitsPerChar:6});var nr={};U(nr,{base256emoji:()=>c1});var Li=Array.from("\u{1F680}\u{1FA90}\u2604\u{1F6F0}\u{1F30C}\u{1F311}\u{1F312}\u{1F313}\u{1F314}\u{1F315}\u{1F316}\u{1F317}\u{1F318}\u{1F30D}\u{1F30F}\u{1F30E}\u{1F409}\u2600\u{1F4BB}\u{1F5A5}\u{1F4BE}\u{1F4BF}\u{1F602}\u2764\u{1F60D}\u{1F923}\u{1F60A}\u{1F64F}\u{1F495}\u{1F62D}\u{1F618}\u{1F44D}\u{1F605}\u{1F44F}\u{1F601}\u{1F525}\u{1F970}\u{1F494}\u{1F496}\u{1F499}\u{1F622}\u{1F914}\u{1F606}\u{1F644}\u{1F4AA}\u{1F609}\u263A\u{1F44C}\u{1F917}\u{1F49C}\u{1F614}\u{1F60E}\u{1F607}\u{1F339}\u{1F926}\u{1F389}\u{1F49E}\u270C\u2728\u{1F937}\u{1F631}\u{1F60C}\u{1F338}\u{1F64C}\u{1F60B}\u{1F497}\u{1F49A}\u{1F60F}\u{1F49B}\u{1F642}\u{1F493}\u{1F929}\u{1F604}\u{1F600}\u{1F5A4}\u{1F603}\u{1F4AF}\u{1F648}\u{1F447}\u{1F3B6}\u{1F612}\u{1F92D}\u2763\u{1F61C}\u{1F48B}\u{1F440}\u{1F62A}\u{1F611}\u{1F4A5}\u{1F64B}\u{1F61E}\u{1F629}\u{1F621}\u{1F92A}\u{1F44A}\u{1F973}\u{1F625}\u{1F924}\u{1F449}\u{1F483}\u{1F633}\u270B\u{1F61A}\u{1F61D}\u{1F634}\u{1F31F}\u{1F62C}\u{1F643}\u{1F340}\u{1F337}\u{1F63B}\u{1F613}\u2B50\u2705\u{1F97A}\u{1F308}\u{1F608}\u{1F918}\u{1F4A6}\u2714\u{1F623}\u{1F3C3}\u{1F490}\u2639\u{1F38A}\u{1F498}\u{1F620}\u261D\u{1F615}\u{1F33A}\u{1F382}\u{1F33B}\u{1F610}\u{1F595}\u{1F49D}\u{1F64A}\u{1F639}\u{1F5E3}\u{1F4AB}\u{1F480}\u{1F451}\u{1F3B5}\u{1F91E}\u{1F61B}\u{1F534}\u{1F624}\u{1F33C}\u{1F62B}\u26BD\u{1F919}\u2615\u{1F3C6}\u{1F92B}\u{1F448}\u{1F62E}\u{1F646}\u{1F37B}\u{1F343}\u{1F436}\u{1F481}\u{1F632}\u{1F33F}\u{1F9E1}\u{1F381}\u26A1\u{1F31E}\u{1F388}\u274C\u270A\u{1F44B}\u{1F630}\u{1F928}\u{1F636}\u{1F91D}\u{1F6B6}\u{1F4B0}\u{1F353}\u{1F4A2}\u{1F91F}\u{1F641}\u{1F6A8}\u{1F4A8}\u{1F92C}\u2708\u{1F380}\u{1F37A}\u{1F913}\u{1F619}\u{1F49F}\u{1F331}\u{1F616}\u{1F476}\u{1F974}\u25B6\u27A1\u2753\u{1F48E}\u{1F4B8}\u2B07\u{1F628}\u{1F31A}\u{1F98B}\u{1F637}\u{1F57A}\u26A0\u{1F645}\u{1F61F}\u{1F635}\u{1F44E}\u{1F932}\u{1F920}\u{1F927}\u{1F4CC}\u{1F535}\u{1F485}\u{1F9D0}\u{1F43E}\u{1F352}\u{1F617}\u{1F911}\u{1F30A}\u{1F92F}\u{1F437}\u260E\u{1F4A7}\u{1F62F}\u{1F486}\u{1F446}\u{1F3A4}\u{1F647}\u{1F351}\u2744\u{1F334}\u{1F4A3}\u{1F438}\u{1F48C}\u{1F4CD}\u{1F940}\u{1F922}\u{1F445}\u{1F4A1}\u{1F4A9}\u{1F450}\u{1F4F8}\u{1F47B}\u{1F910}\u{1F92E}\u{1F3BC}\u{1F975}\u{1F6A9}\u{1F34E}\u{1F34A}\u{1F47C}\u{1F48D}\u{1F4E3}\u{1F942}"),i1=Li.reduce((r,e,t)=>(r[t]=e,r),[]),o1=Li.reduce((r,e,t)=>(r[e.codePointAt(0)]=t,r),[]);function s1(r){return r.reduce((e,t)=>(e+=i1[t],e),"")}function a1(r){let e=[];for(let t of r){let n=o1[t.codePointAt(0)];if(n===void 0)throw new Error(`Non-base256emoji character: ${t}`);e.push(n)}return new Uint8Array(e)}var c1=Et({prefix:"\u{1F680}",name:"base256emoji",encode:s1,decode:a1});var ir={};U(ir,{identity:()=>l1});var Fi=0,f1="identity",Oi=M,u1=r=>lt(Fi,Oi(r)),l1={code:Fi,name:f1,encode:Oi,digest:u1};var Y0=new TextEncoder,W0=new TextDecoder;var or={...Je,...Ze,...Xe,...Qe,...tr,...Se,...er,...xe,...rr,...nr},K0={...me,...ir};function Ni(r,e,t,n){return{name:r,prefix:e,encoder:{name:r,prefix:e,encode:t},decoder:{decode:n}}}var zi=Ni("utf8","u",r=>"u"+new TextDecoder("utf8").decode(r),r=>new TextEncoder().encode(r.substring(1))),sr=Ni("ascii","a",r=>{let e="a";for(let t=0;t<r.length;t++)e+=String.fromCharCode(r[t]);return e},r=>{r=r.substring(1);let e=gt(r.length);for(let t=0;t<r.length;t++)e[t]=r.charCodeAt(t);return e}),d1={utf8:zi,"utf-8":zi,hex:or.base16,latin1:sr,ascii:sr,binary:sr,...or},Ii=d1;function ce(r,e="utf8"){let t=Ii[e];if(t==null)throw new Error(`Unsupported encoding "${e}"`);return(e==="utf8"||e==="utf-8")&&globalThis.Buffer!=null&&globalThis.Buffer.from!=null?yt(globalThis.Buffer.from(r,"utf-8")):t.decoder.decode(`${t.prefix}${r}`)}async function*p1(r){for await(let e of r){if(e.length===void 0)throw(0,ar.default)(new Error("Content was invalid"),"ERR_INVALID_CONTENT");if(typeof e=="string"||e instanceof String)yield ce(e.toString());else if(Array.isArray(e))yield Uint8Array.from(e);else if(e instanceof Uint8Array)yield e;else throw(0,ar.default)(new Error("Content was invalid"),"ERR_INVALID_CONTENT")}}var Ci=p1;function y1(r){return Symbol.iterator in r}function g1(r){return Symbol.asyncIterator in r}function m1(r){try{if(r instanceof Uint8Array)return async function*(){yield r}();if(y1(r))return async function*(){yield*r}();if(g1(r))return r}catch{throw(0,cr.default)(new Error("Content was invalid"),"ERR_INVALID_CONTENT")}throw(0,cr.default)(new Error("Content was invalid"),"ERR_INVALID_CONTENT")}async function*b1(r,e,t){for await(let n of r)if(n.path&&(n.path.substring(0,2)==="./"&&(t.wrapWithDirectory=!0),n.path=n.path.split("/").filter(i=>i&&i!==".").join("/")),n.content){let i;typeof t.chunker=="function"?i=t.chunker:t.chunker==="rabin"?i=Di:i=ki;let o;typeof t.chunkValidator=="function"?o=t.chunkValidator:o=Ci;let s={path:n.path,mtime:n.mtime,mode:n.mode,content:i(o(m1(n.content),t),t)};yield()=>ui(s,e,t)}else if(n.path){let i={path:n.path,mtime:n.mtime,mode:n.mode};yield()=>ni(i,e,t)}else throw new Error("Import candidate must have content or path or both")}var Pi=b1;var fr=class{constructor(e,t){this.options=t||{},this.root=e.root,this.dir=e.dir,this.path=e.path,this.dirty=e.dirty,this.flat=e.flat,this.parent=e.parent,this.parentKey=e.parentKey,this.unixfs=e.unixfs,this.mode=e.mode,this.mtime=e.mtime,this.cid=void 0,this.size=void 0}async put(e,t){}get(e){return Promise.resolve(this)}async*eachChildSeries(){}async*flush(e){}},ft=fr;var ur=class extends ft{constructor(e,t){super(e,t),this._children={}}async put(e,t){this.cid=void 0,this.size=void 0,this._children[e]=t}get(e){return Promise.resolve(this._children[e])}childCount(){return Object.keys(this._children).length}directChildrenCount(){return this.childCount()}onlyChild(){return this._children[Object.keys(this._children)[0]]}async*eachChildSeries(){let e=Object.keys(this._children);for(let t=0;t<e.length;t++){let n=e[t];yield{key:n,child:this._children[n]}}}async*flush(e){let t=Object.keys(this._children),n=[];for(let l=0;l<t.length;l++){let u=this._children[t[l]];if(u instanceof ft)for await(let y of u.flush(e))u=y,yield u;u.size!=null&&u.cid&&n.push({Name:t[l],Tsize:u.size,Hash:u.cid})}let i=new R({type:"directory",mtime:this.mtime,mode:this.mode}),o={Data:i.marshal(),Links:n},s=Y(G(o)),f=await J(s,e,this.options),c=s.length+o.Links.reduce((l,u)=>l+(u.Tsize==null?0:u.Tsize),0);this.cid=f,this.size=c,yield{cid:f,unixfs:i,path:this.path,size:c}}},Gt=ur;var ji=Z(Vi(),1);var V=class{constructor(e,t,n=0){this._options=e,this._popCount=0,this._parent=t,this._posAtParent=n,this._children=new ji.default,this.key=null}async put(e,t){let n=await this._findNewBucketAndPos(e);await n.bucket._putAt(n,e,t)}async get(e){let t=await this._findChild(e);if(t!=null)return t.value}async del(e){let t=await this._findPlace(e),n=t.bucket._at(t.pos);n!=null&&n.key===e&&t.bucket._delAt(t.pos)}leafCount(){return this._children.compactArray().reduce((t,n)=>n instanceof V?t+n.leafCount():t+1,0)}childrenCount(){return this._children.length}onlyChild(){return this._children.get(0)}*eachLeafSeries(){let e=this._children.compactArray();for(let t of e)t instanceof V?yield*t.eachLeafSeries():yield t}serialize(e,t){let n=[];return t(this._children.reduce((i,o,s)=>(o!=null&&(o instanceof V?i.push(o.serialize(e,t)):i.push(e(o,s))),i),n))}async asyncTransform(e,t){return await Hi(this,e,t)}toJSON(){return this.serialize(S1,E1)}prettyPrint(){return JSON.stringify(this.toJSON(),null," ")}tableSize(){return Math.pow(2,this._options.bits)}async _findChild(e){let t=await this._findPlace(e),n=t.bucket._at(t.pos);if(!(n instanceof V)&&n!=null&&n.key===e)return n}async _findPlace(e){let t=this._options.hash(typeof e=="string"?ce(e):e),n=await t.take(this._options.bits),i=this._children.get(n);return i instanceof V?await i._findPlace(t):{bucket:this,pos:n,hash:t,existingChild:i}}async _findNewBucketAndPos(e){let t=await this._findPlace(e);if(t.existingChild!=null&&t.existingChild.key!==e){let n=new V(this._options,t.bucket,t.pos);t.bucket._putObjectAt(t.pos,n);let i=await n._findPlace(t.existingChild.hash);return i.bucket._putAt(i,t.existingChild.key,t.existingChild.value),await n._findNewBucketAndPos(t.hash)}return t}_putAt(e,t,n){this._putObjectAt(e.pos,{key:t,value:n,hash:e.hash})}_putObjectAt(e,t){this._children.get(e)==null&&this._popCount++,this._children.set(e,t)}_delAt(e){if(e===-1)throw new Error("Invalid position");this._children.get(e)!=null&&this._popCount--,this._children.unset(e),this._level()}_level(){if(this._parent!=null&&this._popCount<=1)if(this._popCount===1){let e=this._children.find(x1);if(e!=null&&!(e instanceof V)){let t=e.hash;t.untake(this._options.bits);let n={pos:this._posAtParent,hash:t,bucket:this._parent};this._parent._putAt(n,e.key,e.value)}}else this._parent._delAt(this._posAtParent)}_at(e){return this._children.get(e)}};function x1(r){return Boolean(r)}function S1(r,e){return r.key}function E1(r){return r}async function Hi(r,e,t){let n=[];for(let i of r._children.compactArray())if(i instanceof V)await Hi(i,e,t);else{let o=await e(i);n.push({bitField:r._children.bitField(),children:o})}return await t(n)}var T1=[255,254,252,248,240,224,192,128],v1=[1,3,7,15,31,63,127,255],fe=class{constructor(e){this._value=e,this._currentBytePos=e.length-1,this._currentBitPos=7}availableBits(){return this._currentBitPos+1+this._currentBytePos*8}totalBits(){return this._value.length*8}take(e){let t=e,n=0;for(;t>0&&this._haveBits();){let i=this._value[this._currentBytePos],o=this._currentBitPos+1,s=Math.min(o,t),f=B1(i,o-s,s);n=(n<<s)+f,t-=s,this._currentBitPos-=s,this._currentBitPos<0&&(this._currentBitPos=7,this._currentBytePos--)}return n}untake(e){for(this._currentBitPos+=e;this._currentBitPos>7;)this._currentBitPos-=8,this._currentBytePos+=1}_haveBits(){return this._currentBytePos>=0}};function B1(r,e,t){let n=D1(e,t);return(r&n)>>>e}function D1(r,e){return T1[r]&v1[Math.min(e+r-1,7)]}function Mi(r){function e(t){return t instanceof ue?t:new ue(t,r)}return e}var ue=class{constructor(e,t){if(!(e instanceof Uint8Array))throw new Error("can only hash Uint8Arrays");this._value=e,this._hashFn=t,this._depth=-1,this._availableBits=0,this._currentBufferIndex=0,this._buffers=[]}async take(e){let t=e;for(;this._availableBits<t;)await this._produceMoreBits();let n=0;for(;t>0;){let i=this._buffers[this._currentBufferIndex],o=Math.min(i.availableBits(),t),s=i.take(o);n=(n<<o)+s,t-=o,this._availableBits-=o,i.availableBits()===0&&this._currentBufferIndex++}return n}untake(e){let t=e;for(;t>0;){let n=this._buffers[this._currentBufferIndex],i=Math.min(n.totalBits()-n.availableBits(),t);n.untake(i),t-=i,this._availableBits+=i,this._currentBufferIndex>0&&n.totalBits()===n.availableBits()&&(this._depth--,this._currentBufferIndex--)}}async _produceMoreBits(){this._depth++;let e=this._depth>0?jt([this._value,Uint8Array.from([this._depth])]):this._value,t=await this._hashFn(e),n=new fe(t);this._buffers.push(n),this._availableBits+=n.availableBits()}};function qi(r){if(r==null||r.hashFn==null)throw new Error("please define an options.hashFn");let e={bits:r.bits??8,hash:Mi(r.hashFn)};return new V(e)}var lr=class extends ft{constructor(e,t){super(e,t),this._bucket=qi({hashFn:t.hamtHashFn,bits:t.hamtBucketBits})}async put(e,t){await this._bucket.put(e,t)}get(e){return this._bucket.get(e)}childCount(){return this._bucket.leafCount()}directChildrenCount(){return this._bucket.childrenCount()}onlyChild(){return this._bucket.onlyChild()}async*eachChildSeries(){for await(let{key:e,value:t}of this._bucket.eachLeafSeries())yield{key:e,child:t}}async*flush(e){for await(let t of Yi(this._bucket,e,this,this.options))yield{...t,path:this.path}}},Gi=lr;async function*Yi(r,e,t,n){let i=r._children,o=[],s=0;for(let a=0;a<i.length;a++){let h=i.get(a);if(!h)continue;let g=a.toString(16).toUpperCase().padStart(2,"0");if(h instanceof V){let L;for await(let p of await Yi(h,e,null,n))L=p;if(!L)throw new Error("Could not flush sharded directory, no subshard found");o.push({Name:g,Tsize:L.size,Hash:L.cid}),s+=L.size}else if(typeof h.value.flush=="function"){let L=h.value,p;for await(let w of L.flush(e))p=w,yield p;let m=g+h.key;o.push({Name:m,Tsize:p.size,Hash:p.cid}),s+=p.size}else{let L=h.value;if(!L.cid)continue;let p=g+h.key,m=L.size;o.push({Name:p,Tsize:m,Hash:L.cid}),s+=m}}let f=Uint8Array.from(i.bitField().reverse()),c=new R({type:"hamt-sharded-directory",data:f,fanout:r.tableSize(),hashType:n.hamtHashCode,mtime:t&&t.mtime,mode:t&&t.mode}),l={Data:c.marshal(),Links:o},u=Y(G(l)),y=await J(u,e,n),T=u.length+s;yield{cid:y,unixfs:c,size:T}}async function Wi(r,e,t,n){let i=e;e instanceof Gt&&e.directChildrenCount()>=t&&(i=await k1(e,n));let o=i.parent;if(o){if(i!==e){if(r&&(r.parent=i),!i.parentKey)throw new Error("No parent key found");await o.put(i.parentKey,i)}return Wi(i,o,t,n)}return i}async function k1(r,e){let t=new Gi({root:r.root,dir:!0,parent:r.parent,parentKey:r.parentKey,path:r.path,dirty:r.dirty,flat:!1,mtime:r.mtime,mode:r.mode},e);for await(let{key:n,child:i}of r.eachChildSeries())await t.put(n,i);return t}var $i=Wi;var L1=(r="")=>(r.trim().match(/([^\\/]|\\\/)+/g)||[]).filter(Boolean),Ki=L1;async function F1(r,e,t){let n=Ki(r.path||""),i=n.length-1,o=e,s="";for(let f=0;f<n.length;f++){let c=n[f];s+=`${s?"/":""}${c}`;let l=f===i;if(o.dirty=!0,o.cid=void 0,o.size=void 0,l)await o.put(c,r),e=await $i(null,o,t.shardSplitThreshold,t);else{let u=await o.get(c);(!u||!(u instanceof ft))&&(u=new Gt({root:!1,dir:!0,parent:o,parentKey:c,path:s,dirty:!0,flat:!0,mtime:u&&u.unixfs&&u.unixfs.mtime,mode:u&&u.unixfs&&u.unixfs.mode},t)),await o.put(c,u),o=u}}return e}async function*Ji(r,e){if(!(r instanceof ft)){r&&r.unixfs&&r.unixfs.isDirectory()&&(yield r);return}yield*r.flush(e)}async function*O1(r,e,t){let n=new Gt({root:!0,dir:!0,path:"",dirty:!0,flat:!0},t);for await(let i of r)i&&(n=await F1(i,n,t),(!i.unixfs||!i.unixfs.isDirectory())&&(yield i));if(t.wrapWithDirectory)yield*Ji(n,e);else for await(let i of n.eachChildSeries())i&&(yield*Ji(i.child,e))}var Zi=O1;async function*z1(r,e,t={}){let n=jr(t),i;typeof t.dagBuilder=="function"?i=t.dagBuilder:i=Pi;let o;typeof t.treeBuilder=="function"?o=t.treeBuilder:o=Zi;let s;Symbol.asyncIterator in r||Symbol.iterator in r?s=r:s=[r];for await(let f of o(Lt(i(s,e,n),n.fileImportConcurrency),e,n))yield{cid:f.cid,path:f.path,unixfs:f.unixfs,size:f.size}}return no(N1);})();
2
+ "use strict";var IpfsUnixfsImporter=(()=>{var ni=Object.create;var Ot=Object.defineProperty;var ii=Object.getOwnPropertyDescriptor;var oi=Object.getOwnPropertyNames;var si=Object.getPrototypeOf,ai=Object.prototype.hasOwnProperty;var z=(r,t)=>()=>(t||r((t={exports:{}}).exports,t),t.exports),C=(r,t)=>{for(var e in t)Ot(r,e,{get:t[e],enumerable:!0})},er=(r,t,e,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let i of oi(t))!ai.call(r,i)&&i!==e&&Ot(r,i,{get:()=>t[i],enumerable:!(n=ii(t,i))||n.enumerable});return r};var O=(r,t,e)=>(e=r!=null?ni(si(r)):{},er(t||!r||!r.__esModule?Ot(e,"default",{value:r,enumerable:!0}):e,r)),ci=r=>er(Ot({},"__esModule",{value:!0}),r);var xt=z((Bs,nr)=>{"use strict";function rr(r,t){for(let e in t)Object.defineProperty(r,e,{value:t[e],enumerable:!0,configurable:!0});return r}function fi(r,t,e){if(!r||typeof r=="string")throw new TypeError("Please pass an Error to err-code");e||(e={}),typeof t=="object"&&(e=t,t=""),t&&(e.code=t);try{return rr(r,e)}catch{e.message=r.message,e.stack=r.stack;let i=function(){};return i.prototype=Object.create(Object.getPrototypeOf(r)),rr(new i,e)}}nr.exports=fi});var or=z((As,ir)=>{"use strict";ir.exports=ui;function ui(r,t){for(var e=new Array(arguments.length-1),n=0,i=2,o=!0;i<arguments.length;)e[n++]=arguments[i++];return new Promise(function(f,c){e[n]=function(h){if(o)if(o=!1,h)c(h);else{for(var p=new Array(arguments.length-1),D=0;D<p.length;)p[D++]=arguments[D];f.apply(null,p)}};try{r.apply(t||null,e)}catch(u){o&&(o=!1,c(u))}})}});var fr=z(cr=>{"use strict";var Rt=cr;Rt.length=function(t){var e=t.length;if(!e)return 0;for(var n=0;--e%4>1&&t.charAt(e)==="=";)++n;return Math.ceil(t.length*3)/4-n};var ut=new Array(64),ar=new Array(123);for(R=0;R<64;)ar[ut[R]=R<26?R+65:R<52?R+71:R<62?R-4:R-59|43]=R++;var R;Rt.encode=function(t,e,n){for(var i=null,o=[],s=0,f=0,c;e<n;){var u=t[e++];switch(f){case 0:o[s++]=ut[u>>2],c=(u&3)<<4,f=1;break;case 1:o[s++]=ut[c|u>>4],c=(u&15)<<2,f=2;break;case 2:o[s++]=ut[c|u>>6],o[s++]=ut[u&63],f=0;break}s>8191&&((i||(i=[])).push(String.fromCharCode.apply(String,o)),s=0)}return f&&(o[s++]=ut[c],o[s++]=61,f===1&&(o[s++]=61)),i?(s&&i.push(String.fromCharCode.apply(String,o.slice(0,s))),i.join("")):String.fromCharCode.apply(String,o.slice(0,s))};var sr="invalid encoding";Rt.decode=function(t,e,n){for(var i=n,o=0,s,f=0;f<t.length;){var c=t.charCodeAt(f++);if(c===61&&o>1)break;if((c=ar[c])===void 0)throw Error(sr);switch(o){case 0:s=c,o=1;break;case 1:e[n++]=s<<2|(c&48)>>4,s=c,o=2;break;case 2:e[n++]=(s&15)<<4|(c&60)>>2,s=c,o=3;break;case 3:e[n++]=(s&3)<<6|c,o=0;break}}if(o===1)throw Error(sr);return n-i};Rt.test=function(t){return/^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$/.test(t)}});var hr=z((Ss,ur)=>{"use strict";ur.exports=Vt;function Vt(){this._listeners={}}Vt.prototype.on=function(t,e,n){return(this._listeners[t]||(this._listeners[t]=[])).push({fn:e,ctx:n||this}),this};Vt.prototype.off=function(t,e){if(t===void 0)this._listeners={};else if(e===void 0)this._listeners[t]=[];else for(var n=this._listeners[t],i=0;i<n.length;)n[i].fn===e?n.splice(i,1):++i;return this};Vt.prototype.emit=function(t){var e=this._listeners[t];if(e){for(var n=[],i=1;i<arguments.length;)n.push(arguments[i++]);for(i=0;i<e.length;)e[i].fn.apply(e[i++].ctx,n)}return this}});var wr=z((Ds,gr)=>{"use strict";gr.exports=lr(lr);function lr(r){return typeof Float32Array<"u"?function(){var t=new Float32Array([-0]),e=new Uint8Array(t.buffer),n=e[3]===128;function i(c,u,h){t[0]=c,u[h]=e[0],u[h+1]=e[1],u[h+2]=e[2],u[h+3]=e[3]}function o(c,u,h){t[0]=c,u[h]=e[3],u[h+1]=e[2],u[h+2]=e[1],u[h+3]=e[0]}r.writeFloatLE=n?i:o,r.writeFloatBE=n?o:i;function s(c,u){return e[0]=c[u],e[1]=c[u+1],e[2]=c[u+2],e[3]=c[u+3],t[0]}function f(c,u){return e[3]=c[u],e[2]=c[u+1],e[1]=c[u+2],e[0]=c[u+3],t[0]}r.readFloatLE=n?s:f,r.readFloatBE=n?f:s}():function(){function t(n,i,o,s){var f=i<0?1:0;if(f&&(i=-i),i===0)n(1/i>0?0:2147483648,o,s);else if(isNaN(i))n(2143289344,o,s);else if(i>34028234663852886e22)n((f<<31|2139095040)>>>0,o,s);else if(i<11754943508222875e-54)n((f<<31|Math.round(i/1401298464324817e-60))>>>0,o,s);else{var c=Math.floor(Math.log(i)/Math.LN2),u=Math.round(i*Math.pow(2,-c)*8388608)&8388607;n((f<<31|c+127<<23|u)>>>0,o,s)}}r.writeFloatLE=t.bind(null,dr),r.writeFloatBE=t.bind(null,pr);function e(n,i,o){var s=n(i,o),f=(s>>31)*2+1,c=s>>>23&255,u=s&8388607;return c===255?u?NaN:f*(1/0):c===0?f*1401298464324817e-60*u:f*Math.pow(2,c-150)*(u+8388608)}r.readFloatLE=e.bind(null,mr),r.readFloatBE=e.bind(null,yr)}(),typeof Float64Array<"u"?function(){var t=new Float64Array([-0]),e=new Uint8Array(t.buffer),n=e[7]===128;function i(c,u,h){t[0]=c,u[h]=e[0],u[h+1]=e[1],u[h+2]=e[2],u[h+3]=e[3],u[h+4]=e[4],u[h+5]=e[5],u[h+6]=e[6],u[h+7]=e[7]}function o(c,u,h){t[0]=c,u[h]=e[7],u[h+1]=e[6],u[h+2]=e[5],u[h+3]=e[4],u[h+4]=e[3],u[h+5]=e[2],u[h+6]=e[1],u[h+7]=e[0]}r.writeDoubleLE=n?i:o,r.writeDoubleBE=n?o:i;function s(c,u){return e[0]=c[u],e[1]=c[u+1],e[2]=c[u+2],e[3]=c[u+3],e[4]=c[u+4],e[5]=c[u+5],e[6]=c[u+6],e[7]=c[u+7],t[0]}function f(c,u){return e[7]=c[u],e[6]=c[u+1],e[5]=c[u+2],e[4]=c[u+3],e[3]=c[u+4],e[2]=c[u+5],e[1]=c[u+6],e[0]=c[u+7],t[0]}r.readDoubleLE=n?s:f,r.readDoubleBE=n?f:s}():function(){function t(n,i,o,s,f,c){var u=s<0?1:0;if(u&&(s=-s),s===0)n(0,f,c+i),n(1/s>0?0:2147483648,f,c+o);else if(isNaN(s))n(0,f,c+i),n(2146959360,f,c+o);else if(s>17976931348623157e292)n(0,f,c+i),n((u<<31|2146435072)>>>0,f,c+o);else{var h;if(s<22250738585072014e-324)h=s/5e-324,n(h>>>0,f,c+i),n((u<<31|h/4294967296)>>>0,f,c+o);else{var p=Math.floor(Math.log(s)/Math.LN2);p===1024&&(p=1023),h=s*Math.pow(2,-p),n(h*4503599627370496>>>0,f,c+i),n((u<<31|p+1023<<20|h*1048576&1048575)>>>0,f,c+o)}}}r.writeDoubleLE=t.bind(null,dr,0,4),r.writeDoubleBE=t.bind(null,pr,4,0);function e(n,i,o,s,f){var c=n(s,f+i),u=n(s,f+o),h=(u>>31)*2+1,p=u>>>20&2047,D=4294967296*(u&1048575)+c;return p===2047?D?NaN:h*(1/0):p===0?h*5e-324*D:h*Math.pow(2,p-1075)*(D+4503599627370496)}r.readDoubleLE=e.bind(null,mr,0,4),r.readDoubleBE=e.bind(null,yr,4,0)}(),r}function dr(r,t,e){t[e]=r&255,t[e+1]=r>>>8&255,t[e+2]=r>>>16&255,t[e+3]=r>>>24}function pr(r,t,e){t[e]=r>>>24,t[e+1]=r>>>16&255,t[e+2]=r>>>8&255,t[e+3]=r&255}function mr(r,t){return(r[t]|r[t+1]<<8|r[t+2]<<16|r[t+3]<<24)>>>0}function yr(r,t){return(r[t]<<24|r[t+1]<<16|r[t+2]<<8|r[t+3])>>>0}});var br=z((exports,module)=>{"use strict";module.exports=inquire;function inquire(moduleName){try{var mod=eval("quire".replace(/^/,"re"))(moduleName);if(mod&&(mod.length||Object.keys(mod).length))return mod}catch(r){}return null}});var _r=z(xr=>{"use strict";var re=xr;re.length=function(t){for(var e=0,n=0,i=0;i<t.length;++i)n=t.charCodeAt(i),n<128?e+=1:n<2048?e+=2:(n&64512)===55296&&(t.charCodeAt(i+1)&64512)===56320?(++i,e+=4):e+=3;return e};re.read=function(t,e,n){var i=n-e;if(i<1)return"";for(var o=null,s=[],f=0,c;e<n;)c=t[e++],c<128?s[f++]=c:c>191&&c<224?s[f++]=(c&31)<<6|t[e++]&63:c>239&&c<365?(c=((c&7)<<18|(t[e++]&63)<<12|(t[e++]&63)<<6|t[e++]&63)-65536,s[f++]=55296+(c>>10),s[f++]=56320+(c&1023)):s[f++]=(c&15)<<12|(t[e++]&63)<<6|t[e++]&63,f>8191&&((o||(o=[])).push(String.fromCharCode.apply(String,s)),f=0);return o?(f&&o.push(String.fromCharCode.apply(String,s.slice(0,f))),o.join("")):String.fromCharCode.apply(String,s.slice(0,f))};re.write=function(t,e,n){for(var i=n,o,s,f=0;f<t.length;++f)o=t.charCodeAt(f),o<128?e[n++]=o:o<2048?(e[n++]=o>>6|192,e[n++]=o&63|128):(o&64512)===55296&&((s=t.charCodeAt(f+1))&64512)===56320?(o=65536+((o&1023)<<10)+(s&1023),++f,e[n++]=o>>18|240,e[n++]=o>>12&63|128,e[n++]=o>>6&63|128,e[n++]=o&63|128):(e[n++]=o>>12|224,e[n++]=o>>6&63|128,e[n++]=o&63|128);return n-i}});var Br=z((Ts,vr)=>{"use strict";vr.exports=hi;function hi(r,t,e){var n=e||8192,i=n>>>1,o=null,s=n;return function(c){if(c<1||c>i)return r(c);s+c>n&&(o=r(n),s=0);var u=t.call(o,s,s+=c);return s&7&&(s=(s|7)+1),u}}});var kr=z((Es,Ar)=>{"use strict";Ar.exports=N;var _t=rt();function N(r,t){this.lo=r>>>0,this.hi=t>>>0}var et=N.zero=new N(0,0);et.toNumber=function(){return 0};et.zzEncode=et.zzDecode=function(){return this};et.length=function(){return 1};var li=N.zeroHash="\0\0\0\0\0\0\0\0";N.fromNumber=function(t){if(t===0)return et;var e=t<0;e&&(t=-t);var n=t>>>0,i=(t-n)/4294967296>>>0;return e&&(i=~i>>>0,n=~n>>>0,++n>4294967295&&(n=0,++i>4294967295&&(i=0))),new N(n,i)};N.from=function(t){if(typeof t=="number")return N.fromNumber(t);if(_t.isString(t))if(_t.Long)t=_t.Long.fromString(t);else return N.fromNumber(parseInt(t,10));return t.low||t.high?new N(t.low>>>0,t.high>>>0):et};N.prototype.toNumber=function(t){if(!t&&this.hi>>>31){var e=~this.lo+1>>>0,n=~this.hi>>>0;return e||(n=n+1>>>0),-(e+n*4294967296)}return this.lo+this.hi*4294967296};N.prototype.toLong=function(t){return _t.Long?new _t.Long(this.lo|0,this.hi|0,Boolean(t)):{low:this.lo|0,high:this.hi|0,unsigned:Boolean(t)}};var Z=String.prototype.charCodeAt;N.fromHash=function(t){return t===li?et:new N((Z.call(t,0)|Z.call(t,1)<<8|Z.call(t,2)<<16|Z.call(t,3)<<24)>>>0,(Z.call(t,4)|Z.call(t,5)<<8|Z.call(t,6)<<16|Z.call(t,7)<<24)>>>0)};N.prototype.toHash=function(){return String.fromCharCode(this.lo&255,this.lo>>>8&255,this.lo>>>16&255,this.lo>>>24,this.hi&255,this.hi>>>8&255,this.hi>>>16&255,this.hi>>>24)};N.prototype.zzEncode=function(){var t=this.hi>>31;return this.hi=((this.hi<<1|this.lo>>>31)^t)>>>0,this.lo=(this.lo<<1^t)>>>0,this};N.prototype.zzDecode=function(){var t=-(this.lo&1);return this.lo=((this.lo>>>1|this.hi<<31)^t)>>>0,this.hi=(this.hi>>>1^t)>>>0,this};N.prototype.length=function(){var t=this.lo,e=(this.lo>>>28|this.hi<<4)>>>0,n=this.hi>>>24;return n===0?e===0?t<16384?t<128?1:2:t<2097152?3:4:e<16384?e<128?5:6:e<2097152?7:8:n<128?9:10}});var rt=z(ne=>{"use strict";var x=ne;x.asPromise=or();x.base64=fr();x.EventEmitter=hr();x.float=wr();x.inquire=br();x.utf8=_r();x.pool=Br();x.LongBits=kr();x.isNode=Boolean(typeof globalThis<"u"&&globalThis&&globalThis.process&&globalThis.process.versions&&globalThis.process.versions.node);x.global=x.isNode&&globalThis||typeof window<"u"&&window||typeof self<"u"&&self||ne;x.emptyArray=Object.freeze?Object.freeze([]):[];x.emptyObject=Object.freeze?Object.freeze({}):{};x.isInteger=Number.isInteger||function(t){return typeof t=="number"&&isFinite(t)&&Math.floor(t)===t};x.isString=function(t){return typeof t=="string"||t instanceof String};x.isObject=function(t){return t&&typeof t=="object"};x.isset=x.isSet=function(t,e){var n=t[e];return n!=null&&t.hasOwnProperty(e)?typeof n!="object"||(Array.isArray(n)?n.length:Object.keys(n).length)>0:!1};x.Buffer=function(){try{var r=x.inquire("buffer").Buffer;return r.prototype.utf8Write?r:null}catch{return null}}();x._Buffer_from=null;x._Buffer_allocUnsafe=null;x.newBuffer=function(t){return typeof t=="number"?x.Buffer?x._Buffer_allocUnsafe(t):new x.Array(t):x.Buffer?x._Buffer_from(t):typeof Uint8Array>"u"?t:new Uint8Array(t)};x.Array=typeof Uint8Array<"u"?Uint8Array:Array;x.Long=x.global.dcodeIO&&x.global.dcodeIO.Long||x.global.Long||x.inquire("long");x.key2Re=/^true|false|0|1$/;x.key32Re=/^-?(?:0|[1-9][0-9]*)$/;x.key64Re=/^(?:[\\x00-\\xff]{8}|-?(?:0|[1-9][0-9]*))$/;x.longToHash=function(t){return t?x.LongBits.from(t).toHash():x.LongBits.zeroHash};x.longFromHash=function(t,e){var n=x.LongBits.fromHash(t);return x.Long?x.Long.fromBits(n.lo,n.hi,e):n.toNumber(Boolean(e))};function Sr(r,t,e){for(var n=Object.keys(t),i=0;i<n.length;++i)(r[n[i]]===void 0||!e)&&(r[n[i]]=t[n[i]]);return r}x.merge=Sr;x.lcFirst=function(t){return t.charAt(0).toLowerCase()+t.substring(1)};function Dr(r){function t(e,n){if(!(this instanceof t))return new t(e,n);Object.defineProperty(this,"message",{get:function(){return e}}),Error.captureStackTrace?Error.captureStackTrace(this,t):Object.defineProperty(this,"stack",{value:new Error().stack||""}),n&&Sr(this,n)}return t.prototype=Object.create(Error.prototype,{constructor:{value:t,writable:!0,enumerable:!1,configurable:!0},name:{get:function(){return r},set:void 0,enumerable:!1,configurable:!0},toString:{value:function(){return this.name+": "+this.message},writable:!0,enumerable:!1,configurable:!0}}),t}x.newError=Dr;x.ProtocolError=Dr("ProtocolError");x.oneOfGetter=function(t){for(var e={},n=0;n<t.length;++n)e[t[n]]=1;return function(){for(var i=Object.keys(this),o=i.length-1;o>-1;--o)if(e[i[o]]===1&&this[i[o]]!==void 0&&this[i[o]]!==null)return i[o]}};x.oneOfSetter=function(t){return function(e){for(var n=0;n<t.length;++n)t[n]!==e&&delete this[t[n]]}};x.toJSONOptions={longs:String,enums:String,bytes:String,json:!0};x._configure=function(){var r=x.Buffer;if(!r){x._Buffer_from=x._Buffer_allocUnsafe=null;return}x._Buffer_from=r.from!==Uint8Array.from&&r.from||function(e,n){return new r(e,n)},x._Buffer_allocUnsafe=r.allocUnsafe||function(e){return new r(e)}}});var se=z((zs,zr)=>{"use strict";zr.exports=E;var j=rt(),oe,Er=j.LongBits,di=j.utf8;function V(r,t){return RangeError("index out of range: "+r.pos+" + "+(t||1)+" > "+r.len)}function E(r){this.buf=r,this.pos=0,this.len=r.length}var Lr=typeof Uint8Array<"u"?function(t){if(t instanceof Uint8Array||Array.isArray(t))return new E(t);throw Error("illegal buffer")}:function(t){if(Array.isArray(t))return new E(t);throw Error("illegal buffer")},Nr=function(){return j.Buffer?function(e){return(E.create=function(i){return j.Buffer.isBuffer(i)?new oe(i):Lr(i)})(e)}:Lr};E.create=Nr();E.prototype._slice=j.Array.prototype.subarray||j.Array.prototype.slice;E.prototype.uint32=function(){var t=4294967295;return function(){if(t=(this.buf[this.pos]&127)>>>0,this.buf[this.pos++]<128||(t=(t|(this.buf[this.pos]&127)<<7)>>>0,this.buf[this.pos++]<128)||(t=(t|(this.buf[this.pos]&127)<<14)>>>0,this.buf[this.pos++]<128)||(t=(t|(this.buf[this.pos]&127)<<21)>>>0,this.buf[this.pos++]<128)||(t=(t|(this.buf[this.pos]&15)<<28)>>>0,this.buf[this.pos++]<128))return t;if((this.pos+=5)>this.len)throw this.pos=this.len,V(this,10);return t}}();E.prototype.int32=function(){return this.uint32()|0};E.prototype.sint32=function(){var t=this.uint32();return t>>>1^-(t&1)|0};function ie(){var r=new Er(0,0),t=0;if(this.len-this.pos>4){for(;t<4;++t)if(r.lo=(r.lo|(this.buf[this.pos]&127)<<t*7)>>>0,this.buf[this.pos++]<128)return r;if(r.lo=(r.lo|(this.buf[this.pos]&127)<<28)>>>0,r.hi=(r.hi|(this.buf[this.pos]&127)>>4)>>>0,this.buf[this.pos++]<128)return r;t=0}else{for(;t<3;++t){if(this.pos>=this.len)throw V(this);if(r.lo=(r.lo|(this.buf[this.pos]&127)<<t*7)>>>0,this.buf[this.pos++]<128)return r}return r.lo=(r.lo|(this.buf[this.pos++]&127)<<t*7)>>>0,r}if(this.len-this.pos>4){for(;t<5;++t)if(r.hi=(r.hi|(this.buf[this.pos]&127)<<t*7+3)>>>0,this.buf[this.pos++]<128)return r}else for(;t<5;++t){if(this.pos>=this.len)throw V(this);if(r.hi=(r.hi|(this.buf[this.pos]&127)<<t*7+3)>>>0,this.buf[this.pos++]<128)return r}throw Error("invalid varint encoding")}E.prototype.bool=function(){return this.uint32()!==0};function qt(r,t){return(r[t-4]|r[t-3]<<8|r[t-2]<<16|r[t-1]<<24)>>>0}E.prototype.fixed32=function(){if(this.pos+4>this.len)throw V(this,4);return qt(this.buf,this.pos+=4)};E.prototype.sfixed32=function(){if(this.pos+4>this.len)throw V(this,4);return qt(this.buf,this.pos+=4)|0};function Tr(){if(this.pos+8>this.len)throw V(this,8);return new Er(qt(this.buf,this.pos+=4),qt(this.buf,this.pos+=4))}E.prototype.float=function(){if(this.pos+4>this.len)throw V(this,4);var t=j.float.readFloatLE(this.buf,this.pos);return this.pos+=4,t};E.prototype.double=function(){if(this.pos+8>this.len)throw V(this,4);var t=j.float.readDoubleLE(this.buf,this.pos);return this.pos+=8,t};E.prototype.bytes=function(){var t=this.uint32(),e=this.pos,n=this.pos+t;if(n>this.len)throw V(this,t);return this.pos+=t,Array.isArray(this.buf)?this.buf.slice(e,n):e===n?new this.buf.constructor(0):this._slice.call(this.buf,e,n)};E.prototype.string=function(){var t=this.bytes();return di.read(t,0,t.length)};E.prototype.skip=function(t){if(typeof t=="number"){if(this.pos+t>this.len)throw V(this,t);this.pos+=t}else do if(this.pos>=this.len)throw V(this);while(this.buf[this.pos++]&128);return this};E.prototype.skipType=function(r){switch(r){case 0:this.skip();break;case 1:this.skip(8);break;case 2:this.skip(this.uint32());break;case 3:for(;(r=this.uint32()&7)!==4;)this.skipType(r);break;case 5:this.skip(4);break;default:throw Error("invalid wire type "+r+" at offset "+this.pos)}return this};E._configure=function(r){oe=r,E.create=Nr(),oe._configure();var t=j.Long?"toLong":"toNumber";j.merge(E.prototype,{int64:function(){return ie.call(this)[t](!1)},uint64:function(){return ie.call(this)[t](!0)},sint64:function(){return ie.call(this).zzDecode()[t](!1)},fixed64:function(){return Tr.call(this)[t](!0)},sfixed64:function(){return Tr.call(this)[t](!1)}})}});var Fr=z((Cs,Ir)=>{"use strict";Ir.exports=nt;var Pr=se();(nt.prototype=Object.create(Pr.prototype)).constructor=nt;var Cr=rt();function nt(r){Pr.call(this,r)}nt._configure=function(){Cr.Buffer&&(nt.prototype._slice=Cr.Buffer.prototype.slice)};nt.prototype.string=function(){var t=this.uint32();return this.buf.utf8Slice?this.buf.utf8Slice(this.pos,this.pos=Math.min(this.pos+t,this.len)):this.buf.toString("utf-8",this.pos,this.pos=Math.min(this.pos+t,this.len))};nt._configure()});var de=z((Ps,Or)=>{"use strict";Or.exports=A;var M=rt(),ae,Gt=M.LongBits,Ur=M.base64,Mr=M.utf8;function vt(r,t,e){this.fn=r,this.len=t,this.next=void 0,this.val=e}function fe(){}function pi(r){this.head=r.head,this.tail=r.tail,this.len=r.len,this.next=r.states}function A(){this.len=0,this.head=new vt(fe,0,0),this.tail=this.head,this.states=null}var Hr=function(){return M.Buffer?function(){return(A.create=function(){return new ae})()}:function(){return new A}};A.create=Hr();A.alloc=function(t){return new M.Array(t)};M.Array!==Array&&(A.alloc=M.pool(A.alloc,M.Array.prototype.subarray));A.prototype._push=function(t,e,n){return this.tail=this.tail.next=new vt(t,e,n),this.len+=e,this};function ue(r,t,e){t[e]=r&255}function mi(r,t,e){for(;r>127;)t[e++]=r&127|128,r>>>=7;t[e]=r}function he(r,t){this.len=r,this.next=void 0,this.val=t}he.prototype=Object.create(vt.prototype);he.prototype.fn=mi;A.prototype.uint32=function(t){return this.len+=(this.tail=this.tail.next=new he((t=t>>>0)<128?1:t<16384?2:t<2097152?3:t<268435456?4:5,t)).len,this};A.prototype.int32=function(t){return t<0?this._push(le,10,Gt.fromNumber(t)):this.uint32(t)};A.prototype.sint32=function(t){return this.uint32((t<<1^t>>31)>>>0)};function le(r,t,e){for(;r.hi;)t[e++]=r.lo&127|128,r.lo=(r.lo>>>7|r.hi<<25)>>>0,r.hi>>>=7;for(;r.lo>127;)t[e++]=r.lo&127|128,r.lo=r.lo>>>7;t[e++]=r.lo}A.prototype.uint64=function(t){var e=Gt.from(t);return this._push(le,e.length(),e)};A.prototype.int64=A.prototype.uint64;A.prototype.sint64=function(t){var e=Gt.from(t).zzEncode();return this._push(le,e.length(),e)};A.prototype.bool=function(t){return this._push(ue,1,t?1:0)};function ce(r,t,e){t[e]=r&255,t[e+1]=r>>>8&255,t[e+2]=r>>>16&255,t[e+3]=r>>>24}A.prototype.fixed32=function(t){return this._push(ce,4,t>>>0)};A.prototype.sfixed32=A.prototype.fixed32;A.prototype.fixed64=function(t){var e=Gt.from(t);return this._push(ce,4,e.lo)._push(ce,4,e.hi)};A.prototype.sfixed64=A.prototype.fixed64;A.prototype.float=function(t){return this._push(M.float.writeFloatLE,4,t)};A.prototype.double=function(t){return this._push(M.float.writeDoubleLE,8,t)};var yi=M.Array.prototype.set?function(t,e,n){e.set(t,n)}:function(t,e,n){for(var i=0;i<t.length;++i)e[n+i]=t[i]};A.prototype.bytes=function(t){var e=t.length>>>0;if(!e)return this._push(ue,1,0);if(M.isString(t)){var n=A.alloc(e=Ur.length(t));Ur.decode(t,n,0),t=n}return this.uint32(e)._push(yi,e,t)};A.prototype.string=function(t){var e=Mr.length(t);return e?this.uint32(e)._push(Mr.write,e,t):this._push(ue,1,0)};A.prototype.fork=function(){return this.states=new pi(this),this.head=this.tail=new vt(fe,0,0),this.len=0,this};A.prototype.reset=function(){return this.states?(this.head=this.states.head,this.tail=this.states.tail,this.len=this.states.len,this.states=this.states.next):(this.head=this.tail=new vt(fe,0,0),this.len=0),this};A.prototype.ldelim=function(){var t=this.head,e=this.tail,n=this.len;return this.reset().uint32(n),n&&(this.tail.next=t.next,this.tail=e,this.len+=n),this};A.prototype.finish=function(){for(var t=this.head.next,e=this.constructor.alloc(this.len),n=0;t;)t.fn(t.val,e,n),n+=t.len,t=t.next;return e};A._configure=function(r){ae=r,A.create=Hr(),ae._configure()}});var qr=z((Is,Vr)=>{"use strict";Vr.exports=$;var Rr=de();($.prototype=Object.create(Rr.prototype)).constructor=$;var Y=rt();function $(){Rr.call(this)}$._configure=function(){$.alloc=Y._Buffer_allocUnsafe,$.writeBytesBuffer=Y.Buffer&&Y.Buffer.prototype instanceof Uint8Array&&Y.Buffer.prototype.set.name==="set"?function(t,e,n){e.set(t,n)}:function(t,e,n){if(t.copy)t.copy(e,n,0,t.length);else for(var i=0;i<t.length;)e[n++]=t[i++]}};$.prototype.bytes=function(t){Y.isString(t)&&(t=Y._Buffer_from(t,"base64"));var e=t.length>>>0;return this.uint32(e),e&&this._push($.writeBytesBuffer,e,t),this};function gi(r,t,e){r.length<40?Y.utf8.write(r,t,e):t.utf8Write?t.utf8Write(r,e):t.write(r,e)}$.prototype.string=function(t){var e=Y.Buffer.byteLength(t);return this.uint32(e),e&&this._push(gi,e,t),this};$._configure()});var Dn=z((Ka,Sn)=>{"use strict";Sn.exports=class{constructor(){this._bitArrays=[],this._data=[],this._length=0,this._changedLength=!1,this._changedData=!1}set(t,e){let n=this._internalPositionFor(t,!1);if(e===void 0)n!==-1&&(this._unsetInternalPos(n),this._unsetBit(t),this._changedLength=!0,this._changedData=!0);else{let i=!1;n===-1?(n=this._data.length,this._setBit(t),this._changedData=!0):i=!0,this._setInternalPos(n,t,e,i),this._changedLength=!0}}unset(t){this.set(t,void 0)}get(t){this._sortData();let e=this._internalPositionFor(t,!0);if(e!==-1)return this._data[e][1]}push(t){return this.set(this.length,t),this.length}get length(){if(this._sortData(),this._changedLength){let t=this._data[this._data.length-1];this._length=t?t[0]+1:0,this._changedLength=!1}return this._length}forEach(t){let e=0;for(;e<this.length;)t(this.get(e),e,this),e++}map(t){let e=0,n=new Array(this.length);for(;e<this.length;)n[e]=t(this.get(e),e,this),e++;return n}reduce(t,e){let n=0,i=e;for(;n<this.length;){let o=this.get(n);i=t(i,o,n),n++}return i}find(t){let e=0,n,i;for(;e<this.length&&!n;)i=this.get(e),n=t(i),e++;return n?i:void 0}_internalPositionFor(t,e){let n=this._bytePosFor(t,e);if(n>=this._bitArrays.length)return-1;let i=this._bitArrays[n],o=t-n*7;if(!((i&1<<o)>0))return-1;let f=this._bitArrays.slice(0,n).reduce(No,0),c=~(4294967295<<o+1),u=kn(i&c);return f+u-1}_bytePosFor(t,e){let n=Math.floor(t/7),i=n+1;for(;!e&&this._bitArrays.length<i;)this._bitArrays.push(0);return n}_setBit(t){let e=this._bytePosFor(t,!1);this._bitArrays[e]|=1<<t-e*7}_unsetBit(t){let e=this._bytePosFor(t,!1);this._bitArrays[e]&=~(1<<t-e*7)}_setInternalPos(t,e,n,i){let o=this._data,s=[e,n];if(i)this._sortData(),o[t]=s;else{if(o.length)if(o[o.length-1][0]>=e)o.push(s);else if(o[0][0]<=e)o.unshift(s);else{let f=Math.round(o.length/2);this._data=o.slice(0,f).concat(s).concat(o.slice(f))}else this._data.push(s);this._changedData=!0,this._changedLength=!0}}_unsetInternalPos(t){this._data.splice(t,1)}_sortData(){this._changedData&&this._data.sort(zo),this._changedData=!1}bitField(){let t=[],e=8,n=0,i=0,o,s=this._bitArrays.slice();for(;s.length||n;){n===0&&(o=s.shift(),n=7);let c=Math.min(n,e),u=~(255<<c),h=o&u;i|=h<<8-e,o=o>>>c,n-=c,e-=c,(!e||!n&&!s.length)&&(t.push(i),i=0,e=8)}for(var f=t.length-1;f>0&&t[f]===0;f--)t.pop();return t}compactArray(){return this._sortData(),this._data.map(Co)}};function No(r,t){return r+kn(t)}function kn(r){let t=r;return t=t-(t>>1&1431655765),t=(t&858993459)+(t>>2&858993459),(t+(t>>4)&252645135)*16843009>>24}function zo(r,t){return r[0]-t[0]}function Co(r){return r[1]}});var Mn=z((Ft,Yt)=>{(function(r,t){"use strict";var e={version:"3.0.0",x86:{},x64:{},inputValidation:!0};function n(a){if(!Array.isArray(a)&&!ArrayBuffer.isView(a))return!1;for(var l=0;l<a.length;l++)if(!Number.isInteger(a[l])||a[l]<0||a[l]>255)return!1;return!0}function i(a,l){return(a&65535)*l+(((a>>>16)*l&65535)<<16)}function o(a,l){return a<<l|a>>>32-l}function s(a){return a^=a>>>16,a=i(a,2246822507),a^=a>>>13,a=i(a,3266489909),a^=a>>>16,a}function f(a,l){a=[a[0]>>>16,a[0]&65535,a[1]>>>16,a[1]&65535],l=[l[0]>>>16,l[0]&65535,l[1]>>>16,l[1]&65535];var m=[0,0,0,0];return m[3]+=a[3]+l[3],m[2]+=m[3]>>>16,m[3]&=65535,m[2]+=a[2]+l[2],m[1]+=m[2]>>>16,m[2]&=65535,m[1]+=a[1]+l[1],m[0]+=m[1]>>>16,m[1]&=65535,m[0]+=a[0]+l[0],m[0]&=65535,[m[0]<<16|m[1],m[2]<<16|m[3]]}function c(a,l){a=[a[0]>>>16,a[0]&65535,a[1]>>>16,a[1]&65535],l=[l[0]>>>16,l[0]&65535,l[1]>>>16,l[1]&65535];var m=[0,0,0,0];return m[3]+=a[3]*l[3],m[2]+=m[3]>>>16,m[3]&=65535,m[2]+=a[2]*l[3],m[1]+=m[2]>>>16,m[2]&=65535,m[2]+=a[3]*l[2],m[1]+=m[2]>>>16,m[2]&=65535,m[1]+=a[1]*l[3],m[0]+=m[1]>>>16,m[1]&=65535,m[1]+=a[2]*l[2],m[0]+=m[1]>>>16,m[1]&=65535,m[1]+=a[3]*l[1],m[0]+=m[1]>>>16,m[1]&=65535,m[0]+=a[0]*l[3]+a[1]*l[2]+a[2]*l[1]+a[3]*l[0],m[0]&=65535,[m[0]<<16|m[1],m[2]<<16|m[3]]}function u(a,l){return l%=64,l===32?[a[1],a[0]]:l<32?[a[0]<<l|a[1]>>>32-l,a[1]<<l|a[0]>>>32-l]:(l-=32,[a[1]<<l|a[0]>>>32-l,a[0]<<l|a[1]>>>32-l])}function h(a,l){return l%=64,l===0?a:l<32?[a[0]<<l|a[1]>>>32-l,a[1]<<l]:[a[1]<<l-32,0]}function p(a,l){return[a[0]^l[0],a[1]^l[1]]}function D(a){return a=p(a,[0,a[0]>>>1]),a=c(a,[4283543511,3981806797]),a=p(a,[0,a[0]>>>1]),a=c(a,[3301882366,444984403]),a=p(a,[0,a[0]>>>1]),a}e.x86.hash32=function(a,l){if(e.inputValidation&&!n(a))return t;l=l||0;for(var m=a.length%4,S=a.length-m,d=l,y=0,w=3432918353,b=461845907,_=0;_<S;_=_+4)y=a[_]|a[_+1]<<8|a[_+2]<<16|a[_+3]<<24,y=i(y,w),y=o(y,15),y=i(y,b),d^=y,d=o(d,13),d=i(d,5)+3864292196;switch(y=0,m){case 3:y^=a[_+2]<<16;case 2:y^=a[_+1]<<8;case 1:y^=a[_],y=i(y,w),y=o(y,15),y=i(y,b),d^=y}return d^=a.length,d=s(d),d>>>0},e.x86.hash128=function(a,l){if(e.inputValidation&&!n(a))return t;l=l||0;for(var m=a.length%16,S=a.length-m,d=l,y=l,w=l,b=l,_=0,v=0,g=0,L=0,X=597399067,Ut=2869860233,Mt=951274213,Ht=2716044179,B=0;B<S;B=B+16)_=a[B]|a[B+1]<<8|a[B+2]<<16|a[B+3]<<24,v=a[B+4]|a[B+5]<<8|a[B+6]<<16|a[B+7]<<24,g=a[B+8]|a[B+9]<<8|a[B+10]<<16|a[B+11]<<24,L=a[B+12]|a[B+13]<<8|a[B+14]<<16|a[B+15]<<24,_=i(_,X),_=o(_,15),_=i(_,Ut),d^=_,d=o(d,19),d+=y,d=i(d,5)+1444728091,v=i(v,Ut),v=o(v,16),v=i(v,Mt),y^=v,y=o(y,17),y+=w,y=i(y,5)+197830471,g=i(g,Mt),g=o(g,17),g=i(g,Ht),w^=g,w=o(w,15),w+=b,w=i(w,5)+2530024501,L=i(L,Ht),L=o(L,18),L=i(L,X),b^=L,b=o(b,13),b+=d,b=i(b,5)+850148119;switch(_=0,v=0,g=0,L=0,m){case 15:L^=a[B+14]<<16;case 14:L^=a[B+13]<<8;case 13:L^=a[B+12],L=i(L,Ht),L=o(L,18),L=i(L,X),b^=L;case 12:g^=a[B+11]<<24;case 11:g^=a[B+10]<<16;case 10:g^=a[B+9]<<8;case 9:g^=a[B+8],g=i(g,Mt),g=o(g,17),g=i(g,Ht),w^=g;case 8:v^=a[B+7]<<24;case 7:v^=a[B+6]<<16;case 6:v^=a[B+5]<<8;case 5:v^=a[B+4],v=i(v,Ut),v=o(v,16),v=i(v,Mt),y^=v;case 4:_^=a[B+3]<<24;case 3:_^=a[B+2]<<16;case 2:_^=a[B+1]<<8;case 1:_^=a[B],_=i(_,X),_=o(_,15),_=i(_,Ut),d^=_}return d^=a.length,y^=a.length,w^=a.length,b^=a.length,d+=y,d+=w,d+=b,y+=d,w+=d,b+=d,d=s(d),y=s(y),w=s(w),b=s(b),d+=y,d+=w,d+=b,y+=d,w+=d,b+=d,("00000000"+(d>>>0).toString(16)).slice(-8)+("00000000"+(y>>>0).toString(16)).slice(-8)+("00000000"+(w>>>0).toString(16)).slice(-8)+("00000000"+(b>>>0).toString(16)).slice(-8)},e.x64.hash128=function(a,l){if(e.inputValidation&&!n(a))return t;l=l||0;for(var m=a.length%16,S=a.length-m,d=[0,l],y=[0,l],w=[0,0],b=[0,0],_=[2277735313,289559509],v=[1291169091,658871167],g=0;g<S;g=g+16)w=[a[g+4]|a[g+5]<<8|a[g+6]<<16|a[g+7]<<24,a[g]|a[g+1]<<8|a[g+2]<<16|a[g+3]<<24],b=[a[g+12]|a[g+13]<<8|a[g+14]<<16|a[g+15]<<24,a[g+8]|a[g+9]<<8|a[g+10]<<16|a[g+11]<<24],w=c(w,_),w=u(w,31),w=c(w,v),d=p(d,w),d=u(d,27),d=f(d,y),d=f(c(d,[0,5]),[0,1390208809]),b=c(b,v),b=u(b,33),b=c(b,_),y=p(y,b),y=u(y,31),y=f(y,d),y=f(c(y,[0,5]),[0,944331445]);switch(w=[0,0],b=[0,0],m){case 15:b=p(b,h([0,a[g+14]],48));case 14:b=p(b,h([0,a[g+13]],40));case 13:b=p(b,h([0,a[g+12]],32));case 12:b=p(b,h([0,a[g+11]],24));case 11:b=p(b,h([0,a[g+10]],16));case 10:b=p(b,h([0,a[g+9]],8));case 9:b=p(b,[0,a[g+8]]),b=c(b,v),b=u(b,33),b=c(b,_),y=p(y,b);case 8:w=p(w,h([0,a[g+7]],56));case 7:w=p(w,h([0,a[g+6]],48));case 6:w=p(w,h([0,a[g+5]],40));case 5:w=p(w,h([0,a[g+4]],32));case 4:w=p(w,h([0,a[g+3]],24));case 3:w=p(w,h([0,a[g+2]],16));case 2:w=p(w,h([0,a[g+1]],8));case 1:w=p(w,[0,a[g]]),w=c(w,_),w=u(w,31),w=c(w,v),d=p(d,w)}return d=p(d,[0,a.length]),y=p(y,[0,a.length]),d=f(d,y),y=f(y,d),d=D(d),y=D(y),d=f(d,y),y=f(y,d),("00000000"+(d[0]>>>0).toString(16)).slice(-8)+("00000000"+(d[1]>>>0).toString(16)).slice(-8)+("00000000"+(y[0]>>>0).toString(16)).slice(-8)+("00000000"+(y[1]>>>0).toString(16)).slice(-8)},typeof Ft<"u"?(typeof Yt<"u"&&Yt.exports&&(Ft=Yt.exports=e),Ft.murmurHash3=e):typeof define=="function"&&define.amd?define([],function(){return e}):(e._murmurHash3=r.murmurHash3,e.noConflict=function(){return r.murmurHash3=e._murmurHash3,e._murmurHash3=t,e.noConflict=t,e},r.murmurHash3=e)})(Ft)});var On=z((Ic,Hn)=>{Hn.exports=Mn()});var ws={};C(ws,{importByteStream:()=>gs,importBytes:()=>ys,importContent:()=>tr,importer:()=>ri});async function*ft(r,t=1){let e=[];t<1&&(t=1);for await(let n of r)for(e.push(n);e.length>=t;)yield e.slice(0,t),e=e.slice(t);for(;e.length>0;)yield e.slice(0,t),e=e.slice(t)}async function*bt(r,t=1){for await(let e of ft(r,t)){let n=e.map(async i=>await i().then(o=>({ok:!0,value:o}),o=>({ok:!1,err:o})));for(let i=0;i<n.length;i++){let o=await n[i];if(o.ok)yield o.value;else throw o.err}}}var be=O(xt(),1);var pe=O(se(),1),Gr=O(Fr(),1),jr=O(rt(),1),me=O(de(),1),$r=O(qr(),1);function wi(){jr.default._configure(),pe.default._configure(Gr.default),me.default._configure($r.default)}wi();var Wr=["uint64","int64","sint64","fixed64","sfixed64"];function bi(r){for(let t of Wr){if(r[t]==null)continue;let e=r[t];r[t]=function(){return BigInt(e.call(this).toString())}}return r}function ye(r){return bi(new pe.default(r))}function xi(r){for(let t of Wr){if(r[t]==null)continue;let e=r[t];r[t]=function(n){return e.call(this,n.toString())}}return r}function ge(){return xi(me.default.create())}function Bt(r,t){let e=ye(r instanceof Uint8Array?r:r.subarray());return t.decode(e)}function At(r,t){let e=ge();return t.encode(r,e,{lengthDelimited:!1}),e.finish()}var ht;(function(r){r[r.VARINT=0]="VARINT",r[r.BIT64=1]="BIT64",r[r.LENGTH_DELIMITED=2]="LENGTH_DELIMITED",r[r.START_GROUP=3]="START_GROUP",r[r.END_GROUP=4]="END_GROUP",r[r.BIT32=5]="BIT32"})(ht||(ht={}));function jt(r,t,e,n){return{name:r,type:t,encode:e,decode:n}}function we(r){function t(i){if(r[i.toString()]==null)throw new Error("Invalid enum value");return r[i]}let e=function(o,s){let f=t(o);s.int32(f)},n=function(o){let s=o.int32();return t(s)};return jt("enum",ht.VARINT,e,n)}function kt(r,t){return jt("message",ht.LENGTH_DELIMITED,r,t)}var q;(function(r){let t;(function(i){i.Raw="Raw",i.Directory="Directory",i.File="File",i.Metadata="Metadata",i.Symlink="Symlink",i.HAMTShard="HAMTShard"})(t=r.DataType||(r.DataType={}));let e;(function(i){i[i.Raw=0]="Raw",i[i.Directory=1]="Directory",i[i.File=2]="File",i[i.Metadata=3]="Metadata",i[i.Symlink=4]="Symlink",i[i.HAMTShard=5]="HAMTShard"})(e||(e={})),function(i){i.codec=()=>we(e)}(t=r.DataType||(r.DataType={}));let n;r.codec=()=>(n==null&&(n=kt((i,o,s={})=>{if(s.lengthDelimited!==!1&&o.fork(),i.Type!=null&&(o.uint32(8),r.DataType.codec().encode(i.Type,o)),i.Data!=null&&(o.uint32(18),o.bytes(i.Data)),i.filesize!=null&&(o.uint32(24),o.uint64(i.filesize)),i.blocksizes!=null)for(let f of i.blocksizes)o.uint32(32),o.uint64(f);i.hashType!=null&&(o.uint32(40),o.uint64(i.hashType)),i.fanout!=null&&(o.uint32(48),o.uint64(i.fanout)),i.mode!=null&&(o.uint32(56),o.uint32(i.mode)),i.mtime!=null&&(o.uint32(66),$t.codec().encode(i.mtime,o)),s.lengthDelimited!==!1&&o.ldelim()},(i,o)=>{let s={blocksizes:[]},f=o==null?i.len:i.pos+o;for(;i.pos<f;){let c=i.uint32();switch(c>>>3){case 1:s.Type=r.DataType.codec().decode(i);break;case 2:s.Data=i.bytes();break;case 3:s.filesize=i.uint64();break;case 4:s.blocksizes.push(i.uint64());break;case 5:s.hashType=i.uint64();break;case 6:s.fanout=i.uint64();break;case 7:s.mode=i.uint32();break;case 8:s.mtime=$t.codec().decode(i,i.uint32());break;default:i.skipType(c&7);break}}return s})),n),r.encode=i=>At(i,r.codec()),r.decode=i=>Bt(i,r.codec())})(q||(q={}));var $t;(function(r){let t;r.codec=()=>(t==null&&(t=kt((e,n,i={})=>{i.lengthDelimited!==!1&&n.fork(),e.Seconds!=null&&(n.uint32(8),n.int64(e.Seconds)),e.FractionalNanoseconds!=null&&(n.uint32(21),n.fixed32(e.FractionalNanoseconds)),i.lengthDelimited!==!1&&n.ldelim()},(e,n)=>{let i={},o=n==null?e.len:e.pos+n;for(;e.pos<o;){let s=e.uint32();switch(s>>>3){case 1:i.Seconds=e.int64();break;case 2:i.FractionalNanoseconds=e.fixed32();break;default:e.skipType(s&7);break}}return i})),t),r.encode=e=>At(e,r.codec()),r.decode=e=>Bt(e,r.codec())})($t||($t={}));var Jr;(function(r){let t;r.codec=()=>(t==null&&(t=kt((e,n,i={})=>{i.lengthDelimited!==!1&&n.fork(),e.MimeType!=null&&(n.uint32(10),n.string(e.MimeType)),i.lengthDelimited!==!1&&n.ldelim()},(e,n)=>{let i={},o=n==null?e.len:e.pos+n;for(;e.pos<o;){let s=e.uint32();switch(s>>>3){case 1:i.MimeType=e.string();break;default:e.skipType(s&7);break}}return i})),t),r.encode=e=>At(e,r.codec()),r.decode=e=>Bt(e,r.codec())})(Jr||(Jr={}));var Kr={Raw:"raw",Directory:"directory",File:"file",Metadata:"metadata",Symlink:"symlink",HAMTShard:"hamt-sharded-directory"},_i=["directory","hamt-sharded-directory"],Xr=parseInt("0644",8),Qr=parseInt("0755",8),P=class{static unmarshal(t){let e=q.decode(t),n=new P({type:Kr[e.Type!=null?e.Type.toString():"File"],data:e.Data,blockSizes:e.blocksizes,mode:e.mode,mtime:e.mtime!=null?{secs:e.mtime.Seconds??0n,nsecs:e.mtime.FractionalNanoseconds}:void 0});return n._originalMode=e.mode??0,n}constructor(t={type:"file"}){let{type:e,data:n,blockSizes:i,hashType:o,fanout:s,mtime:f,mode:c}=t;if(e!=null&&!Object.values(Kr).includes(e))throw(0,be.default)(new Error("Type: "+e+" is not valid"),"ERR_INVALID_TYPE");this.type=e??"file",this.data=n,this.hashType=o,this.fanout=s,this.blockSizes=i??[],this._originalMode=0,this.mode=c,this.mtime=f}set mode(t){t==null?this._mode=this.isDirectory()?Qr:Xr:this._mode=t&4095}get mode(){return this._mode}isDirectory(){return _i.includes(this.type)}addBlockSize(t){this.blockSizes.push(t)}removeBlockSize(t){this.blockSizes.splice(t,1)}fileSize(){if(this.isDirectory())return 0n;let t=0n;return this.blockSizes.forEach(e=>{t+=e}),this.data!=null&&(t+=BigInt(this.data.length)),t}marshal(){let t;switch(this.type){case"raw":t=q.DataType.Raw;break;case"directory":t=q.DataType.Directory;break;case"file":t=q.DataType.File;break;case"metadata":t=q.DataType.Metadata;break;case"symlink":t=q.DataType.Symlink;break;case"hamt-sharded-directory":t=q.DataType.HAMTShard;break;default:throw(0,be.default)(new Error(`Type: ${t} is not valid`),"ERR_INVALID_TYPE")}let e=this.data;(this.data==null||this.data.length===0)&&(e=void 0);let n;this.mode!=null&&(n=this._originalMode&4294963200|(this.mode??0),n===Xr&&!this.isDirectory()&&(n=void 0),n===Qr&&this.isDirectory()&&(n=void 0));let i;return this.mtime!=null&&(i={Seconds:this.mtime.secs,FractionalNanoseconds:this.mtime.nsecs}),q.encode({Type:t,Data:e,filesize:this.isDirectory()?void 0:this.fileSize(),blocksizes:this.blockSizes,hashType:this.hashType,fanout:this.fanout,mode:n,mtime:i})}};var vi=tn,Zr=128,Bi=127,Ai=~Bi,ki=Math.pow(2,31);function tn(r,t,e){t=t||[],e=e||0;for(var n=e;r>=ki;)t[e++]=r&255|Zr,r/=128;for(;r&Ai;)t[e++]=r&255|Zr,r>>>=7;return t[e]=r|0,tn.bytes=e-n+1,t}var Si=xe,Di=128,Yr=127;function xe(r,n){var e=0,n=n||0,i=0,o=n,s,f=r.length;do{if(o>=f)throw xe.bytes=0,new RangeError("Could not decode varint");s=r[o++],e+=i<28?(s&Yr)<<i:(s&Yr)*Math.pow(2,i),i+=7}while(s>=Di);return xe.bytes=o-n,e}var Li=Math.pow(2,7),Ti=Math.pow(2,14),Ei=Math.pow(2,21),Ni=Math.pow(2,28),zi=Math.pow(2,35),Ci=Math.pow(2,42),Pi=Math.pow(2,49),Ii=Math.pow(2,56),Fi=Math.pow(2,63),Ui=function(r){return r<Li?1:r<Ti?2:r<Ei?3:r<Ni?4:r<zi?5:r<Ci?6:r<Pi?7:r<Ii?8:r<Fi?9:10},Mi={encode:vi,decode:Si,encodingLength:Ui},Hi=Mi,St=Hi;var Dt=(r,t=0)=>[St.decode(r,t),St.decode.bytes],lt=(r,t,e=0)=>(St.encode(r,t,e),t),dt=r=>St.encodingLength(r);var pt={};C(pt,{coerce:()=>H,empty:()=>en,equals:()=>_e,fromHex:()=>Ri,fromString:()=>ve,isBinary:()=>Vi,toHex:()=>Oi,toString:()=>Be});var en=new Uint8Array(0),Oi=r=>r.reduce((t,e)=>t+e.toString(16).padStart(2,"0"),""),Ri=r=>{let t=r.match(/../g);return t?new Uint8Array(t.map(e=>parseInt(e,16))):en},_e=(r,t)=>{if(r===t)return!0;if(r.byteLength!==t.byteLength)return!1;for(let e=0;e<r.byteLength;e++)if(r[e]!==t[e])return!1;return!0},H=r=>{if(r instanceof Uint8Array&&r.constructor.name==="Uint8Array")return r;if(r instanceof ArrayBuffer)return new Uint8Array(r);if(ArrayBuffer.isView(r))return new Uint8Array(r.buffer,r.byteOffset,r.byteLength);throw new Error("Unknown type, must be binary type")},Vi=r=>r instanceof ArrayBuffer||ArrayBuffer.isView(r),ve=r=>new TextEncoder().encode(r),Be=r=>new TextDecoder().decode(r);var it=(r,t)=>{let e=t.byteLength,n=dt(r),i=n+dt(e),o=new Uint8Array(i+e);return lt(r,o,0),lt(e,o,n),o.set(t,i),new mt(r,e,t,o)},rn=r=>{let t=H(r),[e,n]=Dt(t),[i,o]=Dt(t.subarray(n)),s=t.subarray(n+o);if(s.byteLength!==i)throw new Error("Incorrect length");return new mt(e,i,s,t)},nn=(r,t)=>{if(r===t)return!0;{let e=t;return r.code===e.code&&r.size===e.size&&e.bytes instanceof Uint8Array&&_e(r.bytes,e.bytes)}},mt=class{constructor(t,e,n,i){this.code=t,this.size=e,this.digest=n,this.bytes=i}};var Le={};C(Le,{base58btc:()=>W,base58flickr:()=>Ji});function qi(r,t){if(r.length>=255)throw new TypeError("Alphabet too long");for(var e=new Uint8Array(256),n=0;n<e.length;n++)e[n]=255;for(var i=0;i<r.length;i++){var o=r.charAt(i),s=o.charCodeAt(0);if(e[s]!==255)throw new TypeError(o+" is ambiguous");e[s]=i}var f=r.length,c=r.charAt(0),u=Math.log(f)/Math.log(256),h=Math.log(256)/Math.log(f);function p(l){if(l instanceof Uint8Array||(ArrayBuffer.isView(l)?l=new Uint8Array(l.buffer,l.byteOffset,l.byteLength):Array.isArray(l)&&(l=Uint8Array.from(l))),!(l instanceof Uint8Array))throw new TypeError("Expected Uint8Array");if(l.length===0)return"";for(var m=0,S=0,d=0,y=l.length;d!==y&&l[d]===0;)d++,m++;for(var w=(y-d)*h+1>>>0,b=new Uint8Array(w);d!==y;){for(var _=l[d],v=0,g=w-1;(_!==0||v<S)&&g!==-1;g--,v++)_+=256*b[g]>>>0,b[g]=_%f>>>0,_=_/f>>>0;if(_!==0)throw new Error("Non-zero carry");S=v,d++}for(var L=w-S;L!==w&&b[L]===0;)L++;for(var X=c.repeat(m);L<w;++L)X+=r.charAt(b[L]);return X}function D(l){if(typeof l!="string")throw new TypeError("Expected String");if(l.length===0)return new Uint8Array;var m=0;if(l[m]!==" "){for(var S=0,d=0;l[m]===c;)S++,m++;for(var y=(l.length-m)*u+1>>>0,w=new Uint8Array(y);l[m];){var b=e[l.charCodeAt(m)];if(b===255)return;for(var _=0,v=y-1;(b!==0||_<d)&&v!==-1;v--,_++)b+=f*w[v]>>>0,w[v]=b%256>>>0,b=b/256>>>0;if(b!==0)throw new Error("Non-zero carry");d=_,m++}if(l[m]!==" "){for(var g=y-d;g!==y&&w[g]===0;)g++;for(var L=new Uint8Array(S+(y-g)),X=S;g!==y;)L[X++]=w[g++];return L}}}function a(l){var m=D(l);if(m)return m;throw new Error(`Non-${t} character`)}return{encode:p,decodeUnsafe:D,decode:a}}var Gi=qi,ji=Gi,on=ji;var Ae=class{constructor(t,e,n){this.name=t,this.prefix=e,this.baseEncode=n}encode(t){if(t instanceof Uint8Array)return`${this.prefix}${this.baseEncode(t)}`;throw Error("Unknown type, must be binary type")}},ke=class{constructor(t,e,n){if(this.name=t,this.prefix=e,e.codePointAt(0)===void 0)throw new Error("Invalid prefix character");this.prefixCodePoint=e.codePointAt(0),this.baseDecode=n}decode(t){if(typeof t=="string"){if(t.codePointAt(0)!==this.prefixCodePoint)throw Error(`Unable to decode multibase string ${JSON.stringify(t)}, ${this.name} decoder only supports inputs prefixed with ${this.prefix}`);return this.baseDecode(t.slice(this.prefix.length))}else throw Error("Can only multibase decode strings")}or(t){return sn(this,t)}},Se=class{constructor(t){this.decoders=t}or(t){return sn(this,t)}decode(t){let e=t[0],n=this.decoders[e];if(n)return n.decode(t);throw RangeError(`Unable to decode multibase string ${JSON.stringify(t)}, only inputs prefixed with ${Object.keys(this.decoders)} are supported`)}},sn=(r,t)=>new Se({...r.decoders||{[r.prefix]:r},...t.decoders||{[t.prefix]:t}}),De=class{constructor(t,e,n,i){this.name=t,this.prefix=e,this.baseEncode=n,this.baseDecode=i,this.encoder=new Ae(t,e,n),this.decoder=new ke(t,e,i)}encode(t){return this.encoder.encode(t)}decode(t){return this.decoder.decode(t)}},yt=({name:r,prefix:t,encode:e,decode:n})=>new De(r,t,e,n),tt=({prefix:r,name:t,alphabet:e})=>{let{encode:n,decode:i}=on(e,t);return yt({prefix:r,name:t,encode:n,decode:o=>H(i(o))})},$i=(r,t,e,n)=>{let i={};for(let h=0;h<t.length;++h)i[t[h]]=h;let o=r.length;for(;r[o-1]==="=";)--o;let s=new Uint8Array(o*e/8|0),f=0,c=0,u=0;for(let h=0;h<o;++h){let p=i[r[h]];if(p===void 0)throw new SyntaxError(`Non-${n} character`);c=c<<e|p,f+=e,f>=8&&(f-=8,s[u++]=255&c>>f)}if(f>=e||255&c<<8-f)throw new SyntaxError("Unexpected end of data");return s},Wi=(r,t,e)=>{let n=t[t.length-1]==="=",i=(1<<e)-1,o="",s=0,f=0;for(let c=0;c<r.length;++c)for(f=f<<8|r[c],s+=8;s>e;)s-=e,o+=t[i&f>>s];if(s&&(o+=t[i&f<<e-s]),n)for(;o.length*e&7;)o+="=";return o},T=({name:r,prefix:t,bitsPerChar:e,alphabet:n})=>yt({prefix:t,name:r,encode(i){return Wi(i,n,e)},decode(i){return $i(i,n,e,r)}});var W=tt({name:"base58btc",prefix:"z",alphabet:"123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz"}),Ji=tt({name:"base58flickr",prefix:"Z",alphabet:"123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ"});var Te={};C(Te,{base32:()=>gt,base32hex:()=>Zi,base32hexpad:()=>to,base32hexpadupper:()=>eo,base32hexupper:()=>Yi,base32pad:()=>Xi,base32padupper:()=>Qi,base32upper:()=>Ki,base32z:()=>ro});var gt=T({prefix:"b",name:"base32",alphabet:"abcdefghijklmnopqrstuvwxyz234567",bitsPerChar:5}),Ki=T({prefix:"B",name:"base32upper",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZ234567",bitsPerChar:5}),Xi=T({prefix:"c",name:"base32pad",alphabet:"abcdefghijklmnopqrstuvwxyz234567=",bitsPerChar:5}),Qi=T({prefix:"C",name:"base32padupper",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZ234567=",bitsPerChar:5}),Zi=T({prefix:"v",name:"base32hex",alphabet:"0123456789abcdefghijklmnopqrstuv",bitsPerChar:5}),Yi=T({prefix:"V",name:"base32hexupper",alphabet:"0123456789ABCDEFGHIJKLMNOPQRSTUV",bitsPerChar:5}),to=T({prefix:"t",name:"base32hexpad",alphabet:"0123456789abcdefghijklmnopqrstuv=",bitsPerChar:5}),eo=T({prefix:"T",name:"base32hexpadupper",alphabet:"0123456789ABCDEFGHIJKLMNOPQRSTUV=",bitsPerChar:5}),ro=T({prefix:"h",name:"base32z",alphabet:"ybndrfg8ejkmcpqxot1uwisza345h769",bitsPerChar:5});var an=(r,t)=>{let{bytes:e,version:n}=r;switch(n){case 0:return io(e,Ee(r),t||W.encoder);default:return oo(e,Ee(r),t||gt.encoder)}};var cn=new WeakMap,Ee=r=>{let t=cn.get(r);if(t==null){let e=new Map;return cn.set(r,e),e}return t},k=class{constructor(t,e,n,i){this.code=e,this.version=t,this.multihash=n,this.bytes=i,this["/"]=i}get asCID(){return this}get byteOffset(){return this.bytes.byteOffset}get byteLength(){return this.bytes.byteLength}toV0(){switch(this.version){case 0:return this;case 1:{let{code:t,multihash:e}=this;if(t!==Tt)throw new Error("Cannot convert a non dag-pb CID to CIDv0");if(e.code!==so)throw new Error("Cannot convert non sha2-256 multihash CID to CIDv0");return k.createV0(e)}default:throw Error(`Can not convert CID version ${this.version} to version 0. This is a bug please report`)}}toV1(){switch(this.version){case 0:{let{code:t,digest:e}=this.multihash,n=it(t,e);return k.createV1(this.code,n)}case 1:return this;default:throw Error(`Can not convert CID version ${this.version} to version 1. This is a bug please report`)}}equals(t){return k.equals(this,t)}static equals(t,e){let n=e;return n&&t.code===n.code&&t.version===n.version&&nn(t.multihash,n.multihash)}toString(t){return an(this,t)}toJSON(){return{"/":an(this)}}link(){return this}get[Symbol.toStringTag](){return"CID"}[Symbol.for("nodejs.util.inspect.custom")](){return`CID(${this.toString()})`}static asCID(t){if(t==null)return null;let e=t;if(e instanceof k)return e;if(e["/"]!=null&&e["/"]===e.bytes||e.asCID===e){let{version:n,code:i,multihash:o,bytes:s}=e;return new k(n,i,o,s||fn(n,i,o.bytes))}else if(e[ao]===!0){let{version:n,multihash:i,code:o}=e,s=rn(i);return k.create(n,o,s)}else return null}static create(t,e,n){if(typeof e!="number")throw new Error("String codecs are no longer supported");if(!(n.bytes instanceof Uint8Array))throw new Error("Invalid digest");switch(t){case 0:{if(e!==Tt)throw new Error(`Version 0 CID must use dag-pb (code: ${Tt}) block encoding`);return new k(t,e,n,n.bytes)}case 1:{let i=fn(t,e,n.bytes);return new k(t,e,n,i)}default:throw new Error("Invalid version")}}static createV0(t){return k.create(0,Tt,t)}static createV1(t,e){return k.create(1,t,e)}static decode(t){let[e,n]=k.decodeFirst(t);if(n.length)throw new Error("Incorrect length");return e}static decodeFirst(t){let e=k.inspectBytes(t),n=e.size-e.multihashSize,i=H(t.subarray(n,n+e.multihashSize));if(i.byteLength!==e.multihashSize)throw new Error("Incorrect length");let o=i.subarray(e.multihashSize-e.digestSize),s=new mt(e.multihashCode,e.digestSize,o,i);return[e.version===0?k.createV0(s):k.createV1(e.codec,s),t.subarray(e.size)]}static inspectBytes(t){let e=0,n=()=>{let[p,D]=Dt(t.subarray(e));return e+=D,p},i=n(),o=Tt;if(i===18?(i=0,e=0):o=n(),i!==0&&i!==1)throw new RangeError(`Invalid CID version ${i}`);let s=e,f=n(),c=n(),u=e+c,h=u-s;return{version:i,codec:o,multihashCode:f,digestSize:c,multihashSize:h,size:u}}static parse(t,e){let[n,i]=no(t,e),o=k.decode(i);if(o.version===0&&t[0]!=="Q")throw Error("Version 0 CID string must not include multibase prefix");return Ee(o).set(n,t),o}},no=(r,t)=>{switch(r[0]){case"Q":{let e=t||W;return[W.prefix,e.decode(`${W.prefix}${r}`)]}case W.prefix:{let e=t||W;return[W.prefix,e.decode(r)]}case gt.prefix:{let e=t||gt;return[gt.prefix,e.decode(r)]}default:{if(t==null)throw Error("To parse non base32 or base58btc encoded CID multibase decoder must be provided");return[r[0],t.decode(r)]}}},io=(r,t,e)=>{let{prefix:n}=e;if(n!==W.prefix)throw Error(`Cannot string encode V0 in ${e.name} encoding`);let i=t.get(n);if(i==null){let o=e.encode(r).slice(1);return t.set(n,o),o}else return i},oo=(r,t,e)=>{let{prefix:n}=e,i=t.get(n);if(i==null){let o=e.encode(r);return t.set(n,o),o}else return i},Tt=112,so=18,fn=(r,t,e)=>{let n=dt(r),i=n+dt(t),o=new Uint8Array(i+e.byteLength);return lt(r,o,0),lt(t,o,n),o.set(e,i),o},ao=Symbol.for("@ipld/js-cid/CID");var Nt={};C(Nt,{code:()=>xo,createLink:()=>bn,createNode:()=>wn,decode:()=>_o,encode:()=>U,name:()=>bo,prepare:()=>F,validate:()=>Ce});var co=new TextDecoder;function Ne(r,t){let e=0;for(let n=0;;n+=7){if(n>=64)throw new Error("protobuf: varint overflow");if(t>=r.length)throw new Error("protobuf: unexpected end of data");let i=r[t++];if(e+=n<28?(i&127)<<n:(i&127)*2**n,i<128)break}return[e,t]}function Jt(r,t){let e;[e,t]=Ne(r,t);let n=t+e;if(e<0||n<0)throw new Error("protobuf: invalid length");if(n>r.length)throw new Error("protobuf: unexpected end of data");return[r.subarray(t,n),n]}function un(r,t){let e;return[e,t]=Ne(r,t),[e&7,e>>3,t]}function fo(r){let t={},e=r.length,n=0;for(;n<e;){let i,o;if([i,o,n]=un(r,n),o===1){if(t.Hash)throw new Error("protobuf: (PBLink) duplicate Hash section");if(i!==2)throw new Error(`protobuf: (PBLink) wrong wireType (${i}) for Hash`);if(t.Name!==void 0)throw new Error("protobuf: (PBLink) invalid order, found Name before Hash");if(t.Tsize!==void 0)throw new Error("protobuf: (PBLink) invalid order, found Tsize before Hash");[t.Hash,n]=Jt(r,n)}else if(o===2){if(t.Name!==void 0)throw new Error("protobuf: (PBLink) duplicate Name section");if(i!==2)throw new Error(`protobuf: (PBLink) wrong wireType (${i}) for Name`);if(t.Tsize!==void 0)throw new Error("protobuf: (PBLink) invalid order, found Tsize before Name");let s;[s,n]=Jt(r,n),t.Name=co.decode(s)}else if(o===3){if(t.Tsize!==void 0)throw new Error("protobuf: (PBLink) duplicate Tsize section");if(i!==0)throw new Error(`protobuf: (PBLink) wrong wireType (${i}) for Tsize`);[t.Tsize,n]=Ne(r,n)}else throw new Error(`protobuf: (PBLink) invalid fieldNumber, expected 1, 2 or 3, got ${o}`)}if(n>e)throw new Error("protobuf: (PBLink) unexpected end of data");return t}function hn(r){let t=r.length,e=0,n,i=!1,o;for(;e<t;){let f,c;if([f,c,e]=un(r,e),f!==2)throw new Error(`protobuf: (PBNode) invalid wireType, expected 2, got ${f}`);if(c===1){if(o)throw new Error("protobuf: (PBNode) duplicate Data section");[o,e]=Jt(r,e),n&&(i=!0)}else if(c===2){if(i)throw new Error("protobuf: (PBNode) duplicate Links section");n||(n=[]);let u;[u,e]=Jt(r,e),n.push(fo(u))}else throw new Error(`protobuf: (PBNode) invalid fieldNumber, expected 1 or 2, got ${c}`)}if(e>t)throw new Error("protobuf: (PBNode) unexpected end of data");let s={};return o&&(s.Data=o),s.Links=n||[],s}var dn=new TextEncoder,ln=2**32,uo=2**31;function ho(r,t){let e=t.length;if(typeof r.Tsize=="number"){if(r.Tsize<0)throw new Error("Tsize cannot be negative");if(!Number.isSafeInteger(r.Tsize))throw new Error("Tsize too large for encoding");e=Et(t,e,r.Tsize)-1,t[e]=24}if(typeof r.Name=="string"){let n=dn.encode(r.Name);e-=n.length,t.set(n,e),e=Et(t,e,n.length)-1,t[e]=18}return r.Hash&&(e-=r.Hash.length,t.set(r.Hash,e),e=Et(t,e,r.Hash.length)-1,t[e]=10),t.length-e}function pn(r){let t=po(r),e=new Uint8Array(t),n=t;if(r.Data&&(n-=r.Data.length,e.set(r.Data,n),n=Et(e,n,r.Data.length)-1,e[n]=10),r.Links)for(let i=r.Links.length-1;i>=0;i--){let o=ho(r.Links[i],e.subarray(0,n));n-=o,n=Et(e,n,o)-1,e[n]=18}return e}function lo(r){let t=0;if(r.Hash){let e=r.Hash.length;t+=1+e+wt(e)}if(typeof r.Name=="string"){let e=dn.encode(r.Name).length;t+=1+e+wt(e)}return typeof r.Tsize=="number"&&(t+=1+wt(r.Tsize)),t}function po(r){let t=0;if(r.Data){let e=r.Data.length;t+=1+e+wt(e)}if(r.Links)for(let e of r.Links){let n=lo(e);t+=1+n+wt(n)}return t}function Et(r,t,e){t-=wt(e);let n=t;for(;e>=uo;)r[t++]=e&127|128,e/=128;for(;e>=128;)r[t++]=e&127|128,e>>>=7;return r[t]=e,n}function wt(r){return r%2===0&&r++,Math.floor((mo(r)+6)/7)}function mo(r){let t=0;return r>=ln&&(r=Math.floor(r/ln),t=32),r>=1<<16&&(r>>>=16,t+=16),r>=1<<8&&(r>>>=8,t+=8),t+yo[r]}var yo=[0,1,2,2,3,3,3,3,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8];var go=["Data","Links"],wo=["Hash","Name","Tsize"],ze=new TextEncoder;function yn(r,t){if(r===t)return 0;let e=r.Name?ze.encode(r.Name):[],n=t.Name?ze.encode(t.Name):[],i=e.length,o=n.length;for(let s=0,f=Math.min(i,o);s<f;++s)if(e[s]!==n[s]){i=e[s],o=n[s];break}return i<o?-1:o<i?1:0}function mn(r,t){return!Object.keys(r).some(e=>!t.includes(e))}function gn(r){if(typeof r.asCID=="object"){let e=k.asCID(r);if(!e)throw new TypeError("Invalid DAG-PB form");return{Hash:e}}if(typeof r!="object"||Array.isArray(r))throw new TypeError("Invalid DAG-PB form");let t={};if(r.Hash){let e=k.asCID(r.Hash);try{e||(typeof r.Hash=="string"?e=k.parse(r.Hash):r.Hash instanceof Uint8Array&&(e=k.decode(r.Hash)))}catch(n){throw new TypeError(`Invalid DAG-PB form: ${n.message}`)}e&&(t.Hash=e)}if(!t.Hash)throw new TypeError("Invalid DAG-PB form");return typeof r.Name=="string"&&(t.Name=r.Name),typeof r.Tsize=="number"&&(t.Tsize=r.Tsize),t}function F(r){if((r instanceof Uint8Array||typeof r=="string")&&(r={Data:r}),typeof r!="object"||Array.isArray(r))throw new TypeError("Invalid DAG-PB form");let t={};if(r.Data!==void 0)if(typeof r.Data=="string")t.Data=ze.encode(r.Data);else if(r.Data instanceof Uint8Array)t.Data=r.Data;else throw new TypeError("Invalid DAG-PB form");if(r.Links!==void 0)if(Array.isArray(r.Links))t.Links=r.Links.map(gn),t.Links.sort(yn);else throw new TypeError("Invalid DAG-PB form");else t.Links=[];return t}function Ce(r){if(!r||typeof r!="object"||Array.isArray(r)||r instanceof Uint8Array||r["/"]&&r["/"]===r.bytes)throw new TypeError("Invalid DAG-PB form");if(!mn(r,go))throw new TypeError("Invalid DAG-PB form (extraneous properties)");if(r.Data!==void 0&&!(r.Data instanceof Uint8Array))throw new TypeError("Invalid DAG-PB form (Data must be bytes)");if(!Array.isArray(r.Links))throw new TypeError("Invalid DAG-PB form (Links must be a list)");for(let t=0;t<r.Links.length;t++){let e=r.Links[t];if(!e||typeof e!="object"||Array.isArray(e)||e instanceof Uint8Array||e["/"]&&e["/"]===e.bytes)throw new TypeError("Invalid DAG-PB form (bad link)");if(!mn(e,wo))throw new TypeError("Invalid DAG-PB form (extraneous properties on link)");if(e.Hash===void 0)throw new TypeError("Invalid DAG-PB form (link must have a Hash)");if(e.Hash==null||!e.Hash["/"]||e.Hash["/"]!==e.Hash.bytes)throw new TypeError("Invalid DAG-PB form (link Hash must be a CID)");if(e.Name!==void 0&&typeof e.Name!="string")throw new TypeError("Invalid DAG-PB form (link Name must be a string)");if(e.Tsize!==void 0){if(typeof e.Tsize!="number"||e.Tsize%1!==0)throw new TypeError("Invalid DAG-PB form (link Tsize must be an integer)");if(e.Tsize<0)throw new TypeError("Invalid DAG-PB form (link Tsize cannot be negative)")}if(t>0&&yn(e,r.Links[t-1])===-1)throw new TypeError("Invalid DAG-PB form (links must be sorted by Name bytes)")}}function wn(r,t=[]){return F({Data:r,Links:t})}function bn(r,t,e){return gn({Hash:e,Name:r,Tsize:t})}var bo="dag-pb",xo=112;function U(r){Ce(r);let t={};return r.Links&&(t.Links=r.Links.map(e=>{let n={};return e.Hash&&(n.Hash=e.Hash.bytes),e.Name!==void 0&&(n.Name=e.Name),e.Tsize!==void 0&&(n.Tsize=e.Tsize),n})),r.Data&&(t.Data=r.Data),pn(t)}function _o(r){let t=hn(r),e={};return t.Data&&(e.Data=t.Data),t.Links&&(e.Links=t.Links.map(n=>{let i={};try{i.Hash=k.decode(n.Hash)}catch{}if(!i.Hash)throw new Error("Invalid Hash field found in link, expected CID");return n.Name!==void 0&&(i.Name=n.Name),n.Tsize!==void 0&&(i.Tsize=n.Tsize),i})),e}var Fe={};C(Fe,{sha256:()=>Ie,sha512:()=>vo});var ot=({name:r,code:t,encode:e})=>new Pe(r,t,e),Pe=class{constructor(t,e,n){this.name=t,this.code=e,this.encode=n}digest(t){if(t instanceof Uint8Array){let e=this.encode(t);return e instanceof Uint8Array?it(this.code,e):e.then(n=>it(this.code,n))}else throw Error("Unknown type, must be binary type")}};var _n=r=>async t=>new Uint8Array(await crypto.subtle.digest(r,t)),Ie=ot({name:"sha2-256",code:18,encode:_n("SHA-256")}),vo=ot({name:"sha2-512",code:19,encode:_n("SHA-512")});var G=async(r,t,e)=>{e.codec==null&&(e.codec=Nt);let n=await Ie.digest(r),i=k.create(e.cidVersion,e.codec.code,n);return await t.put(i,r,{signal:e.signal}),i};var vn=async(r,t,e)=>{let n=new P({type:"directory",mtime:r.mtime,mode:r.mode}),i=U(F({Data:n.marshal()})),o=await G(i,t,e),s=r.path;return{cid:o,path:s,unixfs:n,size:BigInt(i.length),originalPath:r.originalPath}};var zt={};C(zt,{code:()=>Kt,decode:()=>ko,encode:()=>Ao,name:()=>Bo});var Bo="raw",Kt=85,Ao=r=>H(r),ko=r=>H(r);async function*So(r,t,e){let n=-1,i;for await(let o of bt(e.bufferImporter(r,t),e.blockWriteConcurrency)){if(n++,n===0){i=o;continue}else n===1&&i!=null&&(yield i,i=void 0);yield o}i!=null&&(i.single=!0,yield i)}var Do=(r,t,e)=>async function(i){if(i.length===1&&i[0]?.single===!0&&e.reduceSingleLeafToSelf){let h=i[0];if(r.mtime!==void 0||r.mode!==void 0){let p=await t.get(h.cid);h.unixfs=new P({type:"file",mtime:r.mtime,mode:r.mode,data:p}),p=U(F({Data:h.unixfs.marshal()})),h.cid=await G(p,t,{...e,cidVersion:e.cidVersion}),h.size=BigInt(p.length)}return{cid:h.cid,path:r.path,unixfs:h.unixfs,size:h.size,originalPath:h.originalPath}}let o=new P({type:"file",mtime:r.mtime,mode:r.mode}),s=i.filter(h=>h.cid.code===Kt&&h.size>0||h.unixfs!=null&&h.unixfs.data==null&&h.unixfs.fileSize()>0n?!0:Boolean(h.unixfs?.data?.length)).map(h=>h.cid.code===Kt?(o.addBlockSize(h.size),{Name:"",Tsize:Number(h.size),Hash:h.cid}):(h.unixfs==null||h.unixfs.data==null?o.addBlockSize(h.unixfs?.fileSize()??0n):o.addBlockSize(BigInt(h.unixfs.data.length)),{Name:"",Tsize:Number(h.size),Hash:h.cid})),f={Data:o.marshal(),Links:s},c=U(F(f));return{cid:await G(c,t,e),path:r.path,unixfs:o,size:BigInt(c.length+f.Links.reduce((h,p)=>h+(p.Tsize??0),0)),originalPath:r.originalPath}},Bn=async(r,t,e)=>await e.layout(So(r,t,e),Do(r,t,e));var Ue=O(xt(),1);function Lo(r){return Symbol.iterator in r}function To(r){return Symbol.asyncIterator in r}function Eo(r){try{if(r instanceof Uint8Array)return async function*(){yield r}();if(Lo(r))return async function*(){yield*r}();if(To(r))return r}catch{throw(0,Ue.default)(new Error("Content was invalid"),"ERR_INVALID_CONTENT")}throw(0,Ue.default)(new Error("Content was invalid"),"ERR_INVALID_CONTENT")}function An(r){return async function*(e,n){for await(let i of e){let o;if(i.path!=null&&(o=i.path,i.path=i.path.split("/").filter(s=>s!=null&&s!==".").join("/")),i.content!=null){let s={path:i.path,mtime:i.mtime,mode:i.mode,content:r.chunker(r.chunkValidator(Eo(i.content))),originalPath:o};yield async()=>await Bn(s,n,r)}else if(i.path!=null){let s={path:i.path,mtime:i.mtime,mode:i.mode,originalPath:o};yield async()=>await vn(s,n,r)}else throw new Error("Import candidate must have content or path or both")}}}var J=class{constructor(t,e){this.options=e??{},this.root=t.root,this.dir=t.dir,this.path=t.path,this.dirty=t.dirty,this.flat=t.flat,this.parent=t.parent,this.parentKey=t.parentKey,this.unixfs=t.unixfs,this.mode=t.mode,this.mtime=t.mtime}},Ct=k.parse("QmUNLLsPACCz1vLxQVkXqqLX5R1X345qqfHbsf67hvA3Nn"),Pt=k.parse("zdj7WbTaiJT1fgatdet9Ei9iDB5hdCxkbVyhyh8YTUnXMiwYi");var st=class extends J{constructor(t,e){super(t,e),this._children=new Map}async put(t,e){this.cid=void 0,this.size=void 0,this.nodeSize=void 0,this._children.set(t,e)}async get(t){return await Promise.resolve(this._children.get(t))}childCount(){return this._children.size}directChildrenCount(){return this.childCount()}onlyChild(){return this._children.values().next().value}async*eachChildSeries(){for(let[t,e]of this._children.entries())yield{key:t,child:e}}estimateNodeSize(){if(this.nodeSize!==void 0)return this.nodeSize;this.nodeSize=0;for(let[t,e]of this._children.entries())e.size!=null&&e.cid!=null&&(this.nodeSize+=t.length+(this.options.cidVersion===1?Pt.bytes.byteLength:Ct.bytes.byteLength));return this.nodeSize}async*flush(t){let e=[];for(let[c,u]of this._children.entries()){if(u instanceof J)for await(let h of u.flush(t))u=h,yield u;u.size!=null&&u.cid!=null&&e.push({Name:c,Tsize:Number(u.size),Hash:u.cid})}let n=new P({type:"directory",mtime:this.mtime,mode:this.mode}),i={Data:n.marshal(),Links:e},o=U(F(i)),s=await G(o,t,this.options),f=o.length+i.Links.reduce((c,u)=>c+(u.Tsize==null?0:u.Tsize),0);this.cid=s,this.size=f,yield{cid:s,unixfs:n,path:this.path,size:BigInt(f)}}};var Pn=O(Dn(),1);var Me={};C(Me,{identity:()=>Po});var Po=yt({prefix:"\0",name:"identity",encode:r=>Be(r),decode:r=>ve(r)});var He={};C(He,{base2:()=>Io});var Io=T({prefix:"0",name:"base2",alphabet:"01",bitsPerChar:1});var Oe={};C(Oe,{base8:()=>Fo});var Fo=T({prefix:"7",name:"base8",alphabet:"01234567",bitsPerChar:3});var Re={};C(Re,{base10:()=>Uo});var Uo=tt({prefix:"9",name:"base10",alphabet:"0123456789"});var Ve={};C(Ve,{base16:()=>Mo,base16upper:()=>Ho});var Mo=T({prefix:"f",name:"base16",alphabet:"0123456789abcdef",bitsPerChar:4}),Ho=T({prefix:"F",name:"base16upper",alphabet:"0123456789ABCDEF",bitsPerChar:4});var qe={};C(qe,{base36:()=>Oo,base36upper:()=>Ro});var Oo=tt({prefix:"k",name:"base36",alphabet:"0123456789abcdefghijklmnopqrstuvwxyz"}),Ro=tt({prefix:"K",name:"base36upper",alphabet:"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"});var Ge={};C(Ge,{base64:()=>Vo,base64pad:()=>qo,base64url:()=>Go,base64urlpad:()=>jo});var Vo=T({prefix:"m",name:"base64",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",bitsPerChar:6}),qo=T({prefix:"M",name:"base64pad",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",bitsPerChar:6}),Go=T({prefix:"u",name:"base64url",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_",bitsPerChar:6}),jo=T({prefix:"U",name:"base64urlpad",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_=",bitsPerChar:6});var je={};C(je,{base256emoji:()=>Xo});var Ln=Array.from("\u{1F680}\u{1FA90}\u2604\u{1F6F0}\u{1F30C}\u{1F311}\u{1F312}\u{1F313}\u{1F314}\u{1F315}\u{1F316}\u{1F317}\u{1F318}\u{1F30D}\u{1F30F}\u{1F30E}\u{1F409}\u2600\u{1F4BB}\u{1F5A5}\u{1F4BE}\u{1F4BF}\u{1F602}\u2764\u{1F60D}\u{1F923}\u{1F60A}\u{1F64F}\u{1F495}\u{1F62D}\u{1F618}\u{1F44D}\u{1F605}\u{1F44F}\u{1F601}\u{1F525}\u{1F970}\u{1F494}\u{1F496}\u{1F499}\u{1F622}\u{1F914}\u{1F606}\u{1F644}\u{1F4AA}\u{1F609}\u263A\u{1F44C}\u{1F917}\u{1F49C}\u{1F614}\u{1F60E}\u{1F607}\u{1F339}\u{1F926}\u{1F389}\u{1F49E}\u270C\u2728\u{1F937}\u{1F631}\u{1F60C}\u{1F338}\u{1F64C}\u{1F60B}\u{1F497}\u{1F49A}\u{1F60F}\u{1F49B}\u{1F642}\u{1F493}\u{1F929}\u{1F604}\u{1F600}\u{1F5A4}\u{1F603}\u{1F4AF}\u{1F648}\u{1F447}\u{1F3B6}\u{1F612}\u{1F92D}\u2763\u{1F61C}\u{1F48B}\u{1F440}\u{1F62A}\u{1F611}\u{1F4A5}\u{1F64B}\u{1F61E}\u{1F629}\u{1F621}\u{1F92A}\u{1F44A}\u{1F973}\u{1F625}\u{1F924}\u{1F449}\u{1F483}\u{1F633}\u270B\u{1F61A}\u{1F61D}\u{1F634}\u{1F31F}\u{1F62C}\u{1F643}\u{1F340}\u{1F337}\u{1F63B}\u{1F613}\u2B50\u2705\u{1F97A}\u{1F308}\u{1F608}\u{1F918}\u{1F4A6}\u2714\u{1F623}\u{1F3C3}\u{1F490}\u2639\u{1F38A}\u{1F498}\u{1F620}\u261D\u{1F615}\u{1F33A}\u{1F382}\u{1F33B}\u{1F610}\u{1F595}\u{1F49D}\u{1F64A}\u{1F639}\u{1F5E3}\u{1F4AB}\u{1F480}\u{1F451}\u{1F3B5}\u{1F91E}\u{1F61B}\u{1F534}\u{1F624}\u{1F33C}\u{1F62B}\u26BD\u{1F919}\u2615\u{1F3C6}\u{1F92B}\u{1F448}\u{1F62E}\u{1F646}\u{1F37B}\u{1F343}\u{1F436}\u{1F481}\u{1F632}\u{1F33F}\u{1F9E1}\u{1F381}\u26A1\u{1F31E}\u{1F388}\u274C\u270A\u{1F44B}\u{1F630}\u{1F928}\u{1F636}\u{1F91D}\u{1F6B6}\u{1F4B0}\u{1F353}\u{1F4A2}\u{1F91F}\u{1F641}\u{1F6A8}\u{1F4A8}\u{1F92C}\u2708\u{1F380}\u{1F37A}\u{1F913}\u{1F619}\u{1F49F}\u{1F331}\u{1F616}\u{1F476}\u{1F974}\u25B6\u27A1\u2753\u{1F48E}\u{1F4B8}\u2B07\u{1F628}\u{1F31A}\u{1F98B}\u{1F637}\u{1F57A}\u26A0\u{1F645}\u{1F61F}\u{1F635}\u{1F44E}\u{1F932}\u{1F920}\u{1F927}\u{1F4CC}\u{1F535}\u{1F485}\u{1F9D0}\u{1F43E}\u{1F352}\u{1F617}\u{1F911}\u{1F30A}\u{1F92F}\u{1F437}\u260E\u{1F4A7}\u{1F62F}\u{1F486}\u{1F446}\u{1F3A4}\u{1F647}\u{1F351}\u2744\u{1F334}\u{1F4A3}\u{1F438}\u{1F48C}\u{1F4CD}\u{1F940}\u{1F922}\u{1F445}\u{1F4A1}\u{1F4A9}\u{1F450}\u{1F4F8}\u{1F47B}\u{1F910}\u{1F92E}\u{1F3BC}\u{1F975}\u{1F6A9}\u{1F34E}\u{1F34A}\u{1F47C}\u{1F48D}\u{1F4E3}\u{1F942}"),$o=Ln.reduce((r,t,e)=>(r[e]=t,r),[]),Wo=Ln.reduce((r,t,e)=>(r[t.codePointAt(0)]=e,r),[]);function Jo(r){return r.reduce((t,e)=>(t+=$o[e],t),"")}function Ko(r){let t=[];for(let e of r){let n=Wo[e.codePointAt(0)];if(n===void 0)throw new Error(`Non-base256emoji character: ${e}`);t.push(n)}return new Uint8Array(t)}var Xo=yt({prefix:"\u{1F680}",name:"base256emoji",encode:Jo,decode:Ko});var $e={};C($e,{identity:()=>Yo});var Tn=0,Qo="identity",En=H,Zo=r=>it(Tn,En(r)),Yo={code:Tn,name:Qo,encode:En,digest:Zo};var sc=new TextEncoder,ac=new TextDecoder;var We={...Me,...He,...Oe,...Re,...Ve,...Te,...qe,...Le,...Ge,...je},lc={...Fe,...$e};function at(r){return globalThis.Buffer!=null?new Uint8Array(r.buffer,r.byteOffset,r.byteLength):r}function Q(r=0){return globalThis.Buffer?.alloc!=null?at(globalThis.Buffer.alloc(r)):new Uint8Array(r)}function ct(r=0){return globalThis.Buffer?.allocUnsafe!=null?at(globalThis.Buffer.allocUnsafe(r)):new Uint8Array(r)}function zn(r,t,e,n){return{name:r,prefix:t,encoder:{name:r,prefix:t,encode:e},decoder:{decode:n}}}var Nn=zn("utf8","u",r=>"u"+new TextDecoder("utf8").decode(r),r=>new TextEncoder().encode(r.substring(1))),Je=zn("ascii","a",r=>{let t="a";for(let e=0;e<r.length;e++)t+=String.fromCharCode(r[e]);return t},r=>{r=r.substring(1);let t=ct(r.length);for(let e=0;e<r.length;e++)t[e]=r.charCodeAt(e);return t}),es={utf8:Nn,"utf-8":Nn,hex:We.base16,latin1:Je,ascii:Je,binary:Je,...We},Cn=es;function Xt(r,t="utf8"){let e=Cn[t];if(e==null)throw new Error(`Unsupported encoding "${t}"`);return(t==="utf8"||t==="utf-8")&&globalThis.Buffer!=null&&globalThis.Buffer.from!=null?at(globalThis.Buffer.from(r,"utf-8")):e.decoder.decode(`${e.prefix}${r}`)}var I=class{constructor(t,e,n=0){this._options=t,this._popCount=0,this._parent=e,this._posAtParent=n,this._children=new Pn.default,this.key=null}async put(t,e){let n=await this._findNewBucketAndPos(t);await n.bucket._putAt(n,t,e)}async get(t){let e=await this._findChild(t);if(e!=null)return e.value}async del(t){let e=await this._findPlace(t),n=e.bucket._at(e.pos);n!=null&&n.key===t&&e.bucket._delAt(e.pos)}leafCount(){return this._children.compactArray().reduce((e,n)=>n instanceof I?e+n.leafCount():e+1,0)}childrenCount(){return this._children.length}onlyChild(){return this._children.get(0)}*eachLeafSeries(){let t=this._children.compactArray();for(let e of t)e instanceof I?yield*e.eachLeafSeries():yield e}serialize(t,e){let n=[];return e(this._children.reduce((i,o,s)=>(o!=null&&(o instanceof I?i.push(o.serialize(t,e)):i.push(t(o,s))),i),n))}async asyncTransform(t,e){return await In(this,t,e)}toJSON(){return this.serialize(ns,is)}prettyPrint(){return JSON.stringify(this.toJSON(),null," ")}tableSize(){return Math.pow(2,this._options.bits)}async _findChild(t){let e=await this._findPlace(t),n=e.bucket._at(e.pos);if(!(n instanceof I)&&n!=null&&n.key===t)return n}async _findPlace(t){let e=this._options.hash(typeof t=="string"?Xt(t):t),n=await e.take(this._options.bits),i=this._children.get(n);return i instanceof I?await i._findPlace(e):{bucket:this,pos:n,hash:e,existingChild:i}}async _findNewBucketAndPos(t){let e=await this._findPlace(t);if(e.existingChild!=null&&e.existingChild.key!==t){let n=new I(this._options,e.bucket,e.pos);e.bucket._putObjectAt(e.pos,n);let i=await n._findPlace(e.existingChild.hash);return i.bucket._putAt(i,e.existingChild.key,e.existingChild.value),await n._findNewBucketAndPos(e.hash)}return e}_putAt(t,e,n){this._putObjectAt(t.pos,{key:e,value:n,hash:t.hash})}_putObjectAt(t,e){this._children.get(t)==null&&this._popCount++,this._children.set(t,e)}_delAt(t){if(t===-1)throw new Error("Invalid position");this._children.get(t)!=null&&this._popCount--,this._children.unset(t),this._level()}_level(){if(this._parent!=null&&this._popCount<=1)if(this._popCount===1){let t=this._children.find(rs);if(t!=null&&!(t instanceof I)){let e=t.hash;e.untake(this._options.bits);let n={pos:this._posAtParent,hash:e,bucket:this._parent};this._parent._putAt(n,t.key,t.value)}}else this._parent._delAt(this._posAtParent)}_at(t){return this._children.get(t)}};function rs(r){return Boolean(r)}function ns(r,t){return r.key}function is(r){return r}async function In(r,t,e){let n=[];for(let i of r._children.compactArray())if(i instanceof I)await In(i,t,e);else{let o=await t(i);n.push({bitField:r._children.bitField(),children:o})}return await e(n)}var os=[255,254,252,248,240,224,192,128],ss=[1,3,7,15,31,63,127,255],Qt=class{constructor(t){this._value=t,this._currentBytePos=t.length-1,this._currentBitPos=7}availableBits(){return this._currentBitPos+1+this._currentBytePos*8}totalBits(){return this._value.length*8}take(t){let e=t,n=0;for(;e>0&&this._haveBits();){let i=this._value[this._currentBytePos],o=this._currentBitPos+1,s=Math.min(o,e),f=as(i,o-s,s);n=(n<<s)+f,e-=s,this._currentBitPos-=s,this._currentBitPos<0&&(this._currentBitPos=7,this._currentBytePos--)}return n}untake(t){for(this._currentBitPos+=t;this._currentBitPos>7;)this._currentBitPos-=8,this._currentBytePos+=1}_haveBits(){return this._currentBytePos>=0}};function as(r,t,e){let n=cs(t,e);return(r&n)>>>t}function cs(r,t){return os[r]&ss[Math.min(t+r-1,7)]}function It(r,t){t==null&&(t=r.reduce((i,o)=>i+o.length,0));let e=ct(t),n=0;for(let i of r)e.set(i,n),n+=i.length;return at(e)}function Fn(r){function t(e){return e instanceof Zt?e:new Zt(e,r)}return t}var Zt=class{constructor(t,e){if(!(t instanceof Uint8Array))throw new Error("can only hash Uint8Arrays");this._value=t,this._hashFn=e,this._depth=-1,this._availableBits=0,this._currentBufferIndex=0,this._buffers=[]}async take(t){let e=t;for(;this._availableBits<e;)await this._produceMoreBits();let n=0;for(;e>0;){let i=this._buffers[this._currentBufferIndex],o=Math.min(i.availableBits(),e),s=i.take(o);n=(n<<o)+s,e-=o,this._availableBits-=o,i.availableBits()===0&&this._currentBufferIndex++}return n}untake(t){let e=t;for(;e>0;){let n=this._buffers[this._currentBufferIndex],i=Math.min(n.totalBits()-n.availableBits(),e);n.untake(i),e-=i,this._availableBits+=i,this._currentBufferIndex>0&&n.totalBits()===n.availableBits()&&(this._depth--,this._currentBufferIndex--)}}async _produceMoreBits(){this._depth++;let t=this._depth>0?It([this._value,Uint8Array.from([this._depth])]):this._value,e=await this._hashFn(t),n=new Qt(e);this._buffers.push(n),this._availableBits+=n.availableBits()}};function Un(r){if(r==null||r.hashFn==null)throw new Error("please define an options.hashFn");let t={bits:r.bits??8,hash:Fn(r.hashFn)};return new I(t)}var te=O(On(),1);function fs(r){let t=new Array(4);for(let e=0;e<4;e++)t[e]=r&255,r=r>>8;return new Uint8Array(t)}var Mc=ot({name:"murmur3-32",code:35,encode:r=>fs(te.default.x86.hash32(r))}),Rn=ot({name:"murmur3-128",code:34,encode:r=>pt.fromHex(te.default.x64.hash128(r))}),Hc=ot({name:"murmur3-x64-64",code:34,encode:r=>pt.fromHex(te.default.x64.hash128(r)).subarray(0,8)});async function us(r){return(await Rn.encode(r)).slice(0,8).reverse()}var Vn=BigInt(34),Ke=class extends J{constructor(t,e){super(t,e),this._bucket=Un({hashFn:us,bits:8})}async put(t,e){this.cid=void 0,this.size=void 0,this.nodeSize=void 0,await this._bucket.put(t,e)}async get(t){return await this._bucket.get(t)}childCount(){return this._bucket.leafCount()}directChildrenCount(){return this._bucket.childrenCount()}onlyChild(){return this._bucket.onlyChild()}async*eachChildSeries(){for await(let{key:t,value:e}of this._bucket.eachLeafSeries())yield{key:t,child:e}}estimateNodeSize(){return this.nodeSize!==void 0?this.nodeSize:(this.nodeSize=jn(this._bucket,this,this.options),this.nodeSize)}async*flush(t){for await(let e of Gn(this._bucket,t,this,this.options))yield{...e,path:this.path}}},qn=Ke;async function*Gn(r,t,e,n){let i=r._children,o=[],s=0n;for(let a=0;a<i.length;a++){let l=i.get(a);if(l==null)continue;let m=a.toString(16).toUpperCase().padStart(2,"0");if(l instanceof I){let S;for await(let d of Gn(l,t,null,n))S=d;if(S==null)throw new Error("Could not flush sharded directory, no subshard found");o.push({Name:m,Tsize:Number(S.size),Hash:S.cid}),s+=S.size}else if(hs(l.value)){let S=l.value,d;for await(let w of S.flush(t))d=w,yield d;if(d==null)throw new Error("Did not flush dir");let y=m+l.key;o.push({Name:y,Tsize:Number(d.size),Hash:d.cid}),s+=d.size}else{let S=l.value;if(S.cid==null)continue;let d=m+l.key,y=S.size;o.push({Name:d,Tsize:Number(y),Hash:S.cid}),s+=BigInt(y??0)}}let f=Uint8Array.from(i.bitField().reverse()),c=new P({type:"hamt-sharded-directory",data:f,fanout:BigInt(r.tableSize()),hashType:Vn,mtime:e?.mtime,mode:e?.mode}),u={Data:c.marshal(),Links:o},h=U(F(u)),p=await G(h,t,n),D=BigInt(h.byteLength)+s;yield{cid:p,unixfs:c,size:D}}function hs(r){return typeof r.flush=="function"}function jn(r,t,e){let n=r._children,i=[];for(let c=0;c<n.length;c++){let u=n.get(c);if(u==null)continue;let h=c.toString(16).toUpperCase().padStart(2,"0");if(u instanceof I){let p=jn(u,null,e);i.push({Name:h,Tsize:Number(p),Hash:e.cidVersion===0?Ct:Pt})}else if(typeof u.value.flush=="function"){let D=u.value.nodeSize();i.push({Name:h+u.key,Tsize:Number(D),Hash:e.cidVersion===0?Ct:Pt})}else{let p=u.value;if(p.cid==null)continue;let D=h+u.key,a=p.size;i.push({Name:D,Tsize:Number(a),Hash:p.cid})}}let o=Uint8Array.from(n.bitField().reverse()),s=new P({type:"hamt-sharded-directory",data:o,fanout:BigInt(r.tableSize()),hashType:Vn,mtime:t?.mtime,mode:t?.mode});return U(F({Data:s.marshal(),Links:i})).length}async function Xe(r,t,e,n){let i=t;t instanceof st&&t.estimateNodeSize()>e&&(i=await ls(t,n));let o=i.parent;if(o!=null){if(i!==t){if(r!=null&&(r.parent=i),i.parentKey==null)throw new Error("No parent key found");await o.put(i.parentKey,i)}return await Xe(i,o,e,n)}return i}async function ls(r,t){let e=new qn({root:r.root,dir:!0,parent:r.parent,parentKey:r.parentKey,path:r.path,dirty:r.dirty,flat:!1,mtime:r.mtime,mode:r.mode},t);for await(let{key:n,child:i}of r.eachChildSeries())await e.put(n,i);return e}var $n=(r="")=>(r.trim().match(/([^\\/]|\\\/)+/g)??[]).filter(Boolean);async function ds(r,t,e){let n=$n(r.path??""),i=n.length-1,o=t,s="";for(let f=0;f<n.length;f++){let c=n[f];s+=`${s!==""?"/":""}${c}`;let u=f===i;if(o.dirty=!0,o.cid=void 0,o.size=void 0,u)await o.put(c,r),t=await Xe(null,o,e.shardSplitThresholdBytes,e);else{let h=await o.get(c);(h==null||!(h instanceof J))&&(h=new st({root:!1,dir:!0,parent:o,parentKey:c,path:s,dirty:!0,flat:!0,mtime:h?.unixfs?.mtime,mode:h?.unixfs?.mode},e)),await o.put(c,h),o=h}}return t}async function*Wn(r,t){if(!(r instanceof J)){r.unixfs?.isDirectory()===!0&&(yield r);return}yield*r.flush(t)}function Jn(r){return async function*(e,n){let i=new st({root:!0,dir:!0,path:"",dirty:!0,flat:!0},r),o,s=!1;for await(let f of e){if(f==null)continue;let c=`${f.originalPath??""}`.split("/")[0];c!=null&&c!==""&&(o==null?(o=c,s=!0):o!==c&&(s=!1)),i=await ds(f,i,r),(f.unixfs==null||!f.unixfs.isDirectory())&&(yield f)}if(r.wrapWithDirectory||s&&i.childCount()>1)yield*Wn(i,n);else for await(let f of i.eachChildSeries())f!=null&&(yield*Wn(f.child,n))}}var Qe=O(xt(),1);var Kn=()=>async function*(t){for await(let e of t){if(e.length===void 0)throw(0,Qe.default)(new Error("Content was invalid"),"ERR_INVALID_CONTENT");if(typeof e=="string"||e instanceof String)yield Xt(e.toString());else if(Array.isArray(e))yield Uint8Array.from(e);else if(e instanceof Uint8Array)yield e;else throw(0,Qe.default)(new Error("Content was invalid"),"ERR_INVALID_CONTENT")}};function Xn(r,t){if(r===t)return!0;if(r.byteLength!==t.byteLength)return!1;for(let e=0;e<r.byteLength;e++)if(r[e]!==t[e])return!1;return!0}var Zn=Symbol.for("@achingbrain/uint8arraylist");function Qn(r,t){if(t==null||t<0)throw new RangeError("index is out of bounds");let e=0;for(let n of r){let i=e+n.byteLength;if(t<i)return{buf:n,index:t-e};e=i}throw new RangeError("index is out of bounds")}function ee(r){return Boolean(r?.[Zn])}var K=class{constructor(...t){Object.defineProperty(this,Zn,{value:!0}),this.bufs=[],this.length=0,t.length>0&&this.appendAll(t)}*[Symbol.iterator](){yield*this.bufs}get byteLength(){return this.length}append(...t){this.appendAll(t)}appendAll(t){let e=0;for(let n of t)if(n instanceof Uint8Array)e+=n.byteLength,this.bufs.push(n);else if(ee(n))e+=n.byteLength,this.bufs.push(...n.bufs);else throw new Error("Could not append value, must be an Uint8Array or a Uint8ArrayList");this.length+=e}prepend(...t){this.prependAll(t)}prependAll(t){let e=0;for(let n of t.reverse())if(n instanceof Uint8Array)e+=n.byteLength,this.bufs.unshift(n);else if(ee(n))e+=n.byteLength,this.bufs.unshift(...n.bufs);else throw new Error("Could not prepend value, must be an Uint8Array or a Uint8ArrayList");this.length+=e}get(t){let e=Qn(this.bufs,t);return e.buf[e.index]}set(t,e){let n=Qn(this.bufs,t);n.buf[n.index]=e}write(t,e=0){if(t instanceof Uint8Array)for(let n=0;n<t.length;n++)this.set(e+n,t[n]);else if(ee(t))for(let n=0;n<t.length;n++)this.set(e+n,t.get(n));else throw new Error("Could not write value, must be an Uint8Array or a Uint8ArrayList")}consume(t){if(t=Math.trunc(t),!(Number.isNaN(t)||t<=0)){if(t===this.byteLength){this.bufs=[],this.length=0;return}for(;this.bufs.length>0;)if(t>=this.bufs[0].byteLength)t-=this.bufs[0].byteLength,this.length-=this.bufs[0].byteLength,this.bufs.shift();else{this.bufs[0]=this.bufs[0].subarray(t),this.length-=t;break}}}slice(t,e){let{bufs:n,length:i}=this._subList(t,e);return It(n,i)}subarray(t,e){let{bufs:n,length:i}=this._subList(t,e);return n.length===1?n[0]:It(n,i)}sublist(t,e){let{bufs:n,length:i}=this._subList(t,e),o=new K;return o.length=i,o.bufs=n,o}_subList(t,e){if(t=t??0,e=e??this.length,t<0&&(t=this.length+t),e<0&&(e=this.length+e),t<0||e>this.length)throw new RangeError("index is out of bounds");if(t===e)return{bufs:[],length:0};if(t===0&&e===this.length)return{bufs:[...this.bufs],length:this.length};let n=[],i=0;for(let o=0;o<this.bufs.length;o++){let s=this.bufs[o],f=i,c=f+s.byteLength;if(i=c,t>=c)continue;let u=t>=f&&t<c,h=e>f&&e<=c;if(u&&h){if(t===f&&e===c){n.push(s);break}let p=t-f;n.push(s.subarray(p,p+(e-t)));break}if(u){if(t===0){n.push(s);continue}n.push(s.subarray(t-f));continue}if(h){if(e===c){n.push(s);break}n.push(s.subarray(0,e-f));break}n.push(s)}return{bufs:n,length:e-t}}indexOf(t,e=0){if(!ee(t)&&!(t instanceof Uint8Array))throw new TypeError('The "value" argument must be a Uint8ArrayList or Uint8Array');let n=t instanceof Uint8Array?t:t.subarray();if(e=Number(e??0),isNaN(e)&&(e=0),e<0&&(e=this.length+e),e<0&&(e=0),t.length===0)return e>this.length?this.length:e;let i=n.byteLength;if(i===0)throw new TypeError("search must be at least 1 byte long");let o=256,s=new Int32Array(o);for(let p=0;p<o;p++)s[p]=-1;for(let p=0;p<i;p++)s[n[p]]=p;let f=s,c=this.byteLength-n.byteLength,u=n.byteLength-1,h;for(let p=e;p<=c;p+=h){h=0;for(let D=u;D>=0;D--){let a=this.get(p+D);if(n[D]!==a){h=Math.max(1,D-f[a]);break}}if(h===0)return p}return-1}getInt8(t){let e=this.subarray(t,t+1);return new DataView(e.buffer,e.byteOffset,e.byteLength).getInt8(0)}setInt8(t,e){let n=ct(1);new DataView(n.buffer,n.byteOffset,n.byteLength).setInt8(0,e),this.write(n,t)}getInt16(t,e){let n=this.subarray(t,t+2);return new DataView(n.buffer,n.byteOffset,n.byteLength).getInt16(0,e)}setInt16(t,e,n){let i=Q(2);new DataView(i.buffer,i.byteOffset,i.byteLength).setInt16(0,e,n),this.write(i,t)}getInt32(t,e){let n=this.subarray(t,t+4);return new DataView(n.buffer,n.byteOffset,n.byteLength).getInt32(0,e)}setInt32(t,e,n){let i=Q(4);new DataView(i.buffer,i.byteOffset,i.byteLength).setInt32(0,e,n),this.write(i,t)}getBigInt64(t,e){let n=this.subarray(t,t+8);return new DataView(n.buffer,n.byteOffset,n.byteLength).getBigInt64(0,e)}setBigInt64(t,e,n){let i=Q(8);new DataView(i.buffer,i.byteOffset,i.byteLength).setBigInt64(0,e,n),this.write(i,t)}getUint8(t){let e=this.subarray(t,t+1);return new DataView(e.buffer,e.byteOffset,e.byteLength).getUint8(0)}setUint8(t,e){let n=ct(1);new DataView(n.buffer,n.byteOffset,n.byteLength).setUint8(0,e),this.write(n,t)}getUint16(t,e){let n=this.subarray(t,t+2);return new DataView(n.buffer,n.byteOffset,n.byteLength).getUint16(0,e)}setUint16(t,e,n){let i=Q(2);new DataView(i.buffer,i.byteOffset,i.byteLength).setUint16(0,e,n),this.write(i,t)}getUint32(t,e){let n=this.subarray(t,t+4);return new DataView(n.buffer,n.byteOffset,n.byteLength).getUint32(0,e)}setUint32(t,e,n){let i=Q(4);new DataView(i.buffer,i.byteOffset,i.byteLength).setUint32(0,e,n),this.write(i,t)}getBigUint64(t,e){let n=this.subarray(t,t+8);return new DataView(n.buffer,n.byteOffset,n.byteLength).getBigUint64(0,e)}setBigUint64(t,e,n){let i=Q(8);new DataView(i.buffer,i.byteOffset,i.byteLength).setBigUint64(0,e,n),this.write(i,t)}getFloat32(t,e){let n=this.subarray(t,t+4);return new DataView(n.buffer,n.byteOffset,n.byteLength).getFloat32(0,e)}setFloat32(t,e,n){let i=Q(4);new DataView(i.buffer,i.byteOffset,i.byteLength).setFloat32(0,e,n),this.write(i,t)}getFloat64(t,e){let n=this.subarray(t,t+8);return new DataView(n.buffer,n.byteOffset,n.byteLength).getFloat64(0,e)}setFloat64(t,e,n){let i=Q(8);new DataView(i.buffer,i.byteOffset,i.byteLength).setFloat64(0,e,n),this.write(i,t)}equals(t){if(t==null||!(t instanceof K)||t.bufs.length!==this.bufs.length)return!1;for(let e=0;e<this.bufs.length;e++)if(!Xn(this.bufs[e],t.bufs[e]))return!1;return!0}static fromUint8Arrays(t,e){let n=new K;return n.bufs=t,e==null&&(e=t.reduce((i,o)=>i+o.byteLength,0)),n.length=e,n}};var ps=262144,Yn=(r={})=>{let t=r.chunkSize??ps;return async function*(n){let i=new K,o=0,s=!1;for await(let f of n)for(i.append(f),o+=f.length;o>=t;)if(yield i.slice(0,t),s=!0,t===i.length)i=new K,o=0;else{let c=new K;c.append(i.sublist(t)),i=c,o-=t}(!s||o>0)&&(yield i.subarray(0,o))}};var ms=174;function Ze(r){let t=r?.maxChildrenPerNode??ms;return async function e(n,i){let o=[];for await(let s of ft(n,t))o.push(await i(s));return o.length>1?await e(o,i):o[0]}}function ti(r){return async function*(e,n){for await(let i of e.content)yield async()=>{r.progress?.(i.length,e.path);let o,s={codec:Nt,cidVersion:r.cidVersion};return r.rawLeaves?(s.codec=zt,s.cidVersion=1):(o=new P({type:r.leafType,data:i}),i=U({Data:o.marshal(),Links:[]})),{cid:await G(i,n,s),unixfs:o,size:BigInt(i.length)}}}}async function Ye(r){for await(let t of r)return t}var ei=O(xt(),1);async function*ri(r,t,e={}){let n;Symbol.asyncIterator in r||Symbol.iterator in r?n=r:n=[r];let i=e.wrapWithDirectory??!1,o=e.shardSplitThresholdBytes??262144,s=e.cidVersion??1,f=e.rawLeaves??!0,c=e.leafType??"file",u=e.fileImportConcurrency??50,h=e.blockWriteConcurrency??10,p=e.reduceSingleLeafToSelf??!0,D=e.chunker??Yn(),a=e.chunkValidator??Kn(),l=e.dagBuilder??An({chunker:D,chunkValidator:a,wrapWithDirectory:i,layout:e.layout??Ze(),bufferImporter:e.bufferImporter??ti({cidVersion:s,rawLeaves:f,leafType:c,progress:e.progress}),blockWriteConcurrency:h,reduceSingleLeafToSelf:p,cidVersion:s}),m=e.treeBuilder??Jn({wrapWithDirectory:i,shardSplitThresholdBytes:o,cidVersion:s});for await(let S of m(bt(l(n,t),u),t))yield{cid:S.cid,path:S.path,unixfs:S.unixfs,size:S.size}}async function tr(r,t,e={}){let n=await Ye(ri([r],t,e));if(n==null)throw(0,ei.default)(new Error("Nothing imported"),"ERR_INVALID_PARAMS");return n}async function ys(r,t,e={}){return await tr({content:r},t,e)}async function gs(r,t,e={}){return await tr({content:r},t,e)}return ci(ws);})();
3
3
  return IpfsUnixfsImporter}));