@evomap/evolver-proxy 2.0.0 → 2.0.1
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.
- package/dist/lifecycle/claimNudge.js +1 -124
- package/dist/lifecycle/deployGuard.js +1 -53
- package/dist/lifecycle/legacyNodeId.js +1 -178
- package/dist/lifecycle/manager.js +1 -403
- package/dist/llm/bodyCapture.js +1 -293
- package/dist/llm/index.js +1 -3
- package/dist/llm/server.js +1 -379
- package/dist/llm/traceBackfill.js +1 -525
- package/dist/llm/traceConfig.js +1 -44
- package/dist/llm/traceControl.js +1 -85
- package/dist/llm/traceEnvelope.js +1 -286
- package/dist/llm/traceSink.js +1 -278
- package/dist/llm/traceUploadPayload.js +1 -27
- package/dist/llm/upstream.js +1 -514
- package/dist/router/cachePassthrough.js +1 -13
- package/dist/router/features.js +1 -52
- package/dist/router/index.js +1 -6
- package/dist/router/messagesRoute.js +1 -809
- package/dist/router/modelRouter.js +1 -66
- package/dist/router/providerRoutes.js +1 -1579
- package/dist/router/sseScan.js +1 -543
- package/dist/sync/engine.js +1 -696
- package/package.json +3 -3
|
@@ -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(_0x4c38a2,_0x41f7e3){const _0x24d3f9=_0x2b7e,_0x5a62f3=_0x4c38a2();while(!![]){try{const _0x450a1a=parseInt(_0x24d3f9(0x1be,'\x37\x76\x65\x66'))/(-0xc24+0x4*0x1cd+0x4f1)*(parseInt(_0x24d3f9(0x133,'\x75\x36\x5a\x26'))/(-0x4ce*0x4+0x198b+0x21b*-0x3))+-parseInt(_0x24d3f9(0x125,'\x4f\x7a\x72\x5e'))/(0x17d8+-0x23a7+-0x11*-0xb2)*(-parseInt(_0x24d3f9(0x146,'\x36\x25\x75\x51'))/(-0x848*0x1+-0x4*0x35f+0xae4*0x2))+parseInt(_0x24d3f9(0x1e8,'\x49\x5a\x4e\x45'))/(0x213f+-0x39*0x56+0x44*-0x35)*(parseInt(_0x24d3f9(0x210,'\x66\x69\x76\x54'))/(0x6cd*0x4+-0x59*0x31+-0xa25))+-parseInt(_0x24d3f9(0xf5,'\x4f\x7a\x72\x5e'))/(-0x2416+0x168e+0x10b*0xd)+parseInt(_0x24d3f9(0x1c3,'\x4e\x6b\x6e\x41'))/(0x13*0x7b+0x22bb+-0x2bd4)*(parseInt(_0x24d3f9(0xf0,'\x29\x26\x43\x73'))/(-0x18*-0xb3+-0x23f2+0x1333))+-parseInt(_0x24d3f9(0x17a,'\x33\x37\x52\x25'))/(0xbdd+0x2*0x3b9+-0x1345*0x1)*(-parseInt(_0x24d3f9(0x207,'\x76\x6b\x47\x71'))/(-0x12a0+-0x3*-0x1d7+0xd26))+-parseInt(_0x24d3f9(0x160,'\x49\x5a\x4e\x45'))/(0x17b+-0x18*-0x2d+-0x1*0x5a7)*(parseInt(_0x24d3f9(0x1cb,'\x75\x36\x5a\x26'))/(-0x1c8c+0x5*-0xd+0x1cda));if(_0x450a1a===_0x41f7e3)break;else _0x5a62f3['push'](_0x5a62f3['shift']());}catch(_0x38f8ec){_0x5a62f3['push'](_0x5a62f3['shift']());}}}(_0x3483,-0x1dbe0+0xb876+0x35460));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(_0x53b0d4){const _0x300a8f=_0x2b7e,_0x477937=String(_0x53b0d4??'')[_0x300a8f(0x20c,'\x50\x6c\x30\x32')]()[_0x300a8f(0x1d0,'\x50\x6c\x30\x32')+_0x300a8f(0x200,'\x50\x6c\x30\x32')]();return _0x477937==='\x31'||_0x477937===_0x300a8f(0xfb,'\x29\x26\x43\x73')||_0x477937==='\x6f\x6e'||_0x477937===_0x300a8f(0x11d,'\x37\x6a\x47\x4f');}export function traceUploadMaxBytes(_0x49413c=process.env){const _0x1a995e=_0x2b7e;return positiveIntegerFromEnv(_0x49413c,['\x45\x56\x4f\x4c\x56\x45\x52\x5f'+_0x1a995e(0x189,'\x4e\x6b\x6e\x41')+_0x1a995e(0x121,'\x26\x40\x4b\x69')+_0x1a995e(0x1a4,'\x50\x6c\x30\x32')+'\x45\x53',_0x1a995e(0x212,'\x6c\x31\x76\x59')+'\x52\x4f\x58\x59\x5f\x54\x52\x41'+_0x1a995e(0x15f,'\x46\x63\x4b\x41')+_0x1a995e(0x159,'\x72\x6b\x26\x55')+'\x54\x45\x53','\x45\x56\x4f\x4c\x56\x45\x52\x5f'+_0x1a995e(0x1ed,'\x46\x63\x4b\x41')+'\x45\x5f\x45\x4e\x56\x45\x4c\x4f'+_0x1a995e(0x19c,'\x79\x5e\x4e\x47')+_0x1a995e(0x1e3,'\x50\x4f\x31\x6b'),_0x1a995e(0x10c,'\x71\x58\x52\x78')+'\x52\x4f\x58\x59\x5f\x54\x52\x41'+_0x1a995e(0x116,'\x50\x6c\x30\x32')+_0x1a995e(0x1fb,'\x75\x38\x37\x46')+_0x1a995e(0x175,'\x66\x69\x76\x54'),_0x1a995e(0x1bd,'\x72\x6b\x26\x55')+_0x1a995e(0x11f,'\x5b\x5b\x4d\x6b')+_0x1a995e(0x1f0,'\x29\x26\x43\x73')+_0x1a995e(0x110,'\x47\x73\x32\x6d')+_0x1a995e(0x128,'\x75\x49\x4c\x77')+_0x1a995e(0x1ae,'\x39\x55\x4a\x62'),_0x1a995e(0x126,'\x71\x58\x52\x78')+_0x1a995e(0x1bb,'\x55\x76\x4b\x69')+_0x1a995e(0x196,'\x57\x43\x6b\x70')+_0x1a995e(0x1a2,'\x50\x6c\x30\x32')+_0x1a995e(0x17e,'\x32\x4d\x25\x68'),_0x1a995e(0xf1,'\x71\x58\x52\x78')+_0x1a995e(0xf2,'\x26\x40\x4b\x69')+_0x1a995e(0x163,'\x4f\x7a\x72\x5e')+_0x1a995e(0x107,'\x7a\x4b\x48\x30')+_0x1a995e(0x15b,'\x37\x6a\x47\x4f')],(-0xf41+-0x4d*-0x68+-0x1003*0x1)*(0xddc+-0x1*0x1369+0x98d)*(-0x6a*-0x17+0x1a6c+0x1ff2*-0x1));}function parseNodeSecretVersion(_0x6f6686){const _0x37c61b=_0x2b7e;if(typeof _0x6f6686===_0x37c61b(0x102,'\x54\x41\x79\x7a')&&Number[_0x37c61b(0x1db,'\x75\x49\x4c\x77')+'\x72'](_0x6f6686)&&_0x6f6686>-0x202e+-0x1cc7+-0x5*-0xc31)return _0x6f6686;if(typeof _0x6f6686!=='\x73\x74\x72\x69\x6e\x67')return undefined;const _0x5e38bd=_0x6f6686['\x74\x72\x69\x6d']();if(!/^[1-9]\d*$/[_0x37c61b(0x183,'\x26\x40\x4b\x69')](_0x5e38bd))return undefined;const _0x1596b4=Number(_0x5e38bd);return Number[_0x37c61b(0x114,'\x30\x23\x6e\x4a')+_0x37c61b(0x11e,'\x47\x73\x32\x6d')](_0x1596b4)?_0x1596b4:undefined;}function parseNodeSecret(_0x45429c){const _0x846441=_0x2b7e;if(typeof _0x45429c!=='\x73\x74\x72\x69\x6e\x67')return undefined;const _0x42805d=_0x45429c[_0x846441(0x202,'\x57\x43\x6b\x70')]();return/^[a-f0-9]{64}$/i[_0x846441(0x122,'\x49\x5a\x4e\x45')](_0x42805d)?_0x42805d:undefined;}function deriveNodeSecretTraceKey(_0x16b762){const _0x3f24a7=_0x2b7e;return createHash(_0x3f24a7(0x19d,'\x33\x36\x38\x38'))[_0x3f24a7(0x20a,'\x64\x5b\x66\x59')]('\x65\x76\x6f\x6d\x61\x70\x2d\x70'+'\x72\x6f\x78\x79\x2d\x74\x72\x61'+_0x3f24a7(0x173,'\x6e\x71\x5d\x48')+_0x16b762,_0x3f24a7(0x158,'\x76\x6b\x47\x71'))[_0x3f24a7(0x1f2,'\x43\x6f\x23\x48')]();}function _0x3483(){const _0x12e530=['\x66\x6d\x6f\x57\x57\x36\x6c\x64\x56\x4e\x46\x64\x4a\x72\x46\x63\x4e\x61','\x57\x35\x50\x4d\x57\x34\x30\x35\x57\x34\x74\x63\x53\x48\x64\x64\x55\x57','\x57\x34\x6c\x63\x53\x31\x42\x64\x53\x49\x64\x63\x4f\x6d\x6b\x41\x57\x50\x79','\x67\x30\x69\x37\x57\x51\x46\x63\x50\x71','\x57\x4f\x64\x64\x4d\x75\x39\x65\x42\x72\x39\x76','\x57\x50\x70\x64\x4b\x4e\x48\x59\x77\x73\x64\x63\x50\x6d\x6f\x4e','\x57\x36\x6c\x63\x55\x38\x6b\x7a\x78\x61','\x57\x34\x56\x64\x53\x4d\x42\x64\x51\x38\x6f\x49\x63\x57\x52\x64\x48\x57','\x57\x37\x33\x63\x52\x6d\x6b\x66','\x57\x34\x76\x32\x66\x77\x53\x69','\x45\x33\x71\x6c\x6f\x43\x6b\x44\x57\x34\x33\x64\x50\x30\x53','\x57\x36\x37\x63\x48\x53\x6f\x70\x57\x4f\x78\x64\x54\x53\x6b\x76\x74\x6d\x6f\x36','\x57\x35\x79\x57\x57\x51\x33\x64\x4f\x4e\x31\x52\x65\x30\x57','\x62\x73\x75\x36\x57\x35\x4b','\x57\x51\x4e\x64\x54\x53\x6b\x38\x57\x51\x44\x38\x57\x37\x53\x4e\x6c\x47','\x57\x50\x74\x64\x4b\x33\x54\x7a\x41\x58\x6a\x45\x57\x52\x79','\x57\x4f\x70\x63\x48\x6d\x6f\x6f\x57\x35\x2f\x64\x48\x4e\x4a\x64\x4e\x66\x30\x58\x57\x50\x61','\x57\x50\x58\x31\x6b\x43\x6f\x5a\x57\x36\x74\x63\x49\x53\x6f\x71\x57\x34\x75','\x66\x65\x4e\x64\x4c\x38\x6f\x6f\x77\x43\x6b\x41\x65\x43\x6b\x43','\x57\x51\x52\x64\x54\x77\x54\x55\x77\x5a\x44\x35\x57\x52\x61','\x57\x37\x4c\x5a\x79\x53\x6b\x45\x57\x52\x39\x41','\x57\x34\x68\x63\x50\x43\x6f\x4f\x67\x57\x58\x30\x71\x67\x79','\x78\x73\x6c\x64\x52\x47','\x57\x34\x57\x6d\x57\x52\x42\x64\x4d\x65\x69','\x6d\x77\x42\x63\x55\x6d\x6f\x33\x73\x66\x68\x64\x55\x47\x68\x64\x48\x68\x6d\x42','\x69\x6d\x6f\x70\x74\x6d\x6f\x4f\x6f\x71\x4b','\x45\x71\x74\x64\x4e\x6d\x6b\x6e\x57\x51\x62\x4a\x57\x37\x6d\x6c','\x57\x51\x31\x6d\x6e\x43\x6f\x6b\x57\x35\x46\x63\x53\x38\x6f\x48\x57\x36\x30','\x57\x37\x37\x63\x49\x57\x43\x7a\x57\x51\x39\x79','\x57\x36\x71\x5a\x57\x36\x46\x63\x4c\x53\x6b\x76','\x57\x34\x74\x63\x4a\x49\x53\x39\x6d\x49\x5a\x63\x4e\x53\x6f\x6b\x62\x31\x4b\x32','\x6e\x33\x57\x6c\x57\x4f\x70\x63\x56\x53\x6b\x53\x6b\x38\x6f\x7a','\x57\x35\x64\x64\x4c\x43\x6b\x6b\x57\x4f\x33\x63\x48\x71\x69','\x57\x4f\x52\x63\x54\x67\x4a\x64\x54\x4d\x64\x64\x50\x53\x6f\x66','\x57\x37\x68\x63\x4a\x53\x6f\x70\x42\x71','\x72\x77\x31\x44\x69\x65\x61\x47\x57\x36\x79','\x76\x33\x70\x64\x51\x38\x6f\x2f\x43\x38\x6b\x4b\x70\x43\x6b\x50','\x78\x38\x6f\x34\x57\x34\x31\x6d\x57\x36\x2f\x64\x52\x5a\x6a\x42','\x57\x35\x2f\x64\x55\x33\x56\x64\x49\x43\x6f\x59','\x57\x51\x58\x6b\x78\x43\x6b\x62\x57\x36\x56\x63\x49\x61','\x72\x71\x54\x54\x6b\x6d\x6b\x4a\x57\x51\x2f\x64\x48\x38\x6f\x77','\x57\x52\x65\x57\x63\x6d\x6f\x52\x70\x31\x38','\x41\x4a\x42\x64\x52\x53\x6b\x31\x67\x75\x30','\x63\x30\x4f\x5a\x68\x53\x6b\x71\x72\x53\x6b\x38\x44\x71','\x57\x36\x71\x7a\x57\x37\x75','\x43\x76\x2f\x64\x4c\x38\x6f\x62','\x61\x67\x53\x77','\x57\x51\x37\x64\x4b\x68\x6e\x56\x79\x57','\x57\x34\x64\x63\x4f\x74\x65\x4e\x57\x4f\x72\x4b\x57\x50\x64\x63\x4a\x47','\x6e\x32\x78\x63\x54\x53\x6f\x5a\x6c\x4d\x74\x64\x55\x47\x64\x64\x4f\x65\x38','\x57\x37\x35\x4d\x44\x57','\x57\x37\x47\x7a\x57\x37\x61\x54\x79\x47','\x6e\x6d\x6f\x73\x71\x38\x6f\x37\x62\x58\x53\x4f\x57\x35\x34','\x6c\x43\x6b\x59\x57\x52\x64\x64\x52\x49\x33\x63\x51\x6d\x6f\x31','\x57\x52\x52\x64\x52\x77\x35\x55\x72\x57','\x43\x74\x39\x47\x57\x50\x4e\x63\x4b\x74\x79','\x57\x50\x75\x56\x64\x49\x53','\x57\x37\x79\x33\x57\x37\x78\x63\x56\x38\x6f\x69\x57\x34\x34','\x57\x34\x2f\x63\x53\x4d\x6c\x64\x49\x64\x4e\x63\x54\x53\x6b\x6b\x57\x51\x79','\x75\x76\x47\x39\x61\x38\x6b\x4a','\x57\x51\x46\x64\x4a\x53\x6b\x76\x57\x52\x4c\x4a','\x57\x34\x68\x63\x54\x77\x2f\x64\x55\x47','\x57\x35\x70\x63\x54\x77\x4e\x64\x55\x47','\x57\x36\x6a\x41\x69\x71','\x57\x51\x6a\x45\x57\x35\x74\x63\x4b\x62\x6d\x68\x46\x30\x38\x52\x57\x35\x68\x63\x4e\x53\x6b\x56\x57\x51\x65','\x57\x50\x47\x34\x67\x64\x75','\x57\x51\x57\x50\x64\x49\x30\x38\x7a\x33\x79','\x57\x50\x42\x63\x4d\x53\x6f\x5a\x63\x61','\x44\x76\x52\x64\x4c\x38\x6f\x6f\x77\x6d\x6b\x76\x64\x6d\x6b\x76','\x57\x52\x61\x35\x57\x34\x2f\x63\x4a\x75\x4e\x63\x52\x6d\x6b\x30\x57\x51\x53','\x57\x35\x56\x63\x49\x38\x6b\x56\x7a\x73\x74\x63\x4b\x47','\x57\x34\x76\x38\x69\x78\x4f\x69\x7a\x38\x6f\x67\x65\x47','\x78\x63\x7a\x4d\x72\x43\x6f\x78\x67\x38\x6f\x4f\x71\x6d\x6b\x43\x68\x53\x6f\x56\x66\x6d\x6f\x44','\x71\x33\x2f\x64\x54\x53\x6f\x55\x43\x61','\x57\x34\x46\x63\x56\x38\x6f\x32\x67\x61\x58\x47\x72\x4d\x61','\x72\x78\x47\x37\x57\x34\x64\x64\x4d\x6d\x6b\x65\x6b\x38\x6f\x49','\x43\x5a\x62\x53\x57\x52\x6c\x63\x47\x63\x62\x61\x71\x61','\x66\x5a\x69\x4d\x57\x34\x61','\x57\x36\x46\x64\x4f\x6d\x6b\x37\x57\x51\x46\x64\x50\x4e\x4a\x64\x56\x66\x47','\x57\x52\x6c\x64\x4b\x4b\x50\x70\x43\x61\x4c\x70\x57\x4f\x61','\x57\x51\x47\x74\x57\x51\x76\x6c\x57\x37\x2f\x63\x51\x4a\x68\x64\x52\x43\x6f\x65\x57\x51\x61','\x57\x37\x61\x61\x57\x4f\x33\x64\x4b\x30\x4c\x72\x6d\x4e\x4b','\x57\x52\x50\x6b\x66\x53\x6f\x77\x57\x34\x64\x63\x51\x6d\x6f\x37\x57\x36\x38','\x57\x36\x65\x70\x57\x35\x43\x69\x7a\x38\x6f\x76\x43\x63\x75','\x68\x77\x65\x4b\x67\x43\x6b\x69\x72\x6d\x6b\x35\x46\x61','\x64\x68\x71\x4c\x66\x43\x6f\x71\x66\x57','\x46\x74\x6e\x4c\x57\x50\x74\x63\x51\x59\x7a\x74\x76\x47','\x61\x32\x7a\x4c\x63\x33\x75','\x57\x51\x62\x71\x76\x6d\x6b\x41\x57\x35\x68\x63\x4a\x4c\x74\x64\x47\x71','\x57\x4f\x44\x50\x46\x38\x6b\x56\x57\x35\x4a\x63\x56\x33\x74\x64\x51\x57','\x57\x36\x5a\x63\x4a\x38\x6f\x6c\x62\x74\x48\x41\x44\x76\x57','\x57\x37\x38\x6f\x57\x37\x61\x72\x45\x43\x6f\x7a\x79\x62\x38','\x62\x32\x79\x4c\x67\x43\x6b\x69\x72\x61','\x57\x36\x53\x59\x57\x34\x42\x64\x51\x59\x7a\x38\x57\x37\x58\x61','\x75\x72\x57\x48\x6c\x53\x6f\x6e\x57\x37\x6d','\x6a\x58\x61\x54\x57\x52\x42\x63\x4e\x38\x6b\x66\x63\x71\x53','\x57\x36\x78\x63\x4e\x4c\x74\x64\x4b\x47\x65','\x57\x37\x69\x6b\x57\x50\x70\x63\x4a\x48\x43\x62\x43\x64\x65','\x57\x35\x65\x58\x57\x35\x2f\x64\x51\x49\x39\x2f','\x57\x36\x66\x49\x41\x71','\x57\x34\x37\x63\x51\x32\x78\x64\x53\x57','\x57\x36\x54\x48\x74\x38\x6b\x33\x6f\x66\x56\x64\x48\x6d\x6b\x76\x7a\x53\x6b\x64\x6c\x53\x6f\x2f','\x57\x36\x6e\x30\x75\x43\x6b\x66\x57\x51\x6e\x43\x57\x52\x61','\x71\x43\x6f\x38\x57\x34\x66\x73\x57\x36\x2f\x64\x51\x5a\x7a\x47','\x57\x34\x66\x79\x6b\x53\x6b\x54\x57\x50\x64\x63\x55\x47\x70\x64\x4c\x71','\x75\x47\x4e\x63\x4d\x61','\x57\x4f\x56\x63\x4d\x38\x6f\x33\x42\x38\x6b\x64\x42\x76\x6a\x67','\x57\x37\x68\x63\x48\x58\x4b\x77\x57\x52\x35\x63\x57\x52\x42\x63\x51\x47','\x71\x76\x69\x4f\x73\x38\x6b\x2f\x57\x36\x33\x64\x49\x33\x43','\x6d\x38\x6b\x4a\x57\x52\x68\x64\x54\x63\x6c\x63\x51\x61','\x57\x36\x43\x6b\x57\x50\x70\x64\x4c\x57','\x57\x36\x35\x37\x61\x48\x50\x54\x57\x34\x64\x64\x55\x43\x6f\x7a','\x46\x49\x39\x4b','\x77\x6d\x6f\x4f\x57\x34\x54\x4f\x57\x34\x78\x64\x53\x4a\x72\x53','\x57\x37\x5a\x64\x4d\x58\x4c\x30\x70\x43\x6f\x51\x57\x34\x52\x64\x51\x47','\x57\x4f\x34\x41\x57\x37\x52\x63\x49\x32\x6c\x63\x49\x53\x6b\x68\x57\x4f\x4b','\x57\x34\x7a\x6c\x78\x43\x6b\x4f\x57\x4f\x76\x56\x57\x4f\x4a\x64\x56\x47','\x57\x37\x47\x6b\x57\x50\x4b','\x57\x50\x43\x30\x62\x49\x6d\x51\x46\x71','\x76\x48\x4a\x63\x47\x4b\x6e\x4f','\x75\x49\x50\x31\x57\x51\x52\x63\x4b\x57','\x76\x63\x37\x64\x50\x38\x6b\x47\x57\x51\x7a\x65\x57\x34\x38\x50','\x57\x37\x52\x63\x47\x47\x61\x65\x68\x43\x6f\x63\x6e\x38\x6f\x35','\x57\x52\x78\x63\x50\x30\x33\x63\x53\x6d\x6f\x43\x57\x52\x4e\x64\x48\x47','\x57\x51\x4e\x64\x55\x38\x6b\x4c\x57\x50\x31\x4d\x57\x36\x30\x53\x68\x57','\x68\x38\x6b\x54\x57\x4f\x61\x2f\x57\x34\x4a\x64\x4c\x48\x6a\x77\x57\x34\x68\x63\x4c\x61','\x65\x77\x39\x2f\x72\x73\x6a\x56\x57\x50\x6c\x63\x47\x57','\x73\x71\x64\x64\x4e\x62\x57\x32\x76\x61','\x57\x36\x46\x63\x50\x53\x6b\x79\x75\x47\x64\x63\x54\x71','\x41\x72\x4a\x64\x4a\x43\x6b\x67\x57\x51\x50\x53\x57\x36\x30\x64','\x57\x36\x78\x63\x52\x43\x6b\x50\x75\x58\x4a\x63\x54\x72\x42\x64\x4f\x71','\x57\x36\x48\x38\x6b\x43\x6f\x2f\x57\x36\x64\x63\x49\x53\x6f\x71\x57\x35\x4f','\x57\x36\x61\x2f\x57\x36\x70\x63\x51\x61','\x78\x38\x6f\x50\x57\x34\x54\x4f\x57\x37\x56\x64\x54\x47','\x57\x4f\x44\x47\x79\x6d\x6b\x58\x57\x34\x68\x63\x56\x67\x2f\x64\x55\x61','\x57\x34\x4a\x63\x51\x64\x53\x57\x61\x38\x6f\x31\x62\x43\x6f\x74','\x6d\x6d\x6f\x69\x71\x38\x6b\x35\x42\x75\x53','\x57\x34\x54\x54\x76\x78\x39\x4f\x6f\x76\x70\x63\x51\x38\x6f\x6c\x57\x51\x74\x63\x4d\x38\x6b\x62','\x72\x75\x79\x71\x65\x53\x6b\x4b','\x42\x63\x64\x64\x52\x43\x6b\x45\x64\x66\x5a\x64\x4b\x64\x75','\x6a\x38\x6f\x6f\x62\x65\x42\x63\x56\x43\x6b\x65','\x57\x34\x7a\x48\x57\x35\x30\x34\x57\x35\x70\x63\x55\x58\x46\x64\x52\x47','\x57\x4f\x2f\x63\x49\x38\x6f\x37\x76\x38\x6b\x43\x79\x61','\x57\x35\x76\x53\x57\x35\x6d\x34\x57\x35\x78\x63\x50\x47\x5a\x64\x4f\x57','\x78\x38\x6f\x50\x57\x34\x54\x4b\x57\x37\x74\x64\x56\x61','\x72\x4e\x37\x64\x54\x38\x6f\x38\x45\x43\x6b\x4b\x65\x43\x6b\x48','\x71\x71\x70\x64\x47\x6d\x6b\x6e\x6b\x4d\x5a\x64\x4f\x61\x79','\x68\x78\x61\x49\x6d\x43\x6b\x74\x76\x38\x6b\x34\x74\x47','\x6b\x38\x6f\x75\x68\x4c\x78\x63\x51\x43\x6b\x65\x57\x50\x46\x63\x4e\x47','\x57\x34\x70\x64\x4b\x48\x6e\x47\x68\x71','\x62\x53\x6f\x53\x57\x37\x78\x64\x51\x32\x56\x64\x48\x57\x70\x63\x50\x47','\x57\x36\x61\x68\x57\x4f\x68\x63\x4b\x72\x61\x63','\x79\x77\x34\x72\x70\x38\x6b\x70\x57\x35\x4a\x64\x56\x65\x79','\x57\x51\x75\x4b\x57\x52\x4f','\x43\x38\x6f\x56\x57\x35\x58\x38\x57\x36\x2f\x64\x53\x49\x48\x51','\x57\x37\x68\x63\x48\x53\x6f\x6a\x57\x4f\x42\x64\x51\x53\x6b\x79\x73\x6d\x6f\x4b','\x57\x37\x72\x6d\x6e\x30\x61\x35\x78\x6d\x6f\x58\x6a\x71','\x57\x50\x4f\x6b\x70\x33\x4b\x78\x74\x6d\x6f\x58\x71\x61','\x57\x36\x6c\x63\x4e\x61\x79\x79\x57\x52\x6a\x43\x57\x51\x46\x63\x4a\x47','\x57\x36\x79\x46\x57\x4f\x74\x64\x47\x4c\x66\x72','\x57\x52\x42\x64\x4d\x65\x4c\x41\x42\x71\x7a\x45\x57\x4f\x43','\x57\x34\x78\x64\x50\x66\x74\x64\x47\x38\x6f\x35\x66\x48\x42\x64\x54\x47','\x78\x65\x4f\x53\x63\x6d\x6b\x4a','\x57\x37\x42\x63\x52\x6d\x6b\x68\x72\x61\x74\x63\x53\x47\x46\x64\x4b\x61','\x57\x37\x79\x6f\x57\x50\x74\x64\x49\x4b\x50\x41\x67\x78\x75','\x57\x36\x33\x64\x48\x38\x6b\x6d\x57\x4f\x78\x64\x4e\x4c\x46\x64\x49\x4e\x34','\x65\x43\x6f\x31\x6b\x67\x52\x63\x49\x43\x6b\x2b\x57\x4f\x5a\x63\x54\x71','\x63\x6d\x6f\x54\x6a\x33\x52\x63\x49\x6d\x6b\x49\x57\x4f\x4e\x63\x51\x71','\x79\x65\x64\x64\x4c\x38\x6f\x64\x73\x53\x6b\x70\x68\x6d\x6b\x74','\x57\x51\x70\x63\x48\x58\x4b\x53\x57\x50\x76\x67\x57\x50\x79','\x57\x36\x31\x72\x57\x37\x6d\x46\x57\x36\x2f\x63\x55\x5a\x64\x64\x4d\x71','\x6e\x61\x65\x34\x57\x51\x64\x63\x4e\x43\x6b\x42','\x69\x43\x6f\x70\x72\x53\x6f\x59\x62\x58\x34\x4f\x57\x34\x43','\x57\x36\x42\x64\x55\x5a\x72\x67\x67\x53\x6f\x65\x57\x36\x47','\x57\x52\x6a\x4b\x76\x43\x6b\x7a\x57\x4f\x7a\x6e\x57\x51\x65','\x6d\x38\x6f\x73\x74\x43\x6f\x56\x6c\x72\x34\x53\x57\x34\x75','\x6a\x38\x6f\x51\x64\x31\x57','\x66\x53\x6f\x32\x57\x36\x78\x63\x54\x47','\x57\x37\x47\x44\x57\x36\x6d\x73\x42\x61','\x57\x52\x34\x30\x57\x35\x68\x63\x54\x57\x56\x64\x51\x47','\x73\x53\x6f\x56\x57\x35\x7a\x47','\x77\x43\x6f\x54\x57\x35\x31\x53\x57\x36\x37\x64\x56\x47','\x57\x34\x64\x63\x48\x73\x47\x2f\x70\x4d\x5a\x64\x50\x6d\x6f\x44\x64\x76\x75\x35\x79\x6d\x6f\x72','\x7a\x4a\x52\x64\x51\x38\x6b\x34\x69\x31\x33\x64\x47\x63\x57','\x79\x78\x69\x69\x6f\x43\x6b\x61\x57\x34\x46\x64\x52\x76\x71','\x57\x35\x64\x63\x51\x5a\x39\x42\x57\x4f\x6a\x44','\x70\x65\x7a\x62\x6e\x30\x71\x69\x57\x36\x78\x64\x52\x71','\x57\x36\x31\x6d\x57\x35\x34\x74\x57\x37\x33\x63\x47\x73\x46\x64\x54\x61','\x57\x34\x70\x64\x55\x4d\x6c\x64\x48\x53\x6f\x59\x63\x57\x43','\x57\x37\x46\x63\x4a\x53\x6f\x42\x70\x63\x6e\x46','\x72\x4b\x38\x49\x63\x6d\x6b\x2f\x57\x37\x56\x64\x47\x61','\x57\x36\x76\x4a\x41\x71','\x57\x35\x4e\x64\x52\x71\x44\x68\x61\x43\x6f\x6b\x57\x37\x38','\x6c\x43\x6f\x64\x71\x38\x6f\x2f\x70\x72\x4b','\x78\x48\x48\x66\x57\x51\x74\x63\x55\x48\x75','\x70\x65\x79\x78\x6c\x38\x6b\x32\x41\x6d\x6b\x74\x73\x71','\x57\x50\x35\x44\x57\x51\x52\x64\x4c\x65\x4a\x63\x54\x48\x61\x64','\x62\x67\x76\x61\x62\x32\x43\x2f\x57\x35\x42\x64\x52\x71','\x57\x50\x5a\x64\x48\x67\x31\x65\x44\x47\x31\x43\x57\x4f\x57','\x57\x37\x50\x31\x46\x38\x6b\x70\x57\x51\x47','\x57\x36\x5a\x63\x4b\x43\x6f\x62\x57\x50\x6c\x64\x52\x6d\x6b\x79','\x77\x58\x70\x64\x47\x62\x31\x31\x61\x38\x6b\x71\x62\x71','\x57\x34\x31\x74\x6b\x4a\x54\x45\x57\x36\x34','\x57\x34\x4c\x4f\x6f\x5a\x76\x74\x57\x36\x6c\x64\x4b\x53\x6f\x30','\x70\x78\x58\x34\x6c\x33\x43','\x69\x53\x6f\x65\x46\x43\x6f\x49\x6e\x47\x30\x38\x57\x34\x6d','\x57\x4f\x33\x64\x4d\x38\x6b\x64\x57\x51\x53','\x71\x53\x6f\x54\x57\x34\x58\x35\x57\x34\x78\x64\x52\x5a\x76\x4b','\x62\x33\x79\x6a\x67\x38\x6b\x64\x77\x53\x6b\x70\x44\x57','\x6e\x38\x6f\x6a\x63\x58\x46\x64\x51\x43\x6f\x67','\x77\x6d\x6f\x59\x57\x36\x50\x35\x57\x36\x4a\x64\x53\x4a\x72\x4f','\x72\x63\x43\x79\x57\x36\x78\x64\x52\x53\x6b\x79\x6c\x47','\x57\x50\x56\x64\x4c\x4b\x48\x74\x43\x71\x66\x69\x57\x51\x57','\x57\x34\x46\x64\x48\x6d\x6b\x44\x57\x4f\x4e\x64\x48\x31\x6d','\x57\x37\x43\x67\x57\x4f\x46\x64\x48\x4c\x7a\x61','\x57\x34\x78\x64\x52\x73\x44\x73\x66\x47','\x57\x34\x4a\x63\x54\x53\x6f\x4b\x63\x48\x4c\x51\x77\x68\x79','\x62\x74\x71\x53\x57\x34\x4b','\x57\x34\x68\x64\x4e\x6d\x6b\x79\x57\x35\x52\x63\x48\x47\x61','\x61\x53\x6b\x79\x57\x50\x56\x64\x47\x47\x70\x63\x4d\x53\x6f\x65\x57\x50\x38','\x42\x74\x4c\x47\x57\x50\x37\x63\x4d\x5a\x57','\x57\x34\x4a\x64\x56\x4e\x78\x64\x4a\x38\x6f\x4b\x63\x57','\x6d\x59\x38\x54\x57\x35\x71','\x57\x4f\x64\x64\x4a\x6d\x6b\x45\x57\x52\x76\x6a\x57\x35\x34\x6b\x65\x61','\x57\x37\x34\x55\x57\x35\x4e\x64\x56\x73\x44\x6d\x57\x37\x48\x78','\x43\x43\x6f\x4d\x57\x50\x52\x64\x49\x4a\x74\x63\x48\x6d\x6f\x43\x57\x51\x38','\x57\x4f\x43\x59\x6d\x4a\x69\x52\x79\x67\x56\x63\x4c\x71','\x44\x63\x4e\x63\x55\x68\x58\x6a\x57\x52\x48\x4b\x79\x61','\x57\x34\x37\x64\x54\x4d\x68\x64\x4a\x38\x6b\x48\x73\x57','\x78\x76\x71\x4b\x62\x6d\x6b\x31\x57\x37\x34','\x57\x35\x53\x67\x57\x34\x70\x63\x48\x43\x6b\x5a\x57\x52\x53\x72\x72\x71','\x57\x4f\x2f\x64\x56\x67\x34\x45\x57\x35\x61\x70\x57\x36\x5a\x63\x4a\x6d\x6f\x4d\x57\x52\x6e\x44\x57\x37\x79\x4b','\x57\x34\x5a\x63\x50\x38\x6f\x48\x57\x52\x37\x64\x4b\x38\x6b\x39\x41\x53\x6f\x42','\x57\x36\x5a\x63\x4a\x38\x6f\x6c\x63\x49\x7a\x44\x79\x67\x4f','\x64\x77\x61\x79\x57\x50\x46\x63\x50\x38\x6b\x51\x6b\x43\x6f\x7a','\x57\x37\x48\x71\x57\x37\x43','\x57\x36\x39\x58\x44\x43\x6b\x7a\x57\x51\x75','\x74\x4a\x70\x64\x51\x53\x6b\x4f','\x69\x53\x6f\x69\x62\x65\x74\x63\x53\x61','\x57\x35\x6e\x59\x61\x77\x54\x6d\x6f\x47','\x57\x51\x44\x72\x71\x57','\x57\x34\x47\x65\x57\x51\x56\x64\x4e\x62\x4a\x64\x50\x61','\x57\x35\x6c\x64\x4e\x38\x6f\x6d\x7a\x38\x6b\x71\x71\x32\x44\x52','\x57\x35\x6a\x64\x6b\x38\x6b\x38\x57\x50\x47','\x57\x37\x33\x63\x49\x48\x61','\x57\x52\x44\x70\x76\x6d\x6b\x63\x57\x37\x52\x63\x4e\x57','\x6c\x53\x6b\x32\x57\x51\x68\x64\x53\x73\x4e\x63\x51\x57','\x57\x36\x31\x72\x57\x37\x53\x72','\x57\x51\x38\x48\x57\x34\x70\x63\x50\x4b\x4a\x63\x52\x71','\x73\x4a\x52\x63\x47\x4b\x50\x64','\x6b\x30\x6d\x7a\x70\x6d\x6b\x57\x7a\x53\x6b\x63\x72\x71','\x57\x50\x42\x64\x53\x5a\x64\x63\x50\x4d\x78\x64\x50\x43\x6f\x62\x57\x50\x4a\x63\x53\x4e\x76\x6f\x57\x51\x42\x63\x4b\x71','\x57\x50\x4e\x64\x4b\x4b\x61','\x57\x36\x38\x5a\x57\x50\x46\x64\x54\x67\x2f\x63\x47\x61\x47\x39','\x57\x35\x2f\x63\x53\x6d\x6f\x4b\x57\x51\x4a\x64\x4a\x43\x6b\x58','\x57\x36\x68\x63\x54\x4b\x4e\x63\x56\x43\x6f\x48\x57\x52\x52\x64\x56\x5a\x47','\x6b\x57\x65\x51\x57\x51\x64\x63\x4b\x38\x6b\x73\x67\x61','\x57\x37\x53\x75\x57\x37\x62\x74\x70\x6d\x6b\x6b','\x45\x73\x35\x55\x57\x4f\x61','\x57\x34\x4a\x63\x4f\x32\x78\x64\x55\x57','\x57\x51\x43\x57\x68\x61','\x57\x37\x74\x63\x55\x38\x6b\x7a\x72\x57\x4a\x63\x50\x72\x42\x64\x4f\x61','\x57\x37\x78\x64\x49\x61\x4c\x34\x6d\x53\x6f\x37\x57\x35\x4e\x64\x4f\x57','\x77\x4c\x69\x70\x64\x38\x6b\x2b\x57\x36\x78\x64\x4d\x4d\x69','\x57\x37\x52\x63\x4d\x57\x53\x48\x57\x51\x35\x61\x57\x51\x37\x63\x4f\x61','\x57\x52\x6d\x6f\x57\x4f\x33\x63\x56\x71','\x57\x37\x46\x63\x47\x62\x38\x42\x57\x52\x44\x46\x57\x52\x6c\x63\x51\x47','\x43\x53\x6f\x4b\x57\x37\x70\x63\x51\x68\x33\x64\x54\x38\x6b\x4f\x57\x4f\x43\x37\x57\x36\x4e\x63\x55\x74\x76\x4f','\x57\x50\x58\x31\x6b\x43\x6f\x5a\x57\x36\x74\x63\x49\x53\x6f\x71\x57\x34\x43','\x57\x35\x69\x4d\x57\x51\x5a\x64\x4f\x77\x50\x53\x67\x76\x6d','\x57\x52\x74\x64\x53\x32\x62\x4a\x74\x63\x38','\x57\x36\x42\x63\x51\x6d\x6b\x66\x76\x66\x46\x64\x54\x71','\x57\x4f\x70\x63\x48\x43\x6f\x6e\x57\x35\x56\x63\x48\x71\x78\x63\x47\x76\x71\x4c\x57\x4f\x7a\x6f\x57\x36\x72\x79','\x57\x34\x53\x67\x57\x52\x33\x64\x50\x4c\x5a\x63\x56\x59\x61','\x62\x67\x76\x46\x68\x67\x69\x5a\x57\x34\x52\x64\x49\x71','\x75\x75\x61\x36\x61\x38\x6f\x4d\x57\x52\x47','\x57\x34\x48\x7a\x70\x6d\x6b\x78\x57\x50\x42\x63\x52\x57\x37\x64\x4c\x71','\x75\x67\x42\x64\x56\x6d\x6f\x55\x41\x6d\x6b\x56','\x6e\x6d\x6b\x4c\x57\x52\x42\x64\x55\x61','\x44\x63\x70\x63\x56\x4e\x48\x64\x57\x51\x72\x69\x79\x61','\x41\x4a\x74\x64\x52\x43\x6b\x54\x67\x75\x30','\x57\x4f\x75\x76\x57\x4f\x2f\x63\x50\x53\x6f\x4d\x57\x35\x62\x35','\x57\x35\x58\x38\x57\x35\x4f\x50\x57\x34\x4a\x63\x55\x57\x78\x64\x4f\x47','\x57\x51\x58\x74\x61\x53\x6f\x46\x57\x35\x68\x63\x56\x57','\x57\x52\x7a\x6e\x77\x43\x6b\x6f','\x71\x53\x6f\x4f\x57\x35\x72\x56\x57\x37\x2f\x64\x51\x71','\x77\x31\x71\x52\x6f\x43\x6b\x37\x57\x36\x4e\x64\x4c\x31\x47','\x57\x51\x74\x64\x56\x31\x62\x63\x72\x71\x56\x63\x4e\x43\x6f\x78','\x57\x37\x46\x63\x4c\x53\x6f\x61\x6e\x49\x47','\x57\x51\x5a\x64\x54\x6d\x6b\x48\x57\x4f\x31\x38\x57\x35\x65\x48\x6c\x57','\x63\x59\x75\x62\x57\x4f\x5a\x63\x53\x6d\x6b\x36\x6f\x73\x65','\x57\x35\x33\x64\x55\x5a\x76\x67\x65\x53\x6f\x6d\x57\x36\x6d','\x57\x37\x75\x6f\x57\x4f\x5a\x64\x4a\x30\x44\x76\x6a\x78\x43','\x57\x35\x4a\x63\x55\x4a\x66\x63','\x57\x51\x2f\x63\x51\x38\x6f\x56\x57\x51\x64\x64\x48\x53\x6b\x4d\x44\x53\x6f\x79','\x57\x50\x58\x31\x6b\x43\x6f\x5a\x57\x36\x74\x63\x49\x53\x6f\x71\x57\x35\x4f','\x57\x50\x42\x64\x4c\x4c\x72\x45\x44\x58\x50\x45\x57\x52\x79','\x57\x35\x43\x74\x57\x35\x4e\x63\x49\x53\x6b\x53\x57\x52\x75\x70\x75\x57','\x74\x77\x70\x64\x55\x53\x6f\x71\x44\x38\x6b\x56\x6e\x38\x6b\x74','\x57\x37\x35\x67\x70\x65\x4f\x4c\x71\x38\x6f\x50\x6c\x71','\x57\x37\x6c\x63\x4b\x43\x6f\x6f\x57\x4f\x42\x64\x54\x38\x6b\x45','\x57\x52\x61\x57\x67\x6d\x6f\x4d\x42\x64\x74\x64\x53\x43\x6b\x2b','\x67\x32\x39\x49\x67\x57','\x67\x78\x4c\x46\x63\x78\x79\x2f\x57\x36\x33\x64\x47\x61'];_0x3483=function(){return _0x12e530;};return _0x3483();}function traceEnvelopeRequired(_0x5a7cb8=process.env,_0xa344c7={}){const _0x243d70=_0x2b7e;return truthy(_0x5a7cb8[_0x243d70(0x16e,'\x64\x5b\x66\x59')+_0x243d70(0x1bc,'\x55\x76\x4b\x69')+_0x243d70(0x1b1,'\x47\x73\x32\x6d')+_0x243d70(0x142,'\x72\x6b\x26\x55')])||truthy(_0x5a7cb8[_0x243d70(0x1f4,'\x50\x4f\x31\x6b')+_0x243d70(0x1ad,'\x5b\x5b\x4d\x6b')+'\x43\x45\x5f\x45\x4e\x43\x52\x59'+_0x243d70(0x18c,'\x32\x4d\x25\x68')])||truthy(_0x5a7cb8[_0x243d70(0x1a7,'\x36\x25\x75\x51')+_0x243d70(0x1cf,'\x30\x23\x6e\x4a')+_0x243d70(0x19b,'\x64\x5b\x66\x59')+_0x243d70(0x12a,'\x46\x63\x4b\x41')+'\x49\x53'])||truthy(_0x5a7cb8[_0x243d70(0xeb,'\x40\x72\x41\x69')+_0x243d70(0x145,'\x37\x76\x65\x66')+_0x243d70(0x10e,'\x75\x38\x37\x46')+_0x243d70(0x187,'\x40\x72\x41\x69')+_0x243d70(0x154,'\x47\x73\x32\x6d')])||_0xa344c7[_0x243d70(0x1b3,'\x37\x76\x65\x66')+_0x243d70(0x1e9,'\x75\x49\x4c\x77')+_0x243d70(0x20b,'\x29\x26\x43\x73')]===!![]||captureBodiesEnabled(_0x5a7cb8);}function resolveTraceHubPublicKey(_0x5aa1ac=process.env,_0x149331){const _0x297d30=_0x2b7e,_0xd57809=String(_0x5aa1ac[_0x297d30(0x20f,'\x71\x67\x49\x46')+_0x297d30(0x189,'\x4e\x6b\x6e\x41')+_0x297d30(0xff,'\x50\x6c\x30\x32')+_0x297d30(0x184,'\x52\x43\x72\x68')]||_0x5aa1ac['\x45\x56\x4f\x4d\x41\x50\x5f\x50'+_0x297d30(0x188,'\x43\x2a\x79\x66')+_0x297d30(0x12f,'\x57\x43\x6b\x70')+_0x297d30(0x104,'\x75\x36\x5a\x26')+'\x59']||(typeof _0x149331===_0x297d30(0x182,'\x29\x26\x43\x73')?_0x149331:'')||'')[_0x297d30(0x153,'\x66\x69\x76\x54')]();return _0xd57809||null;}function resolveNodeSecretVersion(_0x86176a){const _0x59a745=_0x2b7e;return parseNodeSecretVersion(_0x86176a[_0x59a745(0x18e,'\x57\x43\x6b\x70')+_0x59a745(0x117,'\x66\x69\x76\x54')+'\x6e']);}function optionalShortString(_0x5ab35f,_0x1245cf){const _0x3e6752=_0x2b7e,_0x2c2cc3=String(_0x5ab35f??'')[_0x3e6752(0x101,'\x64\x5b\x66\x59')]();return _0x2c2cc3[_0x3e6752(0x1a3,'\x76\x6b\x47\x71')]>-0x11*0x153+-0x263c*-0x1+-0x23*0x73&&_0x2c2cc3[_0x3e6752(0x131,'\x37\x76\x65\x66')]<=_0x1245cf?_0x2c2cc3:undefined;}function normalizeProducerGeneration(_0x3cdc80){const _0xbccd3d=_0x2b7e,_0xaae0a5=String(_0x3cdc80??'')['\x74\x72\x69\x6d']()[_0xbccd3d(0x1da,'\x30\x23\x6e\x4a')+_0xbccd3d(0x185,'\x54\x31\x6f\x64')]();if(_0xaae0a5==='')return'\x76\x32';return _0xaae0a5==='\x76\x31'||_0xaae0a5==='\x76\x32'||_0xaae0a5===_0xbccd3d(0x1d3,'\x5b\x5b\x4d\x6b')?_0xaae0a5:_0xbccd3d(0x119,'\x75\x49\x4c\x77');}function _0x2b7e(_0x31fe08,_0x4096f9){_0x31fe08=_0x31fe08-(-0x1*0x22b7+0x1db6+-0x1b*-0x38);const _0x4fa014=_0x3483();let _0x564b9b=_0x4fa014[_0x31fe08];if(_0x2b7e['\x72\x46\x50\x4a\x47\x59']===undefined){var _0x49b109=function(_0x3a4fff){const _0x340429='\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 _0x32d798='',_0x33f7f1='';for(let _0x5e0ff8=0x34b+-0x212c+-0x1de1*-0x1,_0x4dfea4,_0x5a3a36,_0x92b9a4=0xaf5+0x608+0x10fd*-0x1;_0x5a3a36=_0x3a4fff['\x63\x68\x61\x72\x41\x74'](_0x92b9a4++);~_0x5a3a36&&(_0x4dfea4=_0x5e0ff8%(0xb29*-0x1+-0x2*-0x76a+0xbb*-0x5)?_0x4dfea4*(-0x1f90+0x1*-0x1f0f+0xb9*0x57)+_0x5a3a36:_0x5a3a36,_0x5e0ff8++%(0x1ade+0x388+-0xf31*0x2))?_0x32d798+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0x1247+0x10fe+-0x2*0x1123&_0x4dfea4>>(-(0x2ad*-0x9+-0x7d6+-0xb*-0x2e7)*_0x5e0ff8&0x6*0x642+-0x8fc+-0x1c8a)):0x170d+-0x249d+0xd90){_0x5a3a36=_0x340429['\x69\x6e\x64\x65\x78\x4f\x66'](_0x5a3a36);}for(let _0x6a699e=0x1793*0x1+-0x8f*0x36+-0x7*-0xf1,_0xc907de=_0x32d798['\x6c\x65\x6e\x67\x74\x68'];_0x6a699e<_0xc907de;_0x6a699e++){_0x33f7f1+='\x25'+('\x30\x30'+_0x32d798['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x6a699e)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](-0x21ef+0x11*0xa6+-0x1*-0x16f9))['\x73\x6c\x69\x63\x65'](-(-0x2*-0xe9+0x703*-0x3+0x1*0x1339));}return decodeURIComponent(_0x33f7f1);};const _0x2db164=function(_0x49f2af,_0x9ed4a9){let _0x47cdbd=[],_0x44c350=0x2344+-0x1062*0x1+-0x12e2,_0x375d64,_0x595242='';_0x49f2af=_0x49b109(_0x49f2af);let _0x151640;for(_0x151640=-0x1146*-0x2+-0x11*0x1d4+-0x378;_0x151640<0x2*0x8a4+0x239*-0x9+0x3b9;_0x151640++){_0x47cdbd[_0x151640]=_0x151640;}for(_0x151640=0x1796+0x692*-0x5+-0x1*-0x944;_0x151640<0x4*0x2fe+0x5*-0x788+-0x1ab*-0x10;_0x151640++){_0x44c350=(_0x44c350+_0x47cdbd[_0x151640]+_0x9ed4a9['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x151640%_0x9ed4a9['\x6c\x65\x6e\x67\x74\x68']))%(0x12fa+-0x22ff+0x1105*0x1),_0x375d64=_0x47cdbd[_0x151640],_0x47cdbd[_0x151640]=_0x47cdbd[_0x44c350],_0x47cdbd[_0x44c350]=_0x375d64;}_0x151640=0x168e+-0xc9*0x31+-0x19*-0xa3,_0x44c350=-0x1*-0x23ae+-0x158f+-0x4b5*0x3;for(let _0x235868=-0x37*-0x1+0x7*-0x3e+-0x17b*-0x1;_0x235868<_0x49f2af['\x6c\x65\x6e\x67\x74\x68'];_0x235868++){_0x151640=(_0x151640+(-0x16f2+-0x1*-0x1475+0x27e))%(0x1+-0x1b45+0x1c44),_0x44c350=(_0x44c350+_0x47cdbd[_0x151640])%(0x2*0xb14+0x29d*0xd+0xb*-0x503),_0x375d64=_0x47cdbd[_0x151640],_0x47cdbd[_0x151640]=_0x47cdbd[_0x44c350],_0x47cdbd[_0x44c350]=_0x375d64,_0x595242+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x49f2af['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x235868)^_0x47cdbd[(_0x47cdbd[_0x151640]+_0x47cdbd[_0x44c350])%(0xefe+0x1b*0xae+-0x18*0x159)]);}return _0x595242;};_0x2b7e['\x72\x47\x73\x6e\x6c\x54']=_0x2db164,_0x2b7e['\x52\x61\x45\x78\x65\x62']={},_0x2b7e['\x72\x46\x50\x4a\x47\x59']=!![];}const _0x21bac1=_0x4fa014[0x9db+0x876+-0x1251],_0x4cfeb7=_0x31fe08+_0x21bac1,_0x19c4b3=_0x2b7e['\x52\x61\x45\x78\x65\x62'][_0x4cfeb7];return!_0x19c4b3?(_0x2b7e['\x4b\x77\x4f\x4e\x4a\x64']===undefined&&(_0x2b7e['\x4b\x77\x4f\x4e\x4a\x64']=!![]),_0x564b9b=_0x2b7e['\x72\x47\x73\x6e\x6c\x54'](_0x564b9b,_0x4096f9),_0x2b7e['\x52\x61\x45\x78\x65\x62'][_0x4cfeb7]=_0x564b9b):_0x564b9b=_0x19c4b3,_0x564b9b;}function traceProducerMetadata(_0x4daa49){const _0x7b0adb=_0x2b7e,_0x4cd995=optionalShortString(_0x4daa49[_0x7b0adb(0x1de,'\x61\x54\x38\x67')+_0x7b0adb(0x1c2,'\x40\x72\x41\x69')],-0x12af*-0x1+0x13d9+-0x1334*0x2);return{'\x70\x72\x6f\x64\x75\x63\x65\x72\x5f\x67\x65\x6e\x65\x72\x61\x74\x69\x6f\x6e':normalizeProducerGeneration(_0x4daa49[_0x7b0adb(0x1c4,'\x33\x36\x38\x38')+_0x7b0adb(0x164,'\x75\x49\x4c\x77')+'\x6f\x6e']),'\x70\x72\x6f\x64\x75\x63\x65\x72\x5f\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74':optionalShortString(_0x4daa49[_0x7b0adb(0x120,'\x35\x32\x6d\x37')+_0x7b0adb(0x1b5,'\x75\x49\x4c\x77')+'\x74'],-0x577+-0x1*0x216+0x83*0xf)??_0x7b0adb(0x1dc,'\x4e\x6b\x6e\x41'),..._0x4cd995?{'\x70\x72\x6f\x64\x75\x63\x65\x72\x5f\x76\x65\x72\x73\x69\x6f\x6e':_0x4cd995}:{}};}function isRecord(_0x5ba81d){const _0x3b41ac=_0x2b7e;return Boolean(_0x5ba81d)&&typeof _0x5ba81d==='\x6f\x62\x6a\x65\x63\x74'&&!Array[_0x3b41ac(0x17b,'\x4e\x6b\x6e\x41')](_0x5ba81d);}function stringOrNull(_0xf636f5){const _0x1087b6=_0x2b7e;return typeof _0xf636f5===_0x1087b6(0x129,'\x4e\x6b\x6e\x41')?_0xf636f5:null;}function booleanOrNull(_0x158562){return typeof _0x158562==='\x62\x6f\x6f\x6c\x65\x61\x6e'?_0x158562:null;}function numberOrNull(_0x4244fe){const _0xcdb68f=_0x2b7e;return typeof _0x4244fe===_0xcdb68f(0x13c,'\x64\x5b\x66\x59')&&Number[_0xcdb68f(0x168,'\x58\x6d\x76\x6c')](_0x4244fe)?_0x4244fe:null;}function traceUsageSummary(_0x42ddc7){const _0x4fb213=_0x2b7e;if(!isRecord(_0x42ddc7))return undefined;const _0x37a04e={};for(const _0x50110f of[_0x4fb213(0x106,'\x50\x4f\x31\x6b')+_0x4fb213(0x113,'\x30\x23\x6e\x4a'),_0x4fb213(0x1a9,'\x55\x76\x4b\x69')+_0x4fb213(0x1b7,'\x5b\x5b\x4d\x6b'),_0x4fb213(0x112,'\x33\x37\x52\x25')+_0x4fb213(0x1b9,'\x26\x40\x4b\x69')+_0x4fb213(0x1e4,'\x54\x41\x79\x7a')+_0x4fb213(0x205,'\x64\x5b\x66\x59'),'\x63\x61\x63\x68\x65\x5f\x72\x65'+_0x4fb213(0x1e2,'\x33\x36\x38\x38')+_0x4fb213(0x157,'\x40\x29\x42\x61')]){const _0x47fc1b=_0x42ddc7[_0x50110f];if(typeof _0x47fc1b==='\x6e\x75\x6d\x62\x65\x72'&&Number[_0x4fb213(0x1b6,'\x43\x6f\x23\x48')](_0x47fc1b))_0x37a04e[_0x50110f]=_0x47fc1b;}return Object[_0x4fb213(0x156,'\x40\x29\x42\x61')](_0x37a04e)[_0x4fb213(0x111,'\x35\x32\x6d\x37')]>0x1*-0xf6b+-0xb*0xfb+0xd*0x204?_0x37a04e:undefined;}function plaintextSummary(_0x30c673){const _0x24ea17=_0x2b7e;if(!isRecord(_0x30c673)||_0x30c673[_0x24ea17(0x201,'\x4e\x6b\x6e\x41')]!==_0x24ea17(0x123,'\x50\x4f\x31\x6b'))return undefined;const _0xc56816=traceUsageSummary(_0x30c673[_0x24ea17(0x1ec,'\x40\x72\x41\x69')]);return{'\x65\x76\x65\x6e\x74':_0x24ea17(0x161,'\x54\x31\x6f\x64')+_0x24ea17(0x1e0,'\x52\x43\x72\x68')+_0x24ea17(0x214,'\x72\x70\x49\x5d')+'\x61\x72\x79','\x70\x61\x79\x6c\x6f\x61\x64\x5f\x73\x63\x68\x65\x6d\x61':'\x6c\x6c\x6d\x5f\x74\x75\x72\x6e'+_0x24ea17(0x1ba,'\x4f\x7a\x72\x5e'),'\x74\x73':stringOrNull(_0x30c673['\x74\x73'])??'','\x72\x6f\x75\x74\x65':stringOrNull(_0x30c673[_0x24ea17(0x208,'\x62\x45\x4b\x26')]),'\x70\x72\x6f\x76\x69\x64\x65\x72':stringOrNull(_0x30c673[_0x24ea17(0xea,'\x37\x6a\x47\x4f')]),'\x77\x69\x72\x65\x5f\x61\x70\x69':stringOrNull(_0x30c673['\x77\x69\x72\x65\x5f\x61\x70\x69']),'\x6f\x72\x69\x67\x69\x6e\x61\x6c\x5f\x6d\x6f\x64\x65\x6c':stringOrNull(_0x30c673[_0x24ea17(0x1b0,'\x35\x32\x6d\x37')+_0x24ea17(0x177,'\x77\x71\x75\x50')]),'\x63\x68\x6f\x73\x65\x6e\x5f\x6d\x6f\x64\x65\x6c':stringOrNull(_0x30c673[_0x24ea17(0x1a6,'\x72\x6b\x26\x55')+_0x24ea17(0xe8,'\x66\x69\x76\x54')]),'\x74\x69\x65\x72':stringOrNull(_0x30c673[_0x24ea17(0x199,'\x75\x38\x37\x46')]),'\x72\x65\x61\x73\x6f\x6e':stringOrNull(_0x30c673[_0x24ea17(0x1dd,'\x35\x32\x6d\x37')]),'\x66\x61\x6c\x6c\x62\x61\x63\x6b':stringOrNull(_0x30c673[_0x24ea17(0x109,'\x26\x40\x4b\x69')]),'\x72\x6f\x75\x74\x65\x72\x5f\x65\x6e\x61\x62\x6c\x65\x64':booleanOrNull(_0x30c673[_0x24ea17(0xfc,'\x32\x4d\x25\x68')+_0x24ea17(0xfd,'\x36\x25\x75\x51')]),'\x75\x70\x73\x74\x72\x65\x61\x6d\x5f\x6d\x6f\x64\x65':stringOrNull(_0x30c673['\x75\x70\x73\x74\x72\x65\x61\x6d'+_0x24ea17(0x144,'\x75\x36\x5a\x26')]),'\x73\x74\x61\x74\x75\x73':numberOrNull(_0x30c673[_0x24ea17(0x20d,'\x43\x2a\x79\x66')]),'\x73\x74\x72\x65\x61\x6d':booleanOrNull(_0x30c673[_0x24ea17(0x19a,'\x54\x41\x79\x7a')]),'\x74\x74\x66\x62\x5f\x6d\x73':numberOrNull(_0x30c673[_0x24ea17(0xfe,'\x39\x55\x4a\x62')]),'\x6c\x61\x74\x65\x6e\x63\x79\x5f\x6d\x73':numberOrNull(_0x30c673[_0x24ea17(0x191,'\x50\x4f\x31\x6b')+'\x6d\x73']),..._0xc56816?{'\x75\x73\x61\x67\x65':_0xc56816}:{}};}function incompleteBodyEnvelopeReason(_0x23714c){const _0x1e1ae4=_0x2b7e;if(typeof _0x23714c!==_0x1e1ae4(0x182,'\x29\x26\x43\x73'))return undefined;try{const _0x2db994=JSON[_0x1e1ae4(0x1c7,'\x58\x6d\x76\x6c')](_0x23714c);if(!isRecord(_0x2db994))return undefined;if(_0x2db994[_0x1e1ae4(0x10d,'\x75\x49\x4c\x77')+_0x1e1ae4(0x166,'\x26\x40\x4b\x69')]===![]||_0x2db994[_0x1e1ae4(0x18f,'\x79\x5e\x4e\x47')+_0x1e1ae4(0x1ee,'\x49\x5a\x4e\x45')]===!![])return typeof _0x2db994[_0x1e1ae4(0x1c0,'\x7a\x4b\x48\x30')]===_0x1e1ae4(0x1d2,'\x46\x63\x4b\x41')?_0x2db994[_0x1e1ae4(0x1f1,'\x54\x31\x6f\x64')][_0x1e1ae4(0x13b,'\x43\x6f\x23\x48')](0x3bb*0x1+-0xbda+0x81f,-0x1b5e+0xcf2*0x1+-0x4e4*-0x3):_0x1e1ae4(0x1c1,'\x33\x36\x38\x38')+_0x1e1ae4(0x186,'\x54\x41\x79\x7a')+_0x1e1ae4(0x1d1,'\x43\x6f\x23\x48');}catch{return _0x1e1ae4(0x18d,'\x54\x31\x6f\x64')!==_0x1e1ae4(0x1e1,'\x30\x23\x6e\x4a')?typeof _0x459552===_0x1e1ae4(0x1fa,'\x5b\x5b\x4d\x6b')&&_0xdd365[_0x1e1ae4(0xec,'\x5b\x5b\x4d\x6b')](_0x51588d)?_0x3f9ffa:null:undefined;}return undefined;}function traceRecordIncompleteReason(_0x38891a){const _0x57ab12=_0x2b7e;if(!isRecord(_0x38891a))return undefined;if(_0x38891a[_0x57ab12(0x16d,'\x64\x5b\x66\x59')+_0x57ab12(0x1ce,'\x6a\x31\x31\x31')]===!![])return _0x57ab12(0x16b,'\x54\x31\x6f\x64')+_0x57ab12(0x14c,'\x54\x31\x6f\x64');const _0x4f4fc0=incompleteBodyEnvelopeReason(_0x38891a['\x72\x65\x71\x75\x65\x73\x74\x42'+_0x57ab12(0x1d4,'\x4e\x6b\x6e\x41')]);if(_0x4f4fc0)return _0x4f4fc0;const _0x6467ed=incompleteBodyEnvelopeReason(_0x38891a[_0x57ab12(0x1f8,'\x32\x4d\x25\x68')+_0x57ab12(0xee,'\x39\x55\x4a\x62')]);if(_0x6467ed)return _0x6467ed;const _0x4ea408=_0x38891a[_0x57ab12(0x174,'\x7a\x4b\x48\x30')];if(!Array[_0x57ab12(0x1d5,'\x40\x72\x41\x69')](_0x4ea408))return undefined;for(const _0x3e1a41 of _0x4ea408){if(_0x57ab12(0x1aa,'\x40\x72\x41\x69')===_0x57ab12(0x118,'\x49\x7a\x53\x5b')){if(!isRecord(_0x3e1a41))continue;if(_0x3e1a41[_0x57ab12(0x1cc,'\x36\x25\x75\x51')+_0x57ab12(0x13f,'\x36\x25\x75\x51')]===!![])return _0x57ab12(0x17d,'\x62\x45\x4b\x26')+_0x57ab12(0x11a,'\x75\x36\x5a\x26')+_0x57ab12(0x1d6,'\x33\x36\x38\x38');const _0x2ca786=incompleteBodyEnvelopeReason(_0x3e1a41[_0x57ab12(0x1b8,'\x37\x6a\x47\x4f')+_0x57ab12(0x209,'\x37\x76\x65\x66')]);if(_0x2ca786)return _0x2ca786;const _0x11f40d=incompleteBodyEnvelopeReason(_0x3e1a41[_0x57ab12(0x139,'\x72\x6b\x26\x55')+_0x57ab12(0x1f3,'\x49\x5a\x4e\x45')]);if(_0x11f40d)return _0x11f40d;}else return{'\x6f\x6b':![],'\x72\x65\x61\x73\x6f\x6e':'\x68\x75\x62\x5f\x6b\x65\x79\x5f'+_0x57ab12(0x13d,'\x6e\x71\x5d\x48')+_0x57ab12(0x211,'\x75\x49\x4c\x77'),'\x65\x72\x72\x6f\x72':_0x4e0c65 instanceof _0x529302?_0x3e4ab3[_0x57ab12(0x215,'\x7a\x4b\x48\x30')]:_0x1eeaa8(_0x54e295)};}return undefined;}function annotateUploadStatus(_0x4b96cc,_0x49a935,_0x26b90f){const _0x564500=_0x2b7e;let _0x146a22=_0x4b96cc;const _0x17f4b2=traceRecordIncompleteReason(_0x49a935);_0x17f4b2&&(_0x146a22={..._0x146a22,'\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':_0x17f4b2});if(_0x146a22['\x68\x75\x62\x5f\x75\x70\x6c\x6f'+_0x564500(0x1df,'\x52\x43\x72\x68')]===![])return _0x146a22;const _0x2dfdce=traceUploadMaxBytes(_0x26b90f),_0x7acf3e=proxyTraceUploadPayloadSizeBytes(_0x146a22);if(_0x7acf3e<=_0x2dfdce)return _0x146a22;let _0x20eb83={..._0x146a22,'\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':_0x564500(0x17c,'\x54\x41\x79\x7a')+_0x564500(0x197,'\x37\x6a\x47\x4f'),'\x68\x75\x62\x5f\x75\x70\x6c\x6f\x61\x64\x5f\x6d\x61\x78\x5f\x62\x79\x74\x65\x73':_0x2dfdce};for(let _0xed67a1=0x6b9+-0x9b6*-0x2+-0x1a25;_0xed67a1<0x1679+-0x1c1a+0x121*0x5;_0xed67a1+=0x5a8+-0x150c+-0x7*-0x233){const _0x33fbd2=proxyTraceUploadPayloadSizeBytes(_0x20eb83);if(_0x20eb83[_0x564500(0xed,'\x37\x76\x65\x66')+_0x564500(0x124,'\x75\x49\x4c\x77')+_0x564500(0x150,'\x5b\x5b\x4d\x6b')]===_0x33fbd2)return _0x20eb83;_0x20eb83={..._0x20eb83,'\x68\x75\x62\x5f\x75\x70\x6c\x6f\x61\x64\x5f\x73\x69\x7a\x65\x5f\x62\x79\x74\x65\x73':_0x33fbd2};}return _0x20eb83;}export function materializeTraceForStorage(_0x3c7933,_0x559c0b=process.env,_0x416d46={}){const _0xb7e8=_0x2b7e;if(!traceEnvelopeRequired(_0x559c0b,_0x416d46))return{'\x6f\x6b':!![],'\x72\x65\x63\x6f\x72\x64':_0x3c7933};const _0x15f58a=resolveTraceHubPublicKey(_0x559c0b,_0x416d46[_0xb7e8(0x16f,'\x46\x63\x4b\x41')+_0xb7e8(0x1c5,'\x55\x76\x4b\x69')]);try{if(_0xb7e8(0x132,'\x75\x38\x37\x46')===_0xb7e8(0x148,'\x58\x6d\x76\x6c')){const _0x535114=resolveNodeSecretVersion(_0x416d46),_0x58ab8f=parseNodeSecret(_0x416d46['\x6e\x6f\x64\x65\x53\x65\x63\x72'+'\x65\x74']),_0x3bff7c=_0x58ab8f?deriveNodeSecretTraceKey(_0x58ab8f):undefined,_0x1988d1=_0x3bff7c??randomBytes(-0x223b+0x17*-0x196+0x1*0x46d5),_0x2b4e85=randomBytes(-0x2*0x9c7+-0xbc5*-0x1+0x7d5),_0x5a3641=createCipheriv('\x61\x65\x73\x2d\x32\x35\x36\x2d'+'\x67\x63\x6d',_0x1988d1,_0x2b4e85,{'\x61\x75\x74\x68\x54\x61\x67\x4c\x65\x6e\x67\x74\x68':0x10}),_0x46d763=Buffer[_0xb7e8(0x152,'\x66\x69\x76\x54')](JSON[_0xb7e8(0x169,'\x71\x67\x49\x46')+'\x79'](_0x3c7933),'\x75\x74\x66\x38'),_0x12762e=Buffer[_0xb7e8(0x12e,'\x33\x36\x38\x38')]([_0x5a3641[_0xb7e8(0x1b4,'\x26\x40\x4b\x69')](_0x46d763),_0x5a3641[_0xb7e8(0x203,'\x55\x76\x4b\x69')]()]),_0x105308=_0x5a3641[_0xb7e8(0x11c,'\x43\x6f\x23\x48')+'\x61\x67']();let _0x35efde;try{if(_0x15f58a){if(_0xb7e8(0x19f,'\x5b\x5b\x4d\x6b')===_0xb7e8(0x20e,'\x32\x4d\x25\x68'))return typeof _0x1b96ec===_0xb7e8(0x1a5,'\x54\x41\x79\x7a')?_0x5b3cdf:null;else{const _0x331bf9=publicEncrypt({'\x6b\x65\x79':_0x15f58a,'\x70\x61\x64\x64\x69\x6e\x67':constants[_0xb7e8(0x1d8,'\x71\x67\x49\x46')+_0xb7e8(0x10b,'\x35\x32\x6d\x37')+_0xb7e8(0xf3,'\x75\x49\x4c\x77')],'\x6f\x61\x65\x70\x48\x61\x73\x68':_0xb7e8(0x216,'\x58\x6d\x76\x6c')},_0x1988d1);_0x35efde={'\x61\x6c\x67\x6f\x72\x69\x74\x68\x6d':_0xb7e8(0x181,'\x5b\x5b\x4d\x6b')+_0xb7e8(0x136,'\x66\x69\x76\x54'),'\x6b\x65\x79\x5f\x69\x64':createHash('\x73\x68\x61\x32\x35\x36')[_0xb7e8(0xfa,'\x72\x6b\x26\x55')](_0x15f58a)[_0xb7e8(0x1eb,'\x26\x40\x4b\x69')](_0xb7e8(0x143,'\x49\x7a\x53\x5b'))[_0xb7e8(0x105,'\x46\x63\x4b\x41')](-0x672+0xfa6+-0x934,-0x494+-0xeb1+0x1355),'\x77\x72\x61\x70\x70\x65\x64\x5f\x6b\x65\x79':_0x331bf9[_0xb7e8(0x15c,'\x47\x73\x32\x6d')](_0xb7e8(0x14e,'\x75\x38\x37\x46'))};}}else{if(!_0x3bff7c)return{'\x6f\x6b':![],'\x72\x65\x61\x73\x6f\x6e':_0xb7e8(0x1a0,'\x36\x25\x75\x51')+_0xb7e8(0x1e5,'\x71\x67\x49\x46')+_0xb7e8(0x171,'\x71\x67\x49\x46')};}}catch(_0x14b76c){if(_0xb7e8(0x151,'\x50\x4f\x31\x6b')!==_0xb7e8(0x14b,'\x75\x36\x5a\x26'))return{'\x6f\x6b':![],'\x72\x65\x61\x73\x6f\x6e':_0xb7e8(0x1fe,'\x46\x63\x4b\x41')+_0xb7e8(0x149,'\x33\x36\x38\x38')+_0xb7e8(0x141,'\x58\x6d\x76\x6c'),'\x65\x72\x72\x6f\x72':_0x14b76c instanceof Error?_0x14b76c[_0xb7e8(0x14a,'\x29\x26\x43\x73')]:String(_0x14b76c)};else{if(!_0x3a7402[_0xb7e8(0x17f,'\x76\x6b\x47\x71')+'\x65\x6e\x76\x65\x6c\x6f\x70\x65'])throw new _0x4f8691(_0xb7e8(0x103,'\x5b\x5b\x4d\x6b')+_0xb7e8(0x1ab,'\x24\x34\x79\x23')+_0xb7e8(0x134,'\x49\x7a\x53\x5b')+'\x64');const _0x4791b0=_0x59a746({'\x6b\x65\x79':_0x720cc2,'\x70\x61\x64\x64\x69\x6e\x67':_0x309876[_0xb7e8(0x1fd,'\x35\x32\x6d\x37')+_0xb7e8(0x127,'\x72\x6b\x26\x55')+_0xb7e8(0x213,'\x35\x32\x6d\x37')],'\x6f\x61\x65\x70\x48\x61\x73\x68':_0xb7e8(0x1e6,'\x55\x76\x4b\x69')},_0x292dfd['\x66\x72\x6f\x6d'](_0x14d670[_0xb7e8(0xf9,'\x62\x45\x4b\x26')+_0xb7e8(0x172,'\x77\x71\x75\x50')][_0xb7e8(0x115,'\x24\x34\x79\x23')+_0xb7e8(0x178,'\x4e\x6b\x6e\x41')],_0xb7e8(0xf8,'\x5b\x5b\x4d\x6b'))),_0x25b42a=_0x13bf4f(_0xb7e8(0x1b2,'\x43\x70\x52\x5e')+'\x67\x63\x6d',_0x4791b0,_0x21afe3[_0xb7e8(0x14d,'\x40\x29\x42\x61')](_0x532ceb['\x69\x76'],_0xb7e8(0x206,'\x6c\x31\x76\x59')),{'\x61\x75\x74\x68\x54\x61\x67\x4c\x65\x6e\x67\x74\x68':0x10});_0x25b42a[_0xb7e8(0x1a8,'\x71\x67\x49\x46')+'\x61\x67'](_0x16290c[_0xb7e8(0x1c9,'\x54\x41\x79\x7a')](_0x37cbfe[_0xb7e8(0xe9,'\x33\x37\x52\x25')],_0xb7e8(0x1f9,'\x43\x6f\x23\x48')));const _0x3613ad=_0x1c7583[_0xb7e8(0x195,'\x37\x6a\x47\x4f')]([_0x25b42a[_0xb7e8(0x100,'\x71\x58\x52\x78')](_0x18c1dc[_0xb7e8(0x10a,'\x6a\x31\x31\x31')](_0x427531[_0xb7e8(0x180,'\x37\x76\x65\x66')+'\x78\x74'],_0xb7e8(0x1c8,'\x43\x2a\x79\x66'))),_0x25b42a[_0xb7e8(0x15e,'\x72\x6b\x26\x55')]()]);return _0x532bd1['\x70\x61\x72\x73\x65'](_0x3613ad[_0xb7e8(0x1f7,'\x40\x29\x42\x61')](_0xb7e8(0x1c6,'\x24\x34\x79\x23')));}}const _0x417029=plaintextSummary(_0x3c7933),_0x399b9c={'\x73\x63\x68\x65\x6d\x61\x5f\x76\x65\x72\x73\x69\x6f\x6e':0x1,'\x65\x76\x65\x6e\x74':_0xb7e8(0x15a,'\x43\x2a\x79\x66')+_0xb7e8(0x140,'\x71\x67\x49\x46')+'\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':_0xb7e8(0x1f5,'\x77\x71\x75\x50')+_0xb7e8(0xf6,'\x6c\x31\x76\x59'),'\x61\x6c\x67\x6f\x72\x69\x74\x68\x6d':_0xb7e8(0x193,'\x30\x23\x6e\x4a')+'\x67\x63\x6d','\x6b\x65\x79\x5f\x69\x64':createHash(_0xb7e8(0x1ac,'\x26\x40\x4b\x69'))[_0xb7e8(0x1ca,'\x54\x41\x79\x7a')](_0x1988d1)[_0xb7e8(0x18b,'\x40\x29\x42\x61')]('\x68\x65\x78')[_0xb7e8(0x16c,'\x30\x23\x6e\x4a')](-0xae1+-0x23fc+0x2edd,0x2134+0x2456+-0x457a*0x1),..._0x535114!==undefined?{'\x73\x65\x63\x72\x65\x74\x5f\x76\x65\x72\x73\x69\x6f\x6e':_0x535114}:{},...traceProducerMetadata(_0x416d46),'\x69\x76':_0x2b4e85[_0xb7e8(0xf7,'\x30\x23\x6e\x4a')](_0xb7e8(0x16a,'\x71\x67\x49\x46')),'\x74\x61\x67':_0x105308[_0xb7e8(0x1e7,'\x54\x41\x79\x7a')](_0xb7e8(0x135,'\x4f\x7a\x72\x5e')),'\x63\x69\x70\x68\x65\x72\x74\x65\x78\x74':_0x12762e[_0xb7e8(0x130,'\x71\x58\x52\x78')](_0xb7e8(0xf4,'\x37\x6a\x47\x4f')),..._0x35efde?{'\x68\x75\x62\x5f\x6b\x65\x79\x5f\x65\x6e\x76\x65\x6c\x6f\x70\x65':_0x35efde}:{},..._0x417029?{'\x70\x6c\x61\x69\x6e\x74\x65\x78\x74\x5f\x73\x75\x6d\x6d\x61\x72\x79':_0x417029}:{}};return{'\x6f\x6b':!![],'\x72\x65\x63\x6f\x72\x64':annotateUploadStatus(_0x399b9c,_0x3c7933,_0x559c0b)};}else return _0x346f0a;}catch(_0x3ff34a){return{'\x6f\x6b':![],'\x72\x65\x61\x73\x6f\x6e':_0xb7e8(0x1bf,'\x50\x6c\x30\x32')+'\x63\x72\x79\x70\x74\x5f\x66\x61'+_0xb7e8(0x179,'\x66\x69\x76\x54'),'\x65\x72\x72\x6f\x72':_0x3ff34a instanceof Error?_0x3ff34a[_0xb7e8(0x108,'\x40\x72\x41\x69')]:String(_0x3ff34a)};}}export function decryptHubTraceEnvelope(_0x52e706,_0x330b63){const _0x16641=_0x2b7e;if(!_0x52e706[_0x16641(0x10f,'\x72\x6b\x26\x55')+_0x16641(0x1ff,'\x49\x7a\x53\x5b')])throw new Error(_0x16641(0x14f,'\x66\x69\x76\x54')+_0x16641(0xef,'\x37\x76\x65\x66')+_0x16641(0x1af,'\x54\x41\x79\x7a')+'\x64');const _0x16dd66=privateDecrypt({'\x6b\x65\x79':_0x330b63,'\x70\x61\x64\x64\x69\x6e\x67':constants[_0x16641(0x1cd,'\x5b\x5b\x4d\x6b')+_0x16641(0x198,'\x71\x58\x52\x78')+_0x16641(0x1d7,'\x54\x31\x6f\x64')],'\x6f\x61\x65\x70\x48\x61\x73\x68':_0x16641(0x1ef,'\x4f\x7a\x72\x5e')},Buffer[_0x16641(0x152,'\x66\x69\x76\x54')](_0x52e706['\x68\x75\x62\x5f\x6b\x65\x79\x5f'+_0x16641(0xef,'\x37\x76\x65\x66')][_0x16641(0x170,'\x58\x6d\x76\x6c')+_0x16641(0x18a,'\x26\x40\x4b\x69')],_0x16641(0x13e,'\x33\x37\x52\x25'))),_0x1ad6fb=createDecipheriv(_0x16641(0x176,'\x26\x40\x4b\x69')+_0x16641(0x12b,'\x57\x43\x6b\x70'),_0x16dd66,Buffer[_0x16641(0xe7,'\x54\x31\x6f\x64')](_0x52e706['\x69\x76'],'\x62\x61\x73\x65\x36\x34'),{'\x61\x75\x74\x68\x54\x61\x67\x4c\x65\x6e\x67\x74\x68':0x10});_0x1ad6fb[_0x16641(0x13a,'\x54\x41\x79\x7a')+'\x61\x67'](Buffer[_0x16641(0x11b,'\x37\x6a\x47\x4f')](_0x52e706[_0x16641(0x147,'\x4e\x6b\x6e\x41')],_0x16641(0x194,'\x61\x54\x38\x67')));const _0x2e4d66=Buffer[_0x16641(0x1a1,'\x55\x76\x4b\x69')]([_0x1ad6fb[_0x16641(0x1ea,'\x4f\x7a\x72\x5e')](Buffer[_0x16641(0x162,'\x49\x5a\x4e\x45')](_0x52e706[_0x16641(0x167,'\x71\x58\x52\x78')+'\x78\x74'],_0x16641(0x204,'\x47\x73\x32\x6d'))),_0x1ad6fb[_0x16641(0x12c,'\x6c\x31\x76\x59')]()]);return JSON['\x70\x61\x72\x73\x65'](_0x2e4d66[_0x16641(0x15c,'\x47\x73\x32\x6d')](_0x16641(0x137,'\x46\x63\x4b\x41')));}
|