@private.me/xbind 1.3.0 → 1.3.5

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 (68) hide show
  1. package/README.md +2 -2
  2. package/dist-standalone/_deps/crypto/base64.js +183 -170
  3. package/dist-standalone/_deps/crypto/cjs/base64.js +653 -91
  4. package/dist-standalone/_deps/crypto/cjs/errors.js +658 -102
  5. package/dist-standalone/_deps/crypto/cjs/hmac.js +468 -66
  6. package/dist-standalone/_deps/crypto/cjs/index.js +848 -82
  7. package/dist-standalone/_deps/crypto/cjs/package.json +1 -0
  8. package/dist-standalone/_deps/crypto/cjs/padding.js +504 -50
  9. package/dist-standalone/_deps/crypto/cjs/share-header.js +369 -65
  10. package/dist-standalone/_deps/crypto/cjs/shares.js +865 -143
  11. package/dist-standalone/_deps/crypto/cjs/tlv.js +1005 -183
  12. package/dist-standalone/_deps/crypto/cjs/uuid.js +437 -55
  13. package/dist-standalone/_deps/crypto/cjs/verify.js +414 -24
  14. package/dist-standalone/_deps/crypto/cjs/xorida.js +888 -186
  15. package/dist-standalone/_deps/crypto/errors.js +179 -89
  16. package/dist-standalone/_deps/crypto/hmac.js +129 -61
  17. package/dist-standalone/_deps/crypto/index.js +140 -40
  18. package/dist-standalone/_deps/crypto/padding.js +151 -45
  19. package/dist-standalone/_deps/crypto/share-header.js +89 -60
  20. package/dist-standalone/_deps/crypto/shares.js +280 -133
  21. package/dist-standalone/_deps/crypto/tlv.js +348 -179
  22. package/dist-standalone/_deps/crypto/uuid.js +130 -50
  23. package/dist-standalone/_deps/crypto/verify.js +71 -15
  24. package/dist-standalone/_deps/crypto/xorida.js +332 -181
  25. package/dist-standalone/_deps/shared/cjs/errors.js +572 -208
  26. package/dist-standalone/_deps/shared/cjs/index.js +443 -85
  27. package/dist-standalone/_deps/shared/cjs/types.js +284 -57
  28. package/dist-standalone/_deps/shared/errors.js +192 -199
  29. package/dist-standalone/_deps/shared/index.js +48 -51
  30. package/dist-standalone/_deps/shared/types.js +56 -57
  31. package/dist-standalone/_deps/ux-helpers/cjs/errors.js +1 -1
  32. package/dist-standalone/_deps/ux-helpers/cjs/pagination.js +1 -1
  33. package/dist-standalone/_deps/ux-helpers/cjs/progress.js +1 -1
  34. package/dist-standalone/_deps/ux-helpers/cjs/search.js +1 -1
  35. package/dist-standalone/_deps/ux-helpers/errors.js +1 -1
  36. package/dist-standalone/_deps/ux-helpers/pagination.js +1 -1
  37. package/dist-standalone/_deps/ux-helpers/progress.js +1 -1
  38. package/dist-standalone/_deps/ux-helpers/search.js +1 -1
  39. package/dist-standalone/_deps/xchange/auto-accept.js +1 -1
  40. package/dist-standalone/_deps/xchange/cjs/auto-accept.js +1 -1
  41. package/dist-standalone/_deps/xchange/cjs/errors.js +1 -1
  42. package/dist-standalone/_deps/xchange/cjs/index.js +1 -1
  43. package/dist-standalone/_deps/xchange/cjs/invite-client.js +1 -1
  44. package/dist-standalone/_deps/xchange/cjs/lazy-init.js +1 -1
  45. package/dist-standalone/_deps/xchange/cjs/trust-integration.js +1 -1
  46. package/dist-standalone/_deps/xchange/cjs/xchange.js +1 -1
  47. package/dist-standalone/_deps/xchange/errors.js +1 -1
  48. package/dist-standalone/_deps/xchange/index.js +1 -1
  49. package/dist-standalone/_deps/xchange/invite-client.js +1 -1
  50. package/dist-standalone/_deps/xchange/lazy-init.js +1 -1
  51. package/dist-standalone/_deps/xchange/trust-integration.js +1 -1
  52. package/dist-standalone/_deps/xchange/xchange.js +1 -1
  53. package/dist-standalone/_deps/xregistry/cjs/discovery.js +1 -1
  54. package/dist-standalone/_deps/xregistry/cjs/errors.js +1 -1
  55. package/dist-standalone/_deps/xregistry/cjs/index.js +1 -1
  56. package/dist-standalone/_deps/xregistry/cjs/registry.js +1 -1
  57. package/dist-standalone/_deps/xregistry/cjs/schema.js +1 -1
  58. package/dist-standalone/_deps/xregistry/cjs/types.js +1 -1
  59. package/dist-standalone/_deps/xregistry/discovery.js +1 -1
  60. package/dist-standalone/_deps/xregistry/errors.js +1 -1
  61. package/dist-standalone/_deps/xregistry/index.js +1 -1
  62. package/dist-standalone/_deps/xregistry/registry.js +1 -1
  63. package/dist-standalone/_deps/xregistry/schema.js +1 -1
  64. package/dist-standalone/_deps/xregistry/types.js +1 -1
  65. package/dist-standalone/cjs/identity.js +2 -3
  66. package/dist-standalone/identity.js +2 -3
  67. package/package.json +2 -1
  68. package/share1.dat +0 -0
@@ -1,61 +1,443 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.generateUUID = generateUUID;
4
- exports.uuidToBytes = uuidToBytes;
5
- exports.bytesToUuid = bytesToUuid;
6
- /**
7
- * Generate a RFC 4122 Version 4 UUID (128-bit random).
8
- * Uses crypto.randomUUID() when available, otherwise constructs manually
9
- * from crypto.getRandomValues() with proper version/variant bits.
10
- *
11
- * @returns UUID string in standard 8-4-4-4-12 hex format
12
- */
13
- function generateUUID() {
14
- if (typeof crypto !== 'undefined' && typeof crypto.randomUUID === 'function') {
15
- return crypto.randomUUID();
1
+ 'use strict';
2
+ (function (_0x3a5afd, _0x7284f2) {
3
+ const a8_0x38f9ef = {
4
+ _0x23b8af: 0x181,
5
+ _0x309384: 0x1ab,
6
+ _0x466277: 0x1a8,
7
+ _0x1c62f4: 0x193,
8
+ _0x3e16d0: 0x197,
9
+ _0x3f22dd: 0x157,
10
+ _0x10a6dc: 0x16c
11
+ }, _0x15c3a2 = a8_0x5e51, _0x52c85e = _0x3a5afd();
12
+ while (!![]) {
13
+ try {
14
+ const _0x347d61 = -parseInt(_0x15c3a2(a8_0x38f9ef._0x23b8af)) / 0x1 + -parseInt(_0x15c3a2(a8_0x38f9ef._0x309384)) / 0x2 + -parseInt(_0x15c3a2(a8_0x38f9ef._0x466277)) / 0x3 + parseInt(_0x15c3a2(a8_0x38f9ef._0x1c62f4)) / 0x4 * (parseInt(_0x15c3a2(a8_0x38f9ef._0x3e16d0)) / 0x5) + parseInt(_0x15c3a2(a8_0x38f9ef._0x3f22dd)) / 0x6 + -parseInt(_0x15c3a2(0x1a4)) / 0x7 * (parseInt(_0x15c3a2(a8_0x38f9ef._0x10a6dc)) / 0x8) + parseInt(_0x15c3a2(0x18e)) / 0x9;
15
+ if (_0x347d61 === _0x7284f2)
16
+ break;
17
+ else
18
+ _0x52c85e['push'](_0x52c85e['shift']());
19
+ } catch (_0x4e7d28) {
20
+ _0x52c85e['push'](_0x52c85e['shift']());
21
+ }
16
22
  }
17
- const bytes = new Uint8Array(16);
18
- crypto.getRandomValues(bytes);
19
- // Set version 4 (bits 12-15 of time_hi_and_version)
20
- bytes[6] = (bytes[6] & 0x0f) | 0x40;
21
- // Set variant 10xx (bits 6-7 of clock_seq_hi_and_reserved)
22
- bytes[8] = (bytes[8] & 0x3f) | 0x80;
23
- const hex = Array.from(bytes, (b) => b.toString(16).padStart(2, '0')).join('');
24
- return [
25
- hex.slice(0, 8),
26
- hex.slice(8, 12),
27
- hex.slice(12, 16),
28
- hex.slice(16, 20),
29
- hex.slice(20, 32),
30
- ].join('-');
23
+ }(a8_0x1c97, 0x46bd9));
24
+ function a8_0x1c97() {
25
+ const _0x1f8f8a = [
26
+ 'tvz5z2i',
27
+ 'zKvVrwu',
28
+ 'twvRCKu',
29
+ 'BKT2DKvnwgL5rW',
30
+ 'nda1mZyYsgPRDeH3',
31
+ 'Bw1fBNq',
32
+ 'xZb4nty3yZy4',
33
+ 'qZjyuhKYDq',
34
+ 'AgrdA3u',
35
+ 'swr0A3a',
36
+ 'BxrHww1AEtvTzKH6CK5MmNvX',
37
+ 'q0zVrum',
38
+ 'vfHmt0G',
39
+ 'EMD2tuf3nuX1AgPwq2D2wurOsW',
40
+ 'EK52vxKZCLbcmJq',
41
+ 'sNzXsgO',
42
+ 'sKzozeC',
43
+ 'mZu5otK3m0TyA2LcDG',
44
+ 'BLfxC1i',
45
+ 'xZb4mJKYzMzJ',
46
+ 'qxHvBKG',
47
+ 'txbvquS',
48
+ 'nfr6uNHXtq',
49
+ 'Aw5KzxHpzG',
50
+ 'BMrLwg1kDtjcDwzQrdnQBG',
51
+ 'EK5QvKjX',
52
+ 'mtCWmdeXnwPHrgnuyG',
53
+ 'rKz0BxC',
54
+ 'xZb4m2zJztCX',
55
+ 'B2Prwhq',
56
+ 'CejHzgG',
57
+ 'xZb4mwiYntq4',
58
+ 'BfjXtuu',
59
+ 'EKf2zKC',
60
+ 'v3Pmwu8',
61
+ 'yKvpyuu',
62
+ 'xZb4ntfKoti4',
63
+ 'DhC1wNL1tW',
64
+ 'CNjkAKe',
65
+ 'ntmWmdG5zKnss2PX',
66
+ 'BgvUz3rO',
67
+ 'rLDNyKm',
68
+ 'DensEgi',
69
+ 'nZuXotC3vLHSswjT',
70
+ 'EJj2vxP4AKHez3z2DNvmzq',
71
+ 'y2HHCKf0',
72
+ 'mtu2otGYweLYrfjt',
73
+ 'CgfKu3rHCNq',
74
+ 'AMPQD0C',
75
+ 'mJe1otGZmLjWAfjJuq',
76
+ 'r0ruwKW',
77
+ 'teHjwKTz',
78
+ 'BvPHmM5kytrTAgPKqNH2B3zx',
79
+ 'wenVEeS',
80
+ 'BuP5ng5KzvPdttK2ExD2Bq',
81
+ 'y1nLyxq',
82
+ 'Avz2Cg4',
83
+ 'C2HPzNq',
84
+ 'AwDWy2K',
85
+ 'uhHewMu',
86
+ 'B2HOAgS',
87
+ 'BKPLng5AqZv1s0HMq01MwG',
88
+ 'tufdD1i',
89
+ 'q01MvxPNovr2DNzQCMe',
90
+ 'Bwr2A04',
91
+ 'qu05uejh',
92
+ 'vxLqCLK',
93
+ 'BKTZqKG',
94
+ 'DwHUtNPLsW',
95
+ 'tLr1D2G',
96
+ 'ofH4DeTyBa',
97
+ 'ug51uwm',
98
+ 'Eu5mmhP4BNvcmxyXqxDX',
99
+ 'ChvZAa',
100
+ 'q2DMs3uZCKHdtNe',
101
+ 'EJj2mhvnzLv6zZLuDK1Mu0r3DLO',
102
+ 'xZb4ntG1m2zK',
103
+ 'zNjVBunOyxjdB2rL',
104
+ 'D2HvqLy',
105
+ 'zKfIrNq',
106
+ 'xZb4mJK4zMrH',
107
+ 'C2XPy2u',
108
+ 'xZb4nta3mtCZ',
109
+ 'ufbAy2O',
110
+ 'DefNy1i',
111
+ 'tvv5D3y',
112
+ 'Dg9tDhjPBMC'
113
+ ];
114
+ a8_0x1c97 = function () {
115
+ return _0x1f8f8a;
116
+ };
117
+ return a8_0x1c97();
118
+ }
119
+ const a9_0x1323d0 = a9_0x5d92;
120
+ (function (_0x22d043, _0x42ea35) {
121
+ const a8_0x106512 = {
122
+ _0xbd2652: 0x16f,
123
+ _0x19c47e: 0x179,
124
+ _0x1fa8d5: 0x188,
125
+ _0x26bebb: 0x188,
126
+ _0x3757ef: 0x18d,
127
+ _0x1e1dbc: 0x178,
128
+ _0x26a15a: 0x17f,
129
+ _0x2aae60: 0x161,
130
+ _0x3282f5: 0x17f,
131
+ _0x124971: 0x19f
132
+ }, _0x51141c = a8_0x5e51, _0x3cfc8e = {
133
+ 'PPZcj': function (_0xa5541, _0x51f606) {
134
+ return _0xa5541 + _0x51f606;
135
+ },
136
+ 'lkgpr': function (_0x588e34, _0x4801aa) {
137
+ return _0x588e34 + _0x4801aa;
138
+ },
139
+ 'jWnDm': function (_0x4df7, _0x98dfdb) {
140
+ return _0x4df7 * _0x98dfdb;
141
+ },
142
+ 'JFNdG': function (_0x2db694, _0x1102d6) {
143
+ return _0x2db694 / _0x1102d6;
144
+ },
145
+ 'CFoEC': function (_0x5cfafb, _0x2d45d7) {
146
+ return _0x5cfafb(_0x2d45d7);
147
+ },
148
+ 'NTuwh': function (_0x300223, _0x25447f) {
149
+ return _0x300223(_0x25447f);
150
+ },
151
+ 'MekrE': function (_0x22d8e8, _0x1c4f10) {
152
+ return _0x22d8e8(_0x1c4f10);
153
+ },
154
+ 'PxDZe': function (_0x5f3ed6, _0x22396e) {
155
+ return _0x5f3ed6 / _0x22396e;
156
+ },
157
+ 'GDTZL': function (_0x10960a, _0x37cfd8) {
158
+ return _0x10960a / _0x37cfd8;
159
+ },
160
+ 'WzLYO': function (_0x531f6a, _0x211f65) {
161
+ return _0x531f6a === _0x211f65;
162
+ },
163
+ 'MACwR': _0x51141c(a8_0x106512._0xbd2652),
164
+ 'kDNyU': _0x51141c(0x15f)
165
+ }, _0x5bd23d = {
166
+ '_0x298fda': 0x14b,
167
+ '_0x507173': 0x145,
168
+ '_0x5853fd': 0x137
169
+ }, _0xd5eaea = a9_0x5d92, _0x1c682c = _0x22d043();
170
+ while (!![]) {
171
+ try {
172
+ const _0x3de7cb = _0x3cfc8e[_0x51141c(a8_0x106512._0x19c47e)](_0x3cfc8e['lkgpr'](_0x3cfc8e['jWnDm'](parseInt(_0xd5eaea(0x138)) / 0x1, _0x3cfc8e[_0x51141c(0x18d)](-parseInt(_0x3cfc8e[_0x51141c(a8_0x106512._0x1fa8d5)](_0xd5eaea, _0x5bd23d[_0x51141c(0x176)])), 0x2)) + _0x3cfc8e[_0x51141c(a8_0x106512._0x26bebb)](parseInt, _0xd5eaea(0x140)) / 0x3 + _0x3cfc8e[_0x51141c(a8_0x106512._0x3757ef)](_0x3cfc8e[_0x51141c(a8_0x106512._0x1fa8d5)](parseInt, _0x3cfc8e[_0x51141c(0x16b)](_0xd5eaea, _0x5bd23d[_0x51141c(a8_0x106512._0x1e1dbc)])), 0x4), _0x3cfc8e['JFNdG'](parseInt(_0x3cfc8e[_0x51141c(a8_0x106512._0x26a15a)](_0xd5eaea, 0x13b)), 0x5)), _0x3cfc8e[_0x51141c(a8_0x106512._0x2aae60)](-_0x3cfc8e[_0x51141c(a8_0x106512._0x3282f5)](parseInt, _0x3cfc8e['CFoEC'](_0xd5eaea, 0x13e)), 0x6)) + _0x3cfc8e[_0x51141c(0x158)](-parseInt(_0xd5eaea(_0x5bd23d[_0x51141c(0x172)])), 0x7) + parseInt(_0xd5eaea(0x144)) / 0x8;
173
+ if (_0x3cfc8e[_0x51141c(a8_0x106512._0x124971)](_0x3de7cb, _0x42ea35))
174
+ break;
175
+ else
176
+ _0x1c682c[_0x3cfc8e[_0x51141c(0x164)]](_0x1c682c['shift']());
177
+ } catch (_0x1abfc8) {
178
+ _0x1c682c[_0x51141c(0x16f)](_0x1c682c[_0x3cfc8e['kDNyU']]());
179
+ }
180
+ }
181
+ }(a9_0x18c8, 0x2d5e6));
182
+ function a9_0x5d92(_0x24777a, _0x251cf6) {
183
+ const a8_0x3ae795 = {
184
+ _0x3ec612: 0x194,
185
+ _0x422902: 0x1a5,
186
+ _0x382f2e: 0x17c,
187
+ _0x49ff3b: 0x159,
188
+ _0x2a678f: 0x1ad
189
+ }, a8_0x268d05 = {
190
+ _0x3e6683: 0x1aa,
191
+ _0x2aac91: 0x174,
192
+ _0x41e385: 0x18f,
193
+ _0x6ab201: 0x182,
194
+ _0x4e5312: 0x177,
195
+ _0x10e6f8: 0x19e
196
+ }, _0x46817d = a8_0x5e51, _0x4d7e00 = {
197
+ 'FFtmw': 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=',
198
+ 'tAgcR': function (_0x5626c0, _0x32c4b6) {
199
+ return _0x5626c0 % _0x32c4b6;
200
+ },
201
+ 'whUBV': function (_0x2d60cc, _0x20f5ba) {
202
+ return _0x2d60cc * _0x20f5ba;
203
+ },
204
+ 'MVygb': function (_0x21d433, _0x26e77f) {
205
+ return _0x21d433 % _0x26e77f;
206
+ },
207
+ 'JvqHj': _0x46817d(0x173),
208
+ 'kChji': function (_0x5c811e, _0x5371af) {
209
+ return _0x5c811e & _0x5371af;
210
+ },
211
+ 'nQWsR': _0x46817d(a8_0x3ae795._0x3ec612),
212
+ 'Idtkp': _0x46817d(a8_0x3ae795._0x422902),
213
+ 'mmEnt': function (_0x1cce53, _0xfd4eb9) {
214
+ return _0x1cce53 < _0xfd4eb9;
215
+ },
216
+ 'RRZQO': _0x46817d(a8_0x3ae795._0x382f2e),
217
+ 'zAvfG': function (_0x2c7a2a, _0x259196) {
218
+ return _0x2c7a2a(_0x259196);
219
+ },
220
+ 'iGqHq': function (_0x173f6a, _0x43a378) {
221
+ return _0x173f6a - _0x43a378;
222
+ },
223
+ 'fEoEe': function (_0x122a45) {
224
+ return _0x122a45();
225
+ },
226
+ 'jjjwG': function (_0x4e48d5, _0x533bf3) {
227
+ return _0x4e48d5 === _0x533bf3;
228
+ },
229
+ 'pBadh': _0x46817d(a8_0x3ae795._0x49ff3b),
230
+ 'FWgbC': function (_0xc0eca, _0xa287bd) {
231
+ return _0xc0eca + _0xa287bd;
232
+ },
233
+ 'YSoSy': 'dofkId'
234
+ };
235
+ _0x24777a = _0x4d7e00['iGqHq'](_0x24777a, 0x134);
236
+ const _0x224e78 = _0x4d7e00[_0x46817d(0x17e)](a9_0x18c8);
237
+ let _0x17b249 = _0x224e78[_0x24777a];
238
+ if (_0x4d7e00[_0x46817d(a8_0x3ae795._0x2a678f)](a9_0x5d92['ObiQpx'], undefined)) {
239
+ var _0xf2f87d = function (_0x524730) {
240
+ const _0x38f9f2 = a8_0x5e51, _0x528806 = _0x4d7e00[_0x38f9f2(0x198)];
241
+ let _0x4c07ce = '', _0x5c8e26 = '';
242
+ for (let _0x696384 = 0x0, _0x49cca1, _0x23d924, _0x48dcea = 0x0; _0x23d924 = _0x524730[_0x38f9f2(a8_0x268d05._0x3e6683)](_0x48dcea++); ~_0x23d924 && (_0x49cca1 = _0x4d7e00[_0x38f9f2(0x17a)](_0x696384, 0x4) ? _0x4d7e00[_0x38f9f2(a8_0x268d05._0x2aac91)](_0x49cca1, 0x40) + _0x23d924 : _0x23d924, _0x4d7e00[_0x38f9f2(0x17d)](_0x696384++, 0x4)) ? _0x4c07ce += String[_0x4d7e00[_0x38f9f2(0x18c)]](_0x4d7e00['kChji'](0xff, _0x49cca1 >> (-0x2 * _0x696384 & 0x6))) : 0x0) {
243
+ _0x23d924 = _0x528806[_0x4d7e00[_0x38f9f2(a8_0x268d05._0x41e385)]](_0x23d924);
244
+ }
245
+ for (let _0x2b1b2e = 0x0, _0x862751 = _0x4c07ce[_0x4d7e00[_0x38f9f2(0x186)]]; _0x4d7e00[_0x38f9f2(a8_0x268d05._0x6ab201)](_0x2b1b2e, _0x862751); _0x2b1b2e++) {
246
+ _0x5c8e26 += '%' + ('00' + _0x4c07ce['charCodeAt'](_0x2b1b2e)[_0x4d7e00['RRZQO']](0x10))[_0x38f9f2(a8_0x268d05._0x4e5312)](-0x2);
247
+ }
248
+ return _0x4d7e00[_0x38f9f2(a8_0x268d05._0x10e6f8)](decodeURIComponent, _0x5c8e26);
249
+ };
250
+ a9_0x5d92['dofkId'] = _0xf2f87d, a9_0x5d92[_0x4d7e00[_0x46817d(0x19b)]] = {}, a9_0x5d92['ObiQpx'] = !![];
251
+ }
252
+ const _0x478c00 = _0x224e78[0x0], _0x2ad062 = _0x4d7e00[_0x46817d(0x1a6)](_0x24777a, _0x478c00), _0x200424 = a9_0x5d92[_0x46817d(0x159)][_0x2ad062];
253
+ return !_0x200424 ? (_0x17b249 = a9_0x5d92[_0x4d7e00['YSoSy']](_0x17b249), a9_0x5d92[_0x46817d(0x159)][_0x2ad062] = _0x17b249) : _0x17b249 = _0x200424, _0x17b249;
31
254
  }
32
- /**
33
- * Parse a UUID string into its raw 16 bytes.
34
- *
35
- * @param uuid - UUID string in 8-4-4-4-12 hex format
36
- * @returns 16-byte Uint8Array
37
- */
38
- function uuidToBytes(uuid) {
39
- const hex = uuid.replace(/-/g, '');
40
- const bytes = new Uint8Array(16);
41
- for (let i = 0; i < 16; i++) {
42
- bytes[i] = parseInt(hex.slice(i * 2, i * 2 + 2), 16);
255
+ function a8_0x5e51(_0x36d570, _0x2540bc) {
256
+ _0x36d570 = _0x36d570 - 0x157;
257
+ const _0x1c9793 = a8_0x1c97();
258
+ let _0x5e5154 = _0x1c9793[_0x36d570];
259
+ if (a8_0x5e51['QpnFZf'] === undefined) {
260
+ var _0x42e533 = function (_0x296126) {
261
+ const _0x3656b3 = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';
262
+ let _0x420abc = '', _0x402043 = '';
263
+ for (let _0x1566d3 = 0x0, _0x56f48a, _0x2580c7, _0x1392f5 = 0x0; _0x2580c7 = _0x296126['charAt'](_0x1392f5++); ~_0x2580c7 && (_0x56f48a = _0x1566d3 % 0x4 ? _0x56f48a * 0x40 + _0x2580c7 : _0x2580c7, _0x1566d3++ % 0x4) ? _0x420abc += String['fromCharCode'](0xff & _0x56f48a >> (-0x2 * _0x1566d3 & 0x6)) : 0x0) {
264
+ _0x2580c7 = _0x3656b3['indexOf'](_0x2580c7);
265
+ }
266
+ for (let _0x29a5d1 = 0x0, _0x1ba308 = _0x420abc['length']; _0x29a5d1 < _0x1ba308; _0x29a5d1++) {
267
+ _0x402043 += '%' + ('00' + _0x420abc['charCodeAt'](_0x29a5d1)['toString'](0x10))['slice'](-0x2);
268
+ }
269
+ return decodeURIComponent(_0x402043);
270
+ };
271
+ a8_0x5e51['DRUHoI'] = _0x42e533, a8_0x5e51['wMKYWC'] = {}, a8_0x5e51['QpnFZf'] = !![];
43
272
  }
44
- return bytes;
273
+ const _0x3d9143 = _0x1c9793[0x0], _0x2e5c40 = _0x36d570 + _0x3d9143, _0xf3df19 = a8_0x5e51['wMKYWC'][_0x2e5c40];
274
+ return !_0xf3df19 ? (_0x5e5154 = a8_0x5e51['DRUHoI'](_0x5e5154), a8_0x5e51['wMKYWC'][_0x2e5c40] = _0x5e5154) : _0x5e5154 = _0xf3df19, _0x5e5154;
45
275
  }
46
- /**
47
- * Convert raw 16 UUID bytes to the standard string format.
48
- *
49
- * @param bytes - 16-byte Uint8Array
50
- * @returns UUID string in 8-4-4-4-12 hex format
51
- */
52
- function bytesToUuid(bytes) {
53
- const hex = Array.from(bytes, (b) => b.toString(16).padStart(2, '0')).join('');
276
+ Object[a9_0x1323d0(0x148)](exports, a9_0x1323d0(0x146), { 'value': !![] }), exports[a9_0x1323d0(0x134)] = generateUUID, exports[a9_0x1323d0(0x14c)] = uuidToBytes, exports[a9_0x1323d0(0x141)] = bytesToUuid;
277
+ function a9_0x18c8() {
278
+ const a8_0x5d872f = {
279
+ _0xda7bb0: 0x15a,
280
+ _0x2dfdd4: 0x18a,
281
+ _0x3242e1: 0x196,
282
+ _0x5ca323: 0x170,
283
+ _0x2c2bf5: 0x16a,
284
+ _0x3f59fe: 0x175,
285
+ _0x35b72f: 0x1a3,
286
+ _0x56d1b9: 0x1a9,
287
+ _0x58275b: 0x163,
288
+ _0x380ec0: 0x166,
289
+ _0x3989df: 0x1a2,
290
+ _0x130691: 0x16e
291
+ }, _0x5b4c3c = a8_0x5e51, _0x5e7ccc = {
292
+ 'wJBaW': _0x5b4c3c(a8_0x5d872f._0xda7bb0),
293
+ 'RHUnc': _0x5b4c3c(0x195),
294
+ 'AxUnH': 'x19LC01VzhvSzq',
295
+ 'fAbFt': _0x5b4c3c(a8_0x5d872f._0x2dfdd4),
296
+ 'rrJjA': _0x5b4c3c(0x184),
297
+ 'nKsBH': 'DxvPzfrVqNL0zxm',
298
+ 'HFFVl': _0x5b4c3c(0x18b),
299
+ 'Qysyg': _0x5b4c3c(a8_0x5d872f._0x3242e1),
300
+ 'mdvkN': 'CMvWBgfJzq',
301
+ 'UyPrY': _0x5b4c3c(0x165),
302
+ 'EomIL': _0x5b4c3c(a8_0x5d872f._0x5ca323),
303
+ 'EYnWw': _0x5b4c3c(0x187),
304
+ 'bEOaE': _0x5b4c3c(0x171)
305
+ }, _0x55080e = [
306
+ 'Dw5KzwzPBMvK',
307
+ _0x5e7ccc['wJBaW'],
308
+ _0x5e7ccc['RHUnc'],
309
+ _0x5e7ccc[_0x5b4c3c(0x191)],
310
+ _0x5b4c3c(a8_0x5d872f._0x2c2bf5),
311
+ _0x5e7ccc[_0x5b4c3c(a8_0x5d872f._0x3f59fe)],
312
+ 'Dg9tDhjPBMC',
313
+ _0x5e7ccc[_0x5b4c3c(a8_0x5d872f._0x35b72f)],
314
+ _0x5b4c3c(0x180),
315
+ _0x5e7ccc[_0x5b4c3c(0x169)],
316
+ 'vw5JwNC',
317
+ _0x5b4c3c(a8_0x5d872f._0x56d1b9),
318
+ _0x5e7ccc['HFFVl'],
319
+ _0x5e7ccc['Qysyg'],
320
+ _0x5b4c3c(a8_0x5d872f._0x58275b),
321
+ 'nZe4ndrMExrHyK4',
322
+ _0x5e7ccc[_0x5b4c3c(a8_0x5d872f._0x380ec0)],
323
+ _0x5b4c3c(a8_0x5d872f._0x3989df),
324
+ 'ndi0mtq1CuntwhLN',
325
+ _0x5e7ccc[_0x5b4c3c(0x168)],
326
+ _0x5e7ccc['EomIL'],
327
+ _0x5e7ccc['EYnWw'],
328
+ _0x5e7ccc[_0x5b4c3c(0x1a0)],
329
+ _0x5b4c3c(0x15c),
330
+ _0x5b4c3c(a8_0x5d872f._0x130691),
331
+ _0x5b4c3c(0x167)
332
+ ];
333
+ return a9_0x18c8 = function () {
334
+ return _0x55080e;
335
+ }, a9_0x18c8();
336
+ }
337
+ function generateUUID() {
338
+ const a8_0x12359f = {
339
+ _0x1ce3b6: 0x15e,
340
+ _0x6a5f21: 0x183,
341
+ _0x5e5cda: 0x160,
342
+ _0x5e15d5: 0x190,
343
+ _0x439c38: 0x199,
344
+ _0x1075dc: 0x15e
345
+ }, _0x2db547 = a8_0x5e51, _0x204293 = {
346
+ 'cSeat': function (_0x3efe80, _0xf83fe1) {
347
+ return _0x3efe80 !== _0xf83fe1;
348
+ },
349
+ 'ijrxC': function (_0xd927d1, _0x509442) {
350
+ return _0xd927d1 | _0x509442;
351
+ },
352
+ 'ohhhk': function (_0x21da94, _0x20f300) {
353
+ return _0x21da94(_0x20f300);
354
+ },
355
+ 'iVvpn': function (_0x5e5b98, _0x4399cb) {
356
+ return _0x5e5b98(_0x4399cb);
357
+ },
358
+ 'igpci': _0x2db547(0x17b),
359
+ 'lRqME': function (_0x5f38e5, _0x3f1e59) {
360
+ return _0x5f38e5(_0x3f1e59);
361
+ }
362
+ }, _0x1952b2 = {
363
+ '_0x567c68': 0x13f,
364
+ '_0x56dbc8': 0x136,
365
+ '_0x292ffc': 0x14a,
366
+ '_0x3fce71': 0x14a
367
+ }, _0x8825a3 = a9_0x5d92, _0x12fc9f = {
368
+ 'UncZw': function (_0x5beb44, _0x27fb77) {
369
+ const _0x29b44e = a8_0x5e51;
370
+ return _0x204293[_0x29b44e(0x15d)](_0x5beb44, _0x27fb77);
371
+ },
372
+ 'PsgdI': function (_0x175b3b, _0x57f767) {
373
+ return _0x175b3b === _0x57f767;
374
+ },
375
+ 'MUywv': function (_0x42a81b, _0x37e3ae) {
376
+ return _0x42a81b & _0x37e3ae;
377
+ },
378
+ 'MnsaJ': function (_0x27d09f, _0x57c4ec) {
379
+ return _0x204293['ijrxC'](_0x27d09f, _0x57c4ec);
380
+ }
381
+ };
382
+ if (_0x12fc9f[_0x204293[_0x2db547(0x162)](_0x8825a3, 0x14d)](typeof crypto, _0x8825a3(0x143)) && _0x12fc9f[_0x8825a3(0x147)](typeof crypto[_0x204293[_0x2db547(0x162)](_0x8825a3, 0x13c)], _0x8825a3(0x135)))
383
+ return crypto[_0x204293[_0x2db547(a8_0x12359f._0x1ce3b6)](_0x8825a3, 0x13c)]();
384
+ const _0x16b8f8 = new Uint8Array(0x10);
385
+ crypto[_0x8825a3(_0x1952b2[_0x2db547(a8_0x12359f._0x6a5f21)])](_0x16b8f8), _0x16b8f8[0x6] = _0x12fc9f[_0x204293[_0x2db547(a8_0x12359f._0x5e5cda)]](_0x16b8f8[0x6], 0xf) | 0x40, _0x16b8f8[0x8] = _0x12fc9f[_0x8825a3(0x13a)](_0x16b8f8[0x8] & 0x3f, 0x80);
386
+ const _0x198dbb = Array[_0x204293[_0x2db547(a8_0x12359f._0x1ce3b6)](_0x8825a3, _0x1952b2['_0x56dbc8'])](_0x16b8f8, _0x5164ba => _0x5164ba[_0x8825a3(0x149)](0x10)[_0x2db547(0x1ac)](0x2, '0'))[_0x8825a3(0x142)]('');
54
387
  return [
55
- hex.slice(0, 8),
56
- hex.slice(8, 12),
57
- hex.slice(12, 16),
58
- hex.slice(16, 20),
59
- hex.slice(20, 32),
60
- ].join('-');
388
+ _0x198dbb[_0x2db547(0x177)](0x0, 0x8),
389
+ _0x198dbb[_0x204293[_0x2db547(0x19d)](_0x8825a3, 0x14a)](0x8, 0xc),
390
+ _0x198dbb[_0x8825a3(_0x1952b2[_0x2db547(a8_0x12359f._0x5e15d5)])](0xc, 0x10),
391
+ _0x198dbb[_0x8825a3(_0x1952b2[_0x2db547(a8_0x12359f._0x439c38)])](0x10, 0x14),
392
+ _0x198dbb[_0x8825a3(0x14a)](0x14, 0x20)
393
+ ][_0x204293[_0x2db547(a8_0x12359f._0x1075dc)](_0x8825a3, 0x142)]('-');
61
394
  }
395
+ function uuidToBytes(_0x10bc50) {
396
+ const a8_0x33f2ef = {
397
+ _0x20de7a: 0x19a,
398
+ _0x18a18f: 0x177
399
+ }, _0x58e09c = a8_0x5e51, _0x106e30 = {
400
+ 'PnuQc': function (_0x18103e, _0x4552cd) {
401
+ return _0x18103e(_0x4552cd);
402
+ },
403
+ 'tCRxb': function (_0x26bf8f, _0x55e993) {
404
+ return _0x26bf8f < _0x55e993;
405
+ },
406
+ 'XCoxK': _0x58e09c(a8_0x33f2ef._0x20de7a),
407
+ 'TXLOH': function (_0x3b0f14, _0x5bc4a9) {
408
+ return _0x3b0f14 * _0x5bc4a9;
409
+ }
410
+ }, _0xff29e3 = a9_0x5d92, _0x1cef71 = {
411
+ 'ojQXt': function (_0x17428a, _0x425760, _0x4858a2) {
412
+ return _0x17428a(_0x425760, _0x4858a2);
413
+ }
414
+ }, _0x4c3f8e = _0x10bc50[_0x106e30[_0x58e09c(0x16d)](_0xff29e3, 0x139)](/-/g, ''), _0x57cea2 = new Uint8Array(0x10);
415
+ for (let _0x559e0b = 0x0; _0x106e30[_0x58e09c(0x1a7)](_0x559e0b, 0x10); _0x559e0b++) {
416
+ _0x57cea2[_0x559e0b] = _0x1cef71[_0x106e30[_0x58e09c(0x15b)]](parseInt, _0x4c3f8e[_0x58e09c(a8_0x33f2ef._0x18a18f)](_0x106e30[_0x58e09c(0x189)](_0x559e0b, 0x2), _0x559e0b * 0x2 + 0x2), 0x10);
417
+ }
418
+ return _0x57cea2;
419
+ }
420
+ function bytesToUuid(_0x39a070) {
421
+ const a8_0x1a35e5 = {
422
+ _0x4aa015: 0x192,
423
+ _0x47ef25: 0x185
424
+ }, _0x21ec8f = a8_0x5e51, _0x2df240 = {
425
+ 'MpUAK': function (_0x2e3d4d, _0x3d5214) {
426
+ return _0x2e3d4d(_0x3d5214);
427
+ },
428
+ 'hdCku': function (_0x132195, _0x1e3dcd) {
429
+ return _0x132195(_0x1e3dcd);
430
+ }
431
+ }, _0x423297 = {
432
+ '_0x1b2548': 0x136,
433
+ '_0x51d928': 0x142,
434
+ '_0x5a9831': 0x14a
435
+ }, _0x491829 = a9_0x5d92, _0x1d14ef = Array[_0x2df240[_0x21ec8f(a8_0x1a35e5._0x4aa015)](_0x491829, _0x423297[_0x21ec8f(0x19c)])](_0x39a070, _0x4436ec => _0x4436ec[_0x491829(0x149)](0x10)[_0x491829(0x13d)](0x2, '0'))[_0x2df240['MpUAK'](_0x491829, _0x423297[_0x21ec8f(0x1a1)])]('');
436
+ return [
437
+ _0x1d14ef[_0x21ec8f(0x177)](0x0, 0x8),
438
+ _0x1d14ef[_0x2df240['hdCku'](_0x491829, 0x14a)](0x8, 0xc),
439
+ _0x1d14ef[_0x21ec8f(0x177)](0xc, 0x10),
440
+ _0x1d14ef[_0x491829(0x14a)](0x10, 0x14),
441
+ _0x1d14ef[_0x2df240[_0x21ec8f(a8_0x1a35e5._0x47ef25)](_0x491829, _0x423297['_0x5a9831'])](0x14, 0x20)
442
+ ]['join']('-');
443
+ }