@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.
@@ -1,278 +1 @@
1
- // LLM trace capture — the reason the proxy sits on the wire at all. Every /v1/messages turn produces one trace
2
- // record (models, tier decision, status, latency, token usage, stop_reason) appended as JSONL so the ingest
3
- // pipeline can mine routing/economics signals the session transcripts can't see.
4
- //
5
- // Native request/response body capture is v1-compatible default full unless explicitly downgraded (see
6
- // bodyCapture.ts). Body fields are redacted+capped. If encryption material is missing, the sink still writes the
7
- // metadata row with bodies stripped so trace coverage stays auditable without falling back to plaintext bodies.
8
- import { mkdirSync, readFileSync, statSync } from 'node:fs';
9
- import { appendFile, chmod } from 'node:fs/promises';
10
- import { homedir } from 'node:os';
11
- import { join } from 'node:path';
12
- import { isNodeSecret, parseNodeSecretVersion } from '@evomap/evolver-adapter-public';
13
- import { captureBodiesEnabled } from './bodyCapture.js';
14
- import { traceCollectionEnabled, traceHubPublicKey, traceProfileAnalysisEnabled } from './traceConfig.js';
15
- import { materializeTraceForStorage } from './traceEnvelope.js';
16
- import { backfillProxyTraceUploads, enqueueTraceEnvelope, isHubDecryptableTraceEnvelope, } from './traceBackfill.js';
17
- export const DEFAULT_TRACE_FILE_CAP_BYTES = 64 * 1024 * 1024;
18
- function dayStamp(ms) {
19
- const d = new Date(ms);
20
- const p = (n) => String(n).padStart(2, '0');
21
- return `${d.getUTCFullYear()}${p(d.getUTCMonth() + 1)}${p(d.getUTCDate())}`;
22
- }
23
- function evomapHome(env = process.env) {
24
- return String(env['EVOLVER_HOME'] ?? env['EVOMAP_HOME'] ?? join(env['HOME'] || homedir(), '.evomap'));
25
- }
26
- function readTrimmedFile(path) {
27
- try {
28
- const value = readFileSync(path, 'utf8').trim();
29
- return value || undefined;
30
- }
31
- catch {
32
- return undefined;
33
- }
34
- }
35
- function traceEncryptionExplicitlyDisabled(env = process.env) {
36
- const raw = String(env['EVOLVER_LLM_TRACE_ENCRYPTION'] ?? env['EVOMAP_PROXY_TRACE_ENCRYPTION'] ?? '').trim().toLowerCase();
37
- return raw === '0' || raw === 'false' || raw === 'off' || raw === 'none';
38
- }
39
- function traceFlagEnabled(value) {
40
- const raw = String(value ?? '').trim().toLowerCase();
41
- return raw === '1' || raw === 'true' || raw === 'on' || raw === 'yes';
42
- }
43
- function metadataOnlyFallbackAllowed(env = process.env, profileAnalysisEnabled = false) {
44
- return captureBodiesEnabled(env)
45
- && !traceFlagEnabled(env['EVOLVER_LLM_TRACE_ENCRYPTION'])
46
- && !traceFlagEnabled(env['EVOMAP_PROXY_TRACE_ENCRYPTION'])
47
- && !traceFlagEnabled(env['EVOLVER_LLM_TRACE_PROFILE_ANALYSIS'])
48
- && !traceFlagEnabled(env['EVOMAP_PROXY_TRACE_PROFILE_ANALYSIS'])
49
- && !profileAnalysisEnabled;
50
- }
51
- export function resolveTraceNodeSecretMaterial(env = process.env, store, explicitNodeSecretVersion) {
52
- const explicitVersion = explicitNodeSecretVersion !== undefined ? parseNodeSecretVersion(explicitNodeSecretVersion) : undefined;
53
- const envSecretRaw = env['EVOMAP_NODE_SECRET'] ?? env['A2A_NODE_SECRET'];
54
- const envSecret = envSecretRaw && isNodeSecret(envSecretRaw) ? envSecretRaw : undefined;
55
- // EVOMAP-first to match the node_secret env precedence above, keeping (secret, version) paired.
56
- const envVersion = parseNodeSecretVersion(env['EVOMAP_NODE_SECRET_VERSION'] ?? env['A2A_NODE_SECRET_VERSION']);
57
- const storeSecretRaw = store?.getState?.('node_secret');
58
- const storeSecret = storeSecretRaw && isNodeSecret(storeSecretRaw) ? storeSecretRaw : undefined;
59
- const storeSource = store?.getState?.('node_secret_source');
60
- const storeVersion = parseNodeSecretVersion(store?.getState?.('node_secret_version'));
61
- if (storeSource === 'hub_rotate' && storeSecret) {
62
- return { nodeSecret: storeSecret, nodeSecretVersion: explicitVersion ?? storeVersion };
63
- }
64
- if (envSecret) {
65
- return {
66
- nodeSecret: envSecret,
67
- nodeSecretVersion: explicitVersion ?? envVersion ?? (envSecret === storeSecret ? storeVersion : undefined),
68
- };
69
- }
70
- if (storeSecret)
71
- return { nodeSecret: storeSecret, nodeSecretVersion: explicitVersion ?? storeVersion };
72
- const home = evomapHome(env);
73
- const legacySecret = readTrimmedFile(join(home, 'node_secret'));
74
- if (!legacySecret || !isNodeSecret(legacySecret))
75
- return { ...(explicitVersion !== undefined ? { nodeSecretVersion: explicitVersion } : {}) };
76
- const legacyVersion = parseNodeSecretVersion(readTrimmedFile(join(home, 'node_secret_version')));
77
- return { nodeSecret: legacySecret, nodeSecretVersion: explicitVersion ?? legacyVersion };
78
- }
79
- export function resolveTraceNodeSecretVersion(env = process.env, store, explicitNodeSecretVersion) {
80
- return resolveTraceNodeSecretMaterial(env, store, explicitNodeSecretVersion).nodeSecretVersion;
81
- }
82
- function metadataOnlyTraceRecord(record) {
83
- const { requestBody: _requestBody, responseBody: _responseBody, request_headers: _requestHeaders, response_headers: _responseHeaders, transport_metadata: _transportMetadata, attempts, ...rest } = record;
84
- const strippedAttempts = attempts?.map((attempt) => {
85
- const { requestBody: _attemptRequestBody, responseBody: _attemptResponseBody, ...attemptMeta } = attempt;
86
- return { ...attemptMeta, body_truncated: true };
87
- });
88
- return {
89
- ...rest,
90
- body_truncated: true,
91
- ...(strippedAttempts && strippedAttempts.length > 0 ? { attempts: strippedAttempts } : {}),
92
- };
93
- }
94
- /**
95
- * Append-only NDJSON sink, one file per UTC day (`llm-trace-YYYYMMDD.jsonl`). Fire-and-forget writes; any
96
- * failure (bad dir, full disk, cap reached) degrades to a single warn and NEVER propagates — trace capture
97
- * must not be able to break serving.
98
- */
99
- export class JsonlTraceSink {
100
- opts;
101
- now;
102
- cap;
103
- log;
104
- warned = false;
105
- chmodWarned = false;
106
- envelopeWarned = false;
107
- plaintextWarned = false;
108
- mailboxWarned = false;
109
- cappedDay = null;
110
- securedFiles = new Set();
111
- /** Appends are chained, not raced: two in-flight fs appends to one path have no ordering guarantee, and
112
- * out-of-order trace lines would corrupt the day-file as a timeline. Still fire-and-forget to callers. */
113
- tail = Promise.resolve();
114
- constructor(opts) {
115
- this.opts = opts;
116
- this.now = opts.now ?? (() => Date.now());
117
- this.cap = opts.fileCapBytes ?? DEFAULT_TRACE_FILE_CAP_BYTES;
118
- this.log = opts.logger ?? console;
119
- try {
120
- mkdirSync(opts.dir, { recursive: true });
121
- }
122
- catch {
123
- /* surfaced on first write instead */
124
- }
125
- this.backfillExistingTraceUploads();
126
- }
127
- filePath() {
128
- return join(this.opts.dir, `llm-trace-${dayStamp(this.now())}.jsonl`);
129
- }
130
- /**
131
- * Await the appends queued so far. write() is fire-and-forget (it chains the fs append onto `tail` and returns),
132
- * so a caller that needs the trace durable on disk — a graceful shutdown, or a test asserting file contents —
133
- * must await this rather than guess a wall-clock delay. Never rejects: write() already swallows append errors
134
- * into `tail`.
135
- */
136
- flush() {
137
- return this.tail;
138
- }
139
- write = (record) => {
140
- try {
141
- const env = this.opts.env ?? process.env;
142
- if (!traceCollectionEnabled(env, this.opts.mailboxStore))
143
- return;
144
- const day = dayStamp(this.now());
145
- if (this.cappedDay === day)
146
- return;
147
- const file = this.filePath();
148
- try {
149
- if (statSync(file).size >= this.cap) {
150
- this.cappedDay = day;
151
- this.log.warn?.(JSON.stringify({ event: 'llm_trace_capped', file, cap_bytes: this.cap }));
152
- return;
153
- }
154
- }
155
- catch {
156
- /* file does not exist yet → first write of the day */
157
- }
158
- const profileAnalysisEnabled = traceProfileAnalysisEnabled(env, this.opts.mailboxStore);
159
- const traceSecret = resolveTraceNodeSecretMaterial(env, this.opts.mailboxStore, this.opts.nodeSecretVersion);
160
- const materialized = materializeTraceForStorage(record, env, {
161
- nodeSecretVersion: traceSecret.nodeSecretVersion,
162
- nodeSecret: traceSecret.nodeSecret,
163
- hubPublicKey: traceHubPublicKey(env, this.opts.mailboxStore),
164
- profileAnalysisEnabled,
165
- producerGeneration: 'v2',
166
- producerVersion: this.opts.producerVersion,
167
- producerComponent: 'proxy',
168
- });
169
- let storedRecord;
170
- if (materialized.ok) {
171
- storedRecord = materialized.record;
172
- this.enqueueOutboundTrace(materialized.record);
173
- }
174
- else if (traceEncryptionExplicitlyDisabled(env)) {
175
- // Escape hatch: body capture is on but no encryption key is available AND trace
176
- // encryption is explicitly disabled, so redacted-but-plaintext request/response bodies
177
- // are written to the local trace file. Warn once so this never happens silently
178
- // (see docs/trace-body-capture.md).
179
- if (!this.plaintextWarned) {
180
- this.plaintextWarned = true;
181
- this.log.warn?.(JSON.stringify({ event: 'llm_trace_plaintext_bodies', reason: 'trace_encryption_disabled' }));
182
- }
183
- storedRecord = record;
184
- }
185
- else {
186
- if (!this.envelopeWarned) {
187
- this.envelopeWarned = true;
188
- this.log.warn?.(JSON.stringify({ event: 'llm_trace_hub_undecryptable', reason: materialized.reason }));
189
- }
190
- if (!metadataOnlyFallbackAllowed(env, profileAnalysisEnabled))
191
- return;
192
- storedRecord = metadataOnlyTraceRecord(record);
193
- }
194
- const line = `${JSON.stringify(storedRecord)}\n`;
195
- this.tail = this.tail.then(async () => {
196
- if (!this.securedFiles.has(file)) {
197
- try {
198
- statSync(file);
199
- await this.secureTraceFile(file);
200
- }
201
- catch {
202
- /* new file: appendFile mode below controls initial permissions */
203
- }
204
- }
205
- await appendFile(file, line, { encoding: 'utf8', mode: 0o600 });
206
- await this.secureTraceFile(file);
207
- }).catch((err) => {
208
- if (!this.warned) {
209
- this.warned = true;
210
- this.log.warn?.(JSON.stringify({ event: 'llm_trace_write_failed', error: err instanceof Error ? err.message : String(err) }));
211
- }
212
- });
213
- }
214
- catch (err) {
215
- if (!this.warned) {
216
- this.warned = true;
217
- this.log.warn?.(JSON.stringify({ event: 'llm_trace_write_failed', error: err instanceof Error ? err.message : String(err) }));
218
- }
219
- }
220
- };
221
- async secureTraceFile(file) {
222
- if (this.securedFiles.has(file))
223
- return true;
224
- try {
225
- await chmod(file, 0o600);
226
- this.securedFiles.add(file);
227
- return true;
228
- }
229
- catch (err) {
230
- if (!this.chmodWarned) {
231
- this.chmodWarned = true;
232
- this.log.warn?.(JSON.stringify({ event: 'llm_trace_chmod_failed', error: err instanceof Error ? err.message : String(err) }));
233
- }
234
- return false;
235
- }
236
- }
237
- enqueueOutboundTrace(storedRecord) {
238
- if (!this.opts.mailboxStore || !isHubDecryptableTraceEnvelope(storedRecord))
239
- return;
240
- try {
241
- enqueueTraceEnvelope(this.opts.mailboxStore, storedRecord, {
242
- now: this.now(),
243
- env: this.opts.env ?? process.env,
244
- ...(this.opts.runtimeNamespace ? { runtimeNamespace: this.opts.runtimeNamespace } : {}),
245
- ...(this.opts.sourceAgent ? { sourceAgent: this.opts.sourceAgent } : {}),
246
- ...(this.opts.targetAgent ? { targetAgent: this.opts.targetAgent } : {}),
247
- });
248
- }
249
- catch (err) {
250
- if (!this.mailboxWarned) {
251
- this.mailboxWarned = true;
252
- this.log.warn?.(JSON.stringify({ event: 'llm_trace_enqueue_failed', error: err instanceof Error ? err.message : String(err) }));
253
- }
254
- }
255
- }
256
- backfillExistingTraceUploads() {
257
- if (!this.opts.mailboxStore)
258
- return null;
259
- try {
260
- return backfillProxyTraceUploads({
261
- dir: this.opts.dir,
262
- store: this.opts.mailboxStore,
263
- env: this.opts.env ?? process.env,
264
- now: this.now,
265
- ...(this.opts.runtimeNamespace ? { runtimeNamespace: this.opts.runtimeNamespace } : {}),
266
- ...(this.opts.sourceAgent ? { sourceAgent: this.opts.sourceAgent } : {}),
267
- ...(this.opts.targetAgent ? { targetAgent: this.opts.targetAgent } : {}),
268
- });
269
- }
270
- catch (err) {
271
- if (!this.mailboxWarned) {
272
- this.mailboxWarned = true;
273
- this.log.warn?.(JSON.stringify({ event: 'llm_trace_backfill_failed', error: err instanceof Error ? err.message : String(err) }));
274
- }
275
- return null;
276
- }
277
- }
278
- }
1
+ const _0x16fb69=_0x2b50;(function(_0x57ec3d,_0x8d8b49){const _0x46b977=_0x2b50,_0x4ccc58=_0x57ec3d();while(!![]){try{const _0x179fd8=parseInt(_0x46b977(0x1f0,'\x6f\x4f\x52\x4f'))/(-0x15fc+0xe13*0x2+-0x53*0x13)+parseInt(_0x46b977(0x260,'\x24\x41\x45\x57'))/(-0x2179+0x1c42*0x1+0x539)+parseInt(_0x46b977(0x197,'\x24\x41\x45\x57'))/(0x9a5*-0x2+-0x1445+0x1*0x2792)*(-parseInt(_0x46b977(0x194,'\x6f\x4f\x52\x4f'))/(0x5c*-0x4+-0x1*0x1d2+0x346))+parseInt(_0x46b977(0x25d,'\x57\x5e\x6d\x34'))/(-0x1dee+0x2385+0x2*-0x2c9)+parseInt(_0x46b977(0x1e0,'\x6c\x52\x4b\x4c'))/(-0x2347*-0x1+0x1948*0x1+-0x1*0x3c89)+-parseInt(_0x46b977(0x184,'\x74\x29\x70\x75'))/(-0x871+-0x195b+0x21d3)*(-parseInt(_0x46b977(0x177,'\x44\x31\x52\x31'))/(-0x25bb+0xb2+-0xc5b*-0x3))+-parseInt(_0x46b977(0x241,'\x32\x48\x36\x25'))/(-0xa*0xfd+-0x2a*0xe3+0x1*0x2f29);if(_0x179fd8===_0x8d8b49)break;else _0x4ccc58['push'](_0x4ccc58['shift']());}catch(_0x4727c7){_0x4ccc58['push'](_0x4ccc58['shift']());}}}(_0x1ba5,-0xa9369+-0x15d430+-0x1e7*-0x18ca));import{mkdirSync,readFileSync,statSync}from'\x6e\x6f\x64\x65\x3a\x66\x73';import{appendFile,chmod}from'\x6e\x6f\x64\x65\x3a\x66\x73\x2f\x70\x72\x6f\x6d\x69\x73\x65\x73';import{homedir}from'\x6e\x6f\x64\x65\x3a\x6f\x73';import{join}from'\x6e\x6f\x64\x65\x3a\x70\x61\x74\x68';import{isNodeSecret,parseNodeSecretVersion}from'\x40\x65\x76\x6f\x6d\x61\x70\x2f\x65\x76\x6f\x6c\x76\x65\x72\x2d\x61\x64\x61\x70\x74\x65\x72\x2d\x70\x75\x62\x6c\x69\x63';import{captureBodiesEnabled}from'\x2e\x2f\x62\x6f\x64\x79\x43\x61\x70\x74\x75\x72\x65\x2e\x6a\x73';import{traceCollectionEnabled,traceHubPublicKey,traceProfileAnalysisEnabled}from'\x2e\x2f\x74\x72\x61\x63\x65\x43\x6f\x6e\x66\x69\x67\x2e\x6a\x73';import{materializeTraceForStorage}from'\x2e\x2f\x74\x72\x61\x63\x65\x45\x6e\x76\x65\x6c\x6f\x70\x65\x2e\x6a\x73';import{backfillProxyTraceUploads,enqueueTraceEnvelope,isHubDecryptableTraceEnvelope}from'\x2e\x2f\x74\x72\x61\x63\x65\x42\x61\x63\x6b\x66\x69\x6c\x6c\x2e\x6a\x73';export const DEFAULT_TRACE_FILE_CAP_BYTES=(0x6dc*-0x4+-0x12c8+0x8*0x5cf)*(0x2*0xc74+0x5*-0x1eb+-0xb51)*(-0xecb+-0xbc1+0x1e8c);function dayStamp(_0x2bd13b){const _0x1d8225=_0x2b50,_0x3683af=new Date(_0x2bd13b),_0x9275dd=_0xdf8314=>String(_0xdf8314)[_0x1d8225(0x225,'\x72\x69\x5a\x44')](0x16eb*0x1+-0x669*0x3+-0x3ae,'\x30');return''+_0x3683af[_0x1d8225(0x18c,'\x72\x69\x5a\x44')+'\x6c\x6c\x59\x65\x61\x72']()+_0x9275dd(_0x3683af[_0x1d8225(0x262,'\x74\x29\x70\x75')+_0x1d8225(0x1a4,'\x63\x35\x28\x73')]()+(0x12d3*0x1+-0x1b1*-0x17+-0x39b9))+_0x9275dd(_0x3683af[_0x1d8225(0x296,'\x63\x35\x28\x73')+'\x74\x65']());}function _0x2b50(_0x23b929,_0x54685f){_0x23b929=_0x23b929-(-0x1693+-0x1b05+-0x6a*-0x7b);const _0x584eee=_0x1ba5();let _0x33c1ca=_0x584eee[_0x23b929];if(_0x2b50['\x64\x58\x73\x61\x4e\x66']===undefined){var _0x1aa96f=function(_0x5462af){const _0x498d0e='\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 _0x3ef966='',_0x510e65='';for(let _0x1b8eb0=-0x6*0x241+-0x1961*0x1+0x26e7,_0x2bc1c5,_0x5185e7,_0x22f28a=0x1*0xe02+0x7c9*0x1+-0x31d*0x7;_0x5185e7=_0x5462af['\x63\x68\x61\x72\x41\x74'](_0x22f28a++);~_0x5185e7&&(_0x2bc1c5=_0x1b8eb0%(-0x10be+-0x1*-0x17+0x11*0xfb)?_0x2bc1c5*(-0x1816+-0x184*0x9+-0x1*-0x25fa)+_0x5185e7:_0x5185e7,_0x1b8eb0++%(-0x19*0xef+0x3af+0x13ac))?_0x3ef966+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0x433+-0x1a20+-0x1*-0x1f52&_0x2bc1c5>>(-(-0x1*0x626+0x2b*-0x7+0x755)*_0x1b8eb0&-0x1fc+0x1*0x23a1+0x13*-0x1c5)):-0x26e1*0x1+-0xbc*-0x6+0x2279){_0x5185e7=_0x498d0e['\x69\x6e\x64\x65\x78\x4f\x66'](_0x5185e7);}for(let _0x2dab9d=0xa37+0xc21+0x2cb*-0x8,_0x2589a2=_0x3ef966['\x6c\x65\x6e\x67\x74\x68'];_0x2dab9d<_0x2589a2;_0x2dab9d++){_0x510e65+='\x25'+('\x30\x30'+_0x3ef966['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x2dab9d)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x1*-0x16c2+0x1*-0x529+0xf7*0x1d))['\x73\x6c\x69\x63\x65'](-(0xfcf+-0x3d3*0x5+0x352));}return decodeURIComponent(_0x510e65);};const _0x16179f=function(_0x517d1c,_0x59b711){let _0x2bbd46=[],_0x3cd85e=-0x133a+0x1ce7*0x1+-0x9ad,_0x5c321a,_0x75c96='';_0x517d1c=_0x1aa96f(_0x517d1c);let _0x277806;for(_0x277806=0x2*0xdf6+0x2b1+0x1*-0x1e9d;_0x277806<-0xb*0x2ce+0x2391+-0x1*0x3b7;_0x277806++){_0x2bbd46[_0x277806]=_0x277806;}for(_0x277806=0x113a+0x165+0x3*-0x635;_0x277806<-0x17*-0x13d+-0x2087+0x50c;_0x277806++){_0x3cd85e=(_0x3cd85e+_0x2bbd46[_0x277806]+_0x59b711['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x277806%_0x59b711['\x6c\x65\x6e\x67\x74\x68']))%(0x1*0x4b2+0x25ac+-0x295e),_0x5c321a=_0x2bbd46[_0x277806],_0x2bbd46[_0x277806]=_0x2bbd46[_0x3cd85e],_0x2bbd46[_0x3cd85e]=_0x5c321a;}_0x277806=0x5d2*0x1+0x1c21*-0x1+0x164f,_0x3cd85e=-0x5*-0x441+-0x199*0x3+-0x107a;for(let _0xf84a6d=-0x1*-0x807+-0x1*-0x2345+0xa3*-0x44;_0xf84a6d<_0x517d1c['\x6c\x65\x6e\x67\x74\x68'];_0xf84a6d++){_0x277806=(_0x277806+(-0xd*-0x9d+0x23*-0x13+0xb*-0x7d))%(-0x27a+0x2431*-0x1+0x27ab),_0x3cd85e=(_0x3cd85e+_0x2bbd46[_0x277806])%(-0x262a+-0x15ad+0x3cd7),_0x5c321a=_0x2bbd46[_0x277806],_0x2bbd46[_0x277806]=_0x2bbd46[_0x3cd85e],_0x2bbd46[_0x3cd85e]=_0x5c321a,_0x75c96+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x517d1c['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0xf84a6d)^_0x2bbd46[(_0x2bbd46[_0x277806]+_0x2bbd46[_0x3cd85e])%(-0x2*0x4af+-0x9*-0x173+-0x5*0x89)]);}return _0x75c96;};_0x2b50['\x72\x73\x6c\x4d\x74\x53']=_0x16179f,_0x2b50['\x4b\x61\x59\x46\x64\x74']={},_0x2b50['\x64\x58\x73\x61\x4e\x66']=!![];}const _0x5e4380=_0x584eee[0x106+0x80f+0x915*-0x1],_0x24c159=_0x23b929+_0x5e4380,_0x400cae=_0x2b50['\x4b\x61\x59\x46\x64\x74'][_0x24c159];return!_0x400cae?(_0x2b50['\x50\x78\x4b\x63\x4c\x75']===undefined&&(_0x2b50['\x50\x78\x4b\x63\x4c\x75']=!![]),_0x33c1ca=_0x2b50['\x72\x73\x6c\x4d\x74\x53'](_0x33c1ca,_0x54685f),_0x2b50['\x4b\x61\x59\x46\x64\x74'][_0x24c159]=_0x33c1ca):_0x33c1ca=_0x400cae,_0x33c1ca;}function evomapHome(_0x375d2d=process.env){const _0x2a2ed2=_0x2b50;return String(_0x375d2d[_0x2a2ed2(0x199,'\x63\x35\x28\x73')+'\x48\x4f\x4d\x45']??_0x375d2d[_0x2a2ed2(0x179,'\x37\x64\x47\x4a')+_0x2a2ed2(0x287,'\x44\x4f\x34\x28')]??join(_0x375d2d[_0x2a2ed2(0x298,'\x2a\x43\x6f\x39')]||homedir(),_0x2a2ed2(0x170,'\x6b\x4b\x43\x36')));}function readTrimmedFile(_0x2bc815){const _0x493d82=_0x2b50;try{const _0x20bf63=readFileSync(_0x2bc815,_0x493d82(0x244,'\x31\x48\x52\x6c'))[_0x493d82(0x1f6,'\x53\x39\x54\x5e')]();return _0x20bf63||undefined;}catch{return undefined;}}function _0x1ba5(){const _0x27329c=['\x57\x34\x58\x61\x57\x4f\x38','\x43\x6d\x6b\x7a\x57\x34\x4b\x63\x57\x36\x6c\x64\x4d\x4c\x7a\x4c','\x57\x52\x43\x37\x57\x51\x72\x6b\x45\x61','\x74\x30\x66\x37\x79\x61','\x57\x52\x70\x64\x55\x74\x4c\x58','\x74\x6d\x6f\x5a\x57\x35\x47','\x61\x53\x6b\x41\x57\x51\x75\x6b\x57\x52\x68\x64\x48\x76\x34','\x57\x37\x46\x64\x4d\x65\x6d','\x57\x50\x64\x64\x4f\x53\x6b\x4a\x57\x36\x34','\x6e\x38\x6f\x31\x57\x51\x57','\x57\x34\x5a\x63\x54\x72\x65\x55\x57\x34\x2f\x64\x4e\x38\x6f\x63\x57\x35\x75','\x64\x6d\x6f\x56\x61\x68\x34','\x57\x37\x39\x6e\x57\x37\x53','\x57\x50\x4e\x63\x48\x71\x64\x64\x49\x38\x6b\x39\x57\x50\x38\x68','\x57\x34\x75\x68\x57\x34\x56\x63\x54\x57','\x57\x52\x42\x63\x55\x76\x57\x6d\x57\x35\x58\x43\x64\x53\x6b\x70\x57\x34\x44\x31\x57\x34\x64\x64\x4d\x61','\x57\x37\x42\x64\x50\x62\x35\x67\x57\x4f\x53\x70\x70\x43\x6b\x37','\x57\x34\x79\x41\x57\x35\x64\x63\x50\x53\x6b\x4f','\x57\x37\x42\x64\x4d\x4b\x57','\x6a\x5a\x4b\x45\x71\x61','\x70\x6d\x6f\x30\x57\x51\x38','\x57\x37\x58\x73\x57\x36\x48\x51','\x67\x43\x6f\x51\x76\x61\x58\x71\x57\x50\x2f\x63\x4c\x53\x6b\x6e','\x57\x37\x5a\x63\x4e\x4a\x69\x70\x57\x37\x56\x64\x56\x43\x6f\x2f\x57\x35\x69','\x57\x35\x79\x6d\x57\x52\x4e\x64\x49\x75\x52\x63\x54\x64\x4b\x53','\x75\x33\x70\x64\x48\x57','\x57\x35\x2f\x63\x4f\x6d\x6f\x4c\x57\x51\x56\x63\x4c\x72\x2f\x63\x4f\x49\x71','\x57\x37\x31\x47\x57\x51\x74\x63\x48\x43\x6f\x79\x74\x53\x6f\x54\x57\x35\x57','\x57\x4f\x56\x64\x50\x43\x6f\x4a\x57\x4f\x46\x64\x54\x76\x4f\x39\x57\x35\x69\x63\x6e\x68\x79\x33\x46\x57','\x57\x34\x4c\x47\x57\x51\x31\x67\x57\x52\x56\x64\x4c\x6d\x6b\x46\x57\x50\x43','\x6a\x61\x78\x63\x4f\x53\x6f\x79\x61\x5a\x33\x63\x50\x73\x30','\x7a\x6d\x6b\x6b\x70\x32\x57\x4e\x57\x37\x78\x63\x4f\x38\x6b\x73\x57\x52\x50\x75\x57\x52\x79\x57','\x57\x50\x6c\x64\x4b\x6d\x6b\x6c','\x57\x37\x52\x63\x4a\x5a\x6d\x76\x57\x37\x5a\x64\x54\x53\x6f\x2f\x57\x34\x61','\x6e\x72\x6c\x63\x50\x6d\x6f\x49','\x57\x35\x68\x64\x4f\x67\x42\x63\x53\x63\x54\x55\x62\x43\x6f\x7a','\x57\x37\x61\x4f\x57\x4f\x2f\x64\x54\x68\x2f\x63\x4a\x71\x4b\x73','\x57\x36\x64\x64\x48\x65\x64\x63\x4b\x71','\x57\x50\x74\x64\x49\x72\x66\x57\x57\x36\x38','\x57\x34\x5a\x63\x54\x72\x75\x55\x57\x34\x33\x64\x47\x43\x6f\x63\x57\x35\x79','\x57\x36\x65\x6b\x57\x35\x74\x63\x47\x74\x48\x72\x57\x34\x69\x6b','\x57\x4f\x37\x64\x51\x53\x6b\x50','\x57\x51\x33\x63\x48\x6d\x6f\x76\x57\x52\x5a\x64\x4a\x53\x6b\x53\x57\x37\x50\x4b','\x57\x4f\x56\x64\x56\x6d\x6f\x5a','\x57\x50\x56\x63\x48\x48\x75','\x79\x53\x6b\x38\x57\x51\x56\x64\x55\x61','\x57\x50\x69\x52\x57\x50\x38','\x6e\x67\x78\x63\x52\x38\x6b\x78\x6a\x59\x79','\x57\x52\x53\x65\x57\x4f\x4c\x2f\x46\x43\x6b\x53\x73\x73\x38','\x73\x6d\x6b\x41\x57\x50\x64\x64\x48\x59\x74\x63\x55\x43\x6b\x43\x64\x47','\x57\x52\x69\x39\x57\x4f\x6a\x54\x57\x34\x39\x37\x57\x51\x6a\x69','\x57\x34\x6e\x6e\x73\x43\x6b\x4c\x45\x4d\x31\x79\x57\x4f\x30','\x57\x4f\x6c\x64\x55\x43\x6b\x33\x57\x36\x37\x63\x4e\x47','\x44\x32\x58\x46\x75\x32\x35\x43\x45\x53\x6b\x42','\x57\x34\x43\x30\x57\x37\x42\x63\x4f\x47\x50\x64\x57\x37\x65\x4e','\x57\x34\x35\x78\x57\x50\x74\x63\x50\x6d\x6f\x4a\x42\x53\x6f\x41\x57\x37\x43','\x57\x4f\x2f\x64\x50\x38\x6b\x30\x57\x35\x74\x63\x4a\x53\x6b\x54\x57\x35\x70\x64\x4a\x61','\x57\x52\x6c\x63\x4e\x6d\x6f\x6b\x57\x4f\x52\x64\x4c\x6d\x6b\x35\x57\x37\x6a\x48','\x71\x32\x33\x64\x4e\x31\x52\x63\x56\x43\x6b\x33\x6e\x75\x75','\x78\x53\x6f\x38\x57\x35\x5a\x63\x4a\x47\x6d\x34','\x57\x35\x54\x6c\x57\x4f\x33\x63\x50\x43\x6f\x36\x79\x53\x6f\x70\x57\x36\x61','\x57\x34\x46\x63\x50\x38\x6b\x59\x57\x4f\x4f','\x57\x34\x50\x55\x57\x50\x6e\x68','\x6f\x66\x2f\x64\x51\x4a\x4f','\x44\x43\x6f\x79\x57\x51\x7a\x6c\x57\x51\x37\x63\x56\x38\x6b\x5a\x57\x34\x38','\x79\x6d\x6b\x70\x57\x36\x74\x64\x52\x53\x6f\x77','\x57\x51\x39\x4e\x62\x38\x6b\x31\x73\x6d\x6b\x38\x57\x34\x4a\x63\x48\x71','\x57\x35\x68\x64\x55\x71\x50\x78\x57\x4f\x30\x2f\x64\x6d\x6b\x57','\x45\x67\x2f\x64\x49\x4b\x4f','\x78\x6d\x6b\x64\x57\x35\x37\x64\x55\x38\x6f\x62\x57\x34\x37\x63\x47\x47\x61','\x72\x43\x6b\x43\x74\x53\x6f\x77\x62\x6d\x6f\x34','\x57\x51\x70\x64\x56\x53\x6b\x4a\x71\x72\x46\x63\x49\x38\x6f\x77\x6b\x47','\x42\x6d\x6f\x52\x42\x6d\x6f\x6b\x79\x57','\x6e\x67\x78\x63\x52\x38\x6b\x78','\x57\x36\x68\x64\x4a\x4b\x61\x58\x57\x34\x2f\x64\x55\x43\x6f\x56\x77\x57','\x79\x43\x6f\x4c\x46\x6d\x6f\x6d\x76\x68\x72\x63\x57\x37\x4b','\x57\x52\x4c\x33\x63\x53\x6b\x5a\x77\x6d\x6b\x48\x57\x35\x4e\x63\x51\x47','\x70\x43\x6f\x74\x42\x49\x4c\x4c\x57\x51\x5a\x63\x50\x53\x6b\x48','\x77\x53\x6f\x50\x57\x35\x5a\x63\x49\x71\x47\x37\x57\x37\x33\x64\x54\x71','\x65\x75\x56\x63\x48\x43\x6b\x47\x68\x72\x42\x63\x48\x6d\x6f\x2f','\x57\x52\x37\x63\x4b\x53\x6b\x67\x79\x43\x6b\x32\x6a\x59\x70\x63\x47\x47','\x57\x36\x4e\x64\x50\x57\x7a\x52\x57\x50\x57\x79\x68\x43\x6b\x2f','\x57\x4f\x4a\x64\x47\x43\x6b\x31\x75\x6d\x6b\x44\x64\x61','\x57\x4f\x71\x58\x57\x50\x4c\x33\x57\x35\x76\x31\x57\x51\x76\x6a','\x57\x51\x57\x61\x57\x50\x4c\x2f\x46\x43\x6b\x53\x74\x5a\x34','\x57\x35\x31\x6a\x71\x38\x6b\x38\x41\x4d\x44\x30\x57\x51\x57','\x74\x6d\x6f\x50\x57\x37\x4a\x63\x48\x72\x71\x56\x57\x37\x33\x64\x56\x61','\x57\x37\x57\x51\x57\x4f\x6c\x64\x54\x57','\x57\x37\x48\x71\x57\x51\x62\x4e\x57\x4f\x33\x64\x56\x43\x6b\x30\x57\x4f\x43','\x57\x35\x66\x4a\x57\x4f\x58\x32\x57\x52\x4a\x64\x47\x38\x6b\x6d\x57\x52\x43','\x64\x32\x74\x64\x56\x57','\x57\x34\x52\x64\x56\x4d\x43','\x57\x51\x42\x64\x4c\x6d\x6b\x43\x57\x34\x78\x63\x55\x43\x6b\x6e\x57\x36\x56\x64\x56\x57','\x70\x6d\x6f\x66\x57\x51\x53\x4b\x41\x38\x6f\x66\x57\x35\x52\x63\x56\x71','\x46\x63\x46\x63\x53\x38\x6f\x54\x6e\x73\x5a\x64\x4c\x61','\x6d\x43\x6f\x2b\x57\x4f\x33\x64\x48\x57','\x75\x53\x6b\x64\x57\x34\x46\x64\x50\x38\x6f\x67\x57\x34\x78\x63\x56\x4a\x69','\x43\x53\x6f\x77\x57\x52\x50\x76','\x57\x50\x64\x63\x51\x38\x6b\x62\x57\x52\x44\x75','\x6d\x43\x6f\x65\x57\x50\x6e\x64\x57\x51\x78\x63\x4a\x47\x6a\x4c\x57\x50\x53\x2f\x57\x34\x5a\x64\x47\x76\x57','\x66\x6d\x6f\x59\x65\x47','\x57\x35\x52\x63\x4f\x57\x6d','\x64\x6d\x6f\x41\x57\x4f\x6c\x64\x54\x77\x69','\x57\x52\x74\x63\x4e\x6d\x6f\x41\x57\x4f\x5a\x64\x4a\x38\x6b\x57\x57\x37\x39\x74','\x57\x37\x50\x4c\x42\x38\x6b\x68','\x6d\x72\x68\x63\x54\x38\x6f\x55\x64\x59\x42\x63\x50\x64\x57','\x57\x34\x74\x63\x55\x59\x6e\x6a\x57\x52\x42\x63\x55\x43\x6f\x5a\x6e\x47','\x57\x52\x58\x4a\x66\x53\x6b\x50','\x6c\x4c\x46\x64\x55\x57','\x46\x43\x6f\x2f\x44\x53\x6f\x44\x79\x4d\x50\x63\x57\x35\x71','\x6c\x43\x6f\x31\x57\x50\x43\x4e\x46\x43\x6f\x6a\x57\x34\x42\x63\x49\x47','\x57\x37\x47\x59\x57\x50\x74\x64\x4e\x77\x38','\x65\x6d\x6b\x52\x57\x50\x4e\x64\x4c\x76\x76\x4c\x57\x51\x6c\x64\x53\x43\x6f\x6a\x57\x35\x5a\x64\x54\x53\x6b\x55\x57\x37\x57','\x57\x34\x72\x51\x57\x50\x69','\x57\x34\x42\x63\x55\x64\x4b','\x79\x4d\x56\x64\x4d\x61\x65','\x57\x37\x69\x38\x57\x4f\x71\x49\x57\x4f\x65\x54\x57\x52\x52\x63\x53\x57','\x57\x51\x42\x64\x56\x64\x71','\x64\x38\x6f\x2f\x57\x51\x4b\x37\x79\x38\x6f\x64\x57\x35\x4f','\x70\x58\x50\x56\x65\x47','\x57\x51\x4a\x64\x55\x74\x72\x55','\x62\x67\x2f\x64\x52\x57','\x72\x57\x46\x63\x4b\x53\x6f\x6e\x68\x71\x74\x64\x56\x57','\x6e\x43\x6f\x5a\x57\x4f\x68\x64\x4d\x66\x4e\x64\x56\x63\x6c\x64\x56\x47','\x46\x53\x6f\x53\x57\x34\x70\x63\x47\x47\x4f','\x57\x4f\x78\x64\x51\x53\x6b\x57\x57\x36\x46\x63\x4e\x38\x6b\x37','\x77\x75\x66\x58\x7a\x31\x58\x4e\x76\x38\x6b\x30','\x57\x4f\x6c\x64\x56\x53\x6f\x79\x57\x51\x4a\x63\x4a\x48\x4e\x63\x54\x5a\x79','\x76\x32\x37\x64\x4c\x61','\x57\x50\x30\x44\x57\x52\x34\x35\x57\x36\x33\x64\x53\x62\x6e\x70','\x63\x32\x46\x64\x52\x47\x74\x64\x48\x33\x68\x64\x56\x73\x38','\x57\x37\x68\x64\x51\x47\x6a\x79','\x73\x53\x6b\x50\x70\x4c\x30\x79\x57\x50\x46\x63\x52\x48\x69','\x77\x43\x6f\x56\x57\x34\x68\x63\x4d\x62\x38','\x57\x34\x65\x64\x57\x37\x33\x63\x52\x61\x44\x34\x57\x37\x75\x58','\x6b\x6d\x6f\x50\x41\x49\x48\x37\x57\x51\x4a\x63\x4f\x71','\x61\x32\x42\x64\x52\x47\x71','\x57\x37\x68\x64\x50\x62\x4c\x72','\x64\x74\x68\x63\x4d\x38\x6f\x79\x6e\x71\x64\x63\x47\x61\x43','\x57\x35\x47\x7a\x57\x35\x56\x64\x4d\x38\x6b\x42\x57\x51\x34\x63\x6f\x71','\x57\x34\x70\x63\x48\x6d\x6f\x6a\x6c\x68\x2f\x64\x50\x53\x6b\x58\x62\x43\x6b\x44\x57\x4f\x6a\x46\x57\x34\x4a\x64\x4e\x71','\x57\x50\x46\x63\x47\x71\x6d','\x6e\x74\x76\x53\x65\x30\x44\x6d\x66\x4e\x53','\x57\x52\x56\x64\x4b\x4d\x4c\x75\x57\x52\x56\x63\x4f\x53\x6b\x52\x57\x34\x64\x64\x4c\x48\x71\x77\x6a\x30\x4b','\x57\x34\x42\x63\x53\x49\x4f','\x7a\x6d\x6b\x7a\x57\x35\x34\x49\x57\x34\x74\x64\x56\x68\x39\x6d','\x57\x4f\x62\x71\x57\x4f\x5a\x64\x50\x43\x6f\x2f\x61\x53\x6f\x78\x57\x37\x75\x65\x57\x4f\x75\x47\x57\x34\x78\x63\x4e\x57','\x57\x37\x72\x68\x57\x36\x48\x6b\x57\x34\x4b\x66\x64\x38\x6f\x63','\x6a\x49\x79\x44','\x57\x35\x4f\x41\x57\x34\x65','\x57\x34\x64\x64\x54\x68\x6d\x72\x57\x37\x4e\x64\x4a\x38\x6f\x73\x44\x47','\x57\x4f\x65\x78\x57\x51\x34\x64\x57\x34\x4a\x64\x53\x61\x6a\x6f','\x78\x67\x2f\x64\x4c\x71','\x64\x32\x74\x64\x55\x47\x6c\x64\x4b\x4d\x78\x64\x55\x57\x75','\x78\x4b\x35\x4b','\x69\x31\x6c\x64\x52\x63\x57','\x46\x59\x46\x63\x50\x61','\x75\x6d\x6b\x71\x57\x35\x4e\x64\x53\x53\x6f\x68','\x57\x35\x48\x6d\x57\x50\x46\x63\x50\x43\x6f\x67\x42\x6d\x6f\x6c\x57\x36\x30','\x68\x66\x46\x63\x4d\x6d\x6b\x36\x65\x61\x46\x63\x47\x47','\x64\x53\x6b\x6d\x57\x52\x6d','\x6a\x4d\x52\x63\x52\x6d\x6b\x6d\x6a\x5a\x46\x63\x53\x38\x6f\x58','\x64\x38\x6f\x38\x62\x33\x75\x4e\x57\x51\x43','\x57\x35\x66\x76\x57\x4f\x2f\x63\x53\x57','\x68\x6d\x6b\x6c\x57\x51\x71\x71\x57\x52\x37\x64\x48\x76\x6c\x63\x49\x71','\x6a\x4c\x56\x63\x56\x53\x6b\x72\x6c\x59\x33\x63\x53\x53\x6f\x48','\x57\x34\x68\x64\x50\x75\x79\x67\x57\x37\x6c\x64\x4a\x6d\x6f\x70\x45\x61','\x57\x52\x33\x64\x54\x64\x4c\x31\x57\x35\x4f','\x57\x35\x79\x35\x57\x36\x2f\x63\x4b\x48\x31\x37\x57\x36\x75\x4e','\x57\x51\x5a\x63\x49\x43\x6f\x72\x57\x4f\x2f\x64\x4d\x6d\x6b\x58\x57\x36\x6e\x75','\x62\x4d\x78\x64\x52\x61','\x57\x4f\x62\x67\x75\x38\x6b\x4d\x44\x4d\x34','\x57\x4f\x42\x63\x4c\x72\x33\x64\x4a\x6d\x6b\x31\x57\x50\x75\x68\x45\x47','\x57\x34\x35\x6a\x57\x50\x52\x63\x51\x43\x6f\x34\x45\x43\x6f\x41\x57\x37\x30','\x57\x51\x48\x4a\x66\x61','\x6c\x32\x56\x63\x55\x47','\x71\x77\x2f\x64\x4c\x38\x6f\x71\x65\x6d\x6f\x72\x57\x37\x44\x5a','\x57\x50\x74\x63\x52\x43\x6b\x35\x57\x52\x44\x63\x72\x53\x6b\x6c\x70\x71','\x74\x6d\x6b\x34\x57\x36\x38\x4f\x57\x34\x70\x64\x55\x4e\x66\x58','\x6d\x77\x68\x63\x51\x71','\x57\x37\x69\x35\x57\x50\x70\x64\x47\x4d\x6c\x63\x49\x61\x6d','\x42\x6d\x6b\x6d\x57\x35\x34\x65','\x46\x75\x33\x64\x50\x57','\x57\x34\x79\x6a\x57\x34\x56\x63\x56\x61','\x79\x31\x47\x53\x77\x72\x4f\x6f\x61\x78\x46\x63\x52\x43\x6f\x72\x57\x36\x71\x4b','\x57\x50\x74\x64\x51\x53\x6b\x52\x57\x36\x75','\x44\x38\x6b\x52\x43\x38\x6f\x30\x6e\x38\x6f\x7a\x57\x51\x72\x53','\x64\x38\x6f\x5a\x57\x50\x52\x64\x4d\x4c\x37\x64\x54\x57','\x57\x50\x74\x64\x52\x53\x6b\x79\x45\x74\x4a\x63\x52\x38\x6f\x48\x64\x57','\x57\x52\x38\x61\x57\x4f\x31\x43\x42\x6d\x6b\x50\x45\x73\x53','\x6e\x33\x42\x63\x51\x6d\x6b\x43','\x57\x37\x4b\x6d\x57\x50\x30\x31','\x67\x38\x6f\x31\x67\x68\x71\x4d\x57\x50\x74\x63\x49\x71\x57','\x6c\x6d\x6f\x39\x57\x50\x52\x64\x4b\x71','\x57\x4f\x2f\x64\x50\x6d\x6b\x2b\x57\x36\x5a\x63\x4e\x38\x6b\x54','\x6a\x75\x37\x64\x56\x73\x57','\x57\x36\x70\x63\x56\x53\x6b\x68\x57\x34\x56\x63\x53\x57','\x57\x50\x61\x47\x57\x50\x39\x6c\x57\x36\x39\x72\x57\x4f\x48\x6f','\x57\x50\x74\x63\x54\x38\x6b\x7a\x57\x52\x44\x43\x77\x53\x6b\x73\x6e\x57','\x57\x52\x4e\x63\x4c\x53\x6b\x49\x57\x50\x43','\x57\x35\x4a\x64\x53\x33\x42\x63\x56\x74\x6e\x51\x67\x38\x6f\x46','\x57\x35\x6c\x64\x51\x48\x4c\x41\x57\x4f\x30\x6f','\x6a\x73\x47\x64\x78\x38\x6b\x4d\x72\x6d\x6b\x42\x65\x61','\x61\x38\x6b\x71\x57\x52\x65','\x6b\x53\x6f\x73\x6c\x75\x69\x44\x57\x50\x46\x63\x55\x4a\x38','\x6c\x58\x6c\x63\x4f\x71','\x73\x66\x72\x47\x7a\x76\x72\x50\x75\x53\x6b\x2b','\x57\x34\x53\x53\x57\x36\x2f\x63\x56\x47','\x57\x34\x69\x6e\x57\x35\x52\x63\x50\x38\x6b\x2f\x76\x6d\x6b\x59\x57\x34\x4f','\x57\x36\x33\x63\x47\x59\x69','\x57\x35\x33\x63\x4f\x38\x6b\x47\x57\x34\x65','\x6f\x6d\x6f\x4f\x57\x52\x75\x54\x42\x47','\x57\x50\x46\x63\x55\x6d\x6b\x67\x57\x52\x35\x76\x75\x71','\x57\x51\x64\x64\x56\x73\x72\x6f\x57\x36\x4a\x63\x47\x68\x50\x6d','\x57\x35\x54\x36\x57\x50\x4a\x63\x4f\x43\x6f\x4d\x46\x43\x6f\x41\x57\x36\x65','\x57\x51\x46\x63\x49\x43\x6f\x75\x57\x50\x64\x64\x4e\x57','\x57\x37\x43\x57\x57\x36\x4e\x64\x4c\x6d\x6b\x39\x57\x50\x6d\x4c\x65\x57','\x57\x52\x4f\x69\x57\x50\x66\x6a\x73\x53\x6b\x53\x74\x71\x47','\x78\x43\x6f\x56\x57\x34\x46\x63\x4a\x71','\x67\x67\x2f\x64\x55\x62\x4a\x64\x4d\x32\x42\x64\x55\x57','\x57\x52\x48\x4e\x62\x38\x6b\x59\x71\x38\x6b\x50\x57\x35\x4a\x63\x4f\x47','\x6d\x68\x64\x63\x52\x38\x6b\x71\x6c\x63\x78\x63\x56\x38\x6f\x79','\x45\x38\x6f\x52\x41\x53\x6f\x6f\x42\x4e\x6e\x4d\x57\x37\x30','\x57\x37\x38\x2f\x57\x50\x4a\x64\x4f\x33\x2f\x63\x4a\x61','\x57\x37\x6d\x39\x57\x36\x4e\x63\x4f\x57\x54\x57','\x44\x68\x37\x64\x4a\x47','\x57\x52\x4b\x2b\x57\x50\x76\x7a\x41\x38\x6b\x73\x73\x63\x71','\x6c\x72\x6c\x63\x53\x71','\x6f\x43\x6f\x71\x46\x74\x39\x35\x57\x51\x6c\x63\x54\x43\x6b\x48','\x57\x51\x74\x63\x48\x53\x6f\x6f\x57\x4f\x42\x64\x4c\x53\x6b\x58\x57\x36\x54\x49','\x6d\x6d\x6b\x42\x57\x52\x38\x6b\x57\x52\x68\x64\x47\x66\x46\x63\x49\x47','\x57\x50\x57\x7a\x65\x53\x6f\x39\x6c\x5a\x53\x76\x57\x52\x64\x63\x52\x38\x6f\x58\x57\x4f\x42\x64\x4d\x53\x6b\x67','\x6c\x63\x61\x79','\x70\x59\x46\x63\x54\x53\x6f\x58\x6f\x73\x52\x64\x47\x71','\x57\x35\x34\x79\x57\x34\x33\x63\x4f\x71','\x57\x34\x46\x63\x50\x5a\x50\x4c','\x57\x36\x64\x64\x4c\x31\x56\x63\x4d\x58\x48\x46\x66\x53\x6f\x48','\x57\x34\x47\x36\x77\x6d\x6b\x6c\x69\x53\x6b\x41','\x57\x34\x78\x63\x54\x49\x44\x36\x57\x51\x64\x63\x50\x6d\x6f\x51\x62\x47','\x57\x4f\x33\x64\x52\x53\x6b\x39','\x70\x43\x6b\x2b\x75\x38\x6f\x56\x75\x76\x6e\x48\x57\x37\x79','\x66\x53\x6f\x59\x65\x78\x34\x72\x57\x51\x42\x63\x49\x57\x57','\x57\x36\x65\x6b\x57\x35\x74\x63\x47\x63\x39\x65\x57\x34\x38\x44','\x57\x34\x37\x63\x54\x49\x44\x36\x57\x51\x46\x63\x52\x57','\x57\x37\x30\x31\x57\x50\x6c\x64\x4f\x76\x74\x63\x4c\x57\x6d\x46','\x63\x6d\x6f\x33\x72\x62\x71','\x6e\x32\x56\x63\x52\x38\x6b\x43','\x46\x33\x37\x64\x4a\x71','\x45\x67\x76\x6e\x78\x67\x48\x62\x46\x43\x6b\x72','\x6d\x38\x6f\x6f\x46\x59\x4b','\x72\x43\x6b\x43\x74\x53\x6f\x77','\x57\x50\x52\x64\x56\x38\x6b\x56\x73\x38\x6b\x41\x6e\x58\x6c\x63\x51\x71','\x57\x52\x70\x64\x4e\x38\x6b\x71\x57\x34\x74\x63\x54\x61','\x6d\x43\x6f\x69\x57\x50\x35\x64\x57\x51\x74\x63\x49\x57\x54\x73\x57\x51\x43\x77\x57\x36\x74\x64\x50\x78\x47','\x71\x53\x6b\x6e\x57\x34\x6c\x64\x50\x43\x6f\x61\x57\x34\x74\x63\x55\x5a\x71','\x6d\x78\x68\x63\x53\x38\x6b\x6e\x6b\x59\x2f\x63\x53\x38\x6f\x57','\x57\x52\x70\x63\x4a\x43\x6f\x7a\x57\x50\x64\x64\x4c\x43\x6b\x57','\x62\x57\x54\x50\x64\x30\x54\x43','\x76\x4b\x66\x37\x79\x66\x48\x48\x71\x38\x6b\x70','\x57\x37\x76\x68\x57\x37\x46\x64\x4d\x38\x6b\x48\x57\x50\x6d\x4e\x68\x57','\x57\x50\x79\x44\x57\x52\x4b','\x57\x52\x53\x65\x57\x4f\x4c\x35\x78\x43\x6b\x6f\x45\x5a\x38','\x42\x6d\x6f\x6c\x57\x36\x68\x63\x52\x73\x43\x6d\x57\x34\x56\x64\x47\x57','\x57\x52\x75\x6f\x57\x50\x6d','\x57\x34\x34\x57\x73\x43\x6b\x62','\x57\x51\x62\x79\x70\x43\x6b\x48\x71\x61','\x57\x36\x44\x64\x57\x36\x35\x2b\x57\x35\x47\x71\x6f\x53\x6f\x61','\x57\x35\x4f\x41\x57\x35\x6c\x64\x4f\x43\x6b\x57\x57\x51\x38\x67\x6f\x71','\x57\x34\x46\x64\x53\x67\x61','\x42\x43\x6b\x6d\x41\x74\x39\x56\x57\x51\x6c\x63\x56\x6d\x6b\x5a','\x57\x51\x2f\x63\x48\x38\x6f\x70','\x57\x35\x75\x68\x57\x35\x4a\x64\x4f\x43\x6b\x6c','\x57\x52\x4a\x64\x4b\x4d\x76\x78\x57\x52\x5a\x63\x4f\x6d\x6b\x51\x57\x34\x56\x64\x53\x64\x34\x48\x6e\x4d\x53','\x57\x34\x58\x61\x57\x4f\x2f\x63\x4e\x38\x6f\x47\x41\x6d\x6f\x6e\x57\x37\x79','\x57\x52\x69\x74\x57\x51\x72\x73\x57\x36\x31\x78\x57\x50\x35\x57','\x70\x59\x47\x79\x78\x71','\x57\x50\x38\x57\x57\x4f\x4c\x62\x57\x34\x4c\x39\x57\x52\x48\x6f','\x41\x6d\x6b\x49\x57\x51\x53','\x57\x35\x37\x63\x4d\x5a\x30\x63\x57\x36\x69','\x57\x4f\x42\x64\x4c\x6d\x6b\x37\x57\x36\x52\x63\x4d\x43\x6b\x30\x57\x35\x74\x64\x48\x47','\x57\x50\x47\x4b\x57\x4f\x39\x54','\x57\x52\x46\x63\x56\x31\x38\x61\x57\x35\x58\x45\x72\x43\x6b\x54\x57\x36\x4c\x7a\x57\x34\x33\x64\x4c\x38\x6f\x50','\x78\x53\x6b\x73\x77\x57','\x6a\x73\x57\x7a\x71\x6d\x6b\x4c\x74\x6d\x6b\x67','\x78\x53\x6b\x44\x57\x50\x37\x64\x50\x47\x65','\x57\x50\x4b\x58\x57\x4f\x6d','\x57\x34\x57\x6a\x57\x52\x70\x64\x48\x31\x4e\x63\x4f\x74\x69\x4a','\x57\x51\x64\x63\x51\x62\x4e\x64\x55\x43\x6b\x66','\x6e\x48\x5a\x63\x50\x6d\x6f\x50','\x57\x35\x52\x63\x54\x49\x31\x5a','\x57\x50\x79\x4f\x57\x4f\x35\x54\x57\x34\x54\x5a\x57\x51\x39\x6b','\x57\x52\x4a\x63\x52\x64\x37\x64\x50\x38\x6b\x69\x57\x51\x4f\x4a\x44\x57','\x57\x35\x69\x38\x57\x52\x79\x45\x57\x51\x53\x6c\x57\x4f\x42\x63\x56\x61','\x57\x52\x6c\x63\x4a\x43\x6f\x42\x57\x50\x42\x64\x49\x6d\x6b\x37\x57\x37\x39\x62','\x79\x43\x6b\x4a\x57\x52\x47','\x57\x37\x4a\x64\x4d\x4b\x74\x63\x4f\x57\x4c\x7a\x6e\x53\x6f\x4c','\x57\x4f\x56\x64\x4b\x53\x6b\x55\x75\x57','\x67\x53\x6f\x46\x57\x4f\x71\x6e\x72\x6d\x6f\x56\x57\x36\x42\x63\x4b\x61','\x6b\x53\x6b\x50\x57\x50\x4b\x31\x57\x4f\x42\x64\x50\x32\x4e\x63\x53\x61','\x57\x4f\x6d\x78\x57\x51\x30','\x74\x65\x66\x47\x79\x47','\x57\x50\x47\x31\x57\x50\x39\x54','\x78\x75\x66\x37\x79\x66\x39\x51','\x57\x4f\x46\x63\x48\x72\x64\x64\x4a\x43\x6b\x55\x57\x50\x30\x32\x72\x47','\x57\x35\x4a\x63\x55\x43\x6b\x49\x57\x37\x68\x63\x48\x61','\x74\x33\x44\x5a\x46\x4c\x72\x52\x78\x57','\x79\x53\x6f\x52\x43\x43\x6f\x66\x41\x77\x48\x46\x57\x34\x4b','\x57\x37\x38\x32\x57\x50\x56\x64\x4d\x33\x2f\x63\x4c\x47\x43\x46','\x57\x51\x42\x64\x4c\x6d\x6b\x6a\x57\x35\x4e\x63\x54\x43\x6b\x7a\x57\x37\x56\x64\x4f\x57','\x57\x35\x75\x56\x74\x38\x6b\x78','\x57\x52\x61\x6f\x57\x50\x4f','\x66\x53\x6f\x59\x65\x78\x34\x44\x57\x52\x64\x63\x4a\x72\x30','\x57\x35\x30\x7a\x57\x35\x70\x64\x54\x57','\x57\x4f\x75\x37\x57\x35\x75\x46\x57\x37\x37\x63\x49\x43\x6b\x6c\x57\x4f\x6c\x64\x54\x6d\x6b\x62\x57\x37\x64\x64\x52\x61','\x57\x51\x4f\x55\x57\x4f\x75\x52\x57\x35\x52\x64\x48\x74\x35\x53','\x6e\x73\x52\x63\x54\x38\x6f\x31\x64\x5a\x46\x63\x50\x71','\x57\x4f\x68\x64\x4f\x53\x6f\x5a\x57\x52\x30','\x57\x35\x69\x43\x57\x35\x52\x64\x4f\x43\x6b\x2f\x57\x52\x30\x78\x6d\x47','\x57\x51\x64\x63\x49\x38\x6f\x44\x57\x51\x78\x64\x4b\x38\x6b\x59\x57\x37\x34','\x57\x51\x38\x76\x57\x4f\x39\x66\x7a\x38\x6b\x51\x76\x63\x57','\x66\x38\x6f\x54\x61\x77\x47','\x57\x34\x39\x70\x72\x43\x6b\x70\x43\x77\x35\x66','\x46\x38\x6f\x4d\x45\x43\x6f\x61\x7a\x78\x6e\x63\x57\x36\x69','\x57\x35\x7a\x30\x57\x35\x6e\x75\x57\x37\x57\x30\x6a\x6d\x6f\x50','\x70\x38\x6f\x46\x45\x59\x50\x57\x57\x51\x4e\x63\x47\x43\x6b\x4c','\x57\x34\x50\x6e\x57\x50\x37\x63\x52\x47','\x57\x36\x4a\x64\x52\x48\x48\x68\x57\x4f\x4b\x6e\x67\x71','\x57\x37\x42\x64\x4e\x4b\x47\x36\x57\x35\x2f\x64\x51\x38\x6f\x30\x76\x47','\x57\x50\x5a\x64\x54\x38\x6f\x4d\x57\x52\x33\x63\x47\x62\x34','\x57\x4f\x4f\x4e\x57\x51\x4b\x6f\x57\x37\x42\x64\x55\x47\x76\x4a'];_0x1ba5=function(){return _0x27329c;};return _0x1ba5();}function traceEncryptionExplicitlyDisabled(_0x2512f5=process.env){const _0x210081=_0x2b50,_0x1a13e1=String(_0x2512f5[_0x210081(0x1f4,'\x53\x39\x54\x5e')+_0x210081(0x25b,'\x4f\x70\x6a\x64')+_0x210081(0x1f8,'\x24\x41\x45\x57')+_0x210081(0x17c,'\x6f\x4f\x52\x4f')]??_0x2512f5[_0x210081(0x1c1,'\x47\x71\x5a\x30')+_0x210081(0x220,'\x6e\x51\x37\x4f')+'\x43\x45\x5f\x45\x4e\x43\x52\x59'+'\x50\x54\x49\x4f\x4e']??'')['\x74\x72\x69\x6d']()['\x74\x6f\x4c\x6f\x77\x65\x72\x43'+'\x61\x73\x65']();return _0x1a13e1==='\x30'||_0x1a13e1===_0x210081(0x15e,'\x38\x6d\x64\x5d')||_0x1a13e1===_0x210081(0x1fd,'\x61\x28\x4e\x43')||_0x1a13e1===_0x210081(0x290,'\x31\x6f\x6c\x21');}function traceFlagEnabled(_0x4d51e7){const _0x4672fa=_0x2b50,_0x573b3c=String(_0x4d51e7??'')[_0x4672fa(0x1af,'\x66\x48\x50\x66')]()[_0x4672fa(0x23f,'\x79\x48\x4a\x79')+_0x4672fa(0x1ea,'\x44\x4f\x34\x28')]();return _0x573b3c==='\x31'||_0x573b3c===_0x4672fa(0x28f,'\x6e\x51\x37\x4f')||_0x573b3c==='\x6f\x6e'||_0x573b3c===_0x4672fa(0x18b,'\x47\x71\x5a\x30');}function metadataOnlyFallbackAllowed(_0x62e8fd=process.env,_0x5105ad=![]){const _0xaaac57=_0x2b50;return captureBodiesEnabled(_0x62e8fd)&&!traceFlagEnabled(_0x62e8fd[_0xaaac57(0x202,'\x5e\x59\x74\x52')+'\x4c\x4c\x4d\x5f\x54\x52\x41\x43'+_0xaaac57(0x1ab,'\x31\x6f\x6c\x21')+'\x54\x49\x4f\x4e'])&&!traceFlagEnabled(_0x62e8fd[_0xaaac57(0x18d,'\x32\x48\x36\x25')+_0xaaac57(0x1ce,'\x6e\x45\x28\x41')+_0xaaac57(0x1ec,'\x4d\x7a\x66\x43')+'\x50\x54\x49\x4f\x4e'])&&!traceFlagEnabled(_0x62e8fd[_0xaaac57(0x1f9,'\x37\x64\x47\x4a')+'\x4c\x4c\x4d\x5f\x54\x52\x41\x43'+_0xaaac57(0x1bb,'\x5e\x34\x21\x77')+_0xaaac57(0x229,'\x41\x68\x32\x4a')+'\x49\x53'])&&!traceFlagEnabled(_0x62e8fd['\x45\x56\x4f\x4d\x41\x50\x5f\x50'+_0xaaac57(0x218,'\x57\x5e\x6d\x34')+_0xaaac57(0x17f,'\x79\x39\x47\x64')+_0xaaac57(0x299,'\x53\x39\x54\x5e')+_0xaaac57(0x1d8,'\x6e\x45\x28\x41')])&&!_0x5105ad;}export function resolveTraceNodeSecretMaterial(_0x2d5eea=process.env,_0x10f4ac,_0x2aa716){const _0x276615=_0x2b50,_0x56ec40=_0x2aa716!==undefined?parseNodeSecretVersion(_0x2aa716):undefined,_0xce2f40=_0x2d5eea['\x45\x56\x4f\x4d\x41\x50\x5f\x4e'+_0x276615(0x283,'\x74\x29\x70\x75')+'\x45\x54']??_0x2d5eea[_0x276615(0x18a,'\x42\x62\x4f\x33')+_0x276615(0x270,'\x6e\x51\x37\x4f')],_0x486d82=_0xce2f40&&isNodeSecret(_0xce2f40)?_0xce2f40:undefined,_0x18f764=parseNodeSecretVersion(_0x2d5eea[_0x276615(0x1ca,'\x6b\x2a\x30\x25')+_0x276615(0x283,'\x74\x29\x70\x75')+_0x276615(0x1e7,'\x6f\x4f\x52\x4f')+'\x4f\x4e']??_0x2d5eea[_0x276615(0x221,'\x66\x48\x50\x66')+_0x276615(0x1a5,'\x66\x6d\x43\x73')+_0x276615(0x24b,'\x6b\x4b\x43\x36')]),_0x4a8361=_0x10f4ac?.[_0x276615(0x264,'\x6b\x2a\x30\x25')]?.(_0x276615(0x1be,'\x28\x58\x6a\x42')+_0x276615(0x284,'\x6e\x51\x37\x4f')),_0x346a9a=_0x4a8361&&isNodeSecret(_0x4a8361)?_0x4a8361:undefined,_0x485da6=_0x10f4ac?.[_0x276615(0x201,'\x72\x69\x5a\x44')]?.(_0x276615(0x17b,'\x66\x6d\x43\x73')+_0x276615(0x279,'\x37\x64\x47\x4a')+'\x63\x65'),_0x36d0b8=parseNodeSecretVersion(_0x10f4ac?.[_0x276615(0x15c,'\x50\x32\x45\x26')]?.('\x6e\x6f\x64\x65\x5f\x73\x65\x63'+_0x276615(0x252,'\x47\x71\x5a\x30')+'\x69\x6f\x6e'));if(_0x485da6===_0x276615(0x19b,'\x63\x35\x28\x73')+'\x74\x65'&&_0x346a9a)return{'\x6e\x6f\x64\x65\x53\x65\x63\x72\x65\x74':_0x346a9a,'\x6e\x6f\x64\x65\x53\x65\x63\x72\x65\x74\x56\x65\x72\x73\x69\x6f\x6e':_0x56ec40??_0x36d0b8};if(_0x486d82)return _0x276615(0x190,'\x5b\x62\x65\x4e')===_0x276615(0x1d3,'\x72\x69\x5a\x44')?{'\x6e\x6f\x64\x65\x53\x65\x63\x72\x65\x74':_0x486d82,'\x6e\x6f\x64\x65\x53\x65\x63\x72\x65\x74\x56\x65\x72\x73\x69\x6f\x6e':_0x56ec40??_0x18f764??(_0x486d82===_0x346a9a?_0x36d0b8:undefined)}:{'\x6e\x6f\x64\x65\x53\x65\x63\x72\x65\x74':_0x26b330,'\x6e\x6f\x64\x65\x53\x65\x63\x72\x65\x74\x56\x65\x72\x73\x69\x6f\x6e':_0x5c0ad1??_0x233db3??(_0x3c1fb3===_0x1d76fc?_0x30ef91:_0x3985d5)};if(_0x346a9a)return{'\x6e\x6f\x64\x65\x53\x65\x63\x72\x65\x74':_0x346a9a,'\x6e\x6f\x64\x65\x53\x65\x63\x72\x65\x74\x56\x65\x72\x73\x69\x6f\x6e':_0x56ec40??_0x36d0b8};const _0x40f291=evomapHome(_0x2d5eea),_0x2d56b8=readTrimmedFile(join(_0x40f291,_0x276615(0x192,'\x42\x62\x4f\x33')+_0x276615(0x1d1,'\x4d\x7a\x66\x43')));if(!_0x2d56b8||!isNodeSecret(_0x2d56b8))return{..._0x56ec40!==undefined?{'\x6e\x6f\x64\x65\x53\x65\x63\x72\x65\x74\x56\x65\x72\x73\x69\x6f\x6e':_0x56ec40}:{}};const _0x3fa3b2=parseNodeSecretVersion(readTrimmedFile(join(_0x40f291,_0x276615(0x21c,'\x44\x31\x52\x31')+_0x276615(0x198,'\x4d\x7a\x66\x43')+_0x276615(0x18e,'\x72\x69\x5a\x44'))));return{'\x6e\x6f\x64\x65\x53\x65\x63\x72\x65\x74':_0x2d56b8,'\x6e\x6f\x64\x65\x53\x65\x63\x72\x65\x74\x56\x65\x72\x73\x69\x6f\x6e':_0x56ec40??_0x3fa3b2};}export function resolveTraceNodeSecretVersion(_0x5701f8=process.env,_0x4928e2,_0x44b690){const _0x2d8971=_0x2b50;return resolveTraceNodeSecretMaterial(_0x5701f8,_0x4928e2,_0x44b690)[_0x2d8971(0x178,'\x28\x58\x6a\x42')+_0x2d8971(0x227,'\x32\x48\x36\x25')+'\x6e'];}function metadataOnlyTraceRecord(_0x4864a9){const _0x57c994=_0x2b50,{requestBody:_0x3c5df3,responseBody:_0x4464e0,request_headers:_0x2e367d,response_headers:_0x35f0d8,transport_metadata:_0x5d9d73,attempts:_0x53622c,..._0x496964}=_0x4864a9,_0x57c184=_0x53622c?.[_0x57c994(0x1fa,'\x5e\x34\x21\x77')](_0x285e1b=>{const {requestBody:_0x18b3ab,responseBody:_0x195668,..._0xbc662b}=_0x285e1b;return{..._0xbc662b,'\x62\x6f\x64\x79\x5f\x74\x72\x75\x6e\x63\x61\x74\x65\x64':!![]};});return{..._0x496964,'\x62\x6f\x64\x79\x5f\x74\x72\x75\x6e\x63\x61\x74\x65\x64':!![],..._0x57c184&&_0x57c184[_0x57c994(0x166,'\x66\x6d\x43\x73')]>-0x1fc1+0x2b1+-0x78*-0x3e?{'\x61\x74\x74\x65\x6d\x70\x74\x73':_0x57c184}:{}};}export class JsonlTraceSink{[_0x16fb69(0x1fe,'\x5e\x59\x74\x52')];[_0x16fb69(0x29e,'\x4f\x70\x6a\x64')];[_0x16fb69(0x193,'\x6e\x45\x28\x41')];[_0x16fb69(0x16a,'\x4f\x70\x6a\x64')];[_0x16fb69(0x200,'\x6e\x51\x37\x4f')]=![];['\x63\x68\x6d\x6f\x64\x57\x61\x72'+_0x16fb69(0x261,'\x70\x24\x6d\x36')]=![];[_0x16fb69(0x16c,'\x38\x6d\x64\x5d')+_0x16fb69(0x28c,'\x52\x6c\x66\x63')]=![];[_0x16fb69(0x23a,'\x4f\x70\x6a\x64')+_0x16fb69(0x1b8,'\x79\x39\x47\x64')]=![];['\x6d\x61\x69\x6c\x62\x6f\x78\x57'+_0x16fb69(0x205,'\x5e\x34\x21\x77')]=![];[_0x16fb69(0x231,'\x65\x6e\x77\x35')+'\x79']=null;[_0x16fb69(0x1f2,'\x24\x41\x45\x57')+_0x16fb69(0x1bf,'\x42\x62\x4f\x33')]=new Set();[_0x16fb69(0x1d4,'\x79\x39\x47\x64')]=Promise[_0x16fb69(0x162,'\x53\x49\x37\x79')]();constructor(_0x49f399){const _0x565250=_0x16fb69;this[_0x565250(0x286,'\x74\x29\x70\x75')]=_0x49f399,this[_0x565250(0x243,'\x70\x24\x6d\x36')]=_0x49f399[_0x565250(0x22c,'\x6e\x45\x28\x41')]??(()=>Date[_0x565250(0x195,'\x38\x6d\x64\x5d')]()),this[_0x565250(0x27f,'\x5b\x62\x65\x4e')]=_0x49f399[_0x565250(0x160,'\x72\x69\x5a\x44')+'\x79\x74\x65\x73']??DEFAULT_TRACE_FILE_CAP_BYTES,this[_0x565250(0x1bd,'\x72\x69\x5a\x44')]=_0x49f399[_0x565250(0x293,'\x5e\x34\x21\x77')]??console;try{mkdirSync(_0x49f399[_0x565250(0x16f,'\x6c\x6d\x36\x4c')],{'\x72\x65\x63\x75\x72\x73\x69\x76\x65':!![]});}catch{}this[_0x565250(0x24f,'\x79\x39\x47\x64')+_0x565250(0x203,'\x63\x35\x28\x73')+_0x565250(0x214,'\x6c\x52\x4b\x4c')+_0x565250(0x249,'\x50\x32\x45\x26')]();}[_0x16fb69(0x1c4,'\x42\x62\x4f\x33')](){const _0x22f206=_0x16fb69;return join(this[_0x22f206(0x1fe,'\x5e\x59\x74\x52')][_0x22f206(0x158,'\x24\x41\x45\x57')],'\x6c\x6c\x6d\x2d\x74\x72\x61\x63'+'\x65\x2d'+dayStamp(this[_0x22f206(0x1da,'\x79\x48\x4a\x79')]())+_0x22f206(0x27c,'\x4e\x4a\x67\x4f'));}['\x66\x6c\x75\x73\x68'](){const _0x40292b=_0x16fb69;return this[_0x40292b(0x232,'\x31\x63\x28\x78')];}[_0x16fb69(0x1e2,'\x74\x75\x6e\x71')]=_0xd6595a=>{const _0x15c627=_0x16fb69;try{if(_0x15c627(0x1a3,'\x5e\x59\x74\x52')===_0x15c627(0x1f7,'\x50\x32\x45\x26')){const _0x40b78d=this[_0x15c627(0x156,'\x37\x64\x47\x4a')][_0x15c627(0x1d6,'\x32\x48\x36\x25')]??process.env;if(!traceCollectionEnabled(_0x40b78d,this[_0x15c627(0x286,'\x74\x29\x70\x75')][_0x15c627(0x24c,'\x52\x6c\x66\x63')+_0x15c627(0x1f3,'\x4f\x70\x6a\x64')]))return;const _0x96d6aa=dayStamp(this[_0x15c627(0x265,'\x6c\x6d\x36\x4c')]());if(this[_0x15c627(0x28e,'\x72\x69\x5a\x44')+'\x79']===_0x96d6aa)return;const _0x3c9dda=this[_0x15c627(0x26f,'\x4d\x7a\x66\x43')]();try{if(_0x15c627(0x212,'\x65\x6e\x77\x35')===_0x15c627(0x295,'\x72\x33\x58\x26')){if(statSync(_0x3c9dda)[_0x15c627(0x1d9,'\x5e\x34\x21\x77')]>=this[_0x15c627(0x168,'\x31\x48\x52\x6c')]){this[_0x15c627(0x1cb,'\x6f\x4f\x52\x4f')+'\x79']=_0x96d6aa,this[_0x15c627(0x1ad,'\x5e\x59\x74\x52')][_0x15c627(0x28a,'\x5e\x34\x21\x77')]?.(JSON[_0x15c627(0x29f,'\x79\x39\x47\x64')+'\x79']({'\x65\x76\x65\x6e\x74':_0x15c627(0x222,'\x6c\x52\x4b\x4c')+_0x15c627(0x28d,'\x57\x5e\x6d\x34'),'\x66\x69\x6c\x65':_0x3c9dda,'\x63\x61\x70\x5f\x62\x79\x74\x65\x73':this[_0x15c627(0x25e,'\x61\x28\x4e\x43')]}));return;}}else{const _0x3229be=_0x7212a3(_0x55eace??'')[_0x15c627(0x161,'\x32\x48\x36\x25')]()[_0x15c627(0x1ee,'\x41\x68\x32\x4a')+_0x15c627(0x271,'\x68\x53\x53\x34')]();return _0x3229be==='\x31'||_0x3229be===_0x15c627(0x1dc,'\x28\x58\x6a\x42')||_0x3229be==='\x6f\x6e'||_0x3229be===_0x15c627(0x242,'\x41\x68\x32\x4a');}}catch{}const _0xa3a5c1=traceProfileAnalysisEnabled(_0x40b78d,this[_0x15c627(0x1e4,'\x6c\x6d\x36\x4c')][_0x15c627(0x175,'\x70\x24\x6d\x36')+_0x15c627(0x1df,'\x74\x75\x6e\x71')]),_0x1c0cd2=resolveTraceNodeSecretMaterial(_0x40b78d,this[_0x15c627(0x228,'\x66\x6d\x43\x73')][_0x15c627(0x216,'\x65\x6e\x77\x35')+_0x15c627(0x292,'\x52\x6c\x66\x63')],this[_0x15c627(0x172,'\x70\x24\x6d\x36')]['\x6e\x6f\x64\x65\x53\x65\x63\x72'+_0x15c627(0x277,'\x6e\x45\x28\x41')+'\x6e']),_0x15afa0=materializeTraceForStorage(_0xd6595a,_0x40b78d,{'\x6e\x6f\x64\x65\x53\x65\x63\x72\x65\x74\x56\x65\x72\x73\x69\x6f\x6e':_0x1c0cd2[_0x15c627(0x268,'\x47\x71\x5a\x30')+_0x15c627(0x282,'\x2a\x43\x6f\x39')+'\x6e'],'\x6e\x6f\x64\x65\x53\x65\x63\x72\x65\x74':_0x1c0cd2['\x6e\x6f\x64\x65\x53\x65\x63\x72'+'\x65\x74'],'\x68\x75\x62\x50\x75\x62\x6c\x69\x63\x4b\x65\x79':traceHubPublicKey(_0x40b78d,this[_0x15c627(0x248,'\x50\x57\x70\x49')][_0x15c627(0x27a,'\x38\x6d\x64\x5d')+'\x74\x6f\x72\x65']),'\x70\x72\x6f\x66\x69\x6c\x65\x41\x6e\x61\x6c\x79\x73\x69\x73\x45\x6e\x61\x62\x6c\x65\x64':_0xa3a5c1,'\x70\x72\x6f\x64\x75\x63\x65\x72\x47\x65\x6e\x65\x72\x61\x74\x69\x6f\x6e':'\x76\x32','\x70\x72\x6f\x64\x75\x63\x65\x72\x56\x65\x72\x73\x69\x6f\x6e':this[_0x15c627(0x1b4,'\x63\x35\x28\x73')][_0x15c627(0x208,'\x4d\x7a\x66\x43')+_0x15c627(0x247,'\x79\x48\x4a\x79')],'\x70\x72\x6f\x64\x75\x63\x65\x72\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\x74':_0x15c627(0x256,'\x32\x48\x36\x25')});let _0x2622e8;if(_0x15afa0['\x6f\x6b'])_0x2622e8=_0x15afa0['\x72\x65\x63\x6f\x72\x64'],this[_0x15c627(0x272,'\x6e\x51\x37\x4f')+_0x15c627(0x1e8,'\x24\x41\x45\x57')+_0x15c627(0x1a8,'\x70\x24\x6d\x36')](_0x15afa0[_0x15c627(0x174,'\x61\x35\x5e\x4a')]);else{if(traceEncryptionExplicitlyDisabled(_0x40b78d)){if(!this[_0x15c627(0x1c9,'\x44\x31\x52\x31')+_0x15c627(0x258,'\x6f\x4f\x52\x4f')]){if(_0x15c627(0x19d,'\x24\x41\x45\x57')===_0x15c627(0x24d,'\x32\x48\x36\x25'))this[_0x15c627(0x27e,'\x4d\x7a\x66\x43')+_0x15c627(0x1c2,'\x4f\x70\x6a\x64')]=!![],this[_0x15c627(0x27b,'\x53\x49\x37\x79')][_0x15c627(0x1b3,'\x79\x39\x47\x64')]?.(JSON[_0x15c627(0x21f,'\x32\x48\x36\x25')+'\x79']({'\x65\x76\x65\x6e\x74':'\x6c\x6c\x6d\x5f\x74\x72\x61\x63'+_0x15c627(0x22e,'\x79\x48\x4a\x79')+_0x15c627(0x1ef,'\x4f\x70\x6a\x64')+'\x65\x73','\x72\x65\x61\x73\x6f\x6e':'\x74\x72\x61\x63\x65\x5f\x65\x6e'+_0x15c627(0x1f5,'\x66\x6d\x43\x73')+_0x15c627(0x16d,'\x68\x53\x53\x34')+'\x64'}));else return _0x498e70(_0x3c424e)&&!_0x43aca9(_0x492eda[_0x15c627(0x28b,'\x50\x4f\x58\x76')+_0x15c627(0x206,'\x79\x39\x47\x64')+_0x15c627(0x22d,'\x5e\x34\x21\x77')+_0x15c627(0x239,'\x4e\x4a\x67\x4f')])&&!_0x42fc01(_0x185a04['\x45\x56\x4f\x4d\x41\x50\x5f\x50'+'\x52\x4f\x58\x59\x5f\x54\x52\x41'+_0x15c627(0x1b0,'\x79\x48\x4a\x79')+_0x15c627(0x183,'\x5e\x34\x21\x77')])&&!_0x8e141(_0x496d56[_0x15c627(0x1b1,'\x68\x53\x53\x34')+_0x15c627(0x1aa,'\x61\x28\x4e\x43')+_0x15c627(0x21b,'\x6e\x45\x28\x41')+_0x15c627(0x1db,'\x24\x41\x45\x57')+'\x49\x53'])&&!_0x7ea4a6(_0x286e87[_0x15c627(0x1e9,'\x66\x6d\x43\x73')+_0x15c627(0x29d,'\x28\x58\x6a\x42')+_0x15c627(0x15f,'\x42\x62\x4f\x33')+'\x4c\x45\x5f\x41\x4e\x41\x4c\x59'+_0x15c627(0x236,'\x24\x41\x45\x57')])&&!_0x183842;}_0x2622e8=_0xd6595a;}else{!this[_0x15c627(0x297,'\x2a\x43\x6f\x39')+_0x15c627(0x188,'\x50\x57\x70\x49')]&&(this[_0x15c627(0x20d,'\x4d\x7a\x66\x43')+_0x15c627(0x167,'\x37\x64\x47\x4a')]=!![],this['\x6c\x6f\x67'][_0x15c627(0x19a,'\x6c\x6d\x36\x4c')]?.(JSON['\x73\x74\x72\x69\x6e\x67\x69\x66'+'\x79']({'\x65\x76\x65\x6e\x74':_0x15c627(0x1ae,'\x53\x39\x54\x5e')+_0x15c627(0x169,'\x72\x69\x5a\x44')+_0x15c627(0x213,'\x5b\x62\x65\x4e')+_0x15c627(0x1e3,'\x53\x39\x54\x5e'),'\x72\x65\x61\x73\x6f\x6e':_0x15afa0[_0x15c627(0x1cf,'\x37\x70\x32\x66')]})));if(!metadataOnlyFallbackAllowed(_0x40b78d,_0xa3a5c1))return;_0x2622e8=metadataOnlyTraceRecord(_0xd6595a);}}const _0x4ab7ba=JSON[_0x15c627(0x20a,'\x38\x6d\x64\x5d')+'\x79'](_0x2622e8)+'\x0a';this[_0x15c627(0x254,'\x6c\x52\x4b\x4c')]=this[_0x15c627(0x1d5,'\x50\x32\x45\x26')][_0x15c627(0x1cc,'\x4d\x7a\x66\x43')](async()=>{const _0x3416f7=_0x15c627;if(!this[_0x3416f7(0x1d2,'\x74\x29\x70\x75')+_0x3416f7(0x26c,'\x26\x73\x42\x6d')][_0x3416f7(0x17e,'\x31\x48\x52\x6c')](_0x3c9dda))try{statSync(_0x3c9dda),await this[_0x3416f7(0x157,'\x74\x75\x6e\x71')+_0x3416f7(0x285,'\x66\x6d\x43\x73')](_0x3c9dda);}catch{}await appendFile(_0x3c9dda,_0x4ab7ba,{'\x65\x6e\x63\x6f\x64\x69\x6e\x67':_0x3416f7(0x20e,'\x72\x33\x58\x26'),'\x6d\x6f\x64\x65':0x180}),await this[_0x3416f7(0x1b6,'\x61\x28\x4e\x43')+_0x3416f7(0x1c5,'\x38\x6d\x64\x5d')](_0x3c9dda);})[_0x15c627(0x219,'\x44\x31\x52\x31')](_0x41a536=>{const _0x5d50a9=_0x15c627;!this[_0x5d50a9(0x273,'\x28\x58\x6a\x42')]&&(this[_0x5d50a9(0x217,'\x50\x4f\x58\x76')]=!![],this[_0x5d50a9(0x1a1,'\x50\x4f\x58\x76')][_0x5d50a9(0x20f,'\x41\x68\x32\x4a')]?.(JSON[_0x5d50a9(0x1c6,'\x72\x69\x5a\x44')+'\x79']({'\x65\x76\x65\x6e\x74':_0x5d50a9(0x209,'\x5e\x34\x21\x77')+_0x5d50a9(0x245,'\x31\x6f\x6c\x21')+_0x5d50a9(0x15b,'\x2a\x43\x6f\x39'),'\x65\x72\x72\x6f\x72':_0x41a536 instanceof Error?_0x41a536[_0x5d50a9(0x1cd,'\x6c\x52\x4b\x4c')]:String(_0x41a536)})));});}else return _0x2d4441;}catch(_0x24fb73){!this[_0x15c627(0x20c,'\x32\x48\x36\x25')]&&('\x77\x6f\x58\x6c\x59'===_0x15c627(0x240,'\x66\x6d\x43\x73')?(this[_0x15c627(0x16b,'\x6f\x4f\x52\x4f')+_0x15c627(0x29a,'\x6c\x52\x4b\x4c')]=!![],this[_0x15c627(0x1b2,'\x47\x71\x5a\x30')][_0x15c627(0x1a7,'\x4f\x70\x6a\x64')]?.(_0xd54845[_0x15c627(0x224,'\x63\x35\x28\x73')+'\x79']({'\x65\x76\x65\x6e\x74':_0x15c627(0x25c,'\x42\x62\x4f\x33')+_0x15c627(0x182,'\x66\x48\x50\x66')+_0x15c627(0x267,'\x6e\x45\x28\x41')+'\x62\x6c\x65','\x72\x65\x61\x73\x6f\x6e':_0x51c256[_0x15c627(0x187,'\x38\x6d\x64\x5d')]}))):(this[_0x15c627(0x223,'\x66\x48\x50\x66')]=!![],this['\x6c\x6f\x67'][_0x15c627(0x1b3,'\x79\x39\x47\x64')]?.(JSON['\x73\x74\x72\x69\x6e\x67\x69\x66'+'\x79']({'\x65\x76\x65\x6e\x74':'\x6c\x6c\x6d\x5f\x74\x72\x61\x63'+_0x15c627(0x25f,'\x50\x57\x70\x49')+_0x15c627(0x1b5,'\x79\x39\x47\x64'),'\x65\x72\x72\x6f\x72':_0x24fb73 instanceof Error?_0x24fb73[_0x15c627(0x1a2,'\x6c\x6d\x36\x4c')]:String(_0x24fb73)}))));}};async[_0x16fb69(0x226,'\x4e\x4a\x67\x4f')+_0x16fb69(0x1c8,'\x4e\x4a\x67\x4f')](_0x21e4ef){const _0x40cdb2=_0x16fb69;if(this[_0x40cdb2(0x163,'\x5b\x62\x65\x4e')+_0x40cdb2(0x259,'\x53\x49\x37\x79')]['\x68\x61\x73'](_0x21e4ef))return!![];try{return await chmod(_0x21e4ef,-0x14*-0x179+0xfa4+0x5d*-0x78),this[_0x40cdb2(0x1ac,'\x38\x6d\x64\x5d')+_0x40cdb2(0x230,'\x52\x6c\x66\x63')][_0x40cdb2(0x246,'\x50\x32\x45\x26')](_0x21e4ef),!![];}catch(_0xc011c5){if(_0x40cdb2(0x237,'\x52\x6c\x66\x63')===_0x40cdb2(0x1a6,'\x61\x28\x4e\x43'))return!this[_0x40cdb2(0x207,'\x37\x64\x47\x4a')+_0x40cdb2(0x176,'\x5e\x34\x21\x77')]&&(this['\x63\x68\x6d\x6f\x64\x57\x61\x72'+_0x40cdb2(0x24a,'\x53\x49\x37\x79')]=!![],this['\x6c\x6f\x67'][_0x40cdb2(0x21a,'\x6e\x51\x37\x4f')]?.(JSON['\x73\x74\x72\x69\x6e\x67\x69\x66'+'\x79']({'\x65\x76\x65\x6e\x74':_0x40cdb2(0x22a,'\x41\x68\x32\x4a')+_0x40cdb2(0x1d0,'\x47\x71\x5a\x30')+_0x40cdb2(0x24e,'\x5e\x34\x21\x77'),'\x65\x72\x72\x6f\x72':_0xc011c5 instanceof Error?_0xc011c5[_0x40cdb2(0x1de,'\x61\x28\x4e\x43')]:String(_0xc011c5)}))),![];else{this['\x63\x61\x70\x70\x65\x64\x44\x61'+'\x79']=_0x4fff5d,this[_0x40cdb2(0x1dd,'\x6b\x2a\x30\x25')][_0x40cdb2(0x288,'\x74\x75\x6e\x71')]?.(_0x439b94['\x73\x74\x72\x69\x6e\x67\x69\x66'+'\x79']({'\x65\x76\x65\x6e\x74':_0x40cdb2(0x23b,'\x70\x24\x6d\x36')+_0x40cdb2(0x15d,'\x4d\x7a\x66\x43'),'\x66\x69\x6c\x65':_0xaab341,'\x63\x61\x70\x5f\x62\x79\x74\x65\x73':this[_0x40cdb2(0x1f1,'\x57\x5e\x6d\x34')]}));return;}}}[_0x16fb69(0x26a,'\x53\x49\x37\x79')+_0x16fb69(0x238,'\x38\x6d\x64\x5d')+_0x16fb69(0x210,'\x26\x73\x42\x6d')](_0x1ff643){const _0x5e3f4c=_0x16fb69;if(!this['\x6f\x70\x74\x73'][_0x5e3f4c(0x216,'\x65\x6e\x77\x35')+_0x5e3f4c(0x18f,'\x61\x35\x5e\x4a')]||!isHubDecryptableTraceEnvelope(_0x1ff643))return;try{enqueueTraceEnvelope(this['\x6f\x70\x74\x73']['\x6d\x61\x69\x6c\x62\x6f\x78\x53'+_0x5e3f4c(0x17d,'\x6e\x51\x37\x4f')],_0x1ff643,{'\x6e\x6f\x77':this[_0x5e3f4c(0x266,'\x42\x62\x4f\x33')](),'\x65\x6e\x76':this[_0x5e3f4c(0x159,'\x72\x33\x58\x26')][_0x5e3f4c(0x26b,'\x79\x39\x47\x64')]??process.env,...this[_0x5e3f4c(0x215,'\x31\x48\x52\x6c')][_0x5e3f4c(0x27d,'\x61\x28\x4e\x43')+_0x5e3f4c(0x253,'\x53\x49\x37\x79')]?{'\x72\x75\x6e\x74\x69\x6d\x65\x4e\x61\x6d\x65\x73\x70\x61\x63\x65':this[_0x5e3f4c(0x1c3,'\x37\x70\x32\x66')][_0x5e3f4c(0x21d,'\x5b\x62\x65\x4e')+_0x5e3f4c(0x1a9,'\x63\x35\x28\x73')]}:{},...this['\x6f\x70\x74\x73'][_0x5e3f4c(0x211,'\x31\x63\x28\x78')+_0x5e3f4c(0x19c,'\x5e\x59\x74\x52')]?{'\x73\x6f\x75\x72\x63\x65\x41\x67\x65\x6e\x74':this['\x6f\x70\x74\x73'][_0x5e3f4c(0x185,'\x65\x6e\x77\x35')+_0x5e3f4c(0x1fc,'\x37\x70\x32\x66')]}:{},...this[_0x5e3f4c(0x180,'\x6f\x4f\x52\x4f')][_0x5e3f4c(0x191,'\x6b\x2a\x30\x25')+_0x5e3f4c(0x1ff,'\x63\x35\x28\x73')]?{'\x74\x61\x72\x67\x65\x74\x41\x67\x65\x6e\x74':this[_0x5e3f4c(0x180,'\x6f\x4f\x52\x4f')]['\x74\x61\x72\x67\x65\x74\x41\x67'+_0x5e3f4c(0x22b,'\x53\x49\x37\x79')]}:{}});}catch(_0x806691){!this['\x6d\x61\x69\x6c\x62\x6f\x78\x57'+_0x5e3f4c(0x15a,'\x79\x48\x4a\x79')]&&(this[_0x5e3f4c(0x189,'\x79\x39\x47\x64')+_0x5e3f4c(0x233,'\x2a\x43\x6f\x39')]=!![],this[_0x5e3f4c(0x29c,'\x68\x53\x53\x34')][_0x5e3f4c(0x181,'\x50\x4f\x58\x76')]?.(JSON[_0x5e3f4c(0x164,'\x6e\x51\x37\x4f')+'\x79']({'\x65\x76\x65\x6e\x74':_0x5e3f4c(0x1fb,'\x38\x6d\x64\x5d')+'\x65\x5f\x65\x6e\x71\x75\x65\x75'+_0x5e3f4c(0x257,'\x37\x64\x47\x4a'),'\x65\x72\x72\x6f\x72':_0x806691 instanceof Error?_0x806691[_0x5e3f4c(0x22f,'\x6b\x4b\x43\x36')]:String(_0x806691)})));}}['\x62\x61\x63\x6b\x66\x69\x6c\x6c'+'\x45\x78\x69\x73\x74\x69\x6e\x67'+_0x16fb69(0x20b,'\x31\x48\x52\x6c')+_0x16fb69(0x19f,'\x63\x35\x28\x73')](){const _0x4babef=_0x16fb69;if(!this[_0x4babef(0x171,'\x74\x75\x6e\x71')][_0x4babef(0x1b9,'\x44\x31\x52\x31')+_0x4babef(0x1df,'\x74\x75\x6e\x71')])return null;try{if(_0x4babef(0x1b7,'\x72\x33\x58\x26')!==_0x4babef(0x278,'\x50\x32\x45\x26'))return backfillProxyTraceUploads({'\x64\x69\x72':this[_0x4babef(0x215,'\x31\x48\x52\x6c')][_0x4babef(0x23d,'\x26\x73\x42\x6d')],'\x73\x74\x6f\x72\x65':this[_0x4babef(0x172,'\x70\x24\x6d\x36')][_0x4babef(0x204,'\x4e\x4a\x67\x4f')+_0x4babef(0x25a,'\x6c\x52\x4b\x4c')],'\x65\x6e\x76':this[_0x4babef(0x1e6,'\x6b\x2a\x30\x25')][_0x4babef(0x251,'\x44\x4f\x34\x28')]??process.env,'\x6e\x6f\x77':this[_0x4babef(0x269,'\x44\x4f\x34\x28')],...this['\x6f\x70\x74\x73'][_0x4babef(0x186,'\x6e\x51\x37\x4f')+_0x4babef(0x21e,'\x6f\x4f\x52\x4f')]?{'\x72\x75\x6e\x74\x69\x6d\x65\x4e\x61\x6d\x65\x73\x70\x61\x63\x65':this[_0x4babef(0x294,'\x26\x73\x42\x6d')][_0x4babef(0x23e,'\x44\x31\x52\x31')+'\x61\x6d\x65\x73\x70\x61\x63\x65']}:{},...this[_0x4babef(0x1bc,'\x61\x35\x5e\x4a')][_0x4babef(0x281,'\x44\x4f\x34\x28')+_0x4babef(0x19c,'\x5e\x59\x74\x52')]?{'\x73\x6f\x75\x72\x63\x65\x41\x67\x65\x6e\x74':this[_0x4babef(0x1b4,'\x63\x35\x28\x73')][_0x4babef(0x1e1,'\x6c\x52\x4b\x4c')+'\x65\x6e\x74']}:{},...this[_0x4babef(0x1c7,'\x28\x58\x6a\x42')][_0x4babef(0x165,'\x44\x31\x52\x31')+'\x65\x6e\x74']?{'\x74\x61\x72\x67\x65\x74\x41\x67\x65\x6e\x74':this[_0x4babef(0x274,'\x4d\x7a\x66\x43')][_0x4babef(0x173,'\x53\x39\x54\x5e')+_0x4babef(0x1e5,'\x79\x48\x4a\x79')]}:{}});else this[_0x4babef(0x291,'\x28\x58\x6a\x42')+_0x4babef(0x26d,'\x6b\x4b\x43\x36')]=!![],this[_0x4babef(0x235,'\x28\x58\x6a\x42')][_0x4babef(0x23c,'\x5b\x62\x65\x4e')]?.(_0x329cc3[_0x4babef(0x275,'\x68\x53\x53\x34')+'\x79']({'\x65\x76\x65\x6e\x74':_0x4babef(0x1ba,'\x66\x6d\x43\x73')+_0x4babef(0x276,'\x6e\x51\x37\x4f')+_0x4babef(0x17a,'\x70\x24\x6d\x36'),'\x65\x72\x72\x6f\x72':_0x59b561 instanceof _0x28cfc8?_0x29045e[_0x4babef(0x1a2,'\x6c\x6d\x36\x4c')]:_0x892aa0(_0x39b5d0)}));}catch(_0x5af857){return!this['\x6d\x61\x69\x6c\x62\x6f\x78\x57'+_0x4babef(0x26e,'\x65\x6e\x77\x35')]&&(this[_0x4babef(0x29b,'\x6c\x6d\x36\x4c')+_0x4babef(0x196,'\x42\x62\x4f\x33')]=!![],this[_0x4babef(0x280,'\x6e\x51\x37\x4f')]['\x77\x61\x72\x6e']?.(JSON[_0x4babef(0x20a,'\x38\x6d\x64\x5d')+'\x79']({'\x65\x76\x65\x6e\x74':'\x6c\x6c\x6d\x5f\x74\x72\x61\x63'+_0x4babef(0x19e,'\x5e\x34\x21\x77')+_0x4babef(0x250,'\x37\x70\x32\x66')+'\x64','\x65\x72\x72\x6f\x72':_0x5af857 instanceof Error?_0x5af857[_0x4babef(0x1d7,'\x68\x53\x53\x34')]:String(_0x5af857)}))),null;}}}
@@ -1,27 +1 @@
1
- export const PROXY_TRACE_UPLOAD_SCHEMA = 'prism_trace_row.v1';
2
- function parseNodeSecretVersion(value) {
3
- if (typeof value === 'number' && Number.isInteger(value) && value > 0)
4
- return value;
5
- if (typeof value !== 'string')
6
- return undefined;
7
- const trimmed = value.trim();
8
- if (!/^[1-9]\d*$/.test(trimmed))
9
- return undefined;
10
- const parsed = Number(trimmed);
11
- return Number.isSafeInteger(parsed) ? parsed : undefined;
12
- }
13
- export function buildProxyTraceUploadPayload(record) {
14
- const secretVersion = parseNodeSecretVersion(record.secret_version);
15
- return {
16
- schema: PROXY_TRACE_UPLOAD_SCHEMA,
17
- encrypted: true,
18
- trace: record,
19
- ...(secretVersion !== undefined ? { node_secret_version: secretVersion } : {}),
20
- ...(record.producer_generation ? { producer_generation: record.producer_generation } : {}),
21
- ...(record.producer_version ? { producer_version: record.producer_version } : {}),
22
- ...(record.producer_component ? { producer_component: record.producer_component } : {}),
23
- };
24
- }
25
- export function proxyTraceUploadPayloadSizeBytes(record) {
26
- return Buffer.byteLength(JSON.stringify(buildProxyTraceUploadPayload(record)), 'utf8');
27
- }
1
+ const _0x1a610a=_0x5f46;(function(_0x288e17,_0x560458){const _0x208284=_0x5f46,_0x2cdd7e=_0x288e17();while(!![]){try{const _0x568219=parseInt(_0x208284(0x1ac,'\x6b\x79\x66\x33'))/(-0x32c+0x569+0xd*-0x2c)+parseInt(_0x208284(0x1b5,'\x75\x70\x76\x71'))/(-0x5*-0x4d5+-0x1be9*-0x1+-0x3b8*0xe)*(parseInt(_0x208284(0x1a0,'\x26\x79\x46\x67'))/(-0x133*0xa+-0x2704+-0x25*-0x161))+-parseInt(_0x208284(0x197,'\x45\x23\x67\x52'))/(-0x25*0x94+-0x1135+0x269d)+-parseInt(_0x208284(0x1b6,'\x39\x79\x62\x6c'))/(-0xaeb+0x1*-0x23d1+0x2ec1*0x1)+parseInt(_0x208284(0x19a,'\x4d\x4c\x65\x54'))/(0x3*0xb9e+0x2359+-0x462d)*(-parseInt(_0x208284(0x1a2,'\x29\x5b\x21\x4b'))/(-0x12*0x1ce+-0x969+0x29ec))+-parseInt(_0x208284(0x1a5,'\x51\x40\x59\x52'))/(-0x4eb+-0x3a*-0xe+-0x41*-0x7)*(parseInt(_0x208284(0x198,'\x54\x73\x65\x53'))/(-0x2203*-0x1+-0x7ae*0x1+0x1a4c*-0x1))+parseInt(_0x208284(0x19d,'\x59\x28\x70\x5b'))/(-0x247*0x9+0x1*0x2037+-0xbae);if(_0x568219===_0x560458)break;else _0x2cdd7e['push'](_0x2cdd7e['shift']());}catch(_0x595eea){_0x2cdd7e['push'](_0x2cdd7e['shift']());}}}(_0x29cf,0x18291*-0xc+-0xcee1d*-0x1+0x127b28));export const PROXY_TRACE_UPLOAD_SCHEMA=_0x1a610a(0x1b8,'\x51\x40\x59\x52')+'\x61\x63\x65\x5f\x72\x6f\x77\x2e'+'\x76\x31';function parseNodeSecretVersion(_0x3004b7){const _0x414118=_0x1a610a;if(typeof _0x3004b7===_0x414118(0x1b4,'\x48\x71\x48\x7a')&&Number[_0x414118(0x1ab,'\x48\x71\x48\x7a')+'\x72'](_0x3004b7)&&_0x3004b7>-0x32d+0x90a+0x13*-0x4f)return _0x3004b7;if(typeof _0x3004b7!==_0x414118(0x199,'\x35\x25\x24\x4c'))return undefined;const _0x4c0709=_0x3004b7[_0x414118(0x19b,'\x78\x24\x77\x76')]();if(!/^[1-9]\d*$/[_0x414118(0x1aa,'\x79\x58\x56\x38')](_0x4c0709))return undefined;const _0x3188e9=Number(_0x4c0709);return Number['\x69\x73\x53\x61\x66\x65\x49\x6e'+'\x74\x65\x67\x65\x72'](_0x3188e9)?_0x3188e9:undefined;}function _0x5f46(_0x4dc03f,_0x1690ac){_0x4dc03f=_0x4dc03f-(0x1913+-0xdf*0x1a+-0x6b*0x2);const _0x1d517c=_0x29cf();let _0x2fc584=_0x1d517c[_0x4dc03f];if(_0x5f46['\x79\x67\x6a\x4a\x5a\x6b']===undefined){var _0x1a93a9=function(_0x2628e7){const _0x2e460a='\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 _0x225d14='',_0x3f9d90='';for(let _0x914ba3=0x1c86+0x19*0x175+-0x40f3,_0x40800f,_0x346ea2,_0x3f1151=-0x22af+0x1*0x61f+0x1c90;_0x346ea2=_0x2628e7['\x63\x68\x61\x72\x41\x74'](_0x3f1151++);~_0x346ea2&&(_0x40800f=_0x914ba3%(0x21c1*-0x1+0x171*-0xb+0x10*0x31a)?_0x40800f*(-0xc89+0xb*-0x335+0x3010)+_0x346ea2:_0x346ea2,_0x914ba3++%(-0x1b07+-0x128f*-0x1+0x21f*0x4))?_0x225d14+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0x1fc0+-0xa1d*0x1+-0x14a4&_0x40800f>>(-(0x2489+-0x1*-0x1250+-0x36d7)*_0x914ba3&-0xd84+0x937+0x453)):-0x2061+-0x160c+-0x1*-0x366d){_0x346ea2=_0x2e460a['\x69\x6e\x64\x65\x78\x4f\x66'](_0x346ea2);}for(let _0x5cde95=-0x4ab*0x2+-0x181d+-0x1*-0x2173,_0x5a3938=_0x225d14['\x6c\x65\x6e\x67\x74\x68'];_0x5cde95<_0x5a3938;_0x5cde95++){_0x3f9d90+='\x25'+('\x30\x30'+_0x225d14['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x5cde95)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x1*-0x11c4+-0x1016*-0x1+0x1be))['\x73\x6c\x69\x63\x65'](-(0x2b*-0x2c+-0x7*0x575+0x2d99));}return decodeURIComponent(_0x3f9d90);};const _0x1fb8cf=function(_0x5ad432,_0x5bec80){let _0x3f8aad=[],_0x1cbeb2=-0x21e7+0x5*-0xbf+0x25a2,_0xf327e9,_0x80a94c='';_0x5ad432=_0x1a93a9(_0x5ad432);let _0x243486;for(_0x243486=0x1*-0xfdf+0x1a09+-0xa2a;_0x243486<-0x1206+0x22d8+-0xfd2;_0x243486++){_0x3f8aad[_0x243486]=_0x243486;}for(_0x243486=-0x11*0x106+0x22*0x65+0x3fc;_0x243486<-0x1*-0x79+-0x2*0x567+-0x3c7*-0x3;_0x243486++){_0x1cbeb2=(_0x1cbeb2+_0x3f8aad[_0x243486]+_0x5bec80['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x243486%_0x5bec80['\x6c\x65\x6e\x67\x74\x68']))%(-0x1*-0x377+-0x10cf+0xe58),_0xf327e9=_0x3f8aad[_0x243486],_0x3f8aad[_0x243486]=_0x3f8aad[_0x1cbeb2],_0x3f8aad[_0x1cbeb2]=_0xf327e9;}_0x243486=0x22ed+-0xe0d+-0x14e0,_0x1cbeb2=0x1*-0xb11+-0xed8+0x19e9;for(let _0x5f5cd7=0x2*-0x4f3+0x2b*-0xb+-0x1f*-0x61;_0x5f5cd7<_0x5ad432['\x6c\x65\x6e\x67\x74\x68'];_0x5f5cd7++){_0x243486=(_0x243486+(0x22ba+0x19dd+-0x3c96))%(0x3b6+-0x1e9*-0xe+-0x1d74),_0x1cbeb2=(_0x1cbeb2+_0x3f8aad[_0x243486])%(-0x17*-0x53+0xca8+-0xe9*0x15),_0xf327e9=_0x3f8aad[_0x243486],_0x3f8aad[_0x243486]=_0x3f8aad[_0x1cbeb2],_0x3f8aad[_0x1cbeb2]=_0xf327e9,_0x80a94c+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x5ad432['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x5f5cd7)^_0x3f8aad[(_0x3f8aad[_0x243486]+_0x3f8aad[_0x1cbeb2])%(0x377*-0x6+0x8d2*0x2+0x426)]);}return _0x80a94c;};_0x5f46['\x72\x55\x79\x4d\x4a\x79']=_0x1fb8cf,_0x5f46['\x66\x66\x57\x47\x66\x54']={},_0x5f46['\x79\x67\x6a\x4a\x5a\x6b']=!![];}const _0x1594bb=_0x1d517c[-0x2023*-0x1+-0x1f33+-0xf0],_0x1aafd0=_0x4dc03f+_0x1594bb,_0x585327=_0x5f46['\x66\x66\x57\x47\x66\x54'][_0x1aafd0];return!_0x585327?(_0x5f46['\x50\x7a\x5a\x73\x76\x73']===undefined&&(_0x5f46['\x50\x7a\x5a\x73\x76\x73']=!![]),_0x2fc584=_0x5f46['\x72\x55\x79\x4d\x4a\x79'](_0x2fc584,_0x1690ac),_0x5f46['\x66\x66\x57\x47\x66\x54'][_0x1aafd0]=_0x2fc584):_0x2fc584=_0x585327,_0x2fc584;}function _0x29cf(){const _0x15ff4d=['\x77\x68\x37\x64\x4e\x61','\x57\x52\x64\x63\x47\x6d\x6b\x4d\x57\x52\x52\x63\x4e\x67\x6c\x63\x4b\x74\x64\x63\x4b\x53\x6f\x62\x78\x57','\x57\x50\x4a\x64\x53\x78\x70\x64\x52\x5a\x38\x4a\x66\x33\x47','\x57\x37\x4e\x63\x55\x6d\x6f\x61\x57\x35\x4e\x64\x4f\x43\x6b\x39\x57\x36\x2f\x63\x55\x47','\x57\x35\x54\x73\x57\x37\x2f\x64\x53\x67\x52\x63\x4c\x38\x6b\x79\x61\x53\x6f\x56\x77\x71\x38','\x42\x68\x4a\x63\x55\x74\x62\x45\x64\x43\x6f\x63\x57\x35\x47','\x73\x38\x6f\x4b\x57\x51\x62\x70\x57\x37\x6c\x63\x4d\x6d\x6b\x53\x71\x47','\x61\x64\x42\x63\x4c\x71\x44\x43\x6a\x53\x6f\x47\x57\x34\x6d','\x75\x66\x64\x64\x54\x65\x70\x63\x4f\x57\x53\x59\x43\x47','\x57\x52\x30\x76\x45\x43\x6b\x49','\x69\x30\x52\x63\x48\x65\x58\x31\x57\x36\x68\x64\x49\x53\x6b\x4e','\x57\x36\x43\x47\x57\x50\x50\x62\x57\x52\x70\x63\x53\x38\x6f\x4c\x57\x51\x74\x64\x52\x38\x6b\x49\x57\x36\x30\x34','\x77\x43\x6f\x56\x57\x52\x54\x6f\x57\x34\x56\x63\x4e\x53\x6b\x4e\x76\x57','\x57\x52\x54\x78\x57\x4f\x2f\x64\x4a\x53\x6f\x53\x57\x34\x4a\x64\x56\x58\x70\x63\x49\x43\x6f\x4a\x57\x35\x7a\x57','\x63\x43\x6b\x4d\x57\x37\x48\x6a\x57\x36\x42\x63\x55\x6d\x6b\x42\x75\x71\x4b','\x57\x52\x37\x64\x47\x57\x6c\x63\x4e\x53\x6b\x4e\x57\x50\x37\x63\x54\x43\x6b\x45\x57\x52\x66\x4b\x57\x37\x6a\x4f\x57\x4f\x64\x63\x48\x57','\x7a\x6d\x6f\x58\x57\x51\x50\x66\x57\x36\x6c\x63\x49\x43\x6b\x4f\x72\x61','\x57\x36\x2f\x64\x4f\x33\x69','\x57\x35\x56\x64\x4b\x6d\x6f\x38\x57\x36\x6c\x64\x4d\x68\x4a\x63\x49\x59\x57','\x6a\x65\x5a\x63\x4f\x65\x62\x4b\x57\x37\x79','\x57\x52\x43\x6b\x6a\x78\x44\x41\x57\x4f\x38\x71\x63\x71','\x62\x59\x64\x63\x47\x38\x6f\x6f\x6f\x71\x5a\x63\x4c\x43\x6b\x76\x6c\x38\x6b\x33\x62\x47\x52\x64\x4e\x71','\x67\x38\x6b\x4e\x57\x36\x66\x63\x57\x52\x79\x75\x57\x35\x37\x63\x4d\x43\x6f\x6d\x57\x50\x5a\x63\x55\x62\x66\x35','\x57\x50\x34\x78\x57\x51\x37\x63\x54\x64\x78\x63\x48\x53\x6b\x34\x68\x57','\x72\x38\x6f\x42\x57\x52\x44\x66\x63\x53\x6b\x63\x43\x6d\x6b\x46','\x57\x35\x39\x44\x57\x37\x2f\x64\x54\x32\x5a\x64\x51\x53\x6b\x6e\x68\x53\x6f\x36\x46\x5a\x54\x4f','\x57\x52\x65\x74\x57\x51\x6c\x63\x54\x73\x56\x63\x53\x6d\x6b\x4a\x61\x57','\x57\x36\x6a\x75\x6f\x38\x6f\x72\x57\x51\x34\x6e\x57\x51\x66\x55\x42\x38\x6b\x36\x75\x49\x46\x64\x4e\x47','\x45\x57\x4a\x63\x49\x77\x33\x64\x49\x53\x6f\x4a\x57\x37\x4a\x63\x47\x67\x34','\x57\x50\x42\x64\x48\x73\x35\x53\x78\x4c\x79','\x72\x71\x4e\x63\x50\x53\x6b\x51\x57\x50\x50\x4b\x57\x52\x62\x43\x65\x43\x6f\x68','\x72\x57\x7a\x43\x57\x50\x61','\x57\x35\x70\x63\x4b\x66\x74\x64\x49\x38\x6f\x56\x57\x34\x42\x64\x51\x6d\x6f\x6c','\x62\x53\x6f\x37\x73\x4a\x54\x53\x57\x51\x44\x77\x74\x5a\x33\x63\x55\x53\x6f\x6e\x6d\x30\x66\x51','\x6b\x6d\x6b\x57\x6e\x43\x6f\x4d\x41\x53\x6f\x32\x42\x38\x6b\x45\x57\x50\x56\x64\x54\x53\x6f\x6a','\x57\x51\x39\x4b\x57\x34\x69\x72\x57\x37\x42\x64\x4f\x38\x6f\x56\x57\x4f\x34','\x57\x35\x6e\x48\x45\x53\x6b\x56\x6a\x38\x6b\x57\x6b\x38\x6f\x39\x6a\x75\x64\x64\x4c\x53\x6b\x79'];_0x29cf=function(){return _0x15ff4d;};return _0x29cf();}export function buildProxyTraceUploadPayload(_0x148dd){const _0x5585e7=_0x1a610a,_0x26ab99=parseNodeSecretVersion(_0x148dd[_0x5585e7(0x1a3,'\x37\x55\x29\x79')+'\x65\x72\x73\x69\x6f\x6e']);return{'\x73\x63\x68\x65\x6d\x61':PROXY_TRACE_UPLOAD_SCHEMA,'\x65\x6e\x63\x72\x79\x70\x74\x65\x64':!![],'\x74\x72\x61\x63\x65':_0x148dd,..._0x26ab99!==undefined?{'\x6e\x6f\x64\x65\x5f\x73\x65\x63\x72\x65\x74\x5f\x76\x65\x72\x73\x69\x6f\x6e':_0x26ab99}:{},..._0x148dd['\x70\x72\x6f\x64\x75\x63\x65\x72'+'\x5f\x67\x65\x6e\x65\x72\x61\x74'+_0x5585e7(0x1b2,'\x5b\x39\x26\x59')]?{'\x70\x72\x6f\x64\x75\x63\x65\x72\x5f\x67\x65\x6e\x65\x72\x61\x74\x69\x6f\x6e':_0x148dd[_0x5585e7(0x1a9,'\x25\x29\x4e\x33')+_0x5585e7(0x1b1,'\x54\x25\x6c\x44')+_0x5585e7(0x1a1,'\x39\x79\x62\x6c')]}:{},..._0x148dd[_0x5585e7(0x1a7,'\x54\x25\x6c\x44')+_0x5585e7(0x1bb,'\x51\x40\x59\x52')]?{'\x70\x72\x6f\x64\x75\x63\x65\x72\x5f\x76\x65\x72\x73\x69\x6f\x6e':_0x148dd[_0x5585e7(0x19f,'\x6b\x79\x66\x33')+_0x5585e7(0x1a6,'\x2a\x43\x6e\x28')]}:{},..._0x148dd[_0x5585e7(0x1b9,'\x23\x32\x36\x37')+_0x5585e7(0x19c,'\x37\x47\x65\x29')+'\x6e\x74']?{'\x70\x72\x6f\x64\x75\x63\x65\x72\x5f\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74':_0x148dd['\x70\x72\x6f\x64\x75\x63\x65\x72'+_0x5585e7(0x1b3,'\x29\x5b\x21\x4b')+'\x6e\x74']}:{}};}export function proxyTraceUploadPayloadSizeBytes(_0x110bb4){const _0x2ad328=_0x1a610a;return Buffer[_0x2ad328(0x1ad,'\x54\x25\x6c\x44')+'\x74\x68'](JSON[_0x2ad328(0x1a4,'\x65\x4a\x35\x51')+'\x79'](buildProxyTraceUploadPayload(_0x110bb4)),'\x75\x74\x66\x38');}