@evomap/evolver-proxy 2.0.0 → 2.0.2

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.
@@ -1,286 +1 @@
1
- import { createCipheriv, createDecipheriv, createHash, privateDecrypt, publicEncrypt, randomBytes, constants, } from 'node:crypto';
2
- import { captureBodiesEnabled, positiveIntegerFromEnv } from './bodyCapture.js';
3
- import { proxyTraceUploadPayloadSizeBytes } from './traceUploadPayload.js';
4
- function truthy(value) {
5
- const raw = String(value ?? '').trim().toLowerCase();
6
- return raw === '1' || raw === 'true' || raw === 'on' || raw === 'yes';
7
- }
8
- export function traceUploadMaxBytes(env = process.env) {
9
- return positiveIntegerFromEnv(env, [
10
- 'EVOLVER_LLM_TRACE_MAX_UPLOAD_BYTES',
11
- 'EVOMAP_PROXY_TRACE_MAX_UPLOAD_BYTES',
12
- 'EVOLVER_LLM_TRACE_ENVELOPE_MAX_CHARS',
13
- 'EVOMAP_PROXY_TRACE_ENVELOPE_MAX_BYTES',
14
- 'EVOLVER_HUB_MAILBOX_OUTBOUND_MAX_BODY_BYTES',
15
- 'EVOMAP_OUTBOUND_SYNC_MAX_BODY_BYTES',
16
- 'EVOMAP_MAILBOX_OUTBOUND_MAX_BODY_BYTES',
17
- ], 4 * 1024 * 1024);
18
- }
19
- function parseNodeSecretVersion(value) {
20
- if (typeof value === 'number' && Number.isInteger(value) && value > 0)
21
- return value;
22
- if (typeof value !== 'string')
23
- return undefined;
24
- const trimmed = value.trim();
25
- if (!/^[1-9]\d*$/.test(trimmed))
26
- return undefined;
27
- const parsed = Number(trimmed);
28
- return Number.isSafeInteger(parsed) ? parsed : undefined;
29
- }
30
- function parseNodeSecret(value) {
31
- if (typeof value !== 'string')
32
- return undefined;
33
- const trimmed = value.trim();
34
- return /^[a-f0-9]{64}$/i.test(trimmed) ? trimmed : undefined;
35
- }
36
- function deriveNodeSecretTraceKey(nodeSecret) {
37
- return createHash('sha256').update(`evomap-proxy-trace-v1:${nodeSecret}`, 'utf8').digest();
38
- }
39
- function traceEnvelopeRequired(env = process.env, opts = {}) {
40
- return truthy(env['EVOLVER_LLM_TRACE_ENCRYPTION'])
41
- || truthy(env['EVOMAP_PROXY_TRACE_ENCRYPTION'])
42
- || truthy(env['EVOLVER_LLM_TRACE_PROFILE_ANALYSIS'])
43
- || truthy(env['EVOMAP_PROXY_TRACE_PROFILE_ANALYSIS'])
44
- || opts.profileAnalysisEnabled === true
45
- || captureBodiesEnabled(env);
46
- }
47
- function resolveTraceHubPublicKey(env = process.env, explicitPublicKey) {
48
- const key = String(env['EVOLVER_LLM_TRACE_HUB_PUBLIC_KEY']
49
- || env['EVOMAP_PROXY_TRACE_HUB_PUBLIC_KEY']
50
- || (typeof explicitPublicKey === 'string' ? explicitPublicKey : '')
51
- || '').trim();
52
- return key || null;
53
- }
54
- function resolveNodeSecretVersion(opts) {
55
- return parseNodeSecretVersion(opts.nodeSecretVersion);
56
- }
57
- function optionalShortString(value, max) {
58
- const trimmed = String(value ?? '').trim();
59
- return trimmed.length > 0 && trimmed.length <= max ? trimmed : undefined;
60
- }
61
- /**
62
- * Producer-generation enum, kept byte-for-byte in lockstep with three consumers:
63
- * - hub `normalizeProducerGeneration` (proxyTraceWarehouseService.js) — lenient: anything else → 'unknown'
64
- * - v2 `isProducerGeneration` (traceBackfill.ts) — case-sensitive 'v1'|'v2'|'unknown'
65
- * - v1 extractor `isProducerGeneration` (extractor.js)
66
- * The default for unset is 'v2' (this is the v2 proxy). A non-empty value outside the enum is normalized to
67
- * 'unknown' rather than passed through, so a future caller wiring e.g. 'v3' can never produce an envelope that
68
- * fails our own backfill validation (isProducerGeneration). Output is ALWAYS within {'v1','v2','unknown'}.
69
- */
70
- function normalizeProducerGeneration(value) {
71
- // Unset/empty → 'v2' (this is the v2 proxy). Any NON-EMPTY value outside the enum — including an
72
- // over-length string — normalizes to 'unknown' (hub slices to 16 then maps non-v1/v2 → 'unknown'; we
73
- // must not let a >16 junk value fall through to the 'v2' default). Output is ALWAYS within the enum.
74
- const normalized = String(value ?? '').trim().toLowerCase();
75
- if (normalized === '')
76
- return 'v2';
77
- return normalized === 'v1' || normalized === 'v2' || normalized === 'unknown' ? normalized : 'unknown';
78
- }
79
- function traceProducerMetadata(opts) {
80
- const producerVersion = optionalShortString(opts.producerVersion, 32);
81
- return {
82
- producer_generation: normalizeProducerGeneration(opts.producerGeneration),
83
- producer_component: optionalShortString(opts.producerComponent, 32) ?? 'proxy',
84
- ...(producerVersion ? { producer_version: producerVersion } : {}),
85
- };
86
- }
87
- function isRecord(value) {
88
- return Boolean(value) && typeof value === 'object' && !Array.isArray(value);
89
- }
90
- function stringOrNull(value) {
91
- return typeof value === 'string' ? value : null;
92
- }
93
- function booleanOrNull(value) {
94
- return typeof value === 'boolean' ? value : null;
95
- }
96
- function numberOrNull(value) {
97
- return typeof value === 'number' && Number.isFinite(value) ? value : null;
98
- }
99
- function traceUsageSummary(value) {
100
- if (!isRecord(value))
101
- return undefined;
102
- const out = {};
103
- for (const key of ['input_tokens', 'output_tokens', 'cache_creation_input_tokens', 'cache_read_input_tokens']) {
104
- const n = value[key];
105
- if (typeof n === 'number' && Number.isFinite(n))
106
- out[key] = n;
107
- }
108
- return Object.keys(out).length > 0 ? out : undefined;
109
- }
110
- function plaintextSummary(record) {
111
- if (!isRecord(record) || record['event'] !== 'llm_turn')
112
- return undefined;
113
- const usage = traceUsageSummary(record['usage']);
114
- return {
115
- event: 'llm_trace_plaintext_summary',
116
- payload_schema: 'llm_turn_summary',
117
- ts: stringOrNull(record['ts']) ?? '',
118
- route: stringOrNull(record['route']),
119
- provider: stringOrNull(record['provider']),
120
- wire_api: stringOrNull(record['wire_api']),
121
- original_model: stringOrNull(record['original_model']),
122
- chosen_model: stringOrNull(record['chosen_model']),
123
- tier: stringOrNull(record['tier']),
124
- reason: stringOrNull(record['reason']),
125
- fallback: stringOrNull(record['fallback']),
126
- router_enabled: booleanOrNull(record['router_enabled']),
127
- upstream_mode: stringOrNull(record['upstream_mode']),
128
- status: numberOrNull(record['status']),
129
- stream: booleanOrNull(record['stream']),
130
- ttfb_ms: numberOrNull(record['ttfb_ms']),
131
- latency_ms: numberOrNull(record['latency_ms']),
132
- ...(usage ? { usage } : {}),
133
- };
134
- }
135
- function incompleteBodyEnvelopeReason(value) {
136
- if (typeof value !== 'string')
137
- return undefined;
138
- try {
139
- const parsed = JSON.parse(value);
140
- if (!isRecord(parsed))
141
- return undefined;
142
- if (parsed['capture_complete'] === false || parsed['body_omitted'] === true) {
143
- return typeof parsed['reason'] === 'string' ? parsed['reason'].slice(0, 64) : 'body_capture_incomplete';
144
- }
145
- }
146
- catch {
147
- return undefined;
148
- }
149
- return undefined;
150
- }
151
- function traceRecordIncompleteReason(record) {
152
- if (!isRecord(record))
153
- return undefined;
154
- if (record['body_truncated'] === true)
155
- return 'body_truncated';
156
- const requestReason = incompleteBodyEnvelopeReason(record['requestBody']);
157
- if (requestReason)
158
- return requestReason;
159
- const responseReason = incompleteBodyEnvelopeReason(record['responseBody']);
160
- if (responseReason)
161
- return responseReason;
162
- const attempts = record['attempts'];
163
- if (!Array.isArray(attempts))
164
- return undefined;
165
- for (const attempt of attempts) {
166
- if (!isRecord(attempt))
167
- continue;
168
- if (attempt['body_truncated'] === true)
169
- return 'attempt_body_truncated';
170
- const attemptRequestReason = incompleteBodyEnvelopeReason(attempt['requestBody']);
171
- if (attemptRequestReason)
172
- return attemptRequestReason;
173
- const attemptResponseReason = incompleteBodyEnvelopeReason(attempt['responseBody']);
174
- if (attemptResponseReason)
175
- return attemptResponseReason;
176
- }
177
- return undefined;
178
- }
179
- function annotateUploadStatus(envelope, record, env) {
180
- let out = envelope;
181
- const incompleteReason = traceRecordIncompleteReason(record);
182
- if (incompleteReason) {
183
- out = {
184
- ...out,
185
- payload_complete: false,
186
- payload_incomplete_reason: incompleteReason,
187
- };
188
- }
189
- if (out.hub_uploadable === false)
190
- return out;
191
- const maxUploadBytes = traceUploadMaxBytes(env);
192
- const sizeBytes = proxyTraceUploadPayloadSizeBytes(out);
193
- if (sizeBytes <= maxUploadBytes)
194
- return out;
195
- let blocked = {
196
- ...out,
197
- hub_uploadable: false,
198
- hub_upload_blocked_reason: 'max_upload_bytes',
199
- hub_upload_max_bytes: maxUploadBytes,
200
- };
201
- for (let i = 0; i < 4; i += 1) {
202
- const wrappedSizeBytes = proxyTraceUploadPayloadSizeBytes(blocked);
203
- if (blocked.hub_upload_size_bytes === wrappedSizeBytes)
204
- return blocked;
205
- blocked = { ...blocked, hub_upload_size_bytes: wrappedSizeBytes };
206
- }
207
- return blocked;
208
- }
209
- export function materializeTraceForStorage(record, env = process.env, opts = {}) {
210
- if (!traceEnvelopeRequired(env, opts))
211
- return { ok: true, record };
212
- const publicKey = resolveTraceHubPublicKey(env, opts.hubPublicKey);
213
- try {
214
- const nodeSecretVersion = resolveNodeSecretVersion(opts);
215
- const nodeSecret = parseNodeSecret(opts.nodeSecret);
216
- const nodeSecretKey = nodeSecret ? deriveNodeSecretTraceKey(nodeSecret) : undefined;
217
- const dataKey = nodeSecretKey ?? randomBytes(32);
218
- const iv = randomBytes(12);
219
- // Pin authTagLength to 16 (#281): without it the decrypt side would accept a short/truncated GCM tag, which is
220
- // easier to forge. Encrypt + decrypt both fix 16 so only a full 128-bit tag authenticates.
221
- const cipher = createCipheriv('aes-256-gcm', dataKey, iv, { authTagLength: 16 });
222
- const plaintext = Buffer.from(JSON.stringify(record), 'utf8');
223
- const ciphertext = Buffer.concat([cipher.update(plaintext), cipher.final()]);
224
- const tag = cipher.getAuthTag();
225
- let hubKeyEnvelope;
226
- try {
227
- if (publicKey) {
228
- const wrapped = publicEncrypt({
229
- key: publicKey,
230
- padding: constants.RSA_PKCS1_OAEP_PADDING,
231
- oaepHash: 'sha256',
232
- }, dataKey);
233
- hubKeyEnvelope = {
234
- algorithm: 'rsa-oaep-sha256',
235
- key_id: createHash('sha256').update(publicKey).digest('hex').slice(0, 16),
236
- wrapped_key: wrapped.toString('base64'),
237
- };
238
- }
239
- else if (!nodeSecretKey) {
240
- return { ok: false, reason: 'hub_public_key_missing' };
241
- }
242
- }
243
- catch (err) {
244
- return { ok: false, reason: 'hub_key_wrap_failed', error: err instanceof Error ? err.message : String(err) };
245
- }
246
- const summary = plaintextSummary(record);
247
- const envelope = {
248
- schema_version: 1,
249
- event: 'llm_trace_envelope',
250
- encrypted: true,
251
- payload_schema: 'prism_trace_row',
252
- algorithm: 'aes-256-gcm',
253
- key_id: createHash('sha256').update(dataKey).digest('hex').slice(0, 16),
254
- ...(nodeSecretVersion !== undefined ? { secret_version: nodeSecretVersion } : {}),
255
- ...traceProducerMetadata(opts),
256
- iv: iv.toString('base64'),
257
- tag: tag.toString('base64'),
258
- ciphertext: ciphertext.toString('base64'),
259
- ...(hubKeyEnvelope ? { hub_key_envelope: hubKeyEnvelope } : {}),
260
- ...(summary ? { plaintext_summary: summary } : {}),
261
- };
262
- return {
263
- ok: true,
264
- record: annotateUploadStatus(envelope, record, env),
265
- };
266
- }
267
- catch (err) {
268
- return { ok: false, reason: 'trace_encrypt_failed', error: err instanceof Error ? err.message : String(err) };
269
- }
270
- }
271
- export function decryptHubTraceEnvelope(envelope, privateKey) {
272
- if (!envelope.hub_key_envelope)
273
- throw new Error('hub_key_envelope_required');
274
- const dataKey = privateDecrypt({
275
- key: privateKey,
276
- padding: constants.RSA_PKCS1_OAEP_PADDING,
277
- oaepHash: 'sha256',
278
- }, Buffer.from(envelope.hub_key_envelope.wrapped_key, 'base64'));
279
- const decipher = createDecipheriv('aes-256-gcm', dataKey, Buffer.from(envelope.iv, 'base64'), { authTagLength: 16 });
280
- decipher.setAuthTag(Buffer.from(envelope.tag, 'base64'));
281
- const plaintext = Buffer.concat([
282
- decipher.update(Buffer.from(envelope.ciphertext, 'base64')),
283
- decipher.final(),
284
- ]);
285
- return JSON.parse(plaintext.toString('utf8'));
286
- }
1
+ (function(_0xc65015,_0x102188){const _0x367400=_0x57bf,_0x1311c9=_0xc65015();while(!![]){try{const _0x22cf40=-parseInt(_0x367400(0x201,'\x34\x51\x70\x5e'))/(0x1591*0x1+-0x393*0x7+0x375)*(parseInt(_0x367400(0x1d6,'\x44\x36\x50\x75'))/(-0x150a+0x30*-0x1d+0x4*0x69f))+parseInt(_0x367400(0x264,'\x4b\x35\x33\x65'))/(0x1d*0x1f+0x6d7+-0xa57*0x1)+-parseInt(_0x367400(0x282,'\x4b\x35\x33\x65'))/(0x2350+-0x26de*0x1+0x392)*(parseInt(_0x367400(0x1a7,'\x46\x6f\x77\x43'))/(-0x1*0x34d+-0xa*0x355+0x24a4))+parseInt(_0x367400(0x265,'\x6a\x66\x56\x4c'))/(-0xb19+0x1a22+-0xf03)*(-parseInt(_0x367400(0x234,'\x63\x23\x26\x76'))/(-0x13*-0x4a+0x6*0xd+-0x5c5))+parseInt(_0x367400(0x196,'\x41\x28\x32\x4a'))/(0xd*-0x8b+-0xd17+0x35d*0x6)*(parseInt(_0x367400(0x28b,'\x4f\x50\x68\x67'))/(-0x5ce*0x5+0x231*0x3+0x59f*0x4))+-parseInt(_0x367400(0x25f,'\x75\x24\x74\x4a'))/(0x1d68+-0x15db+0x3*-0x281)*(parseInt(_0x367400(0x1e7,'\x63\x23\x26\x76'))/(0xc7a+-0xaac+0xb*-0x29))+parseInt(_0x367400(0x1ce,'\x47\x32\x40\x49'))/(-0x1c82+0x5*-0x479+0x32eb)*(-parseInt(_0x367400(0x1ea,'\x35\x47\x68\x52'))/(-0x1118+-0x1fea+-0x310f*-0x1));if(_0x22cf40===_0x102188)break;else _0x1311c9['push'](_0x1311c9['shift']());}catch(_0x469d28){_0x1311c9['push'](_0x1311c9['shift']());}}}(_0x59f2,0x1*0x1322b4+0x16*-0xf95+0x9*-0xa5c3));import{createCipheriv,createDecipheriv,createHash,privateDecrypt,publicEncrypt,randomBytes,constants}from'\x6e\x6f\x64\x65\x3a\x63\x72\x79\x70\x74\x6f';import{captureBodiesEnabled,positiveIntegerFromEnv}from'\x2e\x2f\x62\x6f\x64\x79\x43\x61\x70\x74\x75\x72\x65\x2e\x6a\x73';import{proxyTraceUploadPayloadSizeBytes}from'\x2e\x2f\x74\x72\x61\x63\x65\x55\x70\x6c\x6f\x61\x64\x50\x61\x79\x6c\x6f\x61\x64\x2e\x6a\x73';function truthy(_0x46b8bd){const _0x31d1ab=_0x57bf,_0x82229d=String(_0x46b8bd??'')[_0x31d1ab(0x1e6,'\x66\x26\x32\x39')]()[_0x31d1ab(0x1be,'\x71\x4a\x34\x35')+_0x31d1ab(0x18b,'\x39\x24\x26\x34')]();return _0x82229d==='\x31'||_0x82229d==='\x74\x72\x75\x65'||_0x82229d==='\x6f\x6e'||_0x82229d===_0x31d1ab(0x25e,'\x2a\x32\x46\x78');}export function traceUploadMaxBytes(_0x1fe850=process.env){const _0x48a2ca=_0x57bf;return positiveIntegerFromEnv(_0x1fe850,[_0x48a2ca(0x215,'\x7a\x74\x36\x61')+_0x48a2ca(0x289,'\x21\x62\x4f\x6d')+_0x48a2ca(0x293,'\x47\x32\x40\x49')+_0x48a2ca(0x1df,'\x24\x73\x73\x40')+'\x45\x53',_0x48a2ca(0x1e1,'\x40\x4e\x67\x61')+_0x48a2ca(0x26f,'\x4b\x39\x72\x59')+_0x48a2ca(0x294,'\x2a\x32\x46\x78')+_0x48a2ca(0x1fc,'\x53\x5e\x72\x43')+_0x48a2ca(0x195,'\x79\x59\x55\x6a'),'\x45\x56\x4f\x4c\x56\x45\x52\x5f'+_0x48a2ca(0x26d,'\x4b\x39\x72\x59')+_0x48a2ca(0x1c8,'\x26\x35\x63\x7a')+_0x48a2ca(0x261,'\x41\x28\x32\x4a')+_0x48a2ca(0x17f,'\x44\x36\x50\x75'),_0x48a2ca(0x270,'\x47\x32\x40\x49')+_0x48a2ca(0x1ff,'\x40\x4e\x67\x61')+_0x48a2ca(0x202,'\x7a\x6b\x30\x48')+_0x48a2ca(0x1ab,'\x76\x28\x35\x69')+_0x48a2ca(0x21e,'\x4b\x39\x72\x59'),_0x48a2ca(0x258,'\x78\x51\x57\x74')+_0x48a2ca(0x1a8,'\x69\x6b\x33\x28')+_0x48a2ca(0x241,'\x75\x24\x74\x4a')+_0x48a2ca(0x1f8,'\x26\x35\x63\x7a')+_0x48a2ca(0x1f0,'\x4b\x35\x33\x65')+_0x48a2ca(0x1b7,'\x4b\x35\x33\x65'),_0x48a2ca(0x240,'\x69\x6b\x33\x28')+_0x48a2ca(0x1d0,'\x4b\x35\x33\x65')+_0x48a2ca(0x18c,'\x55\x55\x50\x58')+_0x48a2ca(0x180,'\x75\x24\x74\x4a')+'\x54\x45\x53',_0x48a2ca(0x250,'\x39\x54\x75\x6d')+_0x48a2ca(0x20c,'\x65\x64\x4a\x51')+_0x48a2ca(0x1ca,'\x75\x6e\x2a\x41')+_0x48a2ca(0x1f9,'\x35\x47\x68\x52')+_0x48a2ca(0x1f2,'\x79\x59\x55\x6a')],(0x2*0xdd5+-0x8a*0x3b+-0x26*-0x1c)*(-0x528*-0x2+0x1770+-0x1dc*0x10)*(-0x692+-0x1*-0x469+-0x1*-0x629));}function parseNodeSecretVersion(_0x259b51){const _0x16c317=_0x57bf;if(typeof _0x259b51===_0x16c317(0x1c0,'\x65\x64\x4a\x51')&&Number[_0x16c317(0x20b,'\x5a\x59\x36\x62')+'\x72'](_0x259b51)&&_0x259b51>-0xbd3+0x10d+0x1*0xac6)return _0x259b51;if(typeof _0x259b51!==_0x16c317(0x1f7,'\x6a\x66\x56\x4c'))return undefined;const _0x565c16=_0x259b51[_0x16c317(0x211,'\x40\x4e\x67\x61')]();if(!/^[1-9]\d*$/['\x74\x65\x73\x74'](_0x565c16))return undefined;const _0x4f12ae=Number(_0x565c16);return Number[_0x16c317(0x22b,'\x40\x4e\x67\x61')+_0x16c317(0x27a,'\x52\x6e\x5e\x72')](_0x4f12ae)?_0x4f12ae:undefined;}function parseNodeSecret(_0x5b0ae5){const _0x31878f=_0x57bf;if(typeof _0x5b0ae5!==_0x31878f(0x253,'\x39\x24\x26\x34'))return undefined;const _0x1f072e=_0x5b0ae5[_0x31878f(0x299,'\x39\x54\x75\x6d')]();return/^[a-f0-9]{64}$/i[_0x31878f(0x1cc,'\x21\x62\x4f\x6d')](_0x1f072e)?_0x1f072e:undefined;}function deriveNodeSecretTraceKey(_0xf1f287){const _0x23078b=_0x57bf;return createHash(_0x23078b(0x247,'\x74\x67\x64\x31'))[_0x23078b(0x205,'\x78\x43\x34\x64')](_0x23078b(0x229,'\x53\x25\x73\x62')+_0x23078b(0x27e,'\x61\x54\x44\x59')+_0x23078b(0x248,'\x53\x5e\x72\x43')+_0xf1f287,'\x75\x74\x66\x38')[_0x23078b(0x18a,'\x7a\x6b\x30\x48')]();}function traceEnvelopeRequired(_0x500df1=process.env,_0x8ef85c={}){const _0x5d61ef=_0x57bf;return truthy(_0x500df1[_0x5d61ef(0x193,'\x34\x51\x70\x5e')+_0x5d61ef(0x25b,'\x64\x6d\x4c\x37')+_0x5d61ef(0x188,'\x7a\x6b\x30\x48')+_0x5d61ef(0x1ac,'\x4b\x35\x33\x65')])||truthy(_0x500df1[_0x5d61ef(0x28d,'\x24\x4f\x4d\x4d')+_0x5d61ef(0x288,'\x63\x23\x26\x76')+_0x5d61ef(0x1d9,'\x47\x32\x40\x49')+_0x5d61ef(0x220,'\x26\x35\x63\x7a')])||truthy(_0x500df1[_0x5d61ef(0x1f5,'\x55\x55\x50\x58')+_0x5d61ef(0x232,'\x61\x54\x44\x59')+_0x5d61ef(0x2a1,'\x66\x26\x32\x39')+'\x45\x5f\x41\x4e\x41\x4c\x59\x53'+'\x49\x53'])||truthy(_0x500df1[_0x5d61ef(0x1f3,'\x44\x36\x50\x75')+'\x52\x4f\x58\x59\x5f\x54\x52\x41'+_0x5d61ef(0x1cb,'\x41\x36\x21\x48')+'\x4c\x45\x5f\x41\x4e\x41\x4c\x59'+_0x5d61ef(0x271,'\x53\x5e\x72\x43')])||_0x8ef85c[_0x5d61ef(0x1d4,'\x75\x6e\x2a\x41')+_0x5d61ef(0x2a0,'\x34\x51\x70\x5e')+_0x5d61ef(0x266,'\x40\x4e\x67\x61')]===!![]||captureBodiesEnabled(_0x500df1);}function resolveTraceHubPublicKey(_0x3e623a=process.env,_0x18915d){const _0x3ea482=_0x57bf,_0x58b71d=String(_0x3e623a[_0x3ea482(0x1c7,'\x71\x4a\x34\x35')+'\x4c\x4c\x4d\x5f\x54\x52\x41\x43'+'\x45\x5f\x48\x55\x42\x5f\x50\x55'+_0x3ea482(0x20d,'\x4f\x50\x68\x67')]||_0x3e623a[_0x3ea482(0x233,'\x52\x6e\x5e\x72')+_0x3ea482(0x246,'\x78\x43\x34\x64')+_0x3ea482(0x22c,'\x55\x55\x50\x58')+'\x55\x42\x4c\x49\x43\x5f\x4b\x45'+'\x59']||(typeof _0x18915d===_0x3ea482(0x236,'\x35\x34\x41\x71')?_0x18915d:'')||'')['\x74\x72\x69\x6d']();return _0x58b71d||null;}function resolveNodeSecretVersion(_0x51bd51){const _0xfbd619=_0x57bf;return parseNodeSecretVersion(_0x51bd51[_0xfbd619(0x267,'\x23\x6b\x4c\x62')+_0xfbd619(0x1c9,'\x24\x73\x73\x40')+'\x6e']);}function optionalShortString(_0x26ff3d,_0x34fa2d){const _0x5efd9e=_0x57bf,_0x3a2e9b=String(_0x26ff3d??'')['\x74\x72\x69\x6d']();return _0x3a2e9b[_0x5efd9e(0x268,'\x2a\x32\x46\x78')]>0x1698+-0x192c+0x294&&_0x3a2e9b[_0x5efd9e(0x1d1,'\x21\x62\x4f\x6d')]<=_0x34fa2d?_0x3a2e9b:undefined;}function _0x59f2(){const _0x3a6fd9=['\x57\x4f\x6a\x70\x57\x51\x75\x39\x71\x53\x6b\x72','\x45\x43\x6b\x42\x57\x50\x58\x58\x57\x36\x5a\x63\x51\x6d\x6b\x69\x44\x67\x6e\x5a\x76\x58\x34','\x57\x52\x6c\x64\x52\x47\x52\x63\x48\x68\x34','\x57\x35\x44\x55\x68\x43\x6b\x32\x57\x52\x4c\x76','\x57\x52\x6a\x6d\x57\x51\x44\x4c\x73\x4a\x34','\x44\x4d\x56\x63\x49\x75\x4f\x75\x57\x35\x34\x57\x57\x50\x43','\x63\x6d\x6b\x4c\x71\x61','\x41\x67\x4a\x63\x4e\x65\x57\x46\x57\x35\x47\x4a\x57\x50\x75','\x57\x34\x47\x79\x57\x50\x42\x64\x52\x6d\x6b\x6b\x42\x31\x75\x52','\x57\x52\x64\x63\x48\x53\x6f\x7a','\x62\x53\x6b\x55\x74\x38\x6f\x68\x57\x4f\x69\x34\x42\x53\x6f\x32','\x6b\x43\x6b\x50\x57\x34\x6c\x64\x4b\x6d\x6b\x58\x69\x47','\x71\x68\x4a\x64\x4b\x31\x47\x2b\x57\x34\x4f','\x57\x51\x44\x6d\x57\x51\x4b','\x65\x64\x6d\x32\x71\x49\x57\x4d\x6c\x30\x71','\x57\x52\x78\x63\x48\x53\x6f\x2b\x68\x38\x6b\x42\x64\x53\x6b\x33\x57\x50\x79','\x57\x51\x4a\x64\x4f\x57\x64\x63\x48\x6d\x6b\x33','\x57\x37\x34\x36\x57\x51\x56\x64\x48\x6d\x6b\x51\x75\x47','\x57\x4f\x33\x63\x52\x38\x6f\x75\x6a\x43\x6b\x39','\x57\x4f\x6d\x2b\x44\x4e\x35\x2b\x57\x35\x6e\x34\x45\x71','\x69\x38\x6b\x57\x57\x35\x64\x64\x47\x43\x6b\x44\x69\x53\x6f\x35\x45\x61','\x57\x51\x43\x77\x57\x52\x79\x6a\x57\x50\x69\x6e\x6c\x6d\x6f\x30','\x57\x52\x64\x64\x4f\x61\x64\x63\x4a\x4a\x42\x63\x4b\x43\x6b\x5a\x57\x50\x71','\x57\x51\x64\x63\x4a\x74\x68\x63\x48\x76\x37\x63\x47\x53\x6b\x64\x57\x52\x30','\x57\x50\x68\x63\x51\x53\x6f\x37\x6d\x53\x6b\x63\x57\x4f\x6a\x78\x41\x71','\x66\x38\x6f\x43\x75\x71','\x57\x37\x75\x73\x57\x34\x5a\x64\x47\x61\x76\x56\x57\x34\x69','\x57\x50\x31\x45\x57\x51\x4f\x55\x71\x38\x6b\x6b','\x77\x67\x4e\x64\x4d\x66\x53','\x45\x32\x71\x4c\x57\x52\x4e\x63\x54\x32\x42\x64\x4f\x38\x6f\x2b','\x57\x51\x38\x41\x57\x35\x78\x64\x51\x59\x6e\x47\x57\x34\x54\x31','\x66\x6d\x6f\x61\x74\x75\x43','\x43\x6d\x6b\x6e\x7a\x43\x6f\x78\x57\x34\x2f\x63\x4b\x6d\x6b\x70\x57\x34\x61','\x57\x37\x78\x63\x56\x6d\x6f\x4a\x79\x6d\x6b\x50\x57\x35\x38\x32\x6e\x71','\x6b\x53\x6f\x6c\x65\x53\x6b\x65\x75\x57\x4b\x56\x7a\x47','\x79\x43\x6b\x78\x76\x6d\x6f\x61\x64\x4c\x61\x5a\x76\x38\x6f\x4e\x62\x38\x6f\x31\x57\x34\x65','\x63\x4a\x43\x4c\x76\x63\x57\x2f\x6d\x57','\x57\x36\x61\x67\x77\x4d\x48\x35\x6e\x67\x39\x65','\x6c\x43\x6f\x6b\x57\x34\x69\x4c\x57\x52\x4b','\x6c\x38\x6b\x48\x57\x35\x42\x64\x4b\x6d\x6f\x30\x79\x47','\x57\x50\x53\x4e\x41\x75\x72\x76\x57\x34\x48\x33\x45\x71','\x57\x4f\x6c\x63\x51\x38\x6f\x76\x6e\x6d\x6b\x6f\x57\x4f\x54\x67\x44\x61','\x57\x50\x70\x64\x52\x38\x6b\x4c\x6f\x6d\x6f\x30\x57\x34\x50\x72\x57\x35\x69','\x57\x34\x47\x72\x57\x50\x74\x64\x4f\x6d\x6b\x74\x79\x66\x38\x52','\x57\x51\x31\x56\x57\x50\x71\x78\x44\x38\x6b\x48\x57\x34\x5a\x64\x4c\x71','\x57\x4f\x53\x50\x7a\x61\x68\x63\x4d\x4b\x44\x67\x57\x35\x43','\x57\x50\x78\x64\x47\x53\x6b\x35\x76\x33\x6c\x64\x49\x47\x4e\x64\x56\x47','\x57\x37\x37\x64\x4f\x43\x6b\x6c\x69\x57\x6c\x64\x51\x38\x6f\x75','\x57\x52\x33\x63\x49\x72\x7a\x58\x57\x37\x68\x63\x4e\x47','\x66\x38\x6b\x59\x75\x6d\x6f\x70','\x57\x4f\x74\x63\x51\x53\x6f\x2b\x62\x53\x6b\x73\x57\x4f\x76\x6c\x46\x57','\x6b\x53\x6f\x6c\x61\x6d\x6b\x68\x75\x57\x4b','\x57\x37\x74\x64\x49\x33\x39\x54\x57\x4f\x46\x64\x56\x6d\x6b\x4b\x57\x51\x65','\x73\x48\x33\x63\x56\x53\x6b\x42','\x57\x34\x6c\x64\x4d\x53\x6b\x4b\x57\x35\x53\x6b\x79\x76\x54\x37','\x70\x38\x6b\x56\x57\x35\x64\x64\x47\x43\x6b\x4e','\x57\x50\x4b\x51\x41\x67\x6a\x73\x57\x35\x6e\x4c\x78\x57','\x57\x35\x4e\x64\x4b\x43\x6b\x30\x68\x73\x4a\x64\x4a\x6d\x6f\x5a\x46\x61','\x61\x43\x6f\x45\x73\x30\x4b\x65','\x75\x53\x6f\x31\x64\x53\x6b\x77\x57\x35\x31\x4a\x6b\x6d\x6f\x75\x57\x36\x64\x64\x52\x76\x75\x56\x57\x34\x79','\x57\x52\x75\x48\x45\x65\x4a\x64\x4a\x71','\x57\x52\x56\x63\x4a\x43\x6f\x6c\x6d\x6d\x6b\x58','\x6c\x38\x6f\x43\x61\x6d\x6b\x65\x74\x61\x69\x34\x78\x61','\x70\x53\x6b\x30\x57\x35\x46\x64\x4e\x6d\x6b\x53\x6d\x43\x6f\x2f\x44\x71','\x57\x37\x71\x64\x70\x5a\x79\x34\x57\x4f\x75\x44\x57\x4f\x69','\x78\x31\x38\x51\x57\x4f\x6c\x63\x4c\x4c\x64\x64\x4e\x38\x6f\x67','\x74\x57\x33\x63\x56\x43\x6b\x6b\x44\x78\x4f','\x43\x4a\x74\x63\x4c\x59\x42\x64\x4c\x38\x6b\x69\x44\x72\x43','\x46\x4c\x6c\x64\x50\x77\x79\x76\x57\x37\x42\x64\x4d\x43\x6b\x66','\x65\x6d\x6f\x33\x46\x53\x6f\x48\x6d\x31\x43','\x69\x53\x6b\x4b\x57\x34\x64\x64\x4d\x71','\x67\x63\x33\x63\x49\x47\x54\x38\x57\x50\x52\x63\x56\x6d\x6b\x77\x7a\x53\x6f\x55\x76\x43\x6b\x30\x57\x35\x30','\x57\x4f\x33\x64\x50\x53\x6f\x71\x7a\x31\x75','\x57\x36\x75\x52\x57\x51\x65','\x46\x65\x4e\x64\x54\x68\x61\x65','\x79\x59\x70\x63\x49\x33\x33\x63\x4a\x6d\x6f\x7a\x6a\x4b\x47','\x65\x53\x6f\x77\x57\x34\x43\x71\x6b\x64\x53\x6e\x45\x57','\x66\x43\x6f\x42\x57\x35\x79\x72\x6f\x71\x61','\x57\x50\x56\x63\x51\x73\x7a\x6f','\x6c\x53\x6f\x69\x57\x4f\x33\x63\x53\x53\x6f\x68\x77\x43\x6f\x6e\x6b\x47','\x6e\x38\x6f\x64\x65\x43\x6b\x79\x77\x72\x6d\x35','\x57\x37\x6d\x64\x6f\x64\x50\x48\x57\x35\x38','\x57\x4f\x4b\x54\x44\x65\x74\x64\x4a\x73\x30\x63\x57\x50\x38','\x57\x36\x52\x63\x4a\x43\x6b\x31\x57\x50\x43\x36\x71\x6d\x6f\x48\x6e\x47','\x57\x4f\x57\x56\x57\x50\x30\x47\x57\x50\x43\x54\x68\x43\x6f\x7a','\x64\x38\x6f\x5a\x7a\x38\x6f\x6e\x6b\x75\x4b\x72\x57\x50\x34','\x6c\x6d\x6f\x42\x65\x38\x6b\x72\x79\x57\x34\x59\x79\x61','\x6e\x75\x6e\x4e\x6f\x43\x6f\x70\x57\x35\x64\x63\x56\x6d\x6f\x67','\x63\x6d\x6b\x4c\x76\x38\x6f\x72','\x66\x68\x76\x66\x65\x53\x6f\x2f\x57\x37\x79','\x76\x4e\x39\x64','\x57\x34\x69\x37\x62\x72\x57\x69\x57\x51\x79\x64\x57\x52\x6d','\x57\x35\x2f\x64\x47\x6d\x6b\x4a\x57\x37\x35\x38\x57\x34\x35\x2f\x57\x50\x65','\x71\x62\x33\x63\x4f\x38\x6f\x66\x69\x4a\x33\x64\x4f\x73\x71','\x57\x37\x30\x68\x6a\x74\x47\x4a\x57\x4f\x6d','\x79\x59\x70\x63\x49\x32\x2f\x63\x4b\x6d\x6f\x45\x6a\x4b\x47','\x57\x4f\x66\x62\x57\x51\x34\x30\x72\x71','\x43\x74\x37\x63\x47\x68\x6c\x63\x55\x53\x6f\x45\x69\x4b\x4f','\x57\x52\x69\x44\x73\x31\x44\x33\x57\x37\x39\x65\x72\x71','\x65\x38\x6b\x59\x75\x6d\x6f\x72\x57\x4f\x6d\x69\x41\x53\x6f\x48','\x67\x43\x6b\x66\x57\x37\x79','\x57\x52\x37\x64\x4e\x53\x6b\x69\x57\x4f\x47\x68\x41\x53\x6f\x71\x6f\x61','\x6d\x43\x6f\x44\x74\x31\x4f\x6f\x57\x50\x65\x41\x6a\x57','\x57\x52\x64\x64\x51\x47\x4e\x63\x47\x4e\x37\x63\x4c\x53\x6b\x31\x57\x52\x43','\x57\x51\x4a\x64\x53\x62\x33\x63\x4b\x38\x6b\x4e\x57\x51\x4e\x64\x4d\x38\x6b\x55','\x6f\x43\x6b\x50\x57\x34\x64\x64\x48\x57','\x57\x37\x2f\x64\x4f\x43\x6b\x6b\x6c\x61\x42\x64\x56\x47','\x72\x78\x37\x64\x4f\x4c\x71\x56\x57\x35\x56\x64\x4c\x6d\x6b\x50','\x57\x36\x46\x63\x4a\x43\x6b\x4e\x57\x4f\x38\x51\x76\x47','\x57\x37\x4e\x64\x56\x53\x6b\x66\x57\x35\x48\x41\x57\x34\x6e\x66\x57\x52\x6d','\x6a\x67\x4e\x64\x4c\x64\x56\x64\x4c\x6d\x6b\x6b\x67\x32\x62\x4b\x57\x51\x38\x59\x6a\x71','\x57\x37\x33\x63\x47\x38\x6b\x77\x57\x50\x43\x39\x77\x38\x6f\x51\x64\x47','\x74\x53\x6b\x55\x75\x6d\x6f\x72\x57\x36\x74\x63\x54\x53\x6b\x38\x57\x36\x69','\x57\x36\x56\x63\x47\x38\x6b\x48\x57\x50\x4f\x71\x72\x53\x6f\x32\x68\x61','\x63\x73\x4f\x58\x75\x59\x57\x5a\x6d\x65\x79','\x57\x50\x71\x4a\x41\x32\x48\x65\x57\x35\x72\x6a\x44\x57','\x57\x37\x68\x63\x47\x6d\x6f\x46\x57\x37\x6a\x79','\x57\x50\x54\x65\x57\x51\x61\x30\x77\x43\x6b\x6f\x57\x37\x30','\x73\x43\x6b\x61\x57\x4f\x44\x71\x7a\x76\x65\x62\x43\x6d\x6f\x74\x57\x51\x61\x30\x57\x50\x71','\x6f\x53\x6f\x4e\x79\x68\x75\x53\x57\x52\x34\x32\x62\x71','\x61\x43\x6f\x78\x76\x4d\x53\x75\x57\x4f\x53\x78\x68\x71','\x57\x37\x37\x64\x4f\x43\x6b\x61\x6e\x4a\x4a\x64\x50\x43\x6f\x78\x77\x71','\x76\x76\x61\x2f\x57\x4f\x2f\x63\x4c\x66\x46\x64\x4a\x53\x6f\x76','\x57\x50\x75\x59\x57\x37\x42\x64\x4e\x61','\x62\x53\x6f\x67\x72\x30\x34','\x6c\x53\x6f\x34\x57\x51\x46\x63\x48\x38\x6f\x52\x42\x38\x6f\x39\x66\x47','\x71\x48\x4e\x63\x53\x38\x6b\x61\x44\x76\x46\x63\x54\x68\x53','\x57\x37\x4b\x78\x6b\x71\x61\x4e\x57\x50\x34\x47\x57\x4f\x43','\x57\x36\x66\x59\x57\x50\x54\x62\x6f\x76\x52\x63\x51\x65\x30','\x64\x38\x6b\x56\x57\x34\x68\x64\x4a\x61','\x57\x52\x52\x63\x4e\x53\x6b\x72\x57\x50\x4a\x63\x4f\x61\x74\x64\x55\x71\x30','\x6c\x53\x6f\x38\x57\x34\x4b\x51\x57\x51\x70\x64\x55\x6d\x6b\x43\x46\x57','\x57\x36\x2f\x63\x4f\x43\x6f\x63\x42\x6d\x6b\x38','\x77\x68\x6c\x64\x53\x76\x61\x39\x57\x34\x46\x64\x55\x43\x6b\x68','\x57\x50\x75\x2b\x57\x36\x4f','\x41\x43\x6b\x49\x63\x4b\x62\x41','\x6f\x6d\x6b\x57\x57\x34\x68\x64\x4c\x6d\x6b\x32\x6d\x57','\x57\x50\x39\x47\x57\x4f\x6c\x64\x4f\x71','\x57\x52\x70\x64\x56\x53\x6b\x52\x46\x66\x64\x64\x51\x63\x74\x64\x49\x47','\x57\x4f\x56\x63\x55\x53\x6f\x4f\x67\x6d\x6b\x73\x57\x4f\x66\x70\x72\x61','\x6e\x38\x6f\x4b\x42\x77\x43\x47\x57\x51\x38\x47\x67\x71','\x57\x50\x70\x64\x52\x38\x6b\x36\x69\x38\x6f\x58\x57\x34\x7a\x6e\x57\x37\x79','\x57\x37\x6c\x63\x4a\x43\x6f\x46\x57\x37\x6a\x67\x42\x43\x6b\x4e\x57\x35\x65','\x46\x73\x74\x63\x49\x77\x4e\x63\x47\x6d\x6f\x70','\x57\x37\x30\x71\x57\x51\x43\x2b\x57\x50\x71\x6f\x6e\x71','\x57\x34\x48\x51\x65\x43\x6f\x42\x57\x37\x47\x77\x79\x43\x6f\x6a','\x57\x35\x64\x63\x56\x6d\x6f\x30\x57\x35\x6a\x4c\x78\x53\x6b\x62\x57\x37\x53','\x57\x51\x78\x63\x4e\x72\x34\x5a\x62\x65\x74\x63\x53\x65\x61','\x57\x37\x47\x2b\x57\x52\x33\x64\x47\x6d\x6b\x2f\x77\x47','\x57\x51\x57\x70\x57\x52\x30\x62\x57\x51\x61\x79\x79\x53\x6f\x32','\x57\x51\x6c\x64\x4c\x53\x6b\x35\x61\x6d\x6f\x71\x57\x36\x7a\x54\x57\x36\x4f','\x57\x4f\x52\x63\x50\x57\x64\x63\x55\x33\x33\x63\x53\x38\x6b\x71\x57\x4f\x79','\x68\x4e\x6d\x70\x57\x52\x64\x64\x4c\x4d\x79\x33\x42\x57','\x57\x50\x35\x39\x57\x4f\x2f\x64\x4f\x6d\x6b\x39\x57\x34\x79\x34\x57\x35\x4b','\x57\x35\x4e\x64\x4d\x53\x6b\x35\x57\x36\x62\x54\x57\x35\x6e\x47\x57\x4f\x47','\x57\x34\x33\x63\x4c\x43\x6f\x44\x73\x57','\x78\x43\x6b\x62\x70\x31\x6a\x49\x42\x38\x6f\x38\x6c\x71','\x57\x52\x58\x38\x57\x50\x74\x64\x4d\x6d\x6b\x6d\x76\x68\x38\x49','\x57\x37\x78\x64\x56\x43\x6b\x78\x6a\x47\x4e\x64\x52\x71','\x57\x50\x71\x56\x57\x37\x56\x64\x4e\x71\x76\x68\x57\x37\x58\x56','\x57\x35\x78\x63\x4c\x43\x6f\x61\x77\x6d\x6b\x6a\x57\x36\x75','\x63\x38\x6f\x6b\x57\x35\x47\x44\x6a\x71','\x6c\x4a\x72\x6e\x57\x36\x46\x63\x53\x4d\x46\x64\x4f\x43\x6f\x63\x45\x43\x6f\x59','\x57\x52\x54\x42\x57\x51\x6c\x64\x49\x43\x6b\x62\x57\x36\x71\x7a\x57\x34\x43','\x68\x43\x6f\x7a\x72\x30\x71\x73','\x57\x36\x68\x63\x51\x73\x35\x65\x57\x36\x42\x63\x4a\x43\x6f\x55','\x6f\x6d\x6f\x39\x57\x36\x47\x31\x64\x49\x53\x2f\x78\x71','\x6c\x43\x6f\x63\x57\x34\x61\x4f\x57\x52\x46\x64\x56\x6d\x6b\x74\x45\x57','\x57\x34\x34\x6c\x57\x4f\x42\x64\x50\x6d\x6b\x66\x46\x66\x47\x49','\x57\x51\x72\x6c\x57\x51\x70\x64\x49\x53\x6b\x66\x57\x34\x79\x43\x57\x34\x47','\x57\x51\x74\x63\x48\x47\x57\x7a\x67\x33\x37\x63\x56\x78\x61','\x57\x36\x74\x64\x4a\x68\x6d\x56\x57\x35\x37\x63\x52\x57','\x72\x67\x62\x70\x41\x43\x6b\x32','\x57\x4f\x44\x67\x57\x51\x34\x2b','\x6e\x30\x47\x79\x57\x50\x68\x64\x55\x31\x43\x68\x76\x61','\x57\x4f\x62\x6a\x57\x51\x4f\x55\x75\x38\x6b\x44','\x6f\x58\x75\x6d\x45\x5a\x69\x63\x68\x33\x38','\x67\x4e\x71\x38','\x57\x50\x34\x69\x57\x34\x5a\x64\x56\x5a\x31\x4f\x57\x34\x50\x6a','\x57\x35\x42\x63\x4e\x38\x6b\x4e\x73\x65\x4a\x64\x55\x5a\x70\x64\x49\x61','\x57\x50\x68\x63\x56\x38\x6f\x72\x65\x6d\x6b\x36\x70\x53\x6b\x41\x57\x52\x57','\x57\x36\x4a\x64\x56\x6d\x6b\x6e\x69\x47','\x66\x53\x6f\x32\x63\x53\x6b\x35\x57\x37\x56\x63\x54\x43\x6b\x51\x57\x34\x4b\x46\x62\x71','\x71\x4a\x70\x63\x54\x43\x6b\x72','\x57\x51\x61\x70\x57\x34\x33\x64\x54\x5a\x31\x35\x57\x34\x58\x56','\x66\x65\x64\x64\x51\x43\x6f\x41\x69\x64\x52\x64\x52\x4b\x34\x69\x57\x52\x31\x33\x57\x35\x30\x4f','\x57\x51\x69\x41\x57\x35\x52\x64\x55\x4a\x76\x77\x57\x34\x50\x76','\x65\x6d\x6f\x74\x75\x75\x39\x78\x57\x34\x53','\x57\x51\x30\x71\x57\x52\x75\x6a\x57\x52\x69\x43','\x75\x47\x5a\x63\x4f\x53\x6b\x62\x46\x4d\x38','\x57\x52\x4a\x64\x54\x6d\x6b\x7a\x6a\x38\x6f\x4a\x57\x34\x31\x6d','\x57\x50\x34\x35\x57\x37\x42\x64\x4c\x47\x4c\x77\x57\x37\x50\x50','\x64\x63\x79\x49\x72\x72\x57\x38','\x65\x53\x6b\x63\x57\x37\x5a\x64\x4f\x43\x6b\x68\x62\x71','\x57\x50\x42\x63\x56\x4a\x54\x71\x57\x35\x78\x63\x51\x53\x6f\x48\x57\x35\x71','\x57\x4f\x33\x63\x49\x58\x43\x75\x66\x61','\x57\x35\x71\x30\x62\x62\x6d\x62\x57\x51\x34\x71\x57\x52\x71','\x57\x35\x68\x63\x48\x43\x6f\x6d\x79\x6d\x6b\x77\x57\x36\x47\x6f\x6b\x71','\x57\x52\x2f\x63\x48\x58\x57\x56\x68\x4e\x57','\x57\x4f\x64\x63\x52\x71\x56\x63\x53\x78\x74\x63\x55\x38\x6b\x44\x57\x50\x65','\x42\x64\x4e\x63\x49\x6d\x6b\x33\x75\x4b\x46\x63\x4b\x31\x61','\x78\x77\x39\x6b\x66\x53\x6b\x2b\x57\x52\x46\x64\x4b\x57','\x6c\x43\x6f\x45\x62\x43\x6b\x76\x73\x61\x69','\x57\x52\x70\x63\x47\x38\x6f\x66\x62\x53\x6b\x4a\x57\x51\x35\x48\x43\x47','\x66\x6d\x6f\x76\x57\x52\x6c\x63\x4d\x53\x6f\x2f\x42\x38\x6f\x48\x62\x57','\x6e\x38\x6f\x42\x66\x43\x6b\x65\x73\x72\x6d\x64\x44\x57','\x6c\x61\x57\x42\x42\x59\x57\x67\x65\x4d\x34','\x57\x52\x71\x6c\x57\x35\x33\x64\x53\x59\x72\x53','\x57\x34\x62\x5a\x6e\x63\x53\x71\x57\x4f\x31\x6f\x71\x6d\x6f\x37\x68\x38\x6f\x74\x57\x52\x34','\x6d\x31\x4c\x39\x6d\x53\x6f\x63\x57\x35\x74\x63\x4f\x6d\x6f\x41','\x57\x4f\x66\x6f\x57\x52\x69','\x57\x35\x6e\x31\x69\x48\x4a\x63\x4d\x4b\x75\x46\x57\x51\x37\x64\x50\x6d\x6f\x55\x57\x52\x37\x64\x4c\x57','\x57\x4f\x56\x64\x55\x53\x6f\x44\x7a\x75\x74\x64\x4c\x71','\x63\x5a\x43\x4c\x64\x47','\x57\x36\x68\x63\x4c\x53\x6f\x74\x57\x36\x34\x67\x41\x43\x6b\x48\x57\x34\x6d','\x57\x36\x42\x63\x49\x53\x6f\x6b\x57\x37\x62\x6f','\x57\x50\x5a\x63\x53\x53\x6f\x68\x68\x38\x6b\x38\x6b\x43\x6b\x42\x57\x52\x47','\x57\x52\x6c\x64\x50\x6d\x6b\x35','\x57\x4f\x6d\x2f\x78\x4b\x6c\x64\x4e\x62\x43\x78\x57\x50\x38','\x75\x48\x4a\x63\x51\x65\x4e\x63\x51\x53\x6f\x4c\x68\x68\x75','\x67\x53\x6f\x49\x6b\x6d\x6b\x33\x79\x59\x57\x7a\x77\x47','\x64\x6d\x6f\x32\x41\x43\x6f\x77\x6a\x71','\x67\x53\x6f\x56\x57\x52\x56\x63\x48\x71','\x67\x63\x4f\x54\x76\x58\x38','\x63\x4a\x65\x51\x77\x57','\x57\x50\x2f\x64\x55\x6d\x6f\x61','\x73\x53\x6b\x33\x78\x38\x6f\x72\x57\x37\x56\x63\x4f\x43\x6b\x4b\x57\x35\x34','\x57\x37\x42\x63\x56\x65\x4a\x63\x4c\x68\x68\x63\x47\x43\x6b\x5a\x57\x51\x44\x47','\x44\x6d\x6b\x32\x62\x68\x54\x41\x73\x43\x6f\x78\x6c\x71','\x57\x51\x70\x63\x49\x71\x7a\x55\x57\x37\x65','\x57\x4f\x53\x77\x57\x52\x79\x76','\x57\x34\x53\x5a\x44\x66\x66\x44\x61\x61','\x57\x50\x4b\x4b\x44\x48\x37\x63\x4e\x75\x71','\x57\x36\x6c\x64\x4d\x4a\x4c\x4b\x57\x35\x70\x63\x4b\x43\x6f\x6c\x57\x35\x30','\x6b\x43\x6f\x6d\x57\x34\x47\x39\x57\x4f\x52\x64\x51\x43\x6b\x63\x7a\x71','\x62\x67\x35\x6c\x67\x47','\x57\x36\x78\x64\x47\x78\x6e\x55\x57\x4f\x74\x64\x54\x57','\x45\x68\x37\x63\x4b\x66\x61\x74','\x57\x35\x30\x47\x79\x67\x52\x64\x4d\x4a\x75\x63','\x57\x50\x2f\x63\x52\x61\x5a\x63\x55\x4d\x75','\x57\x37\x79\x62\x6a\x47','\x57\x37\x70\x64\x52\x6d\x6b\x4e\x57\x34\x6a\x6e\x57\x37\x31\x46','\x6b\x38\x6f\x41\x65\x38\x6b\x44\x75\x47\x61','\x66\x53\x6f\x50\x57\x51\x38','\x67\x67\x47\x33\x57\x52\x42\x64\x48\x77\x65','\x67\x4d\x6d\x67\x57\x52\x5a\x64\x49\x4d\x75\x52\x44\x61','\x57\x51\x72\x66\x57\x52\x74\x64\x4c\x53\x6f\x53\x57\x50\x65','\x57\x51\x52\x63\x47\x71\x65\x52','\x57\x51\x33\x63\x48\x38\x6b\x6c\x57\x4f\x68\x63\x50\x61\x42\x63\x49\x58\x47','\x57\x52\x56\x63\x49\x49\x74\x63\x4c\x4b\x37\x63\x51\x43\x6b\x35\x57\x51\x43','\x66\x5a\x61\x71\x76\x58\x75\x33\x63\x75\x65','\x57\x35\x69\x4e\x66\x62\x43\x63\x57\x51\x4b\x44\x57\x52\x53','\x57\x51\x42\x64\x55\x31\x31\x43\x57\x51\x37\x64\x49\x43\x6b\x70\x57\x50\x71','\x57\x51\x74\x63\x48\x47\x57\x7a\x62\x77\x56\x63\x51\x65\x61','\x6b\x63\x79\x58\x72\x72\x4f\x39\x6c\x47','\x44\x4b\x48\x49\x71\x38\x6b\x44\x64\x71','\x57\x50\x74\x64\x48\x59\x33\x63\x54\x53\x6b\x43\x57\x4f\x56\x64\x53\x53\x6b\x66','\x57\x4f\x37\x64\x47\x5a\x78\x63\x51\x65\x2f\x63\x54\x38\x6b\x61\x57\x52\x79','\x57\x52\x5a\x63\x4e\x6d\x6f\x38\x64\x43\x6b\x6f\x64\x6d\x6b\x50\x57\x4f\x75','\x66\x43\x6b\x55\x73\x53\x6f\x69\x57\x36\x6c\x63\x47\x38\x6b\x56','\x57\x36\x4a\x64\x55\x53\x6b\x68\x57\x34\x6e\x71\x57\x37\x69','\x57\x36\x64\x63\x4a\x43\x6f\x7a\x57\x37\x35\x66\x45\x47','\x6f\x4b\x6d\x44\x57\x50\x5a\x64\x51\x4c\x69','\x57\x52\x37\x64\x53\x62\x33\x63\x4d\x47','\x57\x36\x46\x63\x4d\x43\x6b\x4f\x57\x4f\x65\x51\x71\x61','\x57\x4f\x37\x63\x51\x47\x4a\x63\x4b\x4c\x6d','\x57\x52\x4c\x45\x57\x50\x76\x59\x64\x4d\x56\x63\x4a\x47','\x57\x50\x34\x34\x44\x33\x6a\x70\x57\x35\x30','\x57\x4f\x68\x63\x52\x53\x6f\x35\x69\x53\x6f\x72\x57\x34\x75','\x57\x4f\x30\x33\x57\x37\x74\x64\x4a\x71\x72\x42\x57\x37\x4c\x5a','\x57\x50\x69\x4c\x43\x4e\x35\x6e\x57\x35\x76\x4d\x46\x57','\x6e\x38\x6f\x4b\x42\x77\x43\x47\x57\x51\x38\x47\x62\x47','\x6d\x38\x6f\x66\x57\x50\x52\x63\x51\x43\x6f\x72\x75\x38\x6f\x42\x6d\x71','\x78\x33\x68\x64\x4c\x66\x57\x56','\x6f\x43\x6f\x6b\x61\x6d\x6b\x77\x75\x61\x69','\x57\x34\x43\x5a\x6a\x57\x57\x77','\x57\x37\x33\x63\x55\x72\x2f\x63\x52\x66\x4e\x63\x47\x43\x6b\x6d','\x57\x51\x5a\x64\x48\x43\x6f\x48\x78\x77\x2f\x64\x50\x66\x37\x63\x53\x71','\x57\x34\x4c\x32\x61\x53\x6b\x72\x57\x52\x56\x63\x4a\x57','\x57\x4f\x64\x63\x51\x53\x6b\x4e\x6d\x43\x6f\x77\x57\x34\x53','\x57\x52\x4e\x64\x50\x49\x33\x63\x4c\x43\x6b\x52\x57\x52\x37\x64\x4d\x38\x6b\x56','\x74\x58\x56\x63\x53\x43\x6b\x43\x44\x77\x57','\x57\x34\x70\x64\x4c\x6d\x6b\x57\x57\x35\x79\x47\x7a\x30\x58\x72','\x57\x36\x6e\x4a\x65\x53\x6f\x48\x57\x37\x34\x63\x7a\x38\x6f\x6f','\x57\x36\x68\x63\x4d\x43\x6b\x4e\x57\x52\x57\x2f\x72\x38\x6f\x4d\x62\x71','\x46\x4b\x37\x64\x56\x67\x61\x41\x57\x36\x4e\x64\x49\x6d\x6b\x78','\x57\x51\x58\x6b\x57\x51\x61','\x6a\x53\x6b\x77\x44\x53\x6f\x56\x57\x51\x38\x68\x71\x43\x6f\x45','\x57\x52\x78\x63\x4d\x48\x54\x57','\x57\x34\x31\x31\x6f\x53\x6f\x54\x57\x36\x69\x6b\x7a\x38\x6f\x63','\x72\x68\x48\x75\x79\x38\x6b\x39\x6c\x71','\x74\x31\x46\x63\x54\x32\x65\x59\x57\x36\x4b\x71\x57\x52\x4b','\x57\x51\x7a\x6d\x57\x52\x37\x64\x4e\x6d\x6b\x6a\x57\x36\x38\x7a','\x77\x75\x37\x63\x54\x68\x30\x4c\x57\x37\x34\x66\x57\x52\x65','\x57\x36\x56\x64\x56\x6d\x6b\x66\x70\x5a\x4a\x64\x52\x6d\x6f\x42\x77\x71','\x57\x36\x66\x71\x6d\x38\x6f\x69\x57\x35\x4f\x4d\x71\x43\x6f\x34','\x6d\x38\x6f\x6b\x77\x33\x47\x66','\x57\x35\x79\x34\x44\x62\x43\x6e\x75\x47','\x57\x36\x33\x64\x54\x38\x6b\x7a\x57\x37\x61\x52\x71\x78\x39\x4e','\x61\x43\x6b\x48\x73\x53\x6f\x68\x57\x35\x48\x4a','\x63\x6d\x6f\x6d\x57\x34\x75\x6d\x6d\x47\x6d','\x57\x50\x44\x70\x57\x52\x47','\x72\x43\x6b\x35\x57\x37\x6c\x63\x4c\x43\x6f\x30\x79\x53\x6f\x39\x69\x43\x6f\x67','\x57\x4f\x64\x63\x56\x43\x6f\x5a\x6e\x38\x6b\x74\x57\x51\x35\x66\x73\x47','\x57\x35\x4e\x63\x51\x43\x6b\x41\x57\x51\x34\x6f\x41\x53\x6f\x42\x6b\x47','\x57\x50\x42\x63\x52\x53\x6f\x6b','\x6d\x43\x6f\x44\x6a\x38\x6b\x44\x75\x47\x34\x4f\x7a\x47','\x57\x37\x76\x6c\x57\x4f\x37\x63\x50\x4d\x79\x58\x57\x4f\x39\x49\x67\x6d\x6b\x61\x78\x43\x6b\x64\x74\x47','\x57\x37\x33\x64\x48\x4c\x4c\x59\x71\x59\x2f\x64\x53\x4d\x4a\x63\x50\x73\x64\x63\x4f\x6d\x6b\x49\x61\x71','\x65\x63\x69\x48\x77\x48\x79\x32','\x57\x52\x35\x63\x57\x52\x62\x4c\x6c\x32\x2f\x63\x4c\x67\x38'];_0x59f2=function(){return _0x3a6fd9;};return _0x59f2();}function normalizeProducerGeneration(_0x591327){const _0x1fbcfa=_0x57bf,_0x17168e=String(_0x591327??'')[_0x1fbcfa(0x21c,'\x7a\x6b\x30\x48')]()[_0x1fbcfa(0x1b6,'\x4e\x6b\x79\x67')+_0x1fbcfa(0x1e2,'\x24\x73\x73\x40')]();if(_0x17168e==='')return'\x76\x32';return _0x17168e==='\x76\x31'||_0x17168e==='\x76\x32'||_0x17168e==='\x75\x6e\x6b\x6e\x6f\x77\x6e'?_0x17168e:_0x1fbcfa(0x1a6,'\x2a\x32\x46\x78');}function traceProducerMetadata(_0x572717){const _0x26b14c=_0x57bf,_0x57842a=optionalShortString(_0x572717[_0x26b14c(0x190,'\x65\x64\x4a\x51')+_0x26b14c(0x22f,'\x40\x4e\x67\x61')],0x59*0x3+-0xaf9*0x1+0x11e*0x9);return{'\x70\x72\x6f\x64\x75\x63\x65\x72\x5f\x67\x65\x6e\x65\x72\x61\x74\x69\x6f\x6e':normalizeProducerGeneration(_0x572717[_0x26b14c(0x199,'\x35\x36\x72\x44')+_0x26b14c(0x24c,'\x78\x51\x57\x74')+'\x6f\x6e']),'\x70\x72\x6f\x64\x75\x63\x65\x72\x5f\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74':optionalShortString(_0x572717[_0x26b14c(0x190,'\x65\x64\x4a\x51')+_0x26b14c(0x197,'\x69\x6b\x33\x28')+'\x74'],0x10df+-0x1eb1+-0x2*-0x6f9)??_0x26b14c(0x1d2,'\x46\x6f\x77\x43'),..._0x57842a?{'\x70\x72\x6f\x64\x75\x63\x65\x72\x5f\x76\x65\x72\x73\x69\x6f\x6e':_0x57842a}:{}};}function isRecord(_0x35fc99){const _0x145574=_0x57bf;return Boolean(_0x35fc99)&&typeof _0x35fc99==='\x6f\x62\x6a\x65\x63\x74'&&!Array[_0x145574(0x23b,'\x23\x6b\x4c\x62')](_0x35fc99);}function stringOrNull(_0x4fc6c0){const _0x364625=_0x57bf;return typeof _0x4fc6c0===_0x364625(0x25d,'\x46\x6f\x77\x43')?_0x4fc6c0:null;}function booleanOrNull(_0x5d5dbf){const _0x49017f=_0x57bf;return typeof _0x5d5dbf===_0x49017f(0x297,'\x66\x26\x32\x39')?_0x5d5dbf:null;}function numberOrNull(_0x5209b6){const _0x70af54=_0x57bf;return typeof _0x5209b6===_0x70af54(0x2aa,'\x35\x47\x68\x52')&&Number['\x69\x73\x46\x69\x6e\x69\x74\x65'](_0x5209b6)?_0x5209b6:null;}function traceUsageSummary(_0x409c95){const _0x30e373=_0x57bf;if(!isRecord(_0x409c95))return undefined;const _0x30341a={};for(const _0x1fb6ac of[_0x30e373(0x1c4,'\x6a\x66\x56\x4c')+_0x30e373(0x29d,'\x35\x47\x68\x52'),_0x30e373(0x27f,'\x26\x35\x63\x7a')+_0x30e373(0x191,'\x2a\x32\x46\x78'),_0x30e373(0x1af,'\x35\x47\x68\x52')+_0x30e373(0x2a8,'\x55\x55\x50\x58')+_0x30e373(0x276,'\x40\x4e\x67\x61')+'\x65\x6e\x73',_0x30e373(0x1eb,'\x4b\x35\x33\x65')+_0x30e373(0x226,'\x24\x73\x73\x40')+'\x5f\x74\x6f\x6b\x65\x6e\x73']){if('\x51\x46\x5a\x51\x61'===_0x30e373(0x20e,'\x47\x71\x67\x79')){if(!_0x3dabda(_0x51fa2e))return _0x166aaf;const _0x3878df={};for(const _0x2a08c9 of[_0x30e373(0x2b4,'\x46\x6f\x77\x43')+_0x30e373(0x189,'\x39\x54\x75\x6d'),_0x30e373(0x1fe,'\x4f\x50\x68\x67')+_0x30e373(0x1d5,'\x69\x6b\x33\x28'),_0x30e373(0x19e,'\x41\x36\x21\x48')+'\x65\x61\x74\x69\x6f\x6e\x5f\x69'+_0x30e373(0x27c,'\x79\x59\x55\x6a')+_0x30e373(0x281,'\x69\x6b\x33\x28'),_0x30e373(0x183,'\x5a\x59\x36\x62')+_0x30e373(0x285,'\x76\x28\x35\x69')+_0x30e373(0x1ef,'\x71\x4a\x34\x35')]){const _0x50ec52=_0x42bcee[_0x2a08c9];if(typeof _0x50ec52===_0x30e373(0x239,'\x41\x28\x32\x4a')&&_0x480d6c[_0x30e373(0x263,'\x4f\x50\x68\x67')](_0x50ec52))_0x3878df[_0x2a08c9]=_0x50ec52;}return _0x1fbeec[_0x30e373(0x20f,'\x75\x24\x74\x4a')](_0x3878df)[_0x30e373(0x274,'\x4e\x6b\x79\x67')]>-0x1*-0x731+0x1ee1+-0x16*0x1bb?_0x3878df:_0x13a993;}else{const _0x25c586=_0x409c95[_0x1fb6ac];if(typeof _0x25c586==='\x6e\x75\x6d\x62\x65\x72'&&Number[_0x30e373(0x252,'\x78\x51\x57\x74')](_0x25c586))_0x30341a[_0x1fb6ac]=_0x25c586;}}return Object[_0x30e373(0x20f,'\x75\x24\x74\x4a')](_0x30341a)[_0x30e373(0x18f,'\x55\x55\x50\x58')]>0x1*-0x100a+0x16dc+-0x6d2?_0x30341a:undefined;}function plaintextSummary(_0x1d6f9b){const _0x4841c4=_0x57bf;if(!isRecord(_0x1d6f9b)||_0x1d6f9b['\x65\x76\x65\x6e\x74']!==_0x4841c4(0x1c2,'\x78\x51\x57\x74'))return undefined;const _0x11ef64=traceUsageSummary(_0x1d6f9b[_0x4841c4(0x208,'\x35\x34\x41\x71')]);return{'\x65\x76\x65\x6e\x74':_0x4841c4(0x1a1,'\x63\x23\x26\x76')+_0x4841c4(0x1fd,'\x75\x24\x74\x4a')+_0x4841c4(0x209,'\x52\x6e\x5e\x72')+_0x4841c4(0x212,'\x78\x43\x34\x64'),'\x70\x61\x79\x6c\x6f\x61\x64\x5f\x73\x63\x68\x65\x6d\x61':'\x6c\x6c\x6d\x5f\x74\x75\x72\x6e'+_0x4841c4(0x1e3,'\x4b\x35\x33\x65'),'\x74\x73':stringOrNull(_0x1d6f9b['\x74\x73'])??'','\x72\x6f\x75\x74\x65':stringOrNull(_0x1d6f9b[_0x4841c4(0x29f,'\x79\x59\x55\x6a')]),'\x70\x72\x6f\x76\x69\x64\x65\x72':stringOrNull(_0x1d6f9b[_0x4841c4(0x2b3,'\x65\x64\x4a\x51')]),'\x77\x69\x72\x65\x5f\x61\x70\x69':stringOrNull(_0x1d6f9b[_0x4841c4(0x1a3,'\x40\x4e\x67\x61')]),'\x6f\x72\x69\x67\x69\x6e\x61\x6c\x5f\x6d\x6f\x64\x65\x6c':stringOrNull(_0x1d6f9b['\x6f\x72\x69\x67\x69\x6e\x61\x6c'+'\x5f\x6d\x6f\x64\x65\x6c']),'\x63\x68\x6f\x73\x65\x6e\x5f\x6d\x6f\x64\x65\x6c':stringOrNull(_0x1d6f9b[_0x4841c4(0x1a4,'\x34\x51\x70\x5e')+_0x4841c4(0x2ae,'\x79\x59\x55\x6a')]),'\x74\x69\x65\x72':stringOrNull(_0x1d6f9b[_0x4841c4(0x19a,'\x79\x59\x55\x6a')]),'\x72\x65\x61\x73\x6f\x6e':stringOrNull(_0x1d6f9b[_0x4841c4(0x21d,'\x74\x79\x74\x45')]),'\x66\x61\x6c\x6c\x62\x61\x63\x6b':stringOrNull(_0x1d6f9b[_0x4841c4(0x1d8,'\x5e\x23\x26\x42')]),'\x72\x6f\x75\x74\x65\x72\x5f\x65\x6e\x61\x62\x6c\x65\x64':booleanOrNull(_0x1d6f9b[_0x4841c4(0x1b3,'\x53\x25\x73\x62')+_0x4841c4(0x19d,'\x41\x28\x32\x4a')]),'\x75\x70\x73\x74\x72\x65\x61\x6d\x5f\x6d\x6f\x64\x65':stringOrNull(_0x1d6f9b[_0x4841c4(0x254,'\x4b\x39\x72\x59')+_0x4841c4(0x2a4,'\x5a\x59\x36\x62')]),'\x73\x74\x61\x74\x75\x73':numberOrNull(_0x1d6f9b[_0x4841c4(0x283,'\x2a\x32\x46\x78')]),'\x73\x74\x72\x65\x61\x6d':booleanOrNull(_0x1d6f9b[_0x4841c4(0x279,'\x47\x32\x40\x49')]),'\x74\x74\x66\x62\x5f\x6d\x73':numberOrNull(_0x1d6f9b[_0x4841c4(0x28c,'\x40\x4e\x67\x61')]),'\x6c\x61\x74\x65\x6e\x63\x79\x5f\x6d\x73':numberOrNull(_0x1d6f9b[_0x4841c4(0x1cd,'\x7a\x74\x36\x61')+'\x6d\x73']),..._0x11ef64?{'\x75\x73\x61\x67\x65':_0x11ef64}:{}};}function incompleteBodyEnvelopeReason(_0x3b19ec){const _0x3047a9=_0x57bf;if(typeof _0x3b19ec!==_0x3047a9(0x223,'\x4f\x50\x68\x67'))return undefined;try{const _0x533d8a=JSON[_0x3047a9(0x26a,'\x61\x54\x44\x59')](_0x3b19ec);if(!isRecord(_0x533d8a))return undefined;if(_0x533d8a[_0x3047a9(0x29e,'\x64\x6d\x4c\x37')+_0x3047a9(0x29c,'\x74\x79\x74\x45')]===![]||_0x533d8a[_0x3047a9(0x1aa,'\x66\x26\x32\x39')+_0x3047a9(0x1ad,'\x69\x6b\x33\x28')]===!![])return _0x3047a9(0x1f4,'\x6a\x66\x56\x4c')!==_0x3047a9(0x259,'\x69\x6b\x33\x28')?_0x2f1f69('\x73\x68\x61\x32\x35\x36')[_0x3047a9(0x1fb,'\x4f\x50\x68\x67')](_0x3047a9(0x1c6,'\x69\x59\x71\x28')+_0x3047a9(0x207,'\x35\x34\x41\x71')+'\x63\x65\x2d\x76\x31\x3a'+_0x4d3f03,'\x75\x74\x66\x38')['\x64\x69\x67\x65\x73\x74']():typeof _0x533d8a[_0x3047a9(0x1f1,'\x40\x4e\x67\x61')]==='\x73\x74\x72\x69\x6e\x67'?_0x533d8a[_0x3047a9(0x29b,'\x4f\x50\x68\x67')][_0x3047a9(0x242,'\x4e\x6b\x79\x67')](0xd29+0xd*0x5d+-0x11e2,0x727*0x1+-0x1*0x754+0x6d):_0x3047a9(0x192,'\x65\x64\x4a\x51')+_0x3047a9(0x27b,'\x34\x51\x70\x5e')+_0x3047a9(0x181,'\x4f\x50\x68\x67');}catch{return undefined;}return undefined;}function _0x57bf(_0x47ae26,_0x827571){_0x47ae26=_0x47ae26-(0xfd*-0x7+-0x38*-0x89+0xb2*-0x1f);const _0x467dc3=_0x59f2();let _0x33ee92=_0x467dc3[_0x47ae26];if(_0x57bf['\x4e\x48\x4e\x64\x71\x55']===undefined){var _0x446ac2=function(_0xa58331){const _0x3c461f='\x61\x62\x63\x64\x65\x66\x67\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70\x71\x72\x73\x74\x75\x76\x77\x78\x79\x7a\x41\x42\x43\x44\x45\x46\x47\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50\x51\x52\x53\x54\x55\x56\x57\x58\x59\x5a\x30\x31\x32\x33\x34\x35\x36\x37\x38\x39\x2b\x2f\x3d';let _0x487035='',_0x1e7cef='';for(let _0x4a7ef5=-0x2656+-0x62f*-0x2+-0x19f8*-0x1,_0x103f8f,_0x5268ac,_0x27fb3d=0x259b*-0x1+0x14df*0x1+0x11*0xfc;_0x5268ac=_0xa58331['\x63\x68\x61\x72\x41\x74'](_0x27fb3d++);~_0x5268ac&&(_0x103f8f=_0x4a7ef5%(-0x673*-0x5+-0x515*0x3+0x2*-0x87e)?_0x103f8f*(0x73*0x3f+0x1fab+-0x3bb8)+_0x5268ac:_0x5268ac,_0x4a7ef5++%(0x2263+0x1a43+-0x3ca2))?_0x487035+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0xdae+-0x5*0x7ca+0x1a43&_0x103f8f>>(-(-0x70*-0x1a+0x18*-0xb7+0x5ca)*_0x4a7ef5&-0x9aa*-0x1+-0x77+-0x92d)):0x3af*0x2+0x1aec+-0x224a){_0x5268ac=_0x3c461f['\x69\x6e\x64\x65\x78\x4f\x66'](_0x5268ac);}for(let _0x3efd38=0x1*0x1f69+0x492*-0x7+0x95,_0x42a33c=_0x487035['\x6c\x65\x6e\x67\x74\x68'];_0x3efd38<_0x42a33c;_0x3efd38++){_0x1e7cef+='\x25'+('\x30\x30'+_0x487035['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x3efd38)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x2537+-0x1a7b+-0x556*0x2))['\x73\x6c\x69\x63\x65'](-(0x751+-0x24b5+0x8e*0x35));}return decodeURIComponent(_0x1e7cef);};const _0x4fc89f=function(_0x2d17c4,_0x2706ea){let _0x61be83=[],_0x5697b1=-0x16*-0xb+-0x1*-0xab9+-0xbab,_0x5dc5ef,_0x4cf2e3='';_0x2d17c4=_0x446ac2(_0x2d17c4);let _0x399b02;for(_0x399b02=0x296+-0x3e2+0x14c;_0x399b02<-0xf85+0xdbe*-0x1+0x1e43;_0x399b02++){_0x61be83[_0x399b02]=_0x399b02;}for(_0x399b02=-0x256c+0x4*-0x687+0x3f88;_0x399b02<-0x1df*0xe+0xb*-0x155+-0x3*-0xdf3;_0x399b02++){_0x5697b1=(_0x5697b1+_0x61be83[_0x399b02]+_0x2706ea['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x399b02%_0x2706ea['\x6c\x65\x6e\x67\x74\x68']))%(0x2*0x31a+0x1922+-0x1e56),_0x5dc5ef=_0x61be83[_0x399b02],_0x61be83[_0x399b02]=_0x61be83[_0x5697b1],_0x61be83[_0x5697b1]=_0x5dc5ef;}_0x399b02=0xe5*0x1f+-0x1*0xb+-0x1bb0,_0x5697b1=0x1b7f+-0x2521+0x89*0x12;for(let _0x297667=-0x1*-0x265+0x13*-0x1b7+0x1e30;_0x297667<_0x2d17c4['\x6c\x65\x6e\x67\x74\x68'];_0x297667++){_0x399b02=(_0x399b02+(-0x2510+-0x44c+0x295d*0x1))%(-0xf0+-0x2*-0x1107+0x100f*-0x2),_0x5697b1=(_0x5697b1+_0x61be83[_0x399b02])%(-0x14b5+-0x23c3+0x3978),_0x5dc5ef=_0x61be83[_0x399b02],_0x61be83[_0x399b02]=_0x61be83[_0x5697b1],_0x61be83[_0x5697b1]=_0x5dc5ef,_0x4cf2e3+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x2d17c4['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x297667)^_0x61be83[(_0x61be83[_0x399b02]+_0x61be83[_0x5697b1])%(0x2b*0xb+-0x13*0x1d8+0x222f)]);}return _0x4cf2e3;};_0x57bf['\x6e\x70\x69\x6e\x6f\x4e']=_0x4fc89f,_0x57bf['\x6a\x71\x56\x4e\x64\x66']={},_0x57bf['\x4e\x48\x4e\x64\x71\x55']=!![];}const _0x3a41cf=_0x467dc3[0x4*0x2c1+0x1051*-0x2+0x1*0x159e],_0x555c1b=_0x47ae26+_0x3a41cf,_0x361553=_0x57bf['\x6a\x71\x56\x4e\x64\x66'][_0x555c1b];return!_0x361553?(_0x57bf['\x6a\x62\x53\x4f\x50\x7a']===undefined&&(_0x57bf['\x6a\x62\x53\x4f\x50\x7a']=!![]),_0x33ee92=_0x57bf['\x6e\x70\x69\x6e\x6f\x4e'](_0x33ee92,_0x827571),_0x57bf['\x6a\x71\x56\x4e\x64\x66'][_0x555c1b]=_0x33ee92):_0x33ee92=_0x361553,_0x33ee92;}function traceRecordIncompleteReason(_0x448356){const _0x126294=_0x57bf;if(!isRecord(_0x448356))return undefined;if(_0x448356[_0x126294(0x24b,'\x64\x6d\x4c\x37')+_0x126294(0x218,'\x24\x4f\x4d\x4d')]===!![])return _0x126294(0x1a2,'\x41\x28\x32\x4a')+_0x126294(0x24a,'\x35\x47\x68\x52');const _0x2c19da=incompleteBodyEnvelopeReason(_0x448356[_0x126294(0x280,'\x53\x5e\x72\x43')+_0x126294(0x203,'\x2a\x32\x46\x78')]);if(_0x2c19da)return _0x2c19da;const _0x380025=incompleteBodyEnvelopeReason(_0x448356['\x72\x65\x73\x70\x6f\x6e\x73\x65'+_0x126294(0x217,'\x69\x59\x71\x28')]);if(_0x380025)return _0x380025;const _0xb9f37f=_0x448356[_0x126294(0x1bf,'\x35\x34\x41\x71')];if(!Array[_0x126294(0x222,'\x41\x36\x21\x48')](_0xb9f37f))return undefined;for(const _0x268473 of _0xb9f37f){if(!isRecord(_0x268473))continue;if(_0x268473[_0x126294(0x21b,'\x5e\x23\x26\x42')+_0x126294(0x1e0,'\x2a\x32\x46\x78')]===!![])return _0x126294(0x1e9,'\x4b\x35\x33\x65')+'\x62\x6f\x64\x79\x5f\x74\x72\x75'+_0x126294(0x2b5,'\x46\x6f\x77\x43');const _0x4dea2e=incompleteBodyEnvelopeReason(_0x268473[_0x126294(0x198,'\x61\x54\x44\x59')+_0x126294(0x262,'\x52\x6e\x5e\x72')]);if(_0x4dea2e)return _0x4dea2e;const _0x539f1d=incompleteBodyEnvelopeReason(_0x268473[_0x126294(0x28a,'\x4f\x50\x68\x67')+_0x126294(0x1b2,'\x79\x59\x55\x6a')]);if(_0x539f1d)return _0x539f1d;}return undefined;}function annotateUploadStatus(_0x13e394,_0x14df2f,_0xacaec){const _0xec153=_0x57bf;let _0x31f542=_0x13e394;const _0xf94326=traceRecordIncompleteReason(_0x14df2f);_0xf94326&&(_0x31f542={..._0x31f542,'\x70\x61\x79\x6c\x6f\x61\x64\x5f\x63\x6f\x6d\x70\x6c\x65\x74\x65':![],'\x70\x61\x79\x6c\x6f\x61\x64\x5f\x69\x6e\x63\x6f\x6d\x70\x6c\x65\x74\x65\x5f\x72\x65\x61\x73\x6f\x6e':_0xf94326});if(_0x31f542[_0xec153(0x1bc,'\x53\x5e\x72\x43')+_0xec153(0x243,'\x4f\x50\x68\x67')]===![])return _0x31f542;const _0x35bb00=traceUploadMaxBytes(_0xacaec),_0x22afaa=proxyTraceUploadPayloadSizeBytes(_0x31f542);if(_0x22afaa<=_0x35bb00)return _0x31f542;let _0x4811bf={..._0x31f542,'\x68\x75\x62\x5f\x75\x70\x6c\x6f\x61\x64\x61\x62\x6c\x65':![],'\x68\x75\x62\x5f\x75\x70\x6c\x6f\x61\x64\x5f\x62\x6c\x6f\x63\x6b\x65\x64\x5f\x72\x65\x61\x73\x6f\x6e':_0xec153(0x186,'\x47\x71\x67\x79')+_0xec153(0x249,'\x35\x36\x72\x44'),'\x68\x75\x62\x5f\x75\x70\x6c\x6f\x61\x64\x5f\x6d\x61\x78\x5f\x62\x79\x74\x65\x73':_0x35bb00};for(let _0x25e810=-0x1bad+-0x5ab+0x2158;_0x25e810<0xb*0xda+0x1*0x431+-0xd8b;_0x25e810+=0xb3f+0x1*-0x4eb+-0x653){if(_0xec153(0x244,'\x55\x55\x50\x58')===_0xec153(0x1b5,'\x21\x62\x4f\x6d')){const _0x3e1c75=proxyTraceUploadPayloadSizeBytes(_0x4811bf);if(_0x4811bf[_0xec153(0x22e,'\x6a\x66\x56\x4c')+_0xec153(0x291,'\x53\x5e\x72\x43')+_0xec153(0x1a5,'\x35\x34\x41\x71')]===_0x3e1c75)return _0x4811bf;_0x4811bf={..._0x4811bf,'\x68\x75\x62\x5f\x75\x70\x6c\x6f\x61\x64\x5f\x73\x69\x7a\x65\x5f\x62\x79\x74\x65\x73':_0x3e1c75};}else{if(typeof _0x582033!=='\x73\x74\x72\x69\x6e\x67')return _0x5413e1;try{const _0x52e083=_0x173be5[_0xec153(0x216,'\x44\x36\x50\x75')](_0x3b45d7);if(!_0x56b62a(_0x52e083))return _0x368974;if(_0x52e083[_0xec153(0x184,'\x41\x28\x32\x4a')+'\x63\x6f\x6d\x70\x6c\x65\x74\x65']===![]||_0x52e083['\x62\x6f\x64\x79\x5f\x6f\x6d\x69'+_0xec153(0x284,'\x4e\x6b\x79\x67')]===!![])return typeof _0x52e083[_0xec153(0x2ad,'\x47\x71\x67\x79')]===_0xec153(0x1ee,'\x35\x47\x68\x52')?_0x52e083[_0xec153(0x235,'\x41\x36\x21\x48')][_0xec153(0x2b0,'\x78\x43\x34\x64')](0x6fb*-0x5+-0x10c9*0x2+0x4479,0x12f*-0x21+0x1d33+0xa1c):_0xec153(0x1da,'\x30\x66\x4e\x43')+_0xec153(0x187,'\x4f\x50\x68\x67')+'\x6f\x6d\x70\x6c\x65\x74\x65';}catch{return _0x5f481e;}return _0x5ad9fa;}}return _0x4811bf;}export function materializeTraceForStorage(_0x591f1e,_0x235d15=process.env,_0x1efedf={}){const _0x27dcc5=_0x57bf;if(!traceEnvelopeRequired(_0x235d15,_0x1efedf))return{'\x6f\x6b':!![],'\x72\x65\x63\x6f\x72\x64':_0x591f1e};const _0x1dd4f4=resolveTraceHubPublicKey(_0x235d15,_0x1efedf[_0x27dcc5(0x1e5,'\x52\x6e\x5e\x72')+_0x27dcc5(0x1e8,'\x35\x47\x68\x52')]);try{if(_0x27dcc5(0x23a,'\x26\x35\x63\x7a')!=='\x41\x52\x4d\x67\x78')return{'\x6f\x6b':![],'\x72\x65\x61\x73\x6f\x6e':_0x27dcc5(0x24d,'\x41\x28\x32\x4a')+_0x27dcc5(0x19c,'\x4e\x6b\x79\x67')+_0x27dcc5(0x23c,'\x34\x51\x70\x5e')};else{const _0x1e09bd=resolveNodeSecretVersion(_0x1efedf),_0x409351=parseNodeSecret(_0x1efedf[_0x27dcc5(0x27d,'\x69\x59\x71\x28')+'\x65\x74']),_0x97de7d=_0x409351?deriveNodeSecretTraceKey(_0x409351):undefined,_0x5359a9=_0x97de7d??randomBytes(0x193*0x9+-0x1*-0xb2d+-0x434*0x6),_0x4b8a75=randomBytes(-0x1*-0x117e+-0x18d2+0x760),_0x30a7a2=createCipheriv(_0x27dcc5(0x18e,'\x35\x47\x68\x52')+_0x27dcc5(0x221,'\x55\x55\x50\x58'),_0x5359a9,_0x4b8a75,{'\x61\x75\x74\x68\x54\x61\x67\x4c\x65\x6e\x67\x74\x68':0x10}),_0x2e753d=Buffer[_0x27dcc5(0x287,'\x69\x6b\x33\x28')](JSON[_0x27dcc5(0x2a7,'\x79\x59\x55\x6a')+'\x79'](_0x591f1e),_0x27dcc5(0x206,'\x40\x4e\x67\x61')),_0x482c05=Buffer[_0x27dcc5(0x19b,'\x66\x26\x32\x39')]([_0x30a7a2[_0x27dcc5(0x1b9,'\x79\x59\x55\x6a')](_0x2e753d),_0x30a7a2[_0x27dcc5(0x210,'\x40\x4e\x67\x61')]()]),_0x27a88e=_0x30a7a2[_0x27dcc5(0x29a,'\x53\x5e\x72\x43')+'\x61\x67']();let _0x46cf80;try{if(_0x1dd4f4){const _0xa541b=publicEncrypt({'\x6b\x65\x79':_0x1dd4f4,'\x70\x61\x64\x64\x69\x6e\x67':constants[_0x27dcc5(0x1bb,'\x70\x45\x6d\x49')+_0x27dcc5(0x1b1,'\x23\x6b\x4c\x62')+_0x27dcc5(0x237,'\x24\x73\x73\x40')],'\x6f\x61\x65\x70\x48\x61\x73\x68':_0x27dcc5(0x26b,'\x78\x51\x57\x74')},_0x5359a9);_0x46cf80={'\x61\x6c\x67\x6f\x72\x69\x74\x68\x6d':'\x72\x73\x61\x2d\x6f\x61\x65\x70'+_0x27dcc5(0x1fa,'\x7a\x6b\x30\x48'),'\x6b\x65\x79\x5f\x69\x64':createHash(_0x27dcc5(0x219,'\x5a\x59\x36\x62'))[_0x27dcc5(0x200,'\x4b\x35\x33\x65')](_0x1dd4f4)[_0x27dcc5(0x1ed,'\x69\x59\x71\x28')](_0x27dcc5(0x2b1,'\x47\x32\x40\x49'))[_0x27dcc5(0x1dd,'\x39\x24\x26\x34')](0xb26+0x5*-0x71f+0x827*0x3,-0x1123+-0x895+0x294*0xa),'\x77\x72\x61\x70\x70\x65\x64\x5f\x6b\x65\x79':_0xa541b[_0x27dcc5(0x296,'\x70\x45\x6d\x49')](_0x27dcc5(0x26c,'\x23\x6b\x4c\x62'))};}else{if(!_0x97de7d)return{'\x6f\x6b':![],'\x72\x65\x61\x73\x6f\x6e':_0x27dcc5(0x1b0,'\x55\x55\x50\x58')+'\x69\x63\x5f\x6b\x65\x79\x5f\x6d'+_0x27dcc5(0x1cf,'\x66\x26\x32\x39')};}}catch(_0x59dcfe){return{'\x6f\x6b':![],'\x72\x65\x61\x73\x6f\x6e':_0x27dcc5(0x1db,'\x6a\x66\x56\x4c')+_0x27dcc5(0x257,'\x66\x26\x32\x39')+_0x27dcc5(0x275,'\x75\x6e\x2a\x41'),'\x65\x72\x72\x6f\x72':_0x59dcfe instanceof Error?_0x59dcfe[_0x27dcc5(0x255,'\x75\x6e\x2a\x41')]:String(_0x59dcfe)};}const _0x45c6c4=plaintextSummary(_0x591f1e),_0x5b3383={'\x73\x63\x68\x65\x6d\x61\x5f\x76\x65\x72\x73\x69\x6f\x6e':0x1,'\x65\x76\x65\x6e\x74':_0x27dcc5(0x290,'\x34\x51\x70\x5e')+_0x27dcc5(0x1b4,'\x5e\x23\x26\x42')+'\x70\x65','\x65\x6e\x63\x72\x79\x70\x74\x65\x64':!![],'\x70\x61\x79\x6c\x6f\x61\x64\x5f\x73\x63\x68\x65\x6d\x61':_0x27dcc5(0x194,'\x39\x54\x75\x6d')+'\x61\x63\x65\x5f\x72\x6f\x77','\x61\x6c\x67\x6f\x72\x69\x74\x68\x6d':_0x27dcc5(0x295,'\x5a\x59\x36\x62')+_0x27dcc5(0x224,'\x75\x24\x74\x4a'),'\x6b\x65\x79\x5f\x69\x64':createHash(_0x27dcc5(0x1dc,'\x74\x79\x74\x45'))['\x75\x70\x64\x61\x74\x65'](_0x5359a9)[_0x27dcc5(0x273,'\x79\x59\x55\x6a')](_0x27dcc5(0x2b1,'\x47\x32\x40\x49'))[_0x27dcc5(0x2a2,'\x69\x6b\x33\x28')](0x2e6*-0xd+-0x905*0x1+0x5*0x957,0x7f1+0x116b+-0x194c),..._0x1e09bd!==undefined?{'\x73\x65\x63\x72\x65\x74\x5f\x76\x65\x72\x73\x69\x6f\x6e':_0x1e09bd}:{},...traceProducerMetadata(_0x1efedf),'\x69\x76':_0x4b8a75['\x74\x6f\x53\x74\x72\x69\x6e\x67'](_0x27dcc5(0x23d,'\x53\x5e\x72\x43')),'\x74\x61\x67':_0x27a88e[_0x27dcc5(0x292,'\x71\x4a\x34\x35')](_0x27dcc5(0x182,'\x55\x55\x50\x58')),'\x63\x69\x70\x68\x65\x72\x74\x65\x78\x74':_0x482c05['\x74\x6f\x53\x74\x72\x69\x6e\x67']('\x62\x61\x73\x65\x36\x34'),..._0x46cf80?{'\x68\x75\x62\x5f\x6b\x65\x79\x5f\x65\x6e\x76\x65\x6c\x6f\x70\x65':_0x46cf80}:{},..._0x45c6c4?{'\x70\x6c\x61\x69\x6e\x74\x65\x78\x74\x5f\x73\x75\x6d\x6d\x61\x72\x79':_0x45c6c4}:{}};return{'\x6f\x6b':!![],'\x72\x65\x63\x6f\x72\x64':annotateUploadStatus(_0x5b3383,_0x591f1e,_0x235d15)};}}catch(_0x5462cb){return _0x27dcc5(0x1b8,'\x7a\x74\x36\x61')!==_0x27dcc5(0x2a5,'\x53\x5e\x72\x43')?_0x5f06b5(_0x346f1c[_0x27dcc5(0x1f5,'\x55\x55\x50\x58')+_0x27dcc5(0x277,'\x52\x6e\x5e\x72')+_0x27dcc5(0x18d,'\x41\x36\x21\x48')+_0x27dcc5(0x1ba,'\x75\x6e\x2a\x41')])||_0x44aa1a(_0x5979ac[_0x27dcc5(0x1bd,'\x69\x6b\x33\x28')+'\x52\x4f\x58\x59\x5f\x54\x52\x41'+_0x27dcc5(0x1c3,'\x35\x34\x41\x71')+_0x27dcc5(0x2b2,'\x4e\x6b\x79\x67')])||_0x1186e1(_0x5d1c3c[_0x27dcc5(0x185,'\x69\x59\x71\x28')+_0x27dcc5(0x23e,'\x4b\x35\x33\x65')+_0x27dcc5(0x2a9,'\x76\x28\x35\x69')+'\x45\x5f\x41\x4e\x41\x4c\x59\x53'+'\x49\x53'])||_0xf5e727(_0x97d7f['\x45\x56\x4f\x4d\x41\x50\x5f\x50'+_0x27dcc5(0x2ac,'\x4e\x6b\x79\x67')+_0x27dcc5(0x1d7,'\x46\x6f\x77\x43')+_0x27dcc5(0x231,'\x35\x36\x72\x44')+_0x27dcc5(0x20a,'\x70\x45\x6d\x49')])||_0x265d36[_0x27dcc5(0x1d4,'\x75\x6e\x2a\x41')+_0x27dcc5(0x286,'\x4b\x35\x33\x65')+_0x27dcc5(0x298,'\x44\x36\x50\x75')]===!![]||_0x384111(_0x978f2c):{'\x6f\x6b':![],'\x72\x65\x61\x73\x6f\x6e':_0x27dcc5(0x22a,'\x26\x35\x63\x7a')+_0x27dcc5(0x260,'\x53\x5e\x72\x43')+_0x27dcc5(0x1de,'\x2a\x32\x46\x78'),'\x65\x72\x72\x6f\x72':_0x5462cb instanceof Error?_0x5462cb['\x6d\x65\x73\x73\x61\x67\x65']:String(_0x5462cb)};}}export function decryptHubTraceEnvelope(_0xf34811,_0x24b748){const _0xb9ed68=_0x57bf;if(!_0xf34811['\x68\x75\x62\x5f\x6b\x65\x79\x5f'+_0xb9ed68(0x23f,'\x34\x51\x70\x5e')])throw new Error(_0xb9ed68(0x213,'\x63\x23\x26\x76')+_0xb9ed68(0x272,'\x39\x54\x75\x6d')+_0xb9ed68(0x1ae,'\x75\x24\x74\x4a')+'\x64');const _0x190623=privateDecrypt({'\x6b\x65\x79':_0x24b748,'\x70\x61\x64\x64\x69\x6e\x67':constants[_0xb9ed68(0x24e,'\x4e\x6b\x79\x67')+_0xb9ed68(0x22d,'\x74\x79\x74\x45')+_0xb9ed68(0x230,'\x39\x24\x26\x34')],'\x6f\x61\x65\x70\x48\x61\x73\x68':_0xb9ed68(0x25a,'\x24\x4f\x4d\x4d')},Buffer[_0xb9ed68(0x238,'\x35\x36\x72\x44')](_0xf34811[_0xb9ed68(0x1f6,'\x21\x62\x4f\x6d')+'\x65\x6e\x76\x65\x6c\x6f\x70\x65'][_0xb9ed68(0x2a6,'\x4f\x50\x68\x67')+_0xb9ed68(0x26e,'\x39\x54\x75\x6d')],_0xb9ed68(0x25c,'\x39\x54\x75\x6d'))),_0x43e282=createDecipheriv(_0xb9ed68(0x2ab,'\x65\x64\x4a\x51')+_0xb9ed68(0x24f,'\x75\x6e\x2a\x41'),_0x190623,Buffer['\x66\x72\x6f\x6d'](_0xf34811['\x69\x76'],_0xb9ed68(0x1ec,'\x69\x6b\x33\x28')),{'\x61\x75\x74\x68\x54\x61\x67\x4c\x65\x6e\x67\x74\x68':0x10});_0x43e282[_0xb9ed68(0x1a9,'\x69\x6b\x33\x28')+'\x61\x67'](Buffer[_0xb9ed68(0x228,'\x6a\x66\x56\x4c')](_0xf34811['\x74\x61\x67'],_0xb9ed68(0x28f,'\x79\x59\x55\x6a')));const _0x379838=Buffer[_0xb9ed68(0x225,'\x24\x73\x73\x40')]([_0x43e282[_0xb9ed68(0x1c5,'\x47\x32\x40\x49')](Buffer[_0xb9ed68(0x251,'\x44\x36\x50\x75')](_0xf34811[_0xb9ed68(0x256,'\x4b\x39\x72\x59')+'\x78\x74'],_0xb9ed68(0x227,'\x30\x66\x4e\x43'))),_0x43e282[_0xb9ed68(0x28e,'\x5e\x23\x26\x42')]()]);return JSON[_0xb9ed68(0x278,'\x35\x36\x72\x44')](_0x379838[_0xb9ed68(0x1a0,'\x41\x28\x32\x4a')]('\x75\x74\x66\x38'));}