@txnlab/use-wallet-ui-react 1.0.0 → 1.1.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 (75) hide show
  1. package/README.md +20 -0
  2. package/dist/cjs/chunks/floating-ui.react-Hg8yTXAw.cjs +5 -0
  3. package/dist/cjs/chunks/floating-ui.react-Hg8yTXAw.cjs.map +1 -0
  4. package/dist/cjs/index.cjs +15 -18
  5. package/dist/cjs/index.cjs.map +1 -1
  6. package/dist/cjs/plugins/export-key.cjs +9 -0
  7. package/dist/cjs/plugins/export-key.cjs.map +1 -0
  8. package/dist/esm/chunks/floating-ui.react-BBJf3vGf.js +2599 -0
  9. package/dist/esm/chunks/floating-ui.react-BBJf3vGf.js.map +1 -0
  10. package/dist/esm/index.js +4780 -7744
  11. package/dist/esm/index.js.map +1 -1
  12. package/dist/esm/plugins/export-key.js +3030 -0
  13. package/dist/esm/plugins/export-key.js.map +1 -0
  14. package/dist/style.css +112 -1
  15. package/dist/types/components/AlgoSymbol.d.ts +11 -0
  16. package/dist/types/components/AlgoSymbol.d.ts.map +1 -0
  17. package/dist/types/components/ConnectWalletButton.d.ts +9 -0
  18. package/dist/types/components/ConnectWalletButton.d.ts.map +1 -0
  19. package/dist/types/components/ConnectWalletMenu.d.ts +10 -0
  20. package/dist/types/components/ConnectWalletMenu.d.ts.map +1 -0
  21. package/dist/types/components/ConnectedWalletButton.d.ts +9 -0
  22. package/dist/types/components/ConnectedWalletButton.d.ts.map +1 -0
  23. package/dist/types/components/ConnectedWalletMenu.d.ts +10 -0
  24. package/dist/types/components/ConnectedWalletMenu.d.ts.map +1 -0
  25. package/dist/types/components/NfdAvatar.d.ts +24 -0
  26. package/dist/types/components/NfdAvatar.d.ts.map +1 -0
  27. package/dist/types/components/WalletButton.d.ts +12 -0
  28. package/dist/types/components/WalletButton.d.ts.map +1 -0
  29. package/dist/types/components/WalletList.d.ts +7 -0
  30. package/dist/types/components/WalletList.d.ts.map +1 -0
  31. package/dist/types/hooks/useAccountInfo.d.ts +12 -0
  32. package/dist/types/hooks/useAccountInfo.d.ts.map +1 -0
  33. package/dist/types/hooks/useNfd.d.ts +32 -0
  34. package/dist/types/hooks/useNfd.d.ts.map +1 -0
  35. package/dist/types/hooks/useResolvedTheme.d.ts +11 -0
  36. package/dist/types/hooks/useResolvedTheme.d.ts.map +1 -0
  37. package/dist/types/index.d.cts +17 -197
  38. package/dist/types/index.d.ts +17 -197
  39. package/dist/types/index.d.ts.map +1 -0
  40. package/dist/types/plugins/PluginContext.d.ts +29 -0
  41. package/dist/types/plugins/PluginContext.d.ts.map +1 -0
  42. package/dist/types/plugins/PluginDialogRenderer.d.ts +10 -0
  43. package/dist/types/plugins/PluginDialogRenderer.d.ts.map +1 -0
  44. package/dist/types/plugins/PluginLifecycleManager.d.ts +9 -0
  45. package/dist/types/plugins/PluginLifecycleManager.d.ts.map +1 -0
  46. package/dist/types/plugins/PluginSlot.d.ts +10 -0
  47. package/dist/types/plugins/PluginSlot.d.ts.map +1 -0
  48. package/dist/types/plugins/export-key/ExportKeyDialog.d.ts +6 -0
  49. package/dist/types/plugins/export-key/ExportKeyDialog.d.ts.map +1 -0
  50. package/dist/types/plugins/export-key/ExportKeyMenuButton.d.ts +5 -0
  51. package/dist/types/plugins/export-key/ExportKeyMenuButton.d.ts.map +1 -0
  52. package/dist/types/plugins/export-key/constants.d.ts +2 -0
  53. package/dist/types/plugins/export-key/constants.d.ts.map +1 -0
  54. package/dist/types/plugins/export-key/index.d.cts +12 -0
  55. package/dist/types/plugins/export-key/index.d.ts +12 -0
  56. package/dist/types/plugins/export-key/index.d.ts.map +1 -0
  57. package/dist/types/plugins/index.d.ts +6 -0
  58. package/dist/types/plugins/index.d.ts.map +1 -0
  59. package/dist/types/plugins/types.d.ts +109 -0
  60. package/dist/types/plugins/types.d.ts.map +1 -0
  61. package/dist/types/providers/WalletUIProvider.d.ts +58 -0
  62. package/dist/types/providers/WalletUIProvider.d.ts.map +1 -0
  63. package/dist/types/test/setup.d.ts +2 -0
  64. package/dist/types/test/setup.d.ts.map +1 -0
  65. package/dist/types/utils/cn.d.ts +16 -0
  66. package/dist/types/utils/cn.d.ts.map +1 -0
  67. package/dist/types/utils/fontLoader.d.ts +8 -0
  68. package/dist/types/utils/fontLoader.d.ts.map +1 -0
  69. package/dist/types/utils/index.d.ts +3 -0
  70. package/dist/types/utils/index.d.ts.map +1 -0
  71. package/dist/types/utils/ipfs.d.ts +10 -0
  72. package/dist/types/utils/ipfs.d.ts.map +1 -0
  73. package/dist/types/utils/ipfs.test.d.ts +2 -0
  74. package/dist/types/utils/ipfs.test.d.ts.map +1 -0
  75. package/package.json +21 -11
@@ -0,0 +1,3030 @@
1
+ import { jsx as n, jsxs as B, Fragment as be } from "react/jsx-runtime";
2
+ import { u as Te, b as Pe, c as qe, d as He, g as Le, h as Ie } from "../chunks/floating-ui.react-BBJf3vGf.js";
3
+ import { useWallet as Ke } from "@txnlab/use-wallet-react";
4
+ import { useState as ve, useRef as We, useEffect as ze, useCallback as je } from "react";
5
+ var Je = typeof globalThis < "u" ? globalThis : typeof window < "u" ? window : typeof global < "u" ? global : typeof self < "u" ? self : {};
6
+ function Ve(g) {
7
+ return g && g.__esModule && Object.prototype.hasOwnProperty.call(g, "default") ? g.default : g;
8
+ }
9
+ const Me = "export-key-dialog";
10
+ var Re = { exports: {} };
11
+ /*
12
+ * [js-sha512]{@link https://github.com/emn178/js-sha512}
13
+ *
14
+ * @version 0.8.0
15
+ * @author Chen, Yi-Cyuan [emn178@gmail.com]
16
+ * @copyright Chen, Yi-Cyuan 2014-2018
17
+ * @license MIT
18
+ */
19
+ var Se;
20
+ function Ye() {
21
+ return Se || (Se = 1, (function(g) {
22
+ (function() {
23
+ var b = "input is invalid type", E = "finalize already called", A = typeof window == "object", N = A ? window : {};
24
+ N.JS_SHA512_NO_WINDOW && (A = !1);
25
+ var ae = !A && typeof self == "object", ce = !N.JS_SHA512_NO_NODE_JS && typeof process == "object" && process.versions && process.versions.node;
26
+ ce ? N = Je : ae && (N = self);
27
+ var pe = !N.JS_SHA512_NO_COMMON_JS && !0 && g.exports, ue = !N.JS_SHA512_NO_ARRAY_BUFFER && typeof ArrayBuffer < "u", t = "0123456789abcdef".split(""), ye = [-2147483648, 8388608, 32768, 128], ie = [24, 16, 8, 0], Fe = [
28
+ 1116352408,
29
+ 3609767458,
30
+ 1899447441,
31
+ 602891725,
32
+ 3049323471,
33
+ 3964484399,
34
+ 3921009573,
35
+ 2173295548,
36
+ 961987163,
37
+ 4081628472,
38
+ 1508970993,
39
+ 3053834265,
40
+ 2453635748,
41
+ 2937671579,
42
+ 2870763221,
43
+ 3664609560,
44
+ 3624381080,
45
+ 2734883394,
46
+ 310598401,
47
+ 1164996542,
48
+ 607225278,
49
+ 1323610764,
50
+ 1426881987,
51
+ 3590304994,
52
+ 1925078388,
53
+ 4068182383,
54
+ 2162078206,
55
+ 991336113,
56
+ 2614888103,
57
+ 633803317,
58
+ 3248222580,
59
+ 3479774868,
60
+ 3835390401,
61
+ 2666613458,
62
+ 4022224774,
63
+ 944711139,
64
+ 264347078,
65
+ 2341262773,
66
+ 604807628,
67
+ 2007800933,
68
+ 770255983,
69
+ 1495990901,
70
+ 1249150122,
71
+ 1856431235,
72
+ 1555081692,
73
+ 3175218132,
74
+ 1996064986,
75
+ 2198950837,
76
+ 2554220882,
77
+ 3999719339,
78
+ 2821834349,
79
+ 766784016,
80
+ 2952996808,
81
+ 2566594879,
82
+ 3210313671,
83
+ 3203337956,
84
+ 3336571891,
85
+ 1034457026,
86
+ 3584528711,
87
+ 2466948901,
88
+ 113926993,
89
+ 3758326383,
90
+ 338241895,
91
+ 168717936,
92
+ 666307205,
93
+ 1188179964,
94
+ 773529912,
95
+ 1546045734,
96
+ 1294757372,
97
+ 1522805485,
98
+ 1396182291,
99
+ 2643833823,
100
+ 1695183700,
101
+ 2343527390,
102
+ 1986661051,
103
+ 1014477480,
104
+ 2177026350,
105
+ 1206759142,
106
+ 2456956037,
107
+ 344077627,
108
+ 2730485921,
109
+ 1290863460,
110
+ 2820302411,
111
+ 3158454273,
112
+ 3259730800,
113
+ 3505952657,
114
+ 3345764771,
115
+ 106217008,
116
+ 3516065817,
117
+ 3606008344,
118
+ 3600352804,
119
+ 1432725776,
120
+ 4094571909,
121
+ 1467031594,
122
+ 275423344,
123
+ 851169720,
124
+ 430227734,
125
+ 3100823752,
126
+ 506948616,
127
+ 1363258195,
128
+ 659060556,
129
+ 3750685593,
130
+ 883997877,
131
+ 3785050280,
132
+ 958139571,
133
+ 3318307427,
134
+ 1322822218,
135
+ 3812723403,
136
+ 1537002063,
137
+ 2003034995,
138
+ 1747873779,
139
+ 3602036899,
140
+ 1955562222,
141
+ 1575990012,
142
+ 2024104815,
143
+ 1125592928,
144
+ 2227730452,
145
+ 2716904306,
146
+ 2361852424,
147
+ 442776044,
148
+ 2428436474,
149
+ 593698344,
150
+ 2756734187,
151
+ 3733110249,
152
+ 3204031479,
153
+ 2999351573,
154
+ 3329325298,
155
+ 3815920427,
156
+ 3391569614,
157
+ 3928383900,
158
+ 3515267271,
159
+ 566280711,
160
+ 3940187606,
161
+ 3454069534,
162
+ 4118630271,
163
+ 4000239992,
164
+ 116418474,
165
+ 1914138554,
166
+ 174292421,
167
+ 2731055270,
168
+ 289380356,
169
+ 3203993006,
170
+ 460393269,
171
+ 320620315,
172
+ 685471733,
173
+ 587496836,
174
+ 852142971,
175
+ 1086792851,
176
+ 1017036298,
177
+ 365543100,
178
+ 1126000580,
179
+ 2618297676,
180
+ 1288033470,
181
+ 3409855158,
182
+ 1501505948,
183
+ 4234509866,
184
+ 1607167915,
185
+ 987167468,
186
+ 1816402316,
187
+ 1246189591
188
+ ], de = ["hex", "array", "digest", "arrayBuffer"], p = [];
189
+ (N.JS_SHA512_NO_NODE_JS || !Array.isArray) && (Array.isArray = function(e) {
190
+ return Object.prototype.toString.call(e) === "[object Array]";
191
+ }), ue && (N.JS_SHA512_NO_ARRAY_BUFFER_IS_VIEW || !ArrayBuffer.isView) && (ArrayBuffer.isView = function(e) {
192
+ return typeof e == "object" && e.buffer && e.buffer.constructor === ArrayBuffer;
193
+ });
194
+ var se = function(e, l) {
195
+ return function(h) {
196
+ return new D(l, !0).update(h)[e]();
197
+ };
198
+ }, me = function(e) {
199
+ var l = se("hex", e);
200
+ l.create = function() {
201
+ return new D(e);
202
+ }, l.update = function(m) {
203
+ return l.create().update(m);
204
+ };
205
+ for (var h = 0; h < de.length; ++h) {
206
+ var x = de[h];
207
+ l[x] = se(x, e);
208
+ }
209
+ return l;
210
+ }, fe = function(e, l) {
211
+ return function(h, x) {
212
+ return new xe(h, l, !0).update(x)[e]();
213
+ };
214
+ }, ge = function(e) {
215
+ var l = fe("hex", e);
216
+ l.create = function(m) {
217
+ return new xe(m, e);
218
+ }, l.update = function(m, o) {
219
+ return l.create(m).update(o);
220
+ };
221
+ for (var h = 0; h < de.length; ++h) {
222
+ var x = de[h];
223
+ l[x] = fe(x, e);
224
+ }
225
+ return l;
226
+ };
227
+ function D(e, l) {
228
+ l ? (p[0] = p[1] = p[2] = p[3] = p[4] = p[5] = p[6] = p[7] = p[8] = p[9] = p[10] = p[11] = p[12] = p[13] = p[14] = p[15] = p[16] = p[17] = p[18] = p[19] = p[20] = p[21] = p[22] = p[23] = p[24] = p[25] = p[26] = p[27] = p[28] = p[29] = p[30] = p[31] = p[32] = 0, this.blocks = p) : this.blocks = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], e == 384 ? (this.h0h = 3418070365, this.h0l = 3238371032, this.h1h = 1654270250, this.h1l = 914150663, this.h2h = 2438529370, this.h2l = 812702999, this.h3h = 355462360, this.h3l = 4144912697, this.h4h = 1731405415, this.h4l = 4290775857, this.h5h = 2394180231, this.h5l = 1750603025, this.h6h = 3675008525, this.h6l = 1694076839, this.h7h = 1203062813, this.h7l = 3204075428) : e == 256 ? (this.h0h = 573645204, this.h0l = 4230739756, this.h1h = 2673172387, this.h1l = 3360449730, this.h2h = 596883563, this.h2l = 1867755857, this.h3h = 2520282905, this.h3l = 1497426621, this.h4h = 2519219938, this.h4l = 2827943907, this.h5h = 3193839141, this.h5l = 1401305490, this.h6h = 721525244, this.h6l = 746961066, this.h7h = 246885852, this.h7l = 2177182882) : e == 224 ? (this.h0h = 2352822216, this.h0l = 424955298, this.h1h = 1944164710, this.h1l = 2312950998, this.h2h = 502970286, this.h2l = 855612546, this.h3h = 1738396948, this.h3l = 1479516111, this.h4h = 258812777, this.h4l = 2077511080, this.h5h = 2011393907, this.h5l = 79989058, this.h6h = 1067287976, this.h6l = 1780299464, this.h7h = 286451373, this.h7l = 2446758561) : (this.h0h = 1779033703, this.h0l = 4089235720, this.h1h = 3144134277, this.h1l = 2227873595, this.h2h = 1013904242, this.h2l = 4271175723, this.h3h = 2773480762, this.h3l = 1595750129, this.h4h = 1359893119, this.h4l = 2917565137, this.h5h = 2600822924, this.h5l = 725511199, this.h6h = 528734635, this.h6l = 4215389547, this.h7h = 1541459225, this.h7l = 327033209), this.bits = e, this.block = this.start = this.bytes = this.hBytes = 0, this.finalized = this.hashed = !1;
229
+ }
230
+ D.prototype.update = function(e) {
231
+ if (this.finalized)
232
+ throw new Error(E);
233
+ var l, h = typeof e;
234
+ if (h !== "string") {
235
+ if (h === "object") {
236
+ if (e === null)
237
+ throw new Error(b);
238
+ if (ue && e.constructor === ArrayBuffer)
239
+ e = new Uint8Array(e);
240
+ else if (!Array.isArray(e) && (!ue || !ArrayBuffer.isView(e)))
241
+ throw new Error(b);
242
+ } else
243
+ throw new Error(b);
244
+ l = !0;
245
+ }
246
+ for (var x, m = 0, o, f = e.length, r = this.blocks; m < f; ) {
247
+ if (this.hashed && (this.hashed = !1, r[0] = this.block, r[1] = r[2] = r[3] = r[4] = r[5] = r[6] = r[7] = r[8] = r[9] = r[10] = r[11] = r[12] = r[13] = r[14] = r[15] = r[16] = r[17] = r[18] = r[19] = r[20] = r[21] = r[22] = r[23] = r[24] = r[25] = r[26] = r[27] = r[28] = r[29] = r[30] = r[31] = r[32] = 0), l)
248
+ for (o = this.start; m < f && o < 128; ++m)
249
+ r[o >> 2] |= e[m] << ie[o++ & 3];
250
+ else
251
+ for (o = this.start; m < f && o < 128; ++m)
252
+ x = e.charCodeAt(m), x < 128 ? r[o >> 2] |= x << ie[o++ & 3] : x < 2048 ? (r[o >> 2] |= (192 | x >> 6) << ie[o++ & 3], r[o >> 2] |= (128 | x & 63) << ie[o++ & 3]) : x < 55296 || x >= 57344 ? (r[o >> 2] |= (224 | x >> 12) << ie[o++ & 3], r[o >> 2] |= (128 | x >> 6 & 63) << ie[o++ & 3], r[o >> 2] |= (128 | x & 63) << ie[o++ & 3]) : (x = 65536 + ((x & 1023) << 10 | e.charCodeAt(++m) & 1023), r[o >> 2] |= (240 | x >> 18) << ie[o++ & 3], r[o >> 2] |= (128 | x >> 12 & 63) << ie[o++ & 3], r[o >> 2] |= (128 | x >> 6 & 63) << ie[o++ & 3], r[o >> 2] |= (128 | x & 63) << ie[o++ & 3]);
253
+ this.lastByteIndex = o, this.bytes += o - this.start, o >= 128 ? (this.block = r[32], this.start = o - 128, this.hash(), this.hashed = !0) : this.start = o;
254
+ }
255
+ return this.bytes > 4294967295 && (this.hBytes += this.bytes / 4294967296 << 0, this.bytes = this.bytes % 4294967296), this;
256
+ }, D.prototype.finalize = function() {
257
+ if (!this.finalized) {
258
+ this.finalized = !0;
259
+ var e = this.blocks, l = this.lastByteIndex;
260
+ e[32] = this.block, e[l >> 2] |= ye[l & 3], this.block = e[32], l >= 112 && (this.hashed || this.hash(), e[0] = this.block, e[1] = e[2] = e[3] = e[4] = e[5] = e[6] = e[7] = e[8] = e[9] = e[10] = e[11] = e[12] = e[13] = e[14] = e[15] = e[16] = e[17] = e[18] = e[19] = e[20] = e[21] = e[22] = e[23] = e[24] = e[25] = e[26] = e[27] = e[28] = e[29] = e[30] = e[31] = e[32] = 0), e[30] = this.hBytes << 3 | this.bytes >>> 29, e[31] = this.bytes << 3, this.hash();
261
+ }
262
+ }, D.prototype.hash = function() {
263
+ var e = this.h0h, l = this.h0l, h = this.h1h, x = this.h1l, m = this.h2h, o = this.h2l, f = this.h3h, r = this.h3l, v = this.h4h, y = this.h4l, z = this.h5h, R = this.h5l, _ = this.h6h, S = this.h6l, M = this.h7h, O = this.h7l, k = this.blocks, d, H, L, I, K, a, i, s, F, ke, Be, Ae, Ee, De, Ne, we, Ce, oe, le, c, u, w, C, ne, he;
264
+ for (d = 32; d < 160; d += 2)
265
+ c = k[d - 30], u = k[d - 29], H = (c >>> 1 | u << 31) ^ (c >>> 8 | u << 24) ^ c >>> 7, L = (u >>> 1 | c << 31) ^ (u >>> 8 | c << 24) ^ (u >>> 7 | c << 25), c = k[d - 4], u = k[d - 3], I = (c >>> 19 | u << 13) ^ (u >>> 29 | c << 3) ^ c >>> 6, K = (u >>> 19 | c << 13) ^ (c >>> 29 | u << 3) ^ (u >>> 6 | c << 26), c = k[d - 32], u = k[d - 31], w = k[d - 14], C = k[d - 13], a = (C & 65535) + (u & 65535) + (L & 65535) + (K & 65535), i = (C >>> 16) + (u >>> 16) + (L >>> 16) + (K >>> 16) + (a >>> 16), s = (w & 65535) + (c & 65535) + (H & 65535) + (I & 65535) + (i >>> 16), F = (w >>> 16) + (c >>> 16) + (H >>> 16) + (I >>> 16) + (s >>> 16), k[d] = F << 16 | s & 65535, k[d + 1] = i << 16 | a & 65535;
266
+ var W = e, J = l, U = h, T = x, P = m, q = o, V = f, Y = r, $ = v, G = y, X = z, Z = R, Q = _, ee = S, te = M, re = O;
267
+ for (we = U & P, Ce = T & q, d = 0; d < 160; d += 8)
268
+ H = (W >>> 28 | J << 4) ^ (J >>> 2 | W << 30) ^ (J >>> 7 | W << 25), L = (J >>> 28 | W << 4) ^ (W >>> 2 | J << 30) ^ (W >>> 7 | J << 25), I = ($ >>> 14 | G << 18) ^ ($ >>> 18 | G << 14) ^ (G >>> 9 | $ << 23), K = (G >>> 14 | $ << 18) ^ (G >>> 18 | $ << 14) ^ ($ >>> 9 | G << 23), ke = W & U, Be = J & T, oe = ke ^ W & P ^ we, le = Be ^ J & q ^ Ce, ne = $ & X ^ ~$ & Q, he = G & Z ^ ~G & ee, c = k[d], u = k[d + 1], w = Fe[d], C = Fe[d + 1], a = (C & 65535) + (u & 65535) + (he & 65535) + (K & 65535) + (re & 65535), i = (C >>> 16) + (u >>> 16) + (he >>> 16) + (K >>> 16) + (re >>> 16) + (a >>> 16), s = (w & 65535) + (c & 65535) + (ne & 65535) + (I & 65535) + (te & 65535) + (i >>> 16), F = (w >>> 16) + (c >>> 16) + (ne >>> 16) + (I >>> 16) + (te >>> 16) + (s >>> 16), c = F << 16 | s & 65535, u = i << 16 | a & 65535, a = (le & 65535) + (L & 65535), i = (le >>> 16) + (L >>> 16) + (a >>> 16), s = (oe & 65535) + (H & 65535) + (i >>> 16), F = (oe >>> 16) + (H >>> 16) + (s >>> 16), w = F << 16 | s & 65535, C = i << 16 | a & 65535, a = (Y & 65535) + (u & 65535), i = (Y >>> 16) + (u >>> 16) + (a >>> 16), s = (V & 65535) + (c & 65535) + (i >>> 16), F = (V >>> 16) + (c >>> 16) + (s >>> 16), te = F << 16 | s & 65535, re = i << 16 | a & 65535, a = (C & 65535) + (u & 65535), i = (C >>> 16) + (u >>> 16) + (a >>> 16), s = (w & 65535) + (c & 65535) + (i >>> 16), F = (w >>> 16) + (c >>> 16) + (s >>> 16), V = F << 16 | s & 65535, Y = i << 16 | a & 65535, H = (V >>> 28 | Y << 4) ^ (Y >>> 2 | V << 30) ^ (Y >>> 7 | V << 25), L = (Y >>> 28 | V << 4) ^ (V >>> 2 | Y << 30) ^ (V >>> 7 | Y << 25), I = (te >>> 14 | re << 18) ^ (te >>> 18 | re << 14) ^ (re >>> 9 | te << 23), K = (re >>> 14 | te << 18) ^ (re >>> 18 | te << 14) ^ (te >>> 9 | re << 23), Ae = V & W, Ee = Y & J, oe = Ae ^ V & U ^ ke, le = Ee ^ Y & T ^ Be, ne = te & $ ^ ~te & X, he = re & G ^ ~re & Z, c = k[d + 2], u = k[d + 3], w = Fe[d + 2], C = Fe[d + 3], a = (C & 65535) + (u & 65535) + (he & 65535) + (K & 65535) + (ee & 65535), i = (C >>> 16) + (u >>> 16) + (he >>> 16) + (K >>> 16) + (ee >>> 16) + (a >>> 16), s = (w & 65535) + (c & 65535) + (ne & 65535) + (I & 65535) + (Q & 65535) + (i >>> 16), F = (w >>> 16) + (c >>> 16) + (ne >>> 16) + (I >>> 16) + (Q >>> 16) + (s >>> 16), c = F << 16 | s & 65535, u = i << 16 | a & 65535, a = (le & 65535) + (L & 65535), i = (le >>> 16) + (L >>> 16) + (a >>> 16), s = (oe & 65535) + (H & 65535) + (i >>> 16), F = (oe >>> 16) + (H >>> 16) + (s >>> 16), w = F << 16 | s & 65535, C = i << 16 | a & 65535, a = (q & 65535) + (u & 65535), i = (q >>> 16) + (u >>> 16) + (a >>> 16), s = (P & 65535) + (c & 65535) + (i >>> 16), F = (P >>> 16) + (c >>> 16) + (s >>> 16), Q = F << 16 | s & 65535, ee = i << 16 | a & 65535, a = (C & 65535) + (u & 65535), i = (C >>> 16) + (u >>> 16) + (a >>> 16), s = (w & 65535) + (c & 65535) + (i >>> 16), F = (w >>> 16) + (c >>> 16) + (s >>> 16), P = F << 16 | s & 65535, q = i << 16 | a & 65535, H = (P >>> 28 | q << 4) ^ (q >>> 2 | P << 30) ^ (q >>> 7 | P << 25), L = (q >>> 28 | P << 4) ^ (P >>> 2 | q << 30) ^ (P >>> 7 | q << 25), I = (Q >>> 14 | ee << 18) ^ (Q >>> 18 | ee << 14) ^ (ee >>> 9 | Q << 23), K = (ee >>> 14 | Q << 18) ^ (ee >>> 18 | Q << 14) ^ (Q >>> 9 | ee << 23), De = P & V, Ne = q & Y, oe = De ^ P & W ^ Ae, le = Ne ^ q & J ^ Ee, ne = Q & te ^ ~Q & $, he = ee & re ^ ~ee & G, c = k[d + 4], u = k[d + 5], w = Fe[d + 4], C = Fe[d + 5], a = (C & 65535) + (u & 65535) + (he & 65535) + (K & 65535) + (Z & 65535), i = (C >>> 16) + (u >>> 16) + (he >>> 16) + (K >>> 16) + (Z >>> 16) + (a >>> 16), s = (w & 65535) + (c & 65535) + (ne & 65535) + (I & 65535) + (X & 65535) + (i >>> 16), F = (w >>> 16) + (c >>> 16) + (ne >>> 16) + (I >>> 16) + (X >>> 16) + (s >>> 16), c = F << 16 | s & 65535, u = i << 16 | a & 65535, a = (le & 65535) + (L & 65535), i = (le >>> 16) + (L >>> 16) + (a >>> 16), s = (oe & 65535) + (H & 65535) + (i >>> 16), F = (oe >>> 16) + (H >>> 16) + (s >>> 16), w = F << 16 | s & 65535, C = i << 16 | a & 65535, a = (T & 65535) + (u & 65535), i = (T >>> 16) + (u >>> 16) + (a >>> 16), s = (U & 65535) + (c & 65535) + (i >>> 16), F = (U >>> 16) + (c >>> 16) + (s >>> 16), X = F << 16 | s & 65535, Z = i << 16 | a & 65535, a = (C & 65535) + (u & 65535), i = (C >>> 16) + (u >>> 16) + (a >>> 16), s = (w & 65535) + (c & 65535) + (i >>> 16), F = (w >>> 16) + (c >>> 16) + (s >>> 16), U = F << 16 | s & 65535, T = i << 16 | a & 65535, H = (U >>> 28 | T << 4) ^ (T >>> 2 | U << 30) ^ (T >>> 7 | U << 25), L = (T >>> 28 | U << 4) ^ (U >>> 2 | T << 30) ^ (U >>> 7 | T << 25), I = (X >>> 14 | Z << 18) ^ (X >>> 18 | Z << 14) ^ (Z >>> 9 | X << 23), K = (Z >>> 14 | X << 18) ^ (Z >>> 18 | X << 14) ^ (X >>> 9 | Z << 23), we = U & P, Ce = T & q, oe = we ^ U & V ^ De, le = Ce ^ T & Y ^ Ne, ne = X & Q ^ ~X & te, he = Z & ee ^ ~Z & re, c = k[d + 6], u = k[d + 7], w = Fe[d + 6], C = Fe[d + 7], a = (C & 65535) + (u & 65535) + (he & 65535) + (K & 65535) + (G & 65535), i = (C >>> 16) + (u >>> 16) + (he >>> 16) + (K >>> 16) + (G >>> 16) + (a >>> 16), s = (w & 65535) + (c & 65535) + (ne & 65535) + (I & 65535) + ($ & 65535) + (i >>> 16), F = (w >>> 16) + (c >>> 16) + (ne >>> 16) + (I >>> 16) + ($ >>> 16) + (s >>> 16), c = F << 16 | s & 65535, u = i << 16 | a & 65535, a = (le & 65535) + (L & 65535), i = (le >>> 16) + (L >>> 16) + (a >>> 16), s = (oe & 65535) + (H & 65535) + (i >>> 16), F = (oe >>> 16) + (H >>> 16) + (s >>> 16), w = F << 16 | s & 65535, C = i << 16 | a & 65535, a = (J & 65535) + (u & 65535), i = (J >>> 16) + (u >>> 16) + (a >>> 16), s = (W & 65535) + (c & 65535) + (i >>> 16), F = (W >>> 16) + (c >>> 16) + (s >>> 16), $ = F << 16 | s & 65535, G = i << 16 | a & 65535, a = (C & 65535) + (u & 65535), i = (C >>> 16) + (u >>> 16) + (a >>> 16), s = (w & 65535) + (c & 65535) + (i >>> 16), F = (w >>> 16) + (c >>> 16) + (s >>> 16), W = F << 16 | s & 65535, J = i << 16 | a & 65535;
269
+ a = (l & 65535) + (J & 65535), i = (l >>> 16) + (J >>> 16) + (a >>> 16), s = (e & 65535) + (W & 65535) + (i >>> 16), F = (e >>> 16) + (W >>> 16) + (s >>> 16), this.h0h = F << 16 | s & 65535, this.h0l = i << 16 | a & 65535, a = (x & 65535) + (T & 65535), i = (x >>> 16) + (T >>> 16) + (a >>> 16), s = (h & 65535) + (U & 65535) + (i >>> 16), F = (h >>> 16) + (U >>> 16) + (s >>> 16), this.h1h = F << 16 | s & 65535, this.h1l = i << 16 | a & 65535, a = (o & 65535) + (q & 65535), i = (o >>> 16) + (q >>> 16) + (a >>> 16), s = (m & 65535) + (P & 65535) + (i >>> 16), F = (m >>> 16) + (P >>> 16) + (s >>> 16), this.h2h = F << 16 | s & 65535, this.h2l = i << 16 | a & 65535, a = (r & 65535) + (Y & 65535), i = (r >>> 16) + (Y >>> 16) + (a >>> 16), s = (f & 65535) + (V & 65535) + (i >>> 16), F = (f >>> 16) + (V >>> 16) + (s >>> 16), this.h3h = F << 16 | s & 65535, this.h3l = i << 16 | a & 65535, a = (y & 65535) + (G & 65535), i = (y >>> 16) + (G >>> 16) + (a >>> 16), s = (v & 65535) + ($ & 65535) + (i >>> 16), F = (v >>> 16) + ($ >>> 16) + (s >>> 16), this.h4h = F << 16 | s & 65535, this.h4l = i << 16 | a & 65535, a = (R & 65535) + (Z & 65535), i = (R >>> 16) + (Z >>> 16) + (a >>> 16), s = (z & 65535) + (X & 65535) + (i >>> 16), F = (z >>> 16) + (X >>> 16) + (s >>> 16), this.h5h = F << 16 | s & 65535, this.h5l = i << 16 | a & 65535, a = (S & 65535) + (ee & 65535), i = (S >>> 16) + (ee >>> 16) + (a >>> 16), s = (_ & 65535) + (Q & 65535) + (i >>> 16), F = (_ >>> 16) + (Q >>> 16) + (s >>> 16), this.h6h = F << 16 | s & 65535, this.h6l = i << 16 | a & 65535, a = (O & 65535) + (re & 65535), i = (O >>> 16) + (re >>> 16) + (a >>> 16), s = (M & 65535) + (te & 65535) + (i >>> 16), F = (M >>> 16) + (te >>> 16) + (s >>> 16), this.h7h = F << 16 | s & 65535, this.h7l = i << 16 | a & 65535;
270
+ }, D.prototype.hex = function() {
271
+ this.finalize();
272
+ var e = this.h0h, l = this.h0l, h = this.h1h, x = this.h1l, m = this.h2h, o = this.h2l, f = this.h3h, r = this.h3l, v = this.h4h, y = this.h4l, z = this.h5h, R = this.h5l, _ = this.h6h, S = this.h6l, M = this.h7h, O = this.h7l, k = this.bits, d = t[e >> 28 & 15] + t[e >> 24 & 15] + t[e >> 20 & 15] + t[e >> 16 & 15] + t[e >> 12 & 15] + t[e >> 8 & 15] + t[e >> 4 & 15] + t[e & 15] + t[l >> 28 & 15] + t[l >> 24 & 15] + t[l >> 20 & 15] + t[l >> 16 & 15] + t[l >> 12 & 15] + t[l >> 8 & 15] + t[l >> 4 & 15] + t[l & 15] + t[h >> 28 & 15] + t[h >> 24 & 15] + t[h >> 20 & 15] + t[h >> 16 & 15] + t[h >> 12 & 15] + t[h >> 8 & 15] + t[h >> 4 & 15] + t[h & 15] + t[x >> 28 & 15] + t[x >> 24 & 15] + t[x >> 20 & 15] + t[x >> 16 & 15] + t[x >> 12 & 15] + t[x >> 8 & 15] + t[x >> 4 & 15] + t[x & 15] + t[m >> 28 & 15] + t[m >> 24 & 15] + t[m >> 20 & 15] + t[m >> 16 & 15] + t[m >> 12 & 15] + t[m >> 8 & 15] + t[m >> 4 & 15] + t[m & 15] + t[o >> 28 & 15] + t[o >> 24 & 15] + t[o >> 20 & 15] + t[o >> 16 & 15] + t[o >> 12 & 15] + t[o >> 8 & 15] + t[o >> 4 & 15] + t[o & 15] + t[f >> 28 & 15] + t[f >> 24 & 15] + t[f >> 20 & 15] + t[f >> 16 & 15] + t[f >> 12 & 15] + t[f >> 8 & 15] + t[f >> 4 & 15] + t[f & 15];
273
+ return k >= 256 && (d += t[r >> 28 & 15] + t[r >> 24 & 15] + t[r >> 20 & 15] + t[r >> 16 & 15] + t[r >> 12 & 15] + t[r >> 8 & 15] + t[r >> 4 & 15] + t[r & 15]), k >= 384 && (d += t[v >> 28 & 15] + t[v >> 24 & 15] + t[v >> 20 & 15] + t[v >> 16 & 15] + t[v >> 12 & 15] + t[v >> 8 & 15] + t[v >> 4 & 15] + t[v & 15] + t[y >> 28 & 15] + t[y >> 24 & 15] + t[y >> 20 & 15] + t[y >> 16 & 15] + t[y >> 12 & 15] + t[y >> 8 & 15] + t[y >> 4 & 15] + t[y & 15] + t[z >> 28 & 15] + t[z >> 24 & 15] + t[z >> 20 & 15] + t[z >> 16 & 15] + t[z >> 12 & 15] + t[z >> 8 & 15] + t[z >> 4 & 15] + t[z & 15] + t[R >> 28 & 15] + t[R >> 24 & 15] + t[R >> 20 & 15] + t[R >> 16 & 15] + t[R >> 12 & 15] + t[R >> 8 & 15] + t[R >> 4 & 15] + t[R & 15]), k == 512 && (d += t[_ >> 28 & 15] + t[_ >> 24 & 15] + t[_ >> 20 & 15] + t[_ >> 16 & 15] + t[_ >> 12 & 15] + t[_ >> 8 & 15] + t[_ >> 4 & 15] + t[_ & 15] + t[S >> 28 & 15] + t[S >> 24 & 15] + t[S >> 20 & 15] + t[S >> 16 & 15] + t[S >> 12 & 15] + t[S >> 8 & 15] + t[S >> 4 & 15] + t[S & 15] + t[M >> 28 & 15] + t[M >> 24 & 15] + t[M >> 20 & 15] + t[M >> 16 & 15] + t[M >> 12 & 15] + t[M >> 8 & 15] + t[M >> 4 & 15] + t[M & 15] + t[O >> 28 & 15] + t[O >> 24 & 15] + t[O >> 20 & 15] + t[O >> 16 & 15] + t[O >> 12 & 15] + t[O >> 8 & 15] + t[O >> 4 & 15] + t[O & 15]), d;
274
+ }, D.prototype.toString = D.prototype.hex, D.prototype.digest = function() {
275
+ this.finalize();
276
+ var e = this.h0h, l = this.h0l, h = this.h1h, x = this.h1l, m = this.h2h, o = this.h2l, f = this.h3h, r = this.h3l, v = this.h4h, y = this.h4l, z = this.h5h, R = this.h5l, _ = this.h6h, S = this.h6l, M = this.h7h, O = this.h7l, k = this.bits, d = [
277
+ e >> 24 & 255,
278
+ e >> 16 & 255,
279
+ e >> 8 & 255,
280
+ e & 255,
281
+ l >> 24 & 255,
282
+ l >> 16 & 255,
283
+ l >> 8 & 255,
284
+ l & 255,
285
+ h >> 24 & 255,
286
+ h >> 16 & 255,
287
+ h >> 8 & 255,
288
+ h & 255,
289
+ x >> 24 & 255,
290
+ x >> 16 & 255,
291
+ x >> 8 & 255,
292
+ x & 255,
293
+ m >> 24 & 255,
294
+ m >> 16 & 255,
295
+ m >> 8 & 255,
296
+ m & 255,
297
+ o >> 24 & 255,
298
+ o >> 16 & 255,
299
+ o >> 8 & 255,
300
+ o & 255,
301
+ f >> 24 & 255,
302
+ f >> 16 & 255,
303
+ f >> 8 & 255,
304
+ f & 255
305
+ ];
306
+ return k >= 256 && d.push(r >> 24 & 255, r >> 16 & 255, r >> 8 & 255, r & 255), k >= 384 && d.push(
307
+ v >> 24 & 255,
308
+ v >> 16 & 255,
309
+ v >> 8 & 255,
310
+ v & 255,
311
+ y >> 24 & 255,
312
+ y >> 16 & 255,
313
+ y >> 8 & 255,
314
+ y & 255,
315
+ z >> 24 & 255,
316
+ z >> 16 & 255,
317
+ z >> 8 & 255,
318
+ z & 255,
319
+ R >> 24 & 255,
320
+ R >> 16 & 255,
321
+ R >> 8 & 255,
322
+ R & 255
323
+ ), k == 512 && d.push(
324
+ _ >> 24 & 255,
325
+ _ >> 16 & 255,
326
+ _ >> 8 & 255,
327
+ _ & 255,
328
+ S >> 24 & 255,
329
+ S >> 16 & 255,
330
+ S >> 8 & 255,
331
+ S & 255,
332
+ M >> 24 & 255,
333
+ M >> 16 & 255,
334
+ M >> 8 & 255,
335
+ M & 255,
336
+ O >> 24 & 255,
337
+ O >> 16 & 255,
338
+ O >> 8 & 255,
339
+ O & 255
340
+ ), d;
341
+ }, D.prototype.array = D.prototype.digest, D.prototype.arrayBuffer = function() {
342
+ this.finalize();
343
+ var e = this.bits, l = new ArrayBuffer(e / 8), h = new DataView(l);
344
+ return h.setUint32(0, this.h0h), h.setUint32(4, this.h0l), h.setUint32(8, this.h1h), h.setUint32(12, this.h1l), h.setUint32(16, this.h2h), h.setUint32(20, this.h2l), h.setUint32(24, this.h3h), e >= 256 && h.setUint32(28, this.h3l), e >= 384 && (h.setUint32(32, this.h4h), h.setUint32(36, this.h4l), h.setUint32(40, this.h5h), h.setUint32(44, this.h5l)), e == 512 && (h.setUint32(48, this.h6h), h.setUint32(52, this.h6l), h.setUint32(56, this.h7h), h.setUint32(60, this.h7l)), l;
345
+ }, D.prototype.clone = function() {
346
+ var e = new D(this.bits, !1);
347
+ return this.copyTo(e), e;
348
+ }, D.prototype.copyTo = function(e) {
349
+ var l = 0, h = [
350
+ "h0h",
351
+ "h0l",
352
+ "h1h",
353
+ "h1l",
354
+ "h2h",
355
+ "h2l",
356
+ "h3h",
357
+ "h3l",
358
+ "h4h",
359
+ "h4l",
360
+ "h5h",
361
+ "h5l",
362
+ "h6h",
363
+ "h6l",
364
+ "h7h",
365
+ "h7l",
366
+ "start",
367
+ "bytes",
368
+ "hBytes",
369
+ "finalized",
370
+ "hashed",
371
+ "lastByteIndex"
372
+ ];
373
+ for (l = 0; l < h.length; ++l)
374
+ e[h[l]] = this[h[l]];
375
+ for (l = 0; l < this.blocks.length; ++l)
376
+ e.blocks[l] = this.blocks[l];
377
+ };
378
+ function xe(e, l, h) {
379
+ var x, m = typeof e;
380
+ if (m !== "string") {
381
+ if (m === "object") {
382
+ if (e === null)
383
+ throw new Error(b);
384
+ if (ue && e.constructor === ArrayBuffer)
385
+ e = new Uint8Array(e);
386
+ else if (!Array.isArray(e) && (!ue || !ArrayBuffer.isView(e)))
387
+ throw new Error(b);
388
+ } else
389
+ throw new Error(b);
390
+ x = !0;
391
+ }
392
+ var o = e.length;
393
+ if (!x) {
394
+ for (var f = [], o = e.length, r = 0, v, y = 0; y < o; ++y)
395
+ v = e.charCodeAt(y), v < 128 ? f[r++] = v : v < 2048 ? (f[r++] = 192 | v >> 6, f[r++] = 128 | v & 63) : v < 55296 || v >= 57344 ? (f[r++] = 224 | v >> 12, f[r++] = 128 | v >> 6 & 63, f[r++] = 128 | v & 63) : (v = 65536 + ((v & 1023) << 10 | e.charCodeAt(++y) & 1023), f[r++] = 240 | v >> 18, f[r++] = 128 | v >> 12 & 63, f[r++] = 128 | v >> 6 & 63, f[r++] = 128 | v & 63);
396
+ e = f;
397
+ }
398
+ e.length > 128 && (e = new D(l, !0).update(e).array());
399
+ for (var z = [], R = [], y = 0; y < 128; ++y) {
400
+ var _ = e[y] || 0;
401
+ z[y] = 92 ^ _, R[y] = 54 ^ _;
402
+ }
403
+ D.call(this, l, h), this.update(R), this.oKeyPad = z, this.inner = !0, this.sharedMemory = h;
404
+ }
405
+ xe.prototype = new D(), xe.prototype.finalize = function() {
406
+ if (D.prototype.finalize.call(this), this.inner) {
407
+ this.inner = !1;
408
+ var e = this.array();
409
+ D.call(this, this.bits, this.sharedMemory), this.update(this.oKeyPad), this.update(e), D.prototype.finalize.call(this);
410
+ }
411
+ }, xe.prototype.clone = function() {
412
+ var e = new xe([], this.bits, !1);
413
+ this.copyTo(e), e.inner = this.inner;
414
+ for (var l = 0; l < this.oKeyPad.length; ++l)
415
+ e.oKeyPad[l] = this.oKeyPad[l];
416
+ return e;
417
+ };
418
+ var j = me(512);
419
+ j.sha512 = j, j.sha384 = me(384), j.sha512_256 = me(256), j.sha512_224 = me(224), j.sha512.hmac = ge(512), j.sha384.hmac = ge(384), j.sha512_256.hmac = ge(256), j.sha512_224.hmac = ge(224), pe ? g.exports = j : (N.sha512 = j.sha512, N.sha384 = j.sha384, N.sha512_256 = j.sha512_256, N.sha512_224 = j.sha512_224);
420
+ })();
421
+ })(Re)), Re.exports;
422
+ }
423
+ var $e = /* @__PURE__ */ Ye();
424
+ const Ge = /* @__PURE__ */ Ve($e);
425
+ function Xe(g) {
426
+ return Ge.sha512_256.array(g);
427
+ }
428
+ const _e = 32, Ze = [
429
+ "abandon",
430
+ "ability",
431
+ "able",
432
+ "about",
433
+ "above",
434
+ "absent",
435
+ "absorb",
436
+ "abstract",
437
+ "absurd",
438
+ "abuse",
439
+ "access",
440
+ "accident",
441
+ "account",
442
+ "accuse",
443
+ "achieve",
444
+ "acid",
445
+ "acoustic",
446
+ "acquire",
447
+ "across",
448
+ "act",
449
+ "action",
450
+ "actor",
451
+ "actress",
452
+ "actual",
453
+ "adapt",
454
+ "add",
455
+ "addict",
456
+ "address",
457
+ "adjust",
458
+ "admit",
459
+ "adult",
460
+ "advance",
461
+ "advice",
462
+ "aerobic",
463
+ "affair",
464
+ "afford",
465
+ "afraid",
466
+ "again",
467
+ "age",
468
+ "agent",
469
+ "agree",
470
+ "ahead",
471
+ "aim",
472
+ "air",
473
+ "airport",
474
+ "aisle",
475
+ "alarm",
476
+ "album",
477
+ "alcohol",
478
+ "alert",
479
+ "alien",
480
+ "all",
481
+ "alley",
482
+ "allow",
483
+ "almost",
484
+ "alone",
485
+ "alpha",
486
+ "already",
487
+ "also",
488
+ "alter",
489
+ "always",
490
+ "amateur",
491
+ "amazing",
492
+ "among",
493
+ "amount",
494
+ "amused",
495
+ "analyst",
496
+ "anchor",
497
+ "ancient",
498
+ "anger",
499
+ "angle",
500
+ "angry",
501
+ "animal",
502
+ "ankle",
503
+ "announce",
504
+ "annual",
505
+ "another",
506
+ "answer",
507
+ "antenna",
508
+ "antique",
509
+ "anxiety",
510
+ "any",
511
+ "apart",
512
+ "apology",
513
+ "appear",
514
+ "apple",
515
+ "approve",
516
+ "april",
517
+ "arch",
518
+ "arctic",
519
+ "area",
520
+ "arena",
521
+ "argue",
522
+ "arm",
523
+ "armed",
524
+ "armor",
525
+ "army",
526
+ "around",
527
+ "arrange",
528
+ "arrest",
529
+ "arrive",
530
+ "arrow",
531
+ "art",
532
+ "artefact",
533
+ "artist",
534
+ "artwork",
535
+ "ask",
536
+ "aspect",
537
+ "assault",
538
+ "asset",
539
+ "assist",
540
+ "assume",
541
+ "asthma",
542
+ "athlete",
543
+ "atom",
544
+ "attack",
545
+ "attend",
546
+ "attitude",
547
+ "attract",
548
+ "auction",
549
+ "audit",
550
+ "august",
551
+ "aunt",
552
+ "author",
553
+ "auto",
554
+ "autumn",
555
+ "average",
556
+ "avocado",
557
+ "avoid",
558
+ "awake",
559
+ "aware",
560
+ "away",
561
+ "awesome",
562
+ "awful",
563
+ "awkward",
564
+ "axis",
565
+ "baby",
566
+ "bachelor",
567
+ "bacon",
568
+ "badge",
569
+ "bag",
570
+ "balance",
571
+ "balcony",
572
+ "ball",
573
+ "bamboo",
574
+ "banana",
575
+ "banner",
576
+ "bar",
577
+ "barely",
578
+ "bargain",
579
+ "barrel",
580
+ "base",
581
+ "basic",
582
+ "basket",
583
+ "battle",
584
+ "beach",
585
+ "bean",
586
+ "beauty",
587
+ "because",
588
+ "become",
589
+ "beef",
590
+ "before",
591
+ "begin",
592
+ "behave",
593
+ "behind",
594
+ "believe",
595
+ "below",
596
+ "belt",
597
+ "bench",
598
+ "benefit",
599
+ "best",
600
+ "betray",
601
+ "better",
602
+ "between",
603
+ "beyond",
604
+ "bicycle",
605
+ "bid",
606
+ "bike",
607
+ "bind",
608
+ "biology",
609
+ "bird",
610
+ "birth",
611
+ "bitter",
612
+ "black",
613
+ "blade",
614
+ "blame",
615
+ "blanket",
616
+ "blast",
617
+ "bleak",
618
+ "bless",
619
+ "blind",
620
+ "blood",
621
+ "blossom",
622
+ "blouse",
623
+ "blue",
624
+ "blur",
625
+ "blush",
626
+ "board",
627
+ "boat",
628
+ "body",
629
+ "boil",
630
+ "bomb",
631
+ "bone",
632
+ "bonus",
633
+ "book",
634
+ "boost",
635
+ "border",
636
+ "boring",
637
+ "borrow",
638
+ "boss",
639
+ "bottom",
640
+ "bounce",
641
+ "box",
642
+ "boy",
643
+ "bracket",
644
+ "brain",
645
+ "brand",
646
+ "brass",
647
+ "brave",
648
+ "bread",
649
+ "breeze",
650
+ "brick",
651
+ "bridge",
652
+ "brief",
653
+ "bright",
654
+ "bring",
655
+ "brisk",
656
+ "broccoli",
657
+ "broken",
658
+ "bronze",
659
+ "broom",
660
+ "brother",
661
+ "brown",
662
+ "brush",
663
+ "bubble",
664
+ "buddy",
665
+ "budget",
666
+ "buffalo",
667
+ "build",
668
+ "bulb",
669
+ "bulk",
670
+ "bullet",
671
+ "bundle",
672
+ "bunker",
673
+ "burden",
674
+ "burger",
675
+ "burst",
676
+ "bus",
677
+ "business",
678
+ "busy",
679
+ "butter",
680
+ "buyer",
681
+ "buzz",
682
+ "cabbage",
683
+ "cabin",
684
+ "cable",
685
+ "cactus",
686
+ "cage",
687
+ "cake",
688
+ "call",
689
+ "calm",
690
+ "camera",
691
+ "camp",
692
+ "can",
693
+ "canal",
694
+ "cancel",
695
+ "candy",
696
+ "cannon",
697
+ "canoe",
698
+ "canvas",
699
+ "canyon",
700
+ "capable",
701
+ "capital",
702
+ "captain",
703
+ "car",
704
+ "carbon",
705
+ "card",
706
+ "cargo",
707
+ "carpet",
708
+ "carry",
709
+ "cart",
710
+ "case",
711
+ "cash",
712
+ "casino",
713
+ "castle",
714
+ "casual",
715
+ "cat",
716
+ "catalog",
717
+ "catch",
718
+ "category",
719
+ "cattle",
720
+ "caught",
721
+ "cause",
722
+ "caution",
723
+ "cave",
724
+ "ceiling",
725
+ "celery",
726
+ "cement",
727
+ "census",
728
+ "century",
729
+ "cereal",
730
+ "certain",
731
+ "chair",
732
+ "chalk",
733
+ "champion",
734
+ "change",
735
+ "chaos",
736
+ "chapter",
737
+ "charge",
738
+ "chase",
739
+ "chat",
740
+ "cheap",
741
+ "check",
742
+ "cheese",
743
+ "chef",
744
+ "cherry",
745
+ "chest",
746
+ "chicken",
747
+ "chief",
748
+ "child",
749
+ "chimney",
750
+ "choice",
751
+ "choose",
752
+ "chronic",
753
+ "chuckle",
754
+ "chunk",
755
+ "churn",
756
+ "cigar",
757
+ "cinnamon",
758
+ "circle",
759
+ "citizen",
760
+ "city",
761
+ "civil",
762
+ "claim",
763
+ "clap",
764
+ "clarify",
765
+ "claw",
766
+ "clay",
767
+ "clean",
768
+ "clerk",
769
+ "clever",
770
+ "click",
771
+ "client",
772
+ "cliff",
773
+ "climb",
774
+ "clinic",
775
+ "clip",
776
+ "clock",
777
+ "clog",
778
+ "close",
779
+ "cloth",
780
+ "cloud",
781
+ "clown",
782
+ "club",
783
+ "clump",
784
+ "cluster",
785
+ "clutch",
786
+ "coach",
787
+ "coast",
788
+ "coconut",
789
+ "code",
790
+ "coffee",
791
+ "coil",
792
+ "coin",
793
+ "collect",
794
+ "color",
795
+ "column",
796
+ "combine",
797
+ "come",
798
+ "comfort",
799
+ "comic",
800
+ "common",
801
+ "company",
802
+ "concert",
803
+ "conduct",
804
+ "confirm",
805
+ "congress",
806
+ "connect",
807
+ "consider",
808
+ "control",
809
+ "convince",
810
+ "cook",
811
+ "cool",
812
+ "copper",
813
+ "copy",
814
+ "coral",
815
+ "core",
816
+ "corn",
817
+ "correct",
818
+ "cost",
819
+ "cotton",
820
+ "couch",
821
+ "country",
822
+ "couple",
823
+ "course",
824
+ "cousin",
825
+ "cover",
826
+ "coyote",
827
+ "crack",
828
+ "cradle",
829
+ "craft",
830
+ "cram",
831
+ "crane",
832
+ "crash",
833
+ "crater",
834
+ "crawl",
835
+ "crazy",
836
+ "cream",
837
+ "credit",
838
+ "creek",
839
+ "crew",
840
+ "cricket",
841
+ "crime",
842
+ "crisp",
843
+ "critic",
844
+ "crop",
845
+ "cross",
846
+ "crouch",
847
+ "crowd",
848
+ "crucial",
849
+ "cruel",
850
+ "cruise",
851
+ "crumble",
852
+ "crunch",
853
+ "crush",
854
+ "cry",
855
+ "crystal",
856
+ "cube",
857
+ "culture",
858
+ "cup",
859
+ "cupboard",
860
+ "curious",
861
+ "current",
862
+ "curtain",
863
+ "curve",
864
+ "cushion",
865
+ "custom",
866
+ "cute",
867
+ "cycle",
868
+ "dad",
869
+ "damage",
870
+ "damp",
871
+ "dance",
872
+ "danger",
873
+ "daring",
874
+ "dash",
875
+ "daughter",
876
+ "dawn",
877
+ "day",
878
+ "deal",
879
+ "debate",
880
+ "debris",
881
+ "decade",
882
+ "december",
883
+ "decide",
884
+ "decline",
885
+ "decorate",
886
+ "decrease",
887
+ "deer",
888
+ "defense",
889
+ "define",
890
+ "defy",
891
+ "degree",
892
+ "delay",
893
+ "deliver",
894
+ "demand",
895
+ "demise",
896
+ "denial",
897
+ "dentist",
898
+ "deny",
899
+ "depart",
900
+ "depend",
901
+ "deposit",
902
+ "depth",
903
+ "deputy",
904
+ "derive",
905
+ "describe",
906
+ "desert",
907
+ "design",
908
+ "desk",
909
+ "despair",
910
+ "destroy",
911
+ "detail",
912
+ "detect",
913
+ "develop",
914
+ "device",
915
+ "devote",
916
+ "diagram",
917
+ "dial",
918
+ "diamond",
919
+ "diary",
920
+ "dice",
921
+ "diesel",
922
+ "diet",
923
+ "differ",
924
+ "digital",
925
+ "dignity",
926
+ "dilemma",
927
+ "dinner",
928
+ "dinosaur",
929
+ "direct",
930
+ "dirt",
931
+ "disagree",
932
+ "discover",
933
+ "disease",
934
+ "dish",
935
+ "dismiss",
936
+ "disorder",
937
+ "display",
938
+ "distance",
939
+ "divert",
940
+ "divide",
941
+ "divorce",
942
+ "dizzy",
943
+ "doctor",
944
+ "document",
945
+ "dog",
946
+ "doll",
947
+ "dolphin",
948
+ "domain",
949
+ "donate",
950
+ "donkey",
951
+ "donor",
952
+ "door",
953
+ "dose",
954
+ "double",
955
+ "dove",
956
+ "draft",
957
+ "dragon",
958
+ "drama",
959
+ "drastic",
960
+ "draw",
961
+ "dream",
962
+ "dress",
963
+ "drift",
964
+ "drill",
965
+ "drink",
966
+ "drip",
967
+ "drive",
968
+ "drop",
969
+ "drum",
970
+ "dry",
971
+ "duck",
972
+ "dumb",
973
+ "dune",
974
+ "during",
975
+ "dust",
976
+ "dutch",
977
+ "duty",
978
+ "dwarf",
979
+ "dynamic",
980
+ "eager",
981
+ "eagle",
982
+ "early",
983
+ "earn",
984
+ "earth",
985
+ "easily",
986
+ "east",
987
+ "easy",
988
+ "echo",
989
+ "ecology",
990
+ "economy",
991
+ "edge",
992
+ "edit",
993
+ "educate",
994
+ "effort",
995
+ "egg",
996
+ "eight",
997
+ "either",
998
+ "elbow",
999
+ "elder",
1000
+ "electric",
1001
+ "elegant",
1002
+ "element",
1003
+ "elephant",
1004
+ "elevator",
1005
+ "elite",
1006
+ "else",
1007
+ "embark",
1008
+ "embody",
1009
+ "embrace",
1010
+ "emerge",
1011
+ "emotion",
1012
+ "employ",
1013
+ "empower",
1014
+ "empty",
1015
+ "enable",
1016
+ "enact",
1017
+ "end",
1018
+ "endless",
1019
+ "endorse",
1020
+ "enemy",
1021
+ "energy",
1022
+ "enforce",
1023
+ "engage",
1024
+ "engine",
1025
+ "enhance",
1026
+ "enjoy",
1027
+ "enlist",
1028
+ "enough",
1029
+ "enrich",
1030
+ "enroll",
1031
+ "ensure",
1032
+ "enter",
1033
+ "entire",
1034
+ "entry",
1035
+ "envelope",
1036
+ "episode",
1037
+ "equal",
1038
+ "equip",
1039
+ "era",
1040
+ "erase",
1041
+ "erode",
1042
+ "erosion",
1043
+ "error",
1044
+ "erupt",
1045
+ "escape",
1046
+ "essay",
1047
+ "essence",
1048
+ "estate",
1049
+ "eternal",
1050
+ "ethics",
1051
+ "evidence",
1052
+ "evil",
1053
+ "evoke",
1054
+ "evolve",
1055
+ "exact",
1056
+ "example",
1057
+ "excess",
1058
+ "exchange",
1059
+ "excite",
1060
+ "exclude",
1061
+ "excuse",
1062
+ "execute",
1063
+ "exercise",
1064
+ "exhaust",
1065
+ "exhibit",
1066
+ "exile",
1067
+ "exist",
1068
+ "exit",
1069
+ "exotic",
1070
+ "expand",
1071
+ "expect",
1072
+ "expire",
1073
+ "explain",
1074
+ "expose",
1075
+ "express",
1076
+ "extend",
1077
+ "extra",
1078
+ "eye",
1079
+ "eyebrow",
1080
+ "fabric",
1081
+ "face",
1082
+ "faculty",
1083
+ "fade",
1084
+ "faint",
1085
+ "faith",
1086
+ "fall",
1087
+ "false",
1088
+ "fame",
1089
+ "family",
1090
+ "famous",
1091
+ "fan",
1092
+ "fancy",
1093
+ "fantasy",
1094
+ "farm",
1095
+ "fashion",
1096
+ "fat",
1097
+ "fatal",
1098
+ "father",
1099
+ "fatigue",
1100
+ "fault",
1101
+ "favorite",
1102
+ "feature",
1103
+ "february",
1104
+ "federal",
1105
+ "fee",
1106
+ "feed",
1107
+ "feel",
1108
+ "female",
1109
+ "fence",
1110
+ "festival",
1111
+ "fetch",
1112
+ "fever",
1113
+ "few",
1114
+ "fiber",
1115
+ "fiction",
1116
+ "field",
1117
+ "figure",
1118
+ "file",
1119
+ "film",
1120
+ "filter",
1121
+ "final",
1122
+ "find",
1123
+ "fine",
1124
+ "finger",
1125
+ "finish",
1126
+ "fire",
1127
+ "firm",
1128
+ "first",
1129
+ "fiscal",
1130
+ "fish",
1131
+ "fit",
1132
+ "fitness",
1133
+ "fix",
1134
+ "flag",
1135
+ "flame",
1136
+ "flash",
1137
+ "flat",
1138
+ "flavor",
1139
+ "flee",
1140
+ "flight",
1141
+ "flip",
1142
+ "float",
1143
+ "flock",
1144
+ "floor",
1145
+ "flower",
1146
+ "fluid",
1147
+ "flush",
1148
+ "fly",
1149
+ "foam",
1150
+ "focus",
1151
+ "fog",
1152
+ "foil",
1153
+ "fold",
1154
+ "follow",
1155
+ "food",
1156
+ "foot",
1157
+ "force",
1158
+ "forest",
1159
+ "forget",
1160
+ "fork",
1161
+ "fortune",
1162
+ "forum",
1163
+ "forward",
1164
+ "fossil",
1165
+ "foster",
1166
+ "found",
1167
+ "fox",
1168
+ "fragile",
1169
+ "frame",
1170
+ "frequent",
1171
+ "fresh",
1172
+ "friend",
1173
+ "fringe",
1174
+ "frog",
1175
+ "front",
1176
+ "frost",
1177
+ "frown",
1178
+ "frozen",
1179
+ "fruit",
1180
+ "fuel",
1181
+ "fun",
1182
+ "funny",
1183
+ "furnace",
1184
+ "fury",
1185
+ "future",
1186
+ "gadget",
1187
+ "gain",
1188
+ "galaxy",
1189
+ "gallery",
1190
+ "game",
1191
+ "gap",
1192
+ "garage",
1193
+ "garbage",
1194
+ "garden",
1195
+ "garlic",
1196
+ "garment",
1197
+ "gas",
1198
+ "gasp",
1199
+ "gate",
1200
+ "gather",
1201
+ "gauge",
1202
+ "gaze",
1203
+ "general",
1204
+ "genius",
1205
+ "genre",
1206
+ "gentle",
1207
+ "genuine",
1208
+ "gesture",
1209
+ "ghost",
1210
+ "giant",
1211
+ "gift",
1212
+ "giggle",
1213
+ "ginger",
1214
+ "giraffe",
1215
+ "girl",
1216
+ "give",
1217
+ "glad",
1218
+ "glance",
1219
+ "glare",
1220
+ "glass",
1221
+ "glide",
1222
+ "glimpse",
1223
+ "globe",
1224
+ "gloom",
1225
+ "glory",
1226
+ "glove",
1227
+ "glow",
1228
+ "glue",
1229
+ "goat",
1230
+ "goddess",
1231
+ "gold",
1232
+ "good",
1233
+ "goose",
1234
+ "gorilla",
1235
+ "gospel",
1236
+ "gossip",
1237
+ "govern",
1238
+ "gown",
1239
+ "grab",
1240
+ "grace",
1241
+ "grain",
1242
+ "grant",
1243
+ "grape",
1244
+ "grass",
1245
+ "gravity",
1246
+ "great",
1247
+ "green",
1248
+ "grid",
1249
+ "grief",
1250
+ "grit",
1251
+ "grocery",
1252
+ "group",
1253
+ "grow",
1254
+ "grunt",
1255
+ "guard",
1256
+ "guess",
1257
+ "guide",
1258
+ "guilt",
1259
+ "guitar",
1260
+ "gun",
1261
+ "gym",
1262
+ "habit",
1263
+ "hair",
1264
+ "half",
1265
+ "hammer",
1266
+ "hamster",
1267
+ "hand",
1268
+ "happy",
1269
+ "harbor",
1270
+ "hard",
1271
+ "harsh",
1272
+ "harvest",
1273
+ "hat",
1274
+ "have",
1275
+ "hawk",
1276
+ "hazard",
1277
+ "head",
1278
+ "health",
1279
+ "heart",
1280
+ "heavy",
1281
+ "hedgehog",
1282
+ "height",
1283
+ "hello",
1284
+ "helmet",
1285
+ "help",
1286
+ "hen",
1287
+ "hero",
1288
+ "hidden",
1289
+ "high",
1290
+ "hill",
1291
+ "hint",
1292
+ "hip",
1293
+ "hire",
1294
+ "history",
1295
+ "hobby",
1296
+ "hockey",
1297
+ "hold",
1298
+ "hole",
1299
+ "holiday",
1300
+ "hollow",
1301
+ "home",
1302
+ "honey",
1303
+ "hood",
1304
+ "hope",
1305
+ "horn",
1306
+ "horror",
1307
+ "horse",
1308
+ "hospital",
1309
+ "host",
1310
+ "hotel",
1311
+ "hour",
1312
+ "hover",
1313
+ "hub",
1314
+ "huge",
1315
+ "human",
1316
+ "humble",
1317
+ "humor",
1318
+ "hundred",
1319
+ "hungry",
1320
+ "hunt",
1321
+ "hurdle",
1322
+ "hurry",
1323
+ "hurt",
1324
+ "husband",
1325
+ "hybrid",
1326
+ "ice",
1327
+ "icon",
1328
+ "idea",
1329
+ "identify",
1330
+ "idle",
1331
+ "ignore",
1332
+ "ill",
1333
+ "illegal",
1334
+ "illness",
1335
+ "image",
1336
+ "imitate",
1337
+ "immense",
1338
+ "immune",
1339
+ "impact",
1340
+ "impose",
1341
+ "improve",
1342
+ "impulse",
1343
+ "inch",
1344
+ "include",
1345
+ "income",
1346
+ "increase",
1347
+ "index",
1348
+ "indicate",
1349
+ "indoor",
1350
+ "industry",
1351
+ "infant",
1352
+ "inflict",
1353
+ "inform",
1354
+ "inhale",
1355
+ "inherit",
1356
+ "initial",
1357
+ "inject",
1358
+ "injury",
1359
+ "inmate",
1360
+ "inner",
1361
+ "innocent",
1362
+ "input",
1363
+ "inquiry",
1364
+ "insane",
1365
+ "insect",
1366
+ "inside",
1367
+ "inspire",
1368
+ "install",
1369
+ "intact",
1370
+ "interest",
1371
+ "into",
1372
+ "invest",
1373
+ "invite",
1374
+ "involve",
1375
+ "iron",
1376
+ "island",
1377
+ "isolate",
1378
+ "issue",
1379
+ "item",
1380
+ "ivory",
1381
+ "jacket",
1382
+ "jaguar",
1383
+ "jar",
1384
+ "jazz",
1385
+ "jealous",
1386
+ "jeans",
1387
+ "jelly",
1388
+ "jewel",
1389
+ "job",
1390
+ "join",
1391
+ "joke",
1392
+ "journey",
1393
+ "joy",
1394
+ "judge",
1395
+ "juice",
1396
+ "jump",
1397
+ "jungle",
1398
+ "junior",
1399
+ "junk",
1400
+ "just",
1401
+ "kangaroo",
1402
+ "keen",
1403
+ "keep",
1404
+ "ketchup",
1405
+ "key",
1406
+ "kick",
1407
+ "kid",
1408
+ "kidney",
1409
+ "kind",
1410
+ "kingdom",
1411
+ "kiss",
1412
+ "kit",
1413
+ "kitchen",
1414
+ "kite",
1415
+ "kitten",
1416
+ "kiwi",
1417
+ "knee",
1418
+ "knife",
1419
+ "knock",
1420
+ "know",
1421
+ "lab",
1422
+ "label",
1423
+ "labor",
1424
+ "ladder",
1425
+ "lady",
1426
+ "lake",
1427
+ "lamp",
1428
+ "language",
1429
+ "laptop",
1430
+ "large",
1431
+ "later",
1432
+ "latin",
1433
+ "laugh",
1434
+ "laundry",
1435
+ "lava",
1436
+ "law",
1437
+ "lawn",
1438
+ "lawsuit",
1439
+ "layer",
1440
+ "lazy",
1441
+ "leader",
1442
+ "leaf",
1443
+ "learn",
1444
+ "leave",
1445
+ "lecture",
1446
+ "left",
1447
+ "leg",
1448
+ "legal",
1449
+ "legend",
1450
+ "leisure",
1451
+ "lemon",
1452
+ "lend",
1453
+ "length",
1454
+ "lens",
1455
+ "leopard",
1456
+ "lesson",
1457
+ "letter",
1458
+ "level",
1459
+ "liar",
1460
+ "liberty",
1461
+ "library",
1462
+ "license",
1463
+ "life",
1464
+ "lift",
1465
+ "light",
1466
+ "like",
1467
+ "limb",
1468
+ "limit",
1469
+ "link",
1470
+ "lion",
1471
+ "liquid",
1472
+ "list",
1473
+ "little",
1474
+ "live",
1475
+ "lizard",
1476
+ "load",
1477
+ "loan",
1478
+ "lobster",
1479
+ "local",
1480
+ "lock",
1481
+ "logic",
1482
+ "lonely",
1483
+ "long",
1484
+ "loop",
1485
+ "lottery",
1486
+ "loud",
1487
+ "lounge",
1488
+ "love",
1489
+ "loyal",
1490
+ "lucky",
1491
+ "luggage",
1492
+ "lumber",
1493
+ "lunar",
1494
+ "lunch",
1495
+ "luxury",
1496
+ "lyrics",
1497
+ "machine",
1498
+ "mad",
1499
+ "magic",
1500
+ "magnet",
1501
+ "maid",
1502
+ "mail",
1503
+ "main",
1504
+ "major",
1505
+ "make",
1506
+ "mammal",
1507
+ "man",
1508
+ "manage",
1509
+ "mandate",
1510
+ "mango",
1511
+ "mansion",
1512
+ "manual",
1513
+ "maple",
1514
+ "marble",
1515
+ "march",
1516
+ "margin",
1517
+ "marine",
1518
+ "market",
1519
+ "marriage",
1520
+ "mask",
1521
+ "mass",
1522
+ "master",
1523
+ "match",
1524
+ "material",
1525
+ "math",
1526
+ "matrix",
1527
+ "matter",
1528
+ "maximum",
1529
+ "maze",
1530
+ "meadow",
1531
+ "mean",
1532
+ "measure",
1533
+ "meat",
1534
+ "mechanic",
1535
+ "medal",
1536
+ "media",
1537
+ "melody",
1538
+ "melt",
1539
+ "member",
1540
+ "memory",
1541
+ "mention",
1542
+ "menu",
1543
+ "mercy",
1544
+ "merge",
1545
+ "merit",
1546
+ "merry",
1547
+ "mesh",
1548
+ "message",
1549
+ "metal",
1550
+ "method",
1551
+ "middle",
1552
+ "midnight",
1553
+ "milk",
1554
+ "million",
1555
+ "mimic",
1556
+ "mind",
1557
+ "minimum",
1558
+ "minor",
1559
+ "minute",
1560
+ "miracle",
1561
+ "mirror",
1562
+ "misery",
1563
+ "miss",
1564
+ "mistake",
1565
+ "mix",
1566
+ "mixed",
1567
+ "mixture",
1568
+ "mobile",
1569
+ "model",
1570
+ "modify",
1571
+ "mom",
1572
+ "moment",
1573
+ "monitor",
1574
+ "monkey",
1575
+ "monster",
1576
+ "month",
1577
+ "moon",
1578
+ "moral",
1579
+ "more",
1580
+ "morning",
1581
+ "mosquito",
1582
+ "mother",
1583
+ "motion",
1584
+ "motor",
1585
+ "mountain",
1586
+ "mouse",
1587
+ "move",
1588
+ "movie",
1589
+ "much",
1590
+ "muffin",
1591
+ "mule",
1592
+ "multiply",
1593
+ "muscle",
1594
+ "museum",
1595
+ "mushroom",
1596
+ "music",
1597
+ "must",
1598
+ "mutual",
1599
+ "myself",
1600
+ "mystery",
1601
+ "myth",
1602
+ "naive",
1603
+ "name",
1604
+ "napkin",
1605
+ "narrow",
1606
+ "nasty",
1607
+ "nation",
1608
+ "nature",
1609
+ "near",
1610
+ "neck",
1611
+ "need",
1612
+ "negative",
1613
+ "neglect",
1614
+ "neither",
1615
+ "nephew",
1616
+ "nerve",
1617
+ "nest",
1618
+ "net",
1619
+ "network",
1620
+ "neutral",
1621
+ "never",
1622
+ "news",
1623
+ "next",
1624
+ "nice",
1625
+ "night",
1626
+ "noble",
1627
+ "noise",
1628
+ "nominee",
1629
+ "noodle",
1630
+ "normal",
1631
+ "north",
1632
+ "nose",
1633
+ "notable",
1634
+ "note",
1635
+ "nothing",
1636
+ "notice",
1637
+ "novel",
1638
+ "now",
1639
+ "nuclear",
1640
+ "number",
1641
+ "nurse",
1642
+ "nut",
1643
+ "oak",
1644
+ "obey",
1645
+ "object",
1646
+ "oblige",
1647
+ "obscure",
1648
+ "observe",
1649
+ "obtain",
1650
+ "obvious",
1651
+ "occur",
1652
+ "ocean",
1653
+ "october",
1654
+ "odor",
1655
+ "off",
1656
+ "offer",
1657
+ "office",
1658
+ "often",
1659
+ "oil",
1660
+ "okay",
1661
+ "old",
1662
+ "olive",
1663
+ "olympic",
1664
+ "omit",
1665
+ "once",
1666
+ "one",
1667
+ "onion",
1668
+ "online",
1669
+ "only",
1670
+ "open",
1671
+ "opera",
1672
+ "opinion",
1673
+ "oppose",
1674
+ "option",
1675
+ "orange",
1676
+ "orbit",
1677
+ "orchard",
1678
+ "order",
1679
+ "ordinary",
1680
+ "organ",
1681
+ "orient",
1682
+ "original",
1683
+ "orphan",
1684
+ "ostrich",
1685
+ "other",
1686
+ "outdoor",
1687
+ "outer",
1688
+ "output",
1689
+ "outside",
1690
+ "oval",
1691
+ "oven",
1692
+ "over",
1693
+ "own",
1694
+ "owner",
1695
+ "oxygen",
1696
+ "oyster",
1697
+ "ozone",
1698
+ "pact",
1699
+ "paddle",
1700
+ "page",
1701
+ "pair",
1702
+ "palace",
1703
+ "palm",
1704
+ "panda",
1705
+ "panel",
1706
+ "panic",
1707
+ "panther",
1708
+ "paper",
1709
+ "parade",
1710
+ "parent",
1711
+ "park",
1712
+ "parrot",
1713
+ "party",
1714
+ "pass",
1715
+ "patch",
1716
+ "path",
1717
+ "patient",
1718
+ "patrol",
1719
+ "pattern",
1720
+ "pause",
1721
+ "pave",
1722
+ "payment",
1723
+ "peace",
1724
+ "peanut",
1725
+ "pear",
1726
+ "peasant",
1727
+ "pelican",
1728
+ "pen",
1729
+ "penalty",
1730
+ "pencil",
1731
+ "people",
1732
+ "pepper",
1733
+ "perfect",
1734
+ "permit",
1735
+ "person",
1736
+ "pet",
1737
+ "phone",
1738
+ "photo",
1739
+ "phrase",
1740
+ "physical",
1741
+ "piano",
1742
+ "picnic",
1743
+ "picture",
1744
+ "piece",
1745
+ "pig",
1746
+ "pigeon",
1747
+ "pill",
1748
+ "pilot",
1749
+ "pink",
1750
+ "pioneer",
1751
+ "pipe",
1752
+ "pistol",
1753
+ "pitch",
1754
+ "pizza",
1755
+ "place",
1756
+ "planet",
1757
+ "plastic",
1758
+ "plate",
1759
+ "play",
1760
+ "please",
1761
+ "pledge",
1762
+ "pluck",
1763
+ "plug",
1764
+ "plunge",
1765
+ "poem",
1766
+ "poet",
1767
+ "point",
1768
+ "polar",
1769
+ "pole",
1770
+ "police",
1771
+ "pond",
1772
+ "pony",
1773
+ "pool",
1774
+ "popular",
1775
+ "portion",
1776
+ "position",
1777
+ "possible",
1778
+ "post",
1779
+ "potato",
1780
+ "pottery",
1781
+ "poverty",
1782
+ "powder",
1783
+ "power",
1784
+ "practice",
1785
+ "praise",
1786
+ "predict",
1787
+ "prefer",
1788
+ "prepare",
1789
+ "present",
1790
+ "pretty",
1791
+ "prevent",
1792
+ "price",
1793
+ "pride",
1794
+ "primary",
1795
+ "print",
1796
+ "priority",
1797
+ "prison",
1798
+ "private",
1799
+ "prize",
1800
+ "problem",
1801
+ "process",
1802
+ "produce",
1803
+ "profit",
1804
+ "program",
1805
+ "project",
1806
+ "promote",
1807
+ "proof",
1808
+ "property",
1809
+ "prosper",
1810
+ "protect",
1811
+ "proud",
1812
+ "provide",
1813
+ "public",
1814
+ "pudding",
1815
+ "pull",
1816
+ "pulp",
1817
+ "pulse",
1818
+ "pumpkin",
1819
+ "punch",
1820
+ "pupil",
1821
+ "puppy",
1822
+ "purchase",
1823
+ "purity",
1824
+ "purpose",
1825
+ "purse",
1826
+ "push",
1827
+ "put",
1828
+ "puzzle",
1829
+ "pyramid",
1830
+ "quality",
1831
+ "quantum",
1832
+ "quarter",
1833
+ "question",
1834
+ "quick",
1835
+ "quit",
1836
+ "quiz",
1837
+ "quote",
1838
+ "rabbit",
1839
+ "raccoon",
1840
+ "race",
1841
+ "rack",
1842
+ "radar",
1843
+ "radio",
1844
+ "rail",
1845
+ "rain",
1846
+ "raise",
1847
+ "rally",
1848
+ "ramp",
1849
+ "ranch",
1850
+ "random",
1851
+ "range",
1852
+ "rapid",
1853
+ "rare",
1854
+ "rate",
1855
+ "rather",
1856
+ "raven",
1857
+ "raw",
1858
+ "razor",
1859
+ "ready",
1860
+ "real",
1861
+ "reason",
1862
+ "rebel",
1863
+ "rebuild",
1864
+ "recall",
1865
+ "receive",
1866
+ "recipe",
1867
+ "record",
1868
+ "recycle",
1869
+ "reduce",
1870
+ "reflect",
1871
+ "reform",
1872
+ "refuse",
1873
+ "region",
1874
+ "regret",
1875
+ "regular",
1876
+ "reject",
1877
+ "relax",
1878
+ "release",
1879
+ "relief",
1880
+ "rely",
1881
+ "remain",
1882
+ "remember",
1883
+ "remind",
1884
+ "remove",
1885
+ "render",
1886
+ "renew",
1887
+ "rent",
1888
+ "reopen",
1889
+ "repair",
1890
+ "repeat",
1891
+ "replace",
1892
+ "report",
1893
+ "require",
1894
+ "rescue",
1895
+ "resemble",
1896
+ "resist",
1897
+ "resource",
1898
+ "response",
1899
+ "result",
1900
+ "retire",
1901
+ "retreat",
1902
+ "return",
1903
+ "reunion",
1904
+ "reveal",
1905
+ "review",
1906
+ "reward",
1907
+ "rhythm",
1908
+ "rib",
1909
+ "ribbon",
1910
+ "rice",
1911
+ "rich",
1912
+ "ride",
1913
+ "ridge",
1914
+ "rifle",
1915
+ "right",
1916
+ "rigid",
1917
+ "ring",
1918
+ "riot",
1919
+ "ripple",
1920
+ "risk",
1921
+ "ritual",
1922
+ "rival",
1923
+ "river",
1924
+ "road",
1925
+ "roast",
1926
+ "robot",
1927
+ "robust",
1928
+ "rocket",
1929
+ "romance",
1930
+ "roof",
1931
+ "rookie",
1932
+ "room",
1933
+ "rose",
1934
+ "rotate",
1935
+ "rough",
1936
+ "round",
1937
+ "route",
1938
+ "royal",
1939
+ "rubber",
1940
+ "rude",
1941
+ "rug",
1942
+ "rule",
1943
+ "run",
1944
+ "runway",
1945
+ "rural",
1946
+ "sad",
1947
+ "saddle",
1948
+ "sadness",
1949
+ "safe",
1950
+ "sail",
1951
+ "salad",
1952
+ "salmon",
1953
+ "salon",
1954
+ "salt",
1955
+ "salute",
1956
+ "same",
1957
+ "sample",
1958
+ "sand",
1959
+ "satisfy",
1960
+ "satoshi",
1961
+ "sauce",
1962
+ "sausage",
1963
+ "save",
1964
+ "say",
1965
+ "scale",
1966
+ "scan",
1967
+ "scare",
1968
+ "scatter",
1969
+ "scene",
1970
+ "scheme",
1971
+ "school",
1972
+ "science",
1973
+ "scissors",
1974
+ "scorpion",
1975
+ "scout",
1976
+ "scrap",
1977
+ "screen",
1978
+ "script",
1979
+ "scrub",
1980
+ "sea",
1981
+ "search",
1982
+ "season",
1983
+ "seat",
1984
+ "second",
1985
+ "secret",
1986
+ "section",
1987
+ "security",
1988
+ "seed",
1989
+ "seek",
1990
+ "segment",
1991
+ "select",
1992
+ "sell",
1993
+ "seminar",
1994
+ "senior",
1995
+ "sense",
1996
+ "sentence",
1997
+ "series",
1998
+ "service",
1999
+ "session",
2000
+ "settle",
2001
+ "setup",
2002
+ "seven",
2003
+ "shadow",
2004
+ "shaft",
2005
+ "shallow",
2006
+ "share",
2007
+ "shed",
2008
+ "shell",
2009
+ "sheriff",
2010
+ "shield",
2011
+ "shift",
2012
+ "shine",
2013
+ "ship",
2014
+ "shiver",
2015
+ "shock",
2016
+ "shoe",
2017
+ "shoot",
2018
+ "shop",
2019
+ "short",
2020
+ "shoulder",
2021
+ "shove",
2022
+ "shrimp",
2023
+ "shrug",
2024
+ "shuffle",
2025
+ "shy",
2026
+ "sibling",
2027
+ "sick",
2028
+ "side",
2029
+ "siege",
2030
+ "sight",
2031
+ "sign",
2032
+ "silent",
2033
+ "silk",
2034
+ "silly",
2035
+ "silver",
2036
+ "similar",
2037
+ "simple",
2038
+ "since",
2039
+ "sing",
2040
+ "siren",
2041
+ "sister",
2042
+ "situate",
2043
+ "six",
2044
+ "size",
2045
+ "skate",
2046
+ "sketch",
2047
+ "ski",
2048
+ "skill",
2049
+ "skin",
2050
+ "skirt",
2051
+ "skull",
2052
+ "slab",
2053
+ "slam",
2054
+ "sleep",
2055
+ "slender",
2056
+ "slice",
2057
+ "slide",
2058
+ "slight",
2059
+ "slim",
2060
+ "slogan",
2061
+ "slot",
2062
+ "slow",
2063
+ "slush",
2064
+ "small",
2065
+ "smart",
2066
+ "smile",
2067
+ "smoke",
2068
+ "smooth",
2069
+ "snack",
2070
+ "snake",
2071
+ "snap",
2072
+ "sniff",
2073
+ "snow",
2074
+ "soap",
2075
+ "soccer",
2076
+ "social",
2077
+ "sock",
2078
+ "soda",
2079
+ "soft",
2080
+ "solar",
2081
+ "soldier",
2082
+ "solid",
2083
+ "solution",
2084
+ "solve",
2085
+ "someone",
2086
+ "song",
2087
+ "soon",
2088
+ "sorry",
2089
+ "sort",
2090
+ "soul",
2091
+ "sound",
2092
+ "soup",
2093
+ "source",
2094
+ "south",
2095
+ "space",
2096
+ "spare",
2097
+ "spatial",
2098
+ "spawn",
2099
+ "speak",
2100
+ "special",
2101
+ "speed",
2102
+ "spell",
2103
+ "spend",
2104
+ "sphere",
2105
+ "spice",
2106
+ "spider",
2107
+ "spike",
2108
+ "spin",
2109
+ "spirit",
2110
+ "split",
2111
+ "spoil",
2112
+ "sponsor",
2113
+ "spoon",
2114
+ "sport",
2115
+ "spot",
2116
+ "spray",
2117
+ "spread",
2118
+ "spring",
2119
+ "spy",
2120
+ "square",
2121
+ "squeeze",
2122
+ "squirrel",
2123
+ "stable",
2124
+ "stadium",
2125
+ "staff",
2126
+ "stage",
2127
+ "stairs",
2128
+ "stamp",
2129
+ "stand",
2130
+ "start",
2131
+ "state",
2132
+ "stay",
2133
+ "steak",
2134
+ "steel",
2135
+ "stem",
2136
+ "step",
2137
+ "stereo",
2138
+ "stick",
2139
+ "still",
2140
+ "sting",
2141
+ "stock",
2142
+ "stomach",
2143
+ "stone",
2144
+ "stool",
2145
+ "story",
2146
+ "stove",
2147
+ "strategy",
2148
+ "street",
2149
+ "strike",
2150
+ "strong",
2151
+ "struggle",
2152
+ "student",
2153
+ "stuff",
2154
+ "stumble",
2155
+ "style",
2156
+ "subject",
2157
+ "submit",
2158
+ "subway",
2159
+ "success",
2160
+ "such",
2161
+ "sudden",
2162
+ "suffer",
2163
+ "sugar",
2164
+ "suggest",
2165
+ "suit",
2166
+ "summer",
2167
+ "sun",
2168
+ "sunny",
2169
+ "sunset",
2170
+ "super",
2171
+ "supply",
2172
+ "supreme",
2173
+ "sure",
2174
+ "surface",
2175
+ "surge",
2176
+ "surprise",
2177
+ "surround",
2178
+ "survey",
2179
+ "suspect",
2180
+ "sustain",
2181
+ "swallow",
2182
+ "swamp",
2183
+ "swap",
2184
+ "swarm",
2185
+ "swear",
2186
+ "sweet",
2187
+ "swift",
2188
+ "swim",
2189
+ "swing",
2190
+ "switch",
2191
+ "sword",
2192
+ "symbol",
2193
+ "symptom",
2194
+ "syrup",
2195
+ "system",
2196
+ "table",
2197
+ "tackle",
2198
+ "tag",
2199
+ "tail",
2200
+ "talent",
2201
+ "talk",
2202
+ "tank",
2203
+ "tape",
2204
+ "target",
2205
+ "task",
2206
+ "taste",
2207
+ "tattoo",
2208
+ "taxi",
2209
+ "teach",
2210
+ "team",
2211
+ "tell",
2212
+ "ten",
2213
+ "tenant",
2214
+ "tennis",
2215
+ "tent",
2216
+ "term",
2217
+ "test",
2218
+ "text",
2219
+ "thank",
2220
+ "that",
2221
+ "theme",
2222
+ "then",
2223
+ "theory",
2224
+ "there",
2225
+ "they",
2226
+ "thing",
2227
+ "this",
2228
+ "thought",
2229
+ "three",
2230
+ "thrive",
2231
+ "throw",
2232
+ "thumb",
2233
+ "thunder",
2234
+ "ticket",
2235
+ "tide",
2236
+ "tiger",
2237
+ "tilt",
2238
+ "timber",
2239
+ "time",
2240
+ "tiny",
2241
+ "tip",
2242
+ "tired",
2243
+ "tissue",
2244
+ "title",
2245
+ "toast",
2246
+ "tobacco",
2247
+ "today",
2248
+ "toddler",
2249
+ "toe",
2250
+ "together",
2251
+ "toilet",
2252
+ "token",
2253
+ "tomato",
2254
+ "tomorrow",
2255
+ "tone",
2256
+ "tongue",
2257
+ "tonight",
2258
+ "tool",
2259
+ "tooth",
2260
+ "top",
2261
+ "topic",
2262
+ "topple",
2263
+ "torch",
2264
+ "tornado",
2265
+ "tortoise",
2266
+ "toss",
2267
+ "total",
2268
+ "tourist",
2269
+ "toward",
2270
+ "tower",
2271
+ "town",
2272
+ "toy",
2273
+ "track",
2274
+ "trade",
2275
+ "traffic",
2276
+ "tragic",
2277
+ "train",
2278
+ "transfer",
2279
+ "trap",
2280
+ "trash",
2281
+ "travel",
2282
+ "tray",
2283
+ "treat",
2284
+ "tree",
2285
+ "trend",
2286
+ "trial",
2287
+ "tribe",
2288
+ "trick",
2289
+ "trigger",
2290
+ "trim",
2291
+ "trip",
2292
+ "trophy",
2293
+ "trouble",
2294
+ "truck",
2295
+ "true",
2296
+ "truly",
2297
+ "trumpet",
2298
+ "trust",
2299
+ "truth",
2300
+ "try",
2301
+ "tube",
2302
+ "tuition",
2303
+ "tumble",
2304
+ "tuna",
2305
+ "tunnel",
2306
+ "turkey",
2307
+ "turn",
2308
+ "turtle",
2309
+ "twelve",
2310
+ "twenty",
2311
+ "twice",
2312
+ "twin",
2313
+ "twist",
2314
+ "two",
2315
+ "type",
2316
+ "typical",
2317
+ "ugly",
2318
+ "umbrella",
2319
+ "unable",
2320
+ "unaware",
2321
+ "uncle",
2322
+ "uncover",
2323
+ "under",
2324
+ "undo",
2325
+ "unfair",
2326
+ "unfold",
2327
+ "unhappy",
2328
+ "uniform",
2329
+ "unique",
2330
+ "unit",
2331
+ "universe",
2332
+ "unknown",
2333
+ "unlock",
2334
+ "until",
2335
+ "unusual",
2336
+ "unveil",
2337
+ "update",
2338
+ "upgrade",
2339
+ "uphold",
2340
+ "upon",
2341
+ "upper",
2342
+ "upset",
2343
+ "urban",
2344
+ "urge",
2345
+ "usage",
2346
+ "use",
2347
+ "used",
2348
+ "useful",
2349
+ "useless",
2350
+ "usual",
2351
+ "utility",
2352
+ "vacant",
2353
+ "vacuum",
2354
+ "vague",
2355
+ "valid",
2356
+ "valley",
2357
+ "valve",
2358
+ "van",
2359
+ "vanish",
2360
+ "vapor",
2361
+ "various",
2362
+ "vast",
2363
+ "vault",
2364
+ "vehicle",
2365
+ "velvet",
2366
+ "vendor",
2367
+ "venture",
2368
+ "venue",
2369
+ "verb",
2370
+ "verify",
2371
+ "version",
2372
+ "very",
2373
+ "vessel",
2374
+ "veteran",
2375
+ "viable",
2376
+ "vibrant",
2377
+ "vicious",
2378
+ "victory",
2379
+ "video",
2380
+ "view",
2381
+ "village",
2382
+ "vintage",
2383
+ "violin",
2384
+ "virtual",
2385
+ "virus",
2386
+ "visa",
2387
+ "visit",
2388
+ "visual",
2389
+ "vital",
2390
+ "vivid",
2391
+ "vocal",
2392
+ "voice",
2393
+ "void",
2394
+ "volcano",
2395
+ "volume",
2396
+ "vote",
2397
+ "voyage",
2398
+ "wage",
2399
+ "wagon",
2400
+ "wait",
2401
+ "walk",
2402
+ "wall",
2403
+ "walnut",
2404
+ "want",
2405
+ "warfare",
2406
+ "warm",
2407
+ "warrior",
2408
+ "wash",
2409
+ "wasp",
2410
+ "waste",
2411
+ "water",
2412
+ "wave",
2413
+ "way",
2414
+ "wealth",
2415
+ "weapon",
2416
+ "wear",
2417
+ "weasel",
2418
+ "weather",
2419
+ "web",
2420
+ "wedding",
2421
+ "weekend",
2422
+ "weird",
2423
+ "welcome",
2424
+ "west",
2425
+ "wet",
2426
+ "whale",
2427
+ "what",
2428
+ "wheat",
2429
+ "wheel",
2430
+ "when",
2431
+ "where",
2432
+ "whip",
2433
+ "whisper",
2434
+ "wide",
2435
+ "width",
2436
+ "wife",
2437
+ "wild",
2438
+ "will",
2439
+ "win",
2440
+ "window",
2441
+ "wine",
2442
+ "wing",
2443
+ "wink",
2444
+ "winner",
2445
+ "winter",
2446
+ "wire",
2447
+ "wisdom",
2448
+ "wise",
2449
+ "wish",
2450
+ "witness",
2451
+ "wolf",
2452
+ "woman",
2453
+ "wonder",
2454
+ "wood",
2455
+ "wool",
2456
+ "word",
2457
+ "work",
2458
+ "world",
2459
+ "worry",
2460
+ "worth",
2461
+ "wrap",
2462
+ "wreck",
2463
+ "wrestle",
2464
+ "wrist",
2465
+ "write",
2466
+ "wrong",
2467
+ "yard",
2468
+ "year",
2469
+ "yellow",
2470
+ "you",
2471
+ "young",
2472
+ "youth",
2473
+ "zebra",
2474
+ "zero",
2475
+ "zone",
2476
+ "zoo"
2477
+ ];
2478
+ function Oe(g) {
2479
+ const b = [];
2480
+ let E = 0, A = 0;
2481
+ function N(ce) {
2482
+ E |= ce << A, A += 8, A >= 11 && (b.push(E & 2047), E >>= 11, A -= 11);
2483
+ }
2484
+ function ae() {
2485
+ A && b.push(E);
2486
+ }
2487
+ return g.forEach(N), ae(), b;
2488
+ }
2489
+ function Ue(g) {
2490
+ return g.map((b) => Ze[b]);
2491
+ }
2492
+ function Qe(g) {
2493
+ const b = Xe(g), E = Oe(b);
2494
+ return Ue(E)[0];
2495
+ }
2496
+ function et(g) {
2497
+ if (g.length !== _e)
2498
+ throw new RangeError(`Seed length must be ${_e}`);
2499
+ const b = Oe(g), E = Ue(b), A = Qe(g);
2500
+ return `${E.join(" ")} ${A}`;
2501
+ }
2502
+ function tt(g) {
2503
+ const b = g.slice(0, _e);
2504
+ return et(b);
2505
+ }
2506
+ const rt = 120;
2507
+ function at({
2508
+ onClose: g,
2509
+ displayTimeout: b = rt
2510
+ }) {
2511
+ const { withPrivateKey: E } = Ke(), [A, N] = ve("warning"), [ae, ce] = ve(null), [pe, ue] = ve(b), [t, ye] = ve(!1), [ie, Fe] = ve(null), [de, p] = ve("starting"), se = We(null), { refs: me, context: fe } = Te({
2512
+ open: !0,
2513
+ onOpenChange: (o) => {
2514
+ o || e();
2515
+ }
2516
+ }), ge = Pe(fe, { outsidePressEvent: "mousedown" }), D = qe(fe, { role: "dialog" }), { getFloatingProps: xe } = He([ge, D]);
2517
+ ze(() => {
2518
+ requestAnimationFrame(() => {
2519
+ p("entered");
2520
+ });
2521
+ }, []);
2522
+ const j = je(() => {
2523
+ ce(null), t && navigator.clipboard.writeText("").catch(() => {
2524
+ }), se.current && (clearInterval(se.current), se.current = null);
2525
+ }, [t]), e = je(() => {
2526
+ j(), p("exiting"), setTimeout(() => {
2527
+ g();
2528
+ }, 150);
2529
+ }, [j, g]);
2530
+ ze(() => {
2531
+ if (!(A !== "display" || !ae))
2532
+ return se.current = setInterval(() => {
2533
+ ue((o) => o <= 1 ? (e(), 0) : o - 1);
2534
+ }, 1e3), () => {
2535
+ se.current && (clearInterval(se.current), se.current = null);
2536
+ };
2537
+ }, [A, ae, e]), ze(() => () => {
2538
+ ce(null), se.current && clearInterval(se.current);
2539
+ }, []);
2540
+ const l = async () => {
2541
+ N("loading");
2542
+ try {
2543
+ await E(async (o) => {
2544
+ const f = tt(o);
2545
+ ce(f.split(" ")), N("display");
2546
+ });
2547
+ } catch (o) {
2548
+ Fe(
2549
+ o instanceof Error ? o.message : "Failed to export key"
2550
+ ), N("error");
2551
+ }
2552
+ }, h = () => {
2553
+ ae && (navigator.clipboard.writeText(ae.join(" ")), ye(!0), setTimeout(() => ye(!1), 2e3));
2554
+ }, x = () => {
2555
+ Fe(null), N("warning");
2556
+ }, m = (o) => {
2557
+ const f = Math.floor(o / 60), r = o % 60;
2558
+ return `${f}:${r.toString().padStart(2, "0")}`;
2559
+ };
2560
+ return /* @__PURE__ */ n(
2561
+ Le,
2562
+ {
2563
+ className: "grid place-items-center px-4 z-50 transition-opacity duration-150 ease-in-out bg-[var(--wui-color-overlay)] data-[state=starting]:opacity-0 data-[state=exiting]:opacity-0 data-[state=entered]:opacity-100",
2564
+ "data-state": de,
2565
+ lockScroll: !0,
2566
+ children: /* @__PURE__ */ n(Ie, { context: fe, modal: !0, children: /* @__PURE__ */ B(
2567
+ "div",
2568
+ {
2569
+ ref: me.setFloating,
2570
+ ...xe(),
2571
+ role: "dialog",
2572
+ "aria-label": A === "display" ? "Recovery Phrase" : "Export Recovery Phrase",
2573
+ "data-state": de,
2574
+ className: "w-full max-w-sm rounded-3xl bg-[var(--wui-color-bg)] shadow-xl transform transition-all duration-150 ease-in-out data-[state=starting]:opacity-0 data-[state=starting]:scale-90 data-[state=exiting]:opacity-0 data-[state=exiting]:scale-90 data-[state=entered]:opacity-100 data-[state=entered]:scale-100",
2575
+ style: { marginTop: "-0.5rem" },
2576
+ children: [
2577
+ A === "warning" && /* @__PURE__ */ n(it, { onReveal: l, onClose: e }),
2578
+ A === "loading" && /* @__PURE__ */ n(st, {}),
2579
+ A === "display" && ae && /* @__PURE__ */ n(
2580
+ ot,
2581
+ {
2582
+ words: ae,
2583
+ timeRemaining: pe,
2584
+ formatTime: m,
2585
+ hasCopied: t,
2586
+ onCopy: h,
2587
+ onClose: e
2588
+ }
2589
+ ),
2590
+ A === "error" && /* @__PURE__ */ n(
2591
+ lt,
2592
+ {
2593
+ message: ie,
2594
+ onRetry: x,
2595
+ onClose: e
2596
+ }
2597
+ )
2598
+ ]
2599
+ }
2600
+ ) })
2601
+ }
2602
+ );
2603
+ }
2604
+ function it({
2605
+ onReveal: g,
2606
+ onClose: b
2607
+ }) {
2608
+ return /* @__PURE__ */ B(be, { children: [
2609
+ /* @__PURE__ */ B("div", { className: "relative flex items-center px-6 pt-5 pb-4", children: [
2610
+ /* @__PURE__ */ n("h2", { className: "text-xl font-bold text-[var(--wui-color-text)] wallet-custom-font", children: "Export Recovery Phrase" }),
2611
+ /* @__PURE__ */ n(
2612
+ "button",
2613
+ {
2614
+ onClick: b,
2615
+ className: "absolute right-4 rounded-full bg-[var(--wui-color-bg-tertiary)] p-2 text-[var(--wui-color-text-secondary)] hover:brightness-90 transition-all",
2616
+ "aria-label": "Close dialog",
2617
+ children: /* @__PURE__ */ n(
2618
+ "svg",
2619
+ {
2620
+ xmlns: "http://www.w3.org/2000/svg",
2621
+ className: "h-5 w-5",
2622
+ viewBox: "0 0 20 20",
2623
+ fill: "currentColor",
2624
+ children: /* @__PURE__ */ n(
2625
+ "path",
2626
+ {
2627
+ fillRule: "evenodd",
2628
+ d: "M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z",
2629
+ clipRule: "evenodd"
2630
+ }
2631
+ )
2632
+ }
2633
+ )
2634
+ }
2635
+ )
2636
+ ] }),
2637
+ /* @__PURE__ */ n("div", { className: "px-6 pb-4", children: /* @__PURE__ */ n("div", { className: "bg-[var(--wui-color-danger-bg)] rounded-xl p-4", children: /* @__PURE__ */ B("div", { className: "flex items-start gap-3", children: [
2638
+ /* @__PURE__ */ n(
2639
+ "svg",
2640
+ {
2641
+ xmlns: "http://www.w3.org/2000/svg",
2642
+ className: "h-5 w-5 text-[var(--wui-color-danger-text)] shrink-0 mt-0.5",
2643
+ viewBox: "0 0 20 20",
2644
+ fill: "currentColor",
2645
+ children: /* @__PURE__ */ n(
2646
+ "path",
2647
+ {
2648
+ fillRule: "evenodd",
2649
+ d: "M10 1.944A11.954 11.954 0 012.166 5C2.056 5.649 2 6.319 2 7c0 5.225 3.34 9.67 8 11.317C14.66 16.67 18 12.225 18 7c0-.682-.057-1.35-.166-2.001A11.954 11.954 0 0110 1.944zM11 14a1 1 0 11-2 0 1 1 0 012 0zm0-7a1 1 0 10-2 0v3a1 1 0 102 0V7z",
2650
+ clipRule: "evenodd"
2651
+ }
2652
+ )
2653
+ }
2654
+ ),
2655
+ /* @__PURE__ */ B("div", { children: [
2656
+ /* @__PURE__ */ n("p", { className: "text-sm font-medium text-[var(--wui-color-danger-text)] mb-2", children: "Your recovery phrase gives full access to your account and funds." }),
2657
+ /* @__PURE__ */ B("ul", { className: "text-sm text-[var(--wui-color-danger-text)] space-y-1.5", children: [
2658
+ /* @__PURE__ */ B("li", { className: "flex items-start gap-2", children: [
2659
+ /* @__PURE__ */ n("span", { className: "shrink-0 mt-1", children: /* @__PURE__ */ n(
2660
+ "svg",
2661
+ {
2662
+ xmlns: "http://www.w3.org/2000/svg",
2663
+ className: "h-3 w-3",
2664
+ viewBox: "0 0 12 12",
2665
+ fill: "currentColor",
2666
+ children: /* @__PURE__ */ n("circle", { cx: "6", cy: "6", r: "2" })
2667
+ }
2668
+ ) }),
2669
+ "Never share it with anyone"
2670
+ ] }),
2671
+ /* @__PURE__ */ B("li", { className: "flex items-start gap-2", children: [
2672
+ /* @__PURE__ */ n("span", { className: "shrink-0 mt-1", children: /* @__PURE__ */ n(
2673
+ "svg",
2674
+ {
2675
+ xmlns: "http://www.w3.org/2000/svg",
2676
+ className: "h-3 w-3",
2677
+ viewBox: "0 0 12 12",
2678
+ fill: "currentColor",
2679
+ children: /* @__PURE__ */ n("circle", { cx: "6", cy: "6", r: "2" })
2680
+ }
2681
+ ) }),
2682
+ "Never enter it on unverified websites"
2683
+ ] }),
2684
+ /* @__PURE__ */ B("li", { className: "flex items-start gap-2", children: [
2685
+ /* @__PURE__ */ n("span", { className: "shrink-0 mt-1", children: /* @__PURE__ */ n(
2686
+ "svg",
2687
+ {
2688
+ xmlns: "http://www.w3.org/2000/svg",
2689
+ className: "h-3 w-3",
2690
+ viewBox: "0 0 12 12",
2691
+ fill: "currentColor",
2692
+ children: /* @__PURE__ */ n("circle", { cx: "6", cy: "6", r: "2" })
2693
+ }
2694
+ ) }),
2695
+ "Write it down and store it securely"
2696
+ ] })
2697
+ ] })
2698
+ ] })
2699
+ ] }) }) }),
2700
+ /* @__PURE__ */ B("div", { className: "px-6 pb-5 flex gap-2", children: [
2701
+ /* @__PURE__ */ n(
2702
+ "button",
2703
+ {
2704
+ onClick: b,
2705
+ className: "flex-1 py-2.5 px-4 bg-[var(--wui-color-bg-tertiary)] text-[var(--wui-color-text-secondary)] font-medium rounded-xl hover:brightness-90 transition-all text-sm",
2706
+ children: "Cancel"
2707
+ }
2708
+ ),
2709
+ /* @__PURE__ */ n(
2710
+ "button",
2711
+ {
2712
+ onClick: g,
2713
+ className: "flex-1 py-2.5 px-4 bg-[var(--wui-color-danger-bg)] text-[var(--wui-color-danger-text)] font-medium rounded-xl hover:bg-[var(--wui-color-danger-bg-hover)] transition-colors text-sm",
2714
+ children: "Reveal Recovery Phrase"
2715
+ }
2716
+ )
2717
+ ] })
2718
+ ] });
2719
+ }
2720
+ function st() {
2721
+ return /* @__PURE__ */ B("div", { className: "px-6 py-12 flex flex-col items-center gap-3", children: [
2722
+ /* @__PURE__ */ B(
2723
+ "svg",
2724
+ {
2725
+ className: "h-8 w-8 text-[var(--wui-color-text-tertiary)] animate-spin",
2726
+ xmlns: "http://www.w3.org/2000/svg",
2727
+ fill: "none",
2728
+ viewBox: "0 0 24 24",
2729
+ children: [
2730
+ /* @__PURE__ */ n(
2731
+ "circle",
2732
+ {
2733
+ className: "opacity-25",
2734
+ cx: "12",
2735
+ cy: "12",
2736
+ r: "10",
2737
+ stroke: "currentColor",
2738
+ strokeWidth: "4"
2739
+ }
2740
+ ),
2741
+ /* @__PURE__ */ n(
2742
+ "path",
2743
+ {
2744
+ className: "opacity-75",
2745
+ fill: "currentColor",
2746
+ d: "M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"
2747
+ }
2748
+ )
2749
+ ]
2750
+ }
2751
+ ),
2752
+ /* @__PURE__ */ n("p", { className: "text-sm text-[var(--wui-color-text-secondary)]", children: "Retrieving key..." })
2753
+ ] });
2754
+ }
2755
+ function ot({
2756
+ words: g,
2757
+ timeRemaining: b,
2758
+ formatTime: E,
2759
+ hasCopied: A,
2760
+ onCopy: N,
2761
+ onClose: ae
2762
+ }) {
2763
+ return /* @__PURE__ */ B(be, { children: [
2764
+ /* @__PURE__ */ B("div", { className: "relative flex items-center justify-between px-6 pt-5 pb-3", children: [
2765
+ /* @__PURE__ */ n("h2", { className: "text-xl font-bold text-[var(--wui-color-text)] wallet-custom-font", children: "Recovery Phrase" }),
2766
+ /* @__PURE__ */ B("div", { className: "flex items-center gap-2", children: [
2767
+ /* @__PURE__ */ n(
2768
+ "span",
2769
+ {
2770
+ className: "text-sm font-medium tabular-nums text-[var(--wui-color-text-secondary)]",
2771
+ "aria-label": `${b} seconds remaining`,
2772
+ children: E(b)
2773
+ }
2774
+ ),
2775
+ /* @__PURE__ */ n(
2776
+ "button",
2777
+ {
2778
+ onClick: ae,
2779
+ className: "rounded-full bg-[var(--wui-color-bg-tertiary)] p-2 text-[var(--wui-color-text-secondary)] hover:brightness-90 transition-all",
2780
+ "aria-label": "Close dialog",
2781
+ children: /* @__PURE__ */ n(
2782
+ "svg",
2783
+ {
2784
+ xmlns: "http://www.w3.org/2000/svg",
2785
+ className: "h-5 w-5",
2786
+ viewBox: "0 0 20 20",
2787
+ fill: "currentColor",
2788
+ children: /* @__PURE__ */ n(
2789
+ "path",
2790
+ {
2791
+ fillRule: "evenodd",
2792
+ d: "M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z",
2793
+ clipRule: "evenodd"
2794
+ }
2795
+ )
2796
+ }
2797
+ )
2798
+ }
2799
+ )
2800
+ ] })
2801
+ ] }),
2802
+ /* @__PURE__ */ n("div", { className: "px-6 pb-4", children: /* @__PURE__ */ n(
2803
+ "div",
2804
+ {
2805
+ className: "bg-[var(--wui-color-bg-secondary)] rounded-xl p-3",
2806
+ style: { userSelect: "none" },
2807
+ children: /* @__PURE__ */ n("div", { className: "grid grid-cols-3 gap-1.5", children: g.map((ce, pe) => /* @__PURE__ */ B(
2808
+ "div",
2809
+ {
2810
+ className: "text-center py-1.5 px-1 rounded-lg bg-[var(--wui-color-bg)] border border-[var(--wui-color-border)]",
2811
+ children: [
2812
+ /* @__PURE__ */ n("span", { className: "text-[10px] leading-none text-[var(--wui-color-text-tertiary)] block mb-0.5", children: pe + 1 }),
2813
+ /* @__PURE__ */ n("span", { className: "text-xs font-medium text-[var(--wui-color-text)]", children: ce })
2814
+ ]
2815
+ },
2816
+ pe
2817
+ )) })
2818
+ }
2819
+ ) }),
2820
+ /* @__PURE__ */ B("div", { className: "px-6 pb-2 flex gap-2", children: [
2821
+ /* @__PURE__ */ n(
2822
+ "button",
2823
+ {
2824
+ onClick: N,
2825
+ className: "flex-1 py-2 px-4 bg-[var(--wui-color-bg-tertiary)] text-[var(--wui-color-text-secondary)] font-medium rounded-xl hover:brightness-90 transition-all text-sm flex items-center justify-center",
2826
+ title: "Copy recovery phrase",
2827
+ children: A ? /* @__PURE__ */ B(be, { children: [
2828
+ /* @__PURE__ */ n(
2829
+ "svg",
2830
+ {
2831
+ xmlns: "http://www.w3.org/2000/svg",
2832
+ className: "h-4 w-4 text-green-500 mr-1.5",
2833
+ viewBox: "0 0 20 20",
2834
+ fill: "currentColor",
2835
+ children: /* @__PURE__ */ n(
2836
+ "path",
2837
+ {
2838
+ fillRule: "evenodd",
2839
+ d: "M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z",
2840
+ clipRule: "evenodd"
2841
+ }
2842
+ )
2843
+ }
2844
+ ),
2845
+ "Copied"
2846
+ ] }) : /* @__PURE__ */ B(be, { children: [
2847
+ /* @__PURE__ */ B(
2848
+ "svg",
2849
+ {
2850
+ xmlns: "http://www.w3.org/2000/svg",
2851
+ className: "h-4 w-4 mr-1.5",
2852
+ viewBox: "0 0 20 20",
2853
+ fill: "currentColor",
2854
+ children: [
2855
+ /* @__PURE__ */ n("path", { d: "M8 3a1 1 0 011-1h2a1 1 0 110 2H9a1 1 0 01-1-1z" }),
2856
+ /* @__PURE__ */ n("path", { d: "M6 3a2 2 0 00-2 2v11a2 2 0 002 2h8a2 2 0 002-2V5a2 2 0 00-2-2 3 3 0 01-3 3H9a3 3 0 01-3-3z" })
2857
+ ]
2858
+ }
2859
+ ),
2860
+ "Copy"
2861
+ ] })
2862
+ }
2863
+ ),
2864
+ /* @__PURE__ */ n(
2865
+ "button",
2866
+ {
2867
+ onClick: ae,
2868
+ className: "flex-1 py-2 px-4 bg-[var(--wui-color-primary)] text-[var(--wui-color-primary-text)] font-medium rounded-xl hover:bg-[var(--wui-color-primary-hover)] transition-colors text-sm",
2869
+ children: "Done"
2870
+ }
2871
+ )
2872
+ ] }),
2873
+ /* @__PURE__ */ n("div", { className: "px-6 pb-5", children: /* @__PURE__ */ n("p", { className: "text-xs text-[var(--wui-color-text-tertiary)] text-center", children: "Remember to clear your clipboard after use" }) })
2874
+ ] });
2875
+ }
2876
+ function lt({
2877
+ message: g,
2878
+ onRetry: b,
2879
+ onClose: E
2880
+ }) {
2881
+ return /* @__PURE__ */ B(be, { children: [
2882
+ /* @__PURE__ */ B("div", { className: "relative flex items-center px-6 pt-5 pb-4", children: [
2883
+ /* @__PURE__ */ n("h2", { className: "text-xl font-bold text-[var(--wui-color-text)] wallet-custom-font", children: "Export Recovery Phrase" }),
2884
+ /* @__PURE__ */ n(
2885
+ "button",
2886
+ {
2887
+ onClick: E,
2888
+ className: "absolute right-4 rounded-full bg-[var(--wui-color-bg-tertiary)] p-2 text-[var(--wui-color-text-secondary)] hover:brightness-90 transition-all",
2889
+ "aria-label": "Close dialog",
2890
+ children: /* @__PURE__ */ n(
2891
+ "svg",
2892
+ {
2893
+ xmlns: "http://www.w3.org/2000/svg",
2894
+ className: "h-5 w-5",
2895
+ viewBox: "0 0 20 20",
2896
+ fill: "currentColor",
2897
+ children: /* @__PURE__ */ n(
2898
+ "path",
2899
+ {
2900
+ fillRule: "evenodd",
2901
+ d: "M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z",
2902
+ clipRule: "evenodd"
2903
+ }
2904
+ )
2905
+ }
2906
+ )
2907
+ }
2908
+ )
2909
+ ] }),
2910
+ /* @__PURE__ */ n("div", { className: "px-6 pb-4", children: /* @__PURE__ */ n("div", { className: "bg-[var(--wui-color-danger-bg)] rounded-xl p-4", children: /* @__PURE__ */ B("div", { className: "flex items-start gap-3", children: [
2911
+ /* @__PURE__ */ n(
2912
+ "svg",
2913
+ {
2914
+ xmlns: "http://www.w3.org/2000/svg",
2915
+ className: "h-5 w-5 text-[var(--wui-color-danger-text)] shrink-0 mt-0.5",
2916
+ viewBox: "0 0 20 20",
2917
+ fill: "currentColor",
2918
+ children: /* @__PURE__ */ n(
2919
+ "path",
2920
+ {
2921
+ fillRule: "evenodd",
2922
+ d: "M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7 4a1 1 0 11-2 0 1 1 0 012 0zm-1-9a1 1 0 00-1 1v4a1 1 0 102 0V6a1 1 0 00-1-1z",
2923
+ clipRule: "evenodd"
2924
+ }
2925
+ )
2926
+ }
2927
+ ),
2928
+ /* @__PURE__ */ n("p", { className: "text-sm text-[var(--wui-color-danger-text)]", children: g || "An unexpected error occurred." })
2929
+ ] }) }) }),
2930
+ /* @__PURE__ */ B("div", { className: "px-6 pb-5 flex gap-2", children: [
2931
+ /* @__PURE__ */ n(
2932
+ "button",
2933
+ {
2934
+ onClick: E,
2935
+ className: "flex-1 py-2.5 px-4 bg-[var(--wui-color-bg-tertiary)] text-[var(--wui-color-text-secondary)] font-medium rounded-xl hover:brightness-90 transition-all text-sm",
2936
+ children: "Cancel"
2937
+ }
2938
+ ),
2939
+ /* @__PURE__ */ n(
2940
+ "button",
2941
+ {
2942
+ onClick: b,
2943
+ className: "flex-1 py-2.5 px-4 bg-[var(--wui-color-primary)] text-[var(--wui-color-primary-text)] font-medium rounded-xl hover:bg-[var(--wui-color-primary-hover)] transition-colors text-sm",
2944
+ children: "Try Again"
2945
+ }
2946
+ )
2947
+ ] })
2948
+ ] });
2949
+ }
2950
+ function nt({ ctx: g }) {
2951
+ return /* @__PURE__ */ B(be, { children: [
2952
+ /* @__PURE__ */ n("div", { className: "border-t border-[var(--wui-color-border)] mt-2 mb-2" }),
2953
+ /* @__PURE__ */ B(
2954
+ "button",
2955
+ {
2956
+ onClick: () => {
2957
+ g.closeMenu(), g.openDialog(Me);
2958
+ },
2959
+ className: "w-full flex items-center gap-2 px-2 py-2 rounded-lg text-sm text-[var(--wui-color-text-secondary)] hover:bg-[var(--wui-color-bg-hover)] transition-colors",
2960
+ children: [
2961
+ /* @__PURE__ */ n(
2962
+ "svg",
2963
+ {
2964
+ xmlns: "http://www.w3.org/2000/svg",
2965
+ className: "h-4 w-4 shrink-0",
2966
+ viewBox: "0 0 20 20",
2967
+ fill: "currentColor",
2968
+ children: /* @__PURE__ */ n(
2969
+ "path",
2970
+ {
2971
+ fillRule: "evenodd",
2972
+ d: "M18 8a6 6 0 01-7.743 5.743L10 14l-1 1-1 1H6v2H2v-4l4.257-4.257A6 6 0 1118 8zm-6-4a1 1 0 100 2 2 2 0 012 2 1 1 0 102 0 4 4 0 00-4-4z",
2973
+ clipRule: "evenodd"
2974
+ }
2975
+ )
2976
+ }
2977
+ ),
2978
+ /* @__PURE__ */ n("span", { className: "flex-1 text-left", children: "Export Recovery Phrase" }),
2979
+ /* @__PURE__ */ n(
2980
+ "svg",
2981
+ {
2982
+ xmlns: "http://www.w3.org/2000/svg",
2983
+ className: "h-4 w-4 shrink-0 opacity-50",
2984
+ viewBox: "0 0 20 20",
2985
+ fill: "currentColor",
2986
+ children: /* @__PURE__ */ n(
2987
+ "path",
2988
+ {
2989
+ fillRule: "evenodd",
2990
+ d: "M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z",
2991
+ clipRule: "evenodd"
2992
+ }
2993
+ )
2994
+ }
2995
+ )
2996
+ ]
2997
+ }
2998
+ )
2999
+ ] });
3000
+ }
3001
+ function ut(g = {}) {
3002
+ const { displayTimeout: b } = g;
3003
+ return {
3004
+ id: "export-key",
3005
+ name: "Export Recovery Phrase",
3006
+ menuItems: [
3007
+ {
3008
+ key: "export-key-trigger",
3009
+ slot: "after-wallet-info",
3010
+ order: 10,
3011
+ enabled: (E) => {
3012
+ var A;
3013
+ return !!((A = E.activeWallet) != null && A.canUsePrivateKey);
3014
+ },
3015
+ render: (E) => /* @__PURE__ */ n(nt, { ctx: E })
3016
+ }
3017
+ ],
3018
+ dialogs: [
3019
+ {
3020
+ key: Me,
3021
+ render: ({ onClose: E }) => /* @__PURE__ */ n(at, { onClose: E, displayTimeout: b })
3022
+ }
3023
+ ]
3024
+ };
3025
+ }
3026
+ export {
3027
+ Me as EXPORT_KEY_DIALOG,
3028
+ ut as exportKeyPlugin
3029
+ };
3030
+ //# sourceMappingURL=export-key.js.map