@tangle-network/sandbox 0.0.0-develop.20260610125345.cbdf7b2 → 0.0.0-develop.20260610200051.84d8326
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/agent/index.d.ts +94 -3
- package/dist/agent/index.js +1 -1
- package/dist/auth/index.js +1 -1
- package/dist/client-DNRk-fYq.js +1 -0
- package/dist/{client-jw5nS9p9.d.ts → client-DRbtd2hi.d.ts} +1 -1
- package/dist/collaboration/index.js +1 -1
- package/dist/collaboration-BxlfZ2Uh.js +1 -1
- package/dist/core.d.ts +2 -2
- package/dist/core.js +1 -1
- package/dist/errors-DZsfJUuc.js +1 -1
- package/dist/{index-DTsiJpks.d.ts → index-Bl4L_Cpm.d.ts} +1 -1
- package/dist/index.d.ts +4 -4
- package/dist/index.js +1 -1
- package/dist/intelligence/index.js +1 -1
- package/dist/openai/index.js +1 -1
- package/dist/{sandbox-CqlT4WnD.d.ts → sandbox-BQbq1EGP.d.ts} +189 -2
- package/dist/sandbox-d6iLJeH2.js +1 -0
- package/dist/session-gateway/index.js +1 -1
- package/dist/tangle/index.d.ts +1 -1
- package/dist/tangle/index.js +1 -1
- package/dist/tangle-BrobUtQo.js +1 -0
- package/package.json +1 -1
- package/dist/client-D5O2rjSL.js +0 -1
- package/dist/sandbox-DH4Tq6fA.js +0 -1
- package/dist/tangle-_cxg7krW.js +0 -1
package/dist/agent/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { B as CodeLanguage, H as CodeResultPart, R as CodeExecutionOptions, n as SandboxInstance, z as CodeExecutionResult } from "../sandbox-
|
|
2
|
-
import { i as SandboxClient } from "../client-
|
|
1
|
+
import { B as CodeLanguage, H as CodeResultPart, R as CodeExecutionOptions, n as SandboxInstance, z as CodeExecutionResult } from "../sandbox-BQbq1EGP.js";
|
|
2
|
+
import { i as SandboxClient } from "../client-DRbtd2hi.js";
|
|
3
3
|
import * as _$_modelcontextprotocol_sdk_server_index_js0 from "@modelcontextprotocol/sdk/server/index.js";
|
|
4
4
|
|
|
5
5
|
//#region src/agent/tools/_specs.d.ts
|
|
@@ -67,6 +67,8 @@ declare const TOOL_SPECS: {
|
|
|
67
67
|
max_results?: number;
|
|
68
68
|
}, unknown>;
|
|
69
69
|
};
|
|
70
|
+
/** Canonical ordered list. Packs use this to emit tools in a stable order. */
|
|
71
|
+
declare const ALL_TOOL_SPECS: ToolSpec[];
|
|
70
72
|
//#endregion
|
|
71
73
|
//#region src/agent/mcp-local.d.ts
|
|
72
74
|
interface McpServerOptions {
|
|
@@ -252,6 +254,7 @@ declare const FLEET_TOOL_SPECS: {
|
|
|
252
254
|
}, unknown>;
|
|
253
255
|
};
|
|
254
256
|
type FleetToolName = keyof typeof FLEET_TOOL_SPECS;
|
|
257
|
+
declare const ALL_FLEET_TOOL_SPECS: FleetToolSpec[];
|
|
255
258
|
//#endregion
|
|
256
259
|
//#region src/agent/tools/fleet/index.d.ts
|
|
257
260
|
interface FleetToolPackOptions {
|
|
@@ -315,6 +318,94 @@ declare function openaiFleetTools(client: SandboxClient, options?: FleetToolPack
|
|
|
315
318
|
declare function vercelAiFleetTools(client: SandboxClient, options?: FleetToolPackOptions): Promise<Record<string, unknown>>;
|
|
316
319
|
declare function mastraFleetTools(client: SandboxClient, options?: FleetToolPackOptions): Promise<Record<string, unknown>>;
|
|
317
320
|
//#endregion
|
|
321
|
+
//#region src/agent/tools/lifecycle/_specs.d.ts
|
|
322
|
+
interface LifecycleToolHandlerContext {
|
|
323
|
+
client: SandboxClient;
|
|
324
|
+
}
|
|
325
|
+
interface LifecycleToolSpec<TArgs = Record<string, unknown>, TResult = unknown> {
|
|
326
|
+
name: string;
|
|
327
|
+
description: string;
|
|
328
|
+
inputSchema: ToolJSONSchema;
|
|
329
|
+
makeHandler: (ctx: LifecycleToolHandlerContext) => (args: TArgs) => Promise<TResult>;
|
|
330
|
+
}
|
|
331
|
+
declare const LIFECYCLE_TOOL_SPECS: {
|
|
332
|
+
readonly sandbox_create: LifecycleToolSpec<{
|
|
333
|
+
environment?: string;
|
|
334
|
+
name?: string;
|
|
335
|
+
}, unknown>;
|
|
336
|
+
readonly sandbox_run_command: LifecycleToolSpec<{
|
|
337
|
+
sandbox_id: string;
|
|
338
|
+
command: string;
|
|
339
|
+
cwd?: string;
|
|
340
|
+
timeout_ms?: number;
|
|
341
|
+
}, unknown>;
|
|
342
|
+
readonly sandbox_destroy: LifecycleToolSpec<{
|
|
343
|
+
sandbox_id: string;
|
|
344
|
+
}, unknown>;
|
|
345
|
+
};
|
|
346
|
+
type LifecycleToolName = keyof typeof LIFECYCLE_TOOL_SPECS;
|
|
347
|
+
declare const ALL_LIFECYCLE_TOOL_SPECS: LifecycleToolSpec[];
|
|
348
|
+
//#endregion
|
|
349
|
+
//#region src/agent/tools/lifecycle/index.d.ts
|
|
350
|
+
interface LifecycleToolPackOptions {
|
|
351
|
+
/** Which lifecycle tools to expose. Defaults to all three. */
|
|
352
|
+
allow?: LifecycleToolName[];
|
|
353
|
+
}
|
|
354
|
+
interface AnthropicLifecycleTool {
|
|
355
|
+
name: string;
|
|
356
|
+
description: string;
|
|
357
|
+
input_schema: {
|
|
358
|
+
type: "object";
|
|
359
|
+
properties: Record<string, unknown>;
|
|
360
|
+
required?: string[];
|
|
361
|
+
additionalProperties?: boolean;
|
|
362
|
+
};
|
|
363
|
+
}
|
|
364
|
+
interface AnthropicLifecycleToolPack {
|
|
365
|
+
tools: AnthropicLifecycleTool[];
|
|
366
|
+
handleToolUse(block: {
|
|
367
|
+
type: "tool_use";
|
|
368
|
+
id: string;
|
|
369
|
+
name: string;
|
|
370
|
+
input: Record<string, unknown>;
|
|
371
|
+
}): Promise<{
|
|
372
|
+
type: "tool_result";
|
|
373
|
+
tool_use_id: string;
|
|
374
|
+
content: string;
|
|
375
|
+
is_error?: boolean;
|
|
376
|
+
}>;
|
|
377
|
+
}
|
|
378
|
+
declare function anthropicLifecycleTools(client: SandboxClient, options?: LifecycleToolPackOptions): AnthropicLifecycleToolPack;
|
|
379
|
+
interface OpenAILifecycleTool {
|
|
380
|
+
type: "function";
|
|
381
|
+
function: {
|
|
382
|
+
name: string;
|
|
383
|
+
description: string;
|
|
384
|
+
parameters: {
|
|
385
|
+
type: "object";
|
|
386
|
+
properties: Record<string, unknown>;
|
|
387
|
+
required?: string[];
|
|
388
|
+
additionalProperties?: boolean;
|
|
389
|
+
};
|
|
390
|
+
};
|
|
391
|
+
}
|
|
392
|
+
interface OpenAILifecycleToolPack {
|
|
393
|
+
tools: OpenAILifecycleTool[];
|
|
394
|
+
handleToolCall(call: {
|
|
395
|
+
id: string;
|
|
396
|
+
type?: "function";
|
|
397
|
+
function: {
|
|
398
|
+
name: string;
|
|
399
|
+
arguments: string;
|
|
400
|
+
};
|
|
401
|
+
}): Promise<{
|
|
402
|
+
role: "tool";
|
|
403
|
+
tool_call_id: string;
|
|
404
|
+
content: string;
|
|
405
|
+
}>;
|
|
406
|
+
}
|
|
407
|
+
declare function openaiLifecycleTools(client: SandboxClient, options?: LifecycleToolPackOptions): OpenAILifecycleToolPack;
|
|
408
|
+
//#endregion
|
|
318
409
|
//#region src/agent/tools/mastra.d.ts
|
|
319
410
|
interface MastraToolPackOptions {
|
|
320
411
|
allow?: ToolName[];
|
|
@@ -430,4 +521,4 @@ type AnyTool = unknown;
|
|
|
430
521
|
*/
|
|
431
522
|
declare function vercelAiTools(box: SandboxInstance, options?: VercelAiToolPackOptions): Promise<Record<string, AnyTool>>;
|
|
432
523
|
//#endregion
|
|
433
|
-
export { type AnthropicFleetTool, type AnthropicFleetToolPack, type AnthropicTool, type AnthropicToolPack, type AnthropicToolPackOptions, type AnthropicToolResultBlock, type AnthropicToolUseBlock, type CodeExecutionOptions, type CodeExecutionResult, type CodeLanguage, type CodeResultPart, type FleetToolName, type FleetToolPackOptions, type MastraToolPackOptions, type McpServerHandle, type McpServerOptions, type OpenAIFleetTool, type OpenAIFleetToolPack, type OpenAITool, type OpenAIToolCall, type OpenAIToolPack, type OpenAIToolPackOptions, type OpenAIToolResultMessage, type ToolName, type VercelAiToolPackOptions, anthropicFleetTools, anthropicTools, createMcpServer, mastraFleetTools, mastraTools, openaiFleetTools, openaiTools, runCode, vercelAiFleetTools, vercelAiTools };
|
|
524
|
+
export { ALL_FLEET_TOOL_SPECS, ALL_LIFECYCLE_TOOL_SPECS, ALL_TOOL_SPECS, type AnthropicFleetTool, type AnthropicFleetToolPack, type AnthropicLifecycleTool, type AnthropicLifecycleToolPack, type AnthropicTool, type AnthropicToolPack, type AnthropicToolPackOptions, type AnthropicToolResultBlock, type AnthropicToolUseBlock, type CodeExecutionOptions, type CodeExecutionResult, type CodeLanguage, type CodeResultPart, FLEET_TOOL_SPECS, type FleetToolHandlerContext, type FleetToolName, type FleetToolPackOptions, type FleetToolSpec, LIFECYCLE_TOOL_SPECS, type LifecycleToolHandlerContext, type LifecycleToolName, type LifecycleToolPackOptions, type LifecycleToolSpec, type MastraToolPackOptions, type McpServerHandle, type McpServerOptions, type OpenAIFleetTool, type OpenAIFleetToolPack, type OpenAILifecycleTool, type OpenAILifecycleToolPack, type OpenAITool, type OpenAIToolCall, type OpenAIToolPack, type OpenAIToolPackOptions, type OpenAIToolResultMessage, TOOL_SPECS, type ToolHandlerContext, type ToolName, type ToolSpec, type VercelAiToolPackOptions, anthropicFleetTools, anthropicLifecycleTools, anthropicTools, createMcpServer, mastraFleetTools, mastraTools, openaiFleetTools, openaiLifecycleTools, openaiTools, runCode, vercelAiFleetTools, vercelAiTools };
|
package/dist/agent/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
const a0_0x229bec=a0_0x32df;(function(_0xd7a8e3,_0x5dfb73){const _0xf74ddf=a0_0x32df,_0x3be5a9=_0xd7a8e3();while(!![]){try{const _0x39cbc3=parseInt(_0xf74ddf(0x1e1))/0x1+-parseInt(_0xf74ddf(0x1c4))/0x2*(-parseInt(_0xf74ddf(0x19f))/0x3)+parseInt(_0xf74ddf(0x1d1))/0x4+parseInt(_0xf74ddf(0x1c3))/0x5+-parseInt(_0xf74ddf(0x204))/0x6+parseInt(_0xf74ddf(0x1e2))/0x7*(-parseInt(_0xf74ddf(0x1e7))/0x8)+-parseInt(_0xf74ddf(0x1cf))/0x9;if(_0x39cbc3===_0x5dfb73)break;else _0x3be5a9['push'](_0x3be5a9['shift']());}catch(_0x11c75b){_0x3be5a9['push'](_0x3be5a9['shift']());}}}(a0_0x2a3e,0xace15));import{createRequire}from'\x6e\x6f\x64\x65\x3a\x6d\x6f\x64\x75\x6c\x65';const TOOL_SPECS={'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x72\x75\x6e\x5f\x63\x6f\x64\x65':{'\x6e\x61\x6d\x65':'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x72\x75\x6e\x5f\x63\x6f\x64\x65','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x229bec(0x21f),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':'\x6f\x62\x6a\x65\x63\x74','\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x6c\x61\x6e\x67\x75\x61\x67\x65':{'\x74\x79\x70\x65':'\x73\x74\x72\x69\x6e\x67','\x65\x6e\x75\x6d':['\x70\x79\x74\x68\x6f\x6e',a0_0x229bec(0x1a6),a0_0x229bec(0x1a9),a0_0x229bec(0x221)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x4b\x65\x72\x6e\x65\x6c\x20\x6c\x61\x6e\x67\x75\x61\x67\x65\x2e'},'\x73\x6f\x75\x72\x63\x65':{'\x74\x79\x70\x65':a0_0x229bec(0x1a4),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x229bec(0x1a2)},'\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73':{'\x74\x79\x70\x65':a0_0x229bec(0x1cc),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x229bec(0x22b)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x229bec(0x225),a0_0x229bec(0x220)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({box:_0xcc9087,sessionId:_0x38b9fe})=>async _0x5c0ce1=>{const _0x32386f=a0_0x229bec;return await _0xcc9087[_0x32386f(0x1db)](_0x5c0ce1[_0x32386f(0x225)],_0x5c0ce1['\x73\x6f\x75\x72\x63\x65'],{'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x38b9fe,'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x5c0ce1[_0x32386f(0x216)]});}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x65\x78\x65\x63':{'\x6e\x61\x6d\x65':a0_0x229bec(0x197),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x229bec(0x1a1),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':'\x6f\x62\x6a\x65\x63\x74','\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x63\x6f\x6d\x6d\x61\x6e\x64':{'\x74\x79\x70\x65':a0_0x229bec(0x1a4),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x53\x68\x65\x6c\x6c\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x20\x6c\x69\x6e\x65\x2e'},'\x63\x77\x64':{'\x74\x79\x70\x65':a0_0x229bec(0x1a4),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x229bec(0x1b2)},'\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73':{'\x74\x79\x70\x65':a0_0x229bec(0x1cc),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x229bec(0x1fc)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x229bec(0x1c1)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({box:_0x3784fe,sessionId:_0x54482b})=>async _0x32b33d=>{const _0xeac581=a0_0x229bec;return await _0x3784fe[_0xeac581(0x1a7)](_0x32b33d['\x63\x6f\x6d\x6d\x61\x6e\x64'],{'\x63\x77\x64':_0x32b33d[_0xeac581(0x1e9)],'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x32b33d[_0xeac581(0x216)],'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x54482b});}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x72\x65\x61\x64':{'\x6e\x61\x6d\x65':'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x72\x65\x61\x64','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x229bec(0x21c),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x229bec(0x1de),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x68':{'\x74\x79\x70\x65':a0_0x229bec(0x1a4)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x229bec(0x1e4)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({box:_0x4e73b4,sessionId:_0x4d2817})=>async _0x2325f0=>{const _0x493805=a0_0x229bec;return{'\x63\x6f\x6e\x74\x65\x6e\x74':await _0x4e73b4[_0x493805(0x22a)](_0x2325f0[_0x493805(0x1e4)],{'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x4d2817})};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x77\x72\x69\x74\x65':{'\x6e\x61\x6d\x65':a0_0x229bec(0x1d5),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x229bec(0x209),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x229bec(0x1de),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x68':{'\x74\x79\x70\x65':a0_0x229bec(0x1a4)},'\x63\x6f\x6e\x74\x65\x6e\x74':{'\x74\x79\x70\x65':a0_0x229bec(0x1a4),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x229bec(0x222)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x229bec(0x1e4),'\x63\x6f\x6e\x74\x65\x6e\x74'],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({box:_0x51325d})=>async _0x46bc67=>{const _0x363601=a0_0x229bec;return await _0x51325d[_0x363601(0x1ef)](_0x46bc67['\x70\x61\x74\x68'],_0x46bc67[_0x363601(0x1ac)]),{'\x6f\x6b':!![]};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x6c\x69\x73\x74':{'\x6e\x61\x6d\x65':a0_0x229bec(0x203),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x229bec(0x1d9),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':'\x6f\x62\x6a\x65\x63\x74','\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x68':{'\x74\x79\x70\x65':a0_0x229bec(0x1a4)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x229bec(0x1e4)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({box:_0x53c7b4})=>async _0x34503d=>{const _0x1f0a52=a0_0x229bec;return{'\x65\x6e\x74\x72\x69\x65\x73':await _0x53c7b4['\x66\x73'][_0x1f0a52(0x217)](_0x34503d[_0x1f0a52(0x1e4)])};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x73\x65\x61\x72\x63\x68':{'\x6e\x61\x6d\x65':a0_0x229bec(0x1bc),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x229bec(0x196),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x229bec(0x1de),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x74\x65\x72\x6e':{'\x74\x79\x70\x65':a0_0x229bec(0x1a4),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x229bec(0x1fe)},'\x70\x61\x74\x68':{'\x74\x79\x70\x65':'\x73\x74\x72\x69\x6e\x67','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x53\x75\x62\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x74\x6f\x20\x73\x65\x61\x72\x63\x68\x2e\x20\x4f\x70\x74\x69\x6f\x6e\x61\x6c\x2e'},'\x6d\x61\x78\x5f\x72\x65\x73\x75\x6c\x74\x73':{'\x74\x79\x70\x65':a0_0x229bec(0x1cc),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x229bec(0x228)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x229bec(0x1c0)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({box:_0x2950ff})=>async _0x183e69=>{const _0x339202=a0_0x229bec,_0x4bb7d7={'\x4e\x57\x72\x76\x66':function(_0x3d71b6,_0x4305ce){return _0x3d71b6>=_0x4305ce;}},_0x5f54bf=[],_0x18c572=_0x183e69[_0x339202(0x1ee)]??0x64;for await(const _0x4b569d of _0x2950ff[_0x339202(0x1ec)](_0x183e69[_0x339202(0x1c0)],{'\x63\x77\x64':_0x183e69[_0x339202(0x1e4)],'\x6d\x61\x78\x52\x65\x73\x75\x6c\x74\x73':_0x18c572})){_0x5f54bf[_0x339202(0x1b4)](_0x4b569d);if(_0x4bb7d7[_0x339202(0x1b7)](_0x5f54bf[_0x339202(0x199)],_0x18c572))break;}return{'\x6d\x61\x74\x63\x68\x65\x73':_0x5f54bf};}}},ALL_TOOL_SPECS=Object[a0_0x229bec(0x1e8)](TOOL_SPECS);function selectSpecs(_0x5a1d95){const _0x12e82b=a0_0x229bec,_0x545f61={'\x4d\x77\x72\x58\x42':function(_0x42e59d,_0x22d54e){return _0x42e59d===_0x22d54e;}};if(!_0x5a1d95||_0x545f61['\x4d\x77\x72\x58\x42'](_0x5a1d95['\x6c\x65\x6e\x67\x74\x68'],0x0))return ALL_TOOL_SPECS;const _0x5e7b78=new Set(_0x5a1d95);return Object[_0x12e82b(0x1e5)](TOOL_SPECS)[_0x12e82b(0x193)](_0x335d67=>_0x5e7b78['\x68\x61\x73'](_0x335d67))['\x6d\x61\x70'](_0x40d216=>TOOL_SPECS[_0x40d216]);}function serializeToolResult(_0x261d9a){const _0x1075bf=a0_0x229bec,_0x30b740={'\x66\x4f\x6d\x6f\x68':'\x73\x74\x72\x69\x6e\x67'};if(typeof _0x261d9a===_0x30b740[_0x1075bf(0x20b)])return _0x261d9a;try{return JSON[_0x1075bf(0x1be)](_0x261d9a,null,0x2);}catch{return String(_0x261d9a);}}const SDK_VERSION=((()=>{const _0xe277db=a0_0x229bec,_0x29bc5d={'\x6a\x72\x67\x72\x64':function(_0x31c9db,_0x4603ff){return _0x31c9db(_0x4603ff);},'\x4b\x6b\x5a\x41\x43':_0xe277db(0x21b),'\x4e\x4d\x51\x6a\x43':_0xe277db(0x20e)};try{return _0x29bc5d['\x6a\x72\x67\x72\x64'](createRequire,import.meta.url)(_0x29bc5d[_0xe277db(0x19b)])[_0xe277db(0x1b3)]??_0xe277db(0x20e);}catch{return _0x29bc5d[_0xe277db(0x20d)];}})());async function createMcpServer(_0x396a72,_0x865d12={}){const _0x5ef478=a0_0x229bec,_0x9d0a49={'\x67\x77\x4a\x4b\x44':'\x74\x65\x78\x74','\x42\x42\x63\x67\x70':_0x5ef478(0x1b9)};let _0x56ffa2,_0x47a989;try{[_0x56ffa2,_0x47a989]=await Promise['\x61\x6c\x6c']([import(_0x9d0a49[_0x5ef478(0x1fa)]),import(_0x5ef478(0x192))]);}catch{throw new Error(_0x5ef478(0x1ed));}const _0x14746a=selectSpecs(_0x865d12[_0x5ef478(0x20a)]),_0xbd1a34={'\x62\x6f\x78':_0x396a72,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x865d12[_0x5ef478(0x224)]},_0x182b28=new Map();for(const _0x210239 of _0x14746a)_0x182b28[_0x5ef478(0x21a)](_0x210239[_0x5ef478(0x1ab)],_0x210239[_0x5ef478(0x227)](_0xbd1a34));const _0x4231d0=new _0x56ffa2[(_0x5ef478(0x1ea))]({'\x6e\x61\x6d\x65':_0x865d12[_0x5ef478(0x1ab)]??_0x5ef478(0x1f3),'\x76\x65\x72\x73\x69\x6f\x6e':_0x865d12[_0x5ef478(0x1b3)]??SDK_VERSION},{'\x63\x61\x70\x61\x62\x69\x6c\x69\x74\x69\x65\x73':{'\x74\x6f\x6f\x6c\x73':{}}});return _0x4231d0['\x73\x65\x74\x52\x65\x71\x75\x65\x73\x74\x48\x61\x6e\x64\x6c\x65\x72'](_0x47a989[_0x5ef478(0x1a0)],async()=>({'\x74\x6f\x6f\x6c\x73':_0x14746a[_0x5ef478(0x219)](_0x41ff15=>({'\x6e\x61\x6d\x65':_0x41ff15[_0x5ef478(0x1ab)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x41ff15[_0x5ef478(0x229)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x41ff15['\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61']}))})),_0x4231d0[_0x5ef478(0x1e3)](_0x47a989[_0x5ef478(0x1d7)],async _0x703362=>{const _0x556f88=_0x5ef478,_0x588e51=_0x703362,_0x382551=_0x182b28[_0x556f88(0x1d8)](_0x588e51['\x70\x61\x72\x61\x6d\x73'][_0x556f88(0x1ab)]);if(!_0x382551)return{'\x69\x73\x45\x72\x72\x6f\x72':!![],'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':_0x556f88(0x194),'\x74\x65\x78\x74':'\x55\x6e\x6b\x6e\x6f\x77\x6e\x20\x74\x6f\x6f\x6c\x3a\x20'+_0x588e51[_0x556f88(0x212)][_0x556f88(0x1ab)]}]};try{return{'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':_0x556f88(0x194),'\x74\x65\x78\x74':serializeToolResult(await _0x382551(_0x588e51[_0x556f88(0x212)][_0x556f88(0x208)]??{}))}]};}catch(_0x26c326){return{'\x69\x73\x45\x72\x72\x6f\x72':!![],'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':_0x9d0a49['\x67\x77\x4a\x4b\x44'],'\x74\x65\x78\x74':_0x26c326 instanceof Error?_0x26c326[_0x556f88(0x218)]:String(_0x26c326)}]};}}),{'\x73\x65\x72\x76\x65\x72':_0x4231d0,'\x63\x6f\x6e\x6e\x65\x63\x74':_0x47fbb3=>_0x4231d0['\x63\x6f\x6e\x6e\x65\x63\x74'](_0x47fbb3),'\x63\x6c\x6f\x73\x65':()=>_0x4231d0[_0x5ef478(0x206)]()};}function runCode(_0x31a521,_0xa5587c,_0x2a81db,_0x5d52e2){const _0xb8dedf=a0_0x229bec;return _0x31a521[_0xb8dedf(0x1db)](_0xa5587c,_0x2a81db,_0x5d52e2);}function anthropicTools(_0x22ff33,_0x4877a3={}){const _0x218fa9=a0_0x229bec,_0xac34c8={'\x4d\x56\x58\x69\x55':_0x218fa9(0x1bb),'\x42\x75\x74\x47\x73':function(_0x74a172,_0x44838c){return _0x74a172(_0x44838c);},'\x54\x4e\x7a\x6f\x4d':function(_0x45df28,_0x5d03c0){return _0x45df28 instanceof _0x5d03c0;},'\x42\x68\x6e\x78\x58':function(_0x51dfa3,_0x569941){return _0x51dfa3(_0x569941);}},_0x244320=selectSpecs(_0x4877a3[_0x218fa9(0x20a)]),_0x4764fc={'\x62\x6f\x78':_0x22ff33,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x4877a3[_0x218fa9(0x224)]},_0x5d1c9d=new Map();for(const _0x410b44 of _0x244320)_0x5d1c9d[_0x218fa9(0x21a)](_0x410b44[_0x218fa9(0x1ab)],_0x410b44[_0x218fa9(0x227)](_0x4764fc));const _0x3434cc=_0x244320['\x6d\x61\x70'](_0x5de896=>({'\x6e\x61\x6d\x65':_0x5de896['\x6e\x61\x6d\x65'],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x5de896[_0x218fa9(0x229)],'\x69\x6e\x70\x75\x74\x5f\x73\x63\x68\x65\x6d\x61':_0x5de896['\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61']}));async function _0x3b1a86(_0x1424b5){const _0x393583=_0x218fa9,_0xb7267b=_0x5d1c9d[_0x393583(0x1d8)](_0x1424b5['\x6e\x61\x6d\x65']);if(!_0xb7267b)return{'\x74\x79\x70\x65':_0xac34c8[_0x393583(0x1c9)],'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x1424b5['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x393583(0x215)+_0x1424b5[_0x393583(0x1ab)],'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};try{const _0x4d6445=await _0xac34c8['\x42\x75\x74\x47\x73'](_0xb7267b,_0x1424b5[_0x393583(0x1f5)]);return{'\x74\x79\x70\x65':'\x74\x6f\x6f\x6c\x5f\x72\x65\x73\x75\x6c\x74','\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x1424b5['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0xac34c8['\x42\x75\x74\x47\x73'](toAnthropicContent,_0x4d6445)};}catch(_0x165f93){return{'\x74\x79\x70\x65':_0x393583(0x1bb),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x1424b5['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0xac34c8[_0x393583(0x1b6)](_0x165f93,Error)?_0x165f93[_0x393583(0x218)]:_0xac34c8[_0x393583(0x1dc)](String,_0x165f93),'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};}}async function _0x521fe4(_0x152e43){const _0x266784=_0x218fa9,_0x5875c3=_0x152e43[_0x266784(0x193)](_0x90c211=>typeof _0x90c211==='\x6f\x62\x6a\x65\x63\x74'&&_0x90c211!==null&&_0x90c211[_0x266784(0x1dd)]==='\x74\x6f\x6f\x6c\x5f\x75\x73\x65');return Promise[_0x266784(0x1df)](_0x5875c3[_0x266784(0x219)](_0x3b1a86));}return{'\x74\x6f\x6f\x6c\x73':_0x3434cc,'\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x55\x73\x65':_0x3b1a86,'\x68\x61\x6e\x64\x6c\x65\x41\x73\x73\x69\x73\x74\x61\x6e\x74\x4d\x65\x73\x73\x61\x67\x65':_0x521fe4};}function toAnthropicContent(_0x23ecc8){const _0xa8c1d2=a0_0x229bec,_0x4c72e8={'\x54\x64\x75\x6c\x79':function(_0x50d235,_0x463769){return _0x50d235(_0x463769);},'\x52\x70\x6c\x65\x75':_0xa8c1d2(0x1f6)};if(!isCodeExecutionResultWithImages(_0x23ecc8))return _0x4c72e8[_0xa8c1d2(0x198)](serializeToolResult,_0x23ecc8);const _0x5dbfdc=[],_0x2a2bab={..._0x23ecc8,'\x72\x65\x73\x75\x6c\x74\x73':_0x23ecc8[_0xa8c1d2(0x1c2)][_0xa8c1d2(0x193)](_0x3095d0=>_0x3095d0[_0xa8c1d2(0x1dd)]!==_0xa8c1d2(0x1d0))};_0x5dbfdc[_0xa8c1d2(0x1b4)]({'\x74\x79\x70\x65':_0xa8c1d2(0x194),'\x74\x65\x78\x74':serializeToolResult(_0x2a2bab)});for(const _0x5f01d5 of _0x23ecc8[_0xa8c1d2(0x1c2)])if(isImagePart(_0x5f01d5))_0x5dbfdc['\x70\x75\x73\x68']({'\x74\x79\x70\x65':_0xa8c1d2(0x1d0),'\x73\x6f\x75\x72\x63\x65':{'\x74\x79\x70\x65':_0x4c72e8[_0xa8c1d2(0x1cb)],'\x6d\x65\x64\x69\x61\x5f\x74\x79\x70\x65':_0x4c72e8['\x54\x64\x75\x6c\x79'](imageMediaType,_0x5f01d5[_0xa8c1d2(0x20c)]),'\x64\x61\x74\x61':_0x5f01d5['\x64\x61\x74\x61']}});return _0x5dbfdc;}function isImagePart(_0x3c863e){const _0x4cd79f=a0_0x229bec;return _0x3c863e[_0x4cd79f(0x1dd)]===_0x4cd79f(0x1d0);}function isCodeExecutionResultWithImages(_0x3ab09d){const _0x2e4c19=a0_0x229bec;if(!_0x3ab09d||typeof _0x3ab09d!==_0x2e4c19(0x1de))return![];const _0x539e82=_0x3ab09d[_0x2e4c19(0x1c2)];if(!Array[_0x2e4c19(0x1f9)](_0x539e82))return![];return _0x539e82[_0x2e4c19(0x190)](_0x33e913=>_0x33e913&&typeof _0x33e913==='\x6f\x62\x6a\x65\x63\x74'&&_0x33e913[_0x2e4c19(0x1dd)]===_0x2e4c19(0x1d0));}function a0_0x2a3e(){const _0x5cf050=['\x7a\x4d\x39\x59\x42\x77\x66\x30','\x74\x4b\x31\x72\x41\x4b\x6d','\x6d\x63\x34\x57\x6c\x4a\x61','\x45\x4c\x6a\x59\x76\x77\x69','\x42\x77\x66\x4a\x41\x67\x4c\x55\x7a\x78\x6d','\x44\x32\x50\x56\x42\x67\x57','\x43\x67\x66\x59\x79\x77\x31\x5a','\x7a\x4d\x58\x4c\x7a\x78\x72\x6a\x7a\x61','\x76\x75\x6a\x67\x76\x4d\x57','\x76\x77\x35\x52\x42\x4d\x39\x33\x42\x49\x62\x30\x42\x32\x39\x53\x6f\x49\x61','\x44\x67\x4c\x54\x7a\x77\x39\x31\x44\x66\x39\x54\x43\x57','\x42\x67\x4c\x5a\x44\x61','\x42\x77\x76\x5a\x43\x32\x66\x4e\x7a\x71','\x42\x77\x66\x57','\x43\x32\x76\x30','\x6c\x49\x34\x56\x6c\x49\x34\x56\x43\x67\x66\x4a\x41\x32\x66\x4e\x7a\x73\x35\x51\x43\x32\x39\x55','\x75\x4d\x76\x48\x7a\x63\x62\x48\x69\x67\x7a\x50\x42\x67\x75\x47\x7a\x4e\x6a\x56\x42\x73\x62\x30\x41\x67\x75\x47\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x63\x62\x4d\x41\x77\x58\x4c\x43\x33\x4c\x5a\x44\x67\x76\x54\x6c\x49\x62\x73\x7a\x77\x58\x48\x44\x67\x4c\x32\x7a\x73\x62\x57\x79\x78\x72\x4f\x43\x59\x62\x59\x7a\x78\x6e\x56\x42\x68\x7a\x4c\x69\x67\x7a\x59\x42\x32\x30\x47\x44\x67\x48\x4c\x69\x68\x44\x56\x43\x4d\x54\x5a\x43\x67\x66\x4a\x7a\x73\x62\x59\x42\x32\x39\x30\x6f\x59\x62\x48\x79\x4e\x6e\x56\x42\x68\x76\x30\x7a\x73\x62\x57\x79\x78\x72\x4f\x43\x59\x62\x59\x7a\x77\x66\x4b\x69\x68\x72\x4f\x7a\x73\x62\x4a\x42\x32\x35\x30\x79\x77\x4c\x55\x7a\x78\x69\x47\x7a\x4d\x4c\x53\x7a\x78\x6e\x35\x43\x33\x72\x4c\x42\x73\x62\x4b\x41\x78\x6a\x4c\x79\x33\x72\x53\x45\x73\x34','\x75\x67\x58\x57\x76\x76\x69','\x43\x67\x66\x59\x43\x32\x75','\x72\x78\x48\x4c\x79\x33\x76\x30\x7a\x73\x62\x4a\x42\x32\x72\x4c\x69\x67\x4c\x55\x69\x67\x65\x47\x43\x67\x76\x59\x43\x32\x4c\x5a\x44\x67\x76\x55\x44\x63\x62\x53\x79\x77\x35\x4e\x44\x77\x66\x4e\x7a\x73\x62\x52\x7a\x78\x6a\x55\x7a\x77\x57\x47\x41\x77\x35\x5a\x41\x77\x72\x4c\x69\x68\x72\x4f\x7a\x73\x62\x5a\x79\x77\x35\x4b\x79\x4d\x39\x34\x6c\x49\x62\x77\x79\x78\x6a\x50\x79\x77\x6a\x53\x7a\x78\x6d\x47\x43\x67\x76\x59\x43\x32\x4c\x5a\x44\x63\x62\x48\x79\x33\x6a\x56\x43\x33\x6d\x47\x79\x32\x66\x53\x42\x68\x6d\x47\x44\x32\x4c\x30\x41\x63\x62\x30\x41\x67\x75\x47\x43\x32\x66\x54\x7a\x73\x62\x5a\x7a\x78\x6e\x5a\x41\x77\x39\x55\x6c\x49\x62\x73\x7a\x78\x72\x31\x43\x4d\x35\x5a\x69\x68\x6e\x30\x7a\x67\x39\x31\x44\x63\x57\x47\x43\x33\x72\x4b\x7a\x78\x6a\x59\x6c\x63\x62\x4c\x45\x67\x4c\x30\x69\x67\x6e\x56\x7a\x67\x75\x53\x69\x67\x66\x55\x7a\x63\x62\x48\x69\x68\x72\x35\x43\x67\x76\x4b\x69\x67\x62\x59\x7a\x78\x6e\x31\x42\x68\x72\x5a\x79\x63\x62\x48\x43\x4e\x6a\x48\x45\x73\x62\x4a\x42\x32\x35\x30\x79\x77\x4c\x55\x41\x77\x35\x4e\x69\x67\x31\x48\x44\x68\x62\x53\x42\x33\x72\x53\x41\x77\x69\x47\x7a\x4d\x4c\x4e\x44\x78\x6a\x4c\x43\x59\x61\x4f\x79\x4d\x66\x5a\x7a\x74\x79\x30\x69\x66\x62\x6f\x72\x59\x4b\x53\x69\x68\x62\x48\x42\x4d\x72\x48\x43\x59\x62\x65\x79\x78\x72\x48\x72\x4e\x6a\x48\x42\x77\x76\x5a\x6c\x63\x62\x6b\x75\x30\x39\x6f\x69\x68\x7a\x50\x79\x73\x62\x4b\x41\x78\x6e\x57\x42\x67\x66\x35\x6b\x63\x4b\x53\x69\x67\x39\x59\x69\x67\x76\x59\x43\x4d\x39\x59\x43\x59\x34\x47\x75\x68\x6a\x4c\x7a\x4d\x76\x59\x69\x68\x72\x4f\x41\x78\x6d\x47\x42\x33\x7a\x4c\x43\x49\x62\x5a\x79\x77\x35\x4b\x79\x4d\x39\x34\x78\x32\x76\x34\x7a\x77\x6d\x47\x7a\x4d\x39\x59\x69\x67\x66\x55\x45\x73\x62\x4a\x42\x32\x72\x4c\x69\x68\x72\x4f\x79\x78\x71\x47\x42\x4d\x76\x4c\x7a\x68\x6d\x47\x43\x33\x72\x59\x44\x77\x6e\x30\x44\x78\x6a\x4c\x7a\x63\x62\x56\x44\x78\x72\x57\x44\x78\x71\x55','\x43\x32\x39\x31\x43\x4d\x6e\x4c','\x79\x4d\x66\x5a\x41\x61','\x72\x4e\x76\x53\x42\x63\x62\x4d\x41\x77\x58\x4c\x69\x67\x6e\x56\x42\x4e\x72\x4c\x42\x4e\x72\x5a\x6c\x47','\x71\x4b\x72\x72\x41\x65\x57','\x43\x32\x76\x5a\x43\x32\x4c\x56\x42\x4b\x4c\x4b','\x42\x67\x66\x55\x7a\x33\x76\x48\x7a\x32\x75','\x74\x33\x62\x30\x41\x77\x39\x55\x79\x77\x57\x47\x42\x77\x76\x30\x79\x77\x72\x48\x44\x67\x65\x47\x43\x33\x72\x48\x42\x78\x62\x4c\x7a\x63\x62\x56\x42\x49\x62\x4c\x44\x4d\x76\x59\x45\x73\x62\x4d\x42\x67\x76\x4c\x44\x63\x62\x54\x7a\x77\x31\x49\x7a\x78\x69\x55','\x42\x77\x66\x52\x7a\x75\x48\x48\x42\x4d\x72\x53\x7a\x78\x69','\x71\x32\x66\x57\x6c\x49\x62\x65\x7a\x77\x7a\x48\x44\x77\x58\x30\x69\x64\x65\x57\x6d\x63\x34','\x7a\x67\x76\x5a\x79\x33\x6a\x50\x43\x68\x72\x50\x42\x32\x34','\x43\x4d\x76\x48\x7a\x61','\x75\x67\x76\x59\x6c\x77\x6e\x48\x42\x67\x57\x47\x44\x67\x4c\x54\x7a\x77\x39\x31\x44\x63\x34\x47\x6d\x63\x62\x4b\x41\x78\x6e\x48\x79\x4d\x58\x4c\x43\x59\x34\x47\x72\x67\x76\x4d\x79\x78\x76\x53\x44\x63\x61\x32\x6d\x64\x61\x57\x6d\x63\x34','\x41\x77\x31\x48\x7a\x32\x75\x56\x41\x4e\x62\x4c\x7a\x57','\x43\x32\x39\x54\x7a\x71','\x44\x67\x39\x56\x42\x66\x39\x4a\x79\x77\x58\x53\x43\x57','\x71\x67\x31\x56\x7a\x67\x76\x53\x79\x32\x39\x55\x44\x67\x76\x34\x44\x68\x62\x59\x42\x33\x72\x56\x79\x32\x39\x53\x6c\x33\x6e\x4b\x41\x59\x39\x30\x45\x78\x62\x4c\x43\x59\x35\x51\x43\x57','\x7a\x4d\x4c\x53\x44\x67\x76\x59','\x44\x67\x76\x34\x44\x61','\x44\x67\x76\x54\x43\x67\x58\x48\x44\x67\x76\x46\x41\x77\x71','\x75\x4d\x4c\x57\x7a\x33\x6a\x4c\x43\x63\x31\x5a\x44\x68\x4c\x53\x7a\x73\x62\x4a\x42\x32\x72\x4c\x69\x68\x6e\x4c\x79\x78\x6a\x4a\x41\x63\x34\x47\x75\x4d\x76\x30\x44\x78\x6a\x55\x43\x59\x62\x54\x79\x78\x72\x4a\x41\x67\x4c\x55\x7a\x59\x62\x53\x41\x77\x35\x4c\x43\x59\x62\x33\x41\x78\x72\x4f\x69\x68\x6e\x31\x43\x4e\x6a\x56\x44\x77\x35\x4b\x41\x77\x35\x4e\x69\x67\x6e\x56\x42\x4e\x72\x4c\x45\x68\x71\x55','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4c\x45\x67\x76\x4a','\x76\x67\x72\x31\x42\x68\x4b','\x42\x67\x76\x55\x7a\x33\x72\x4f','\x42\x77\x66\x5a\x44\x68\x6a\x48\x72\x4d\x58\x4c\x7a\x78\x72\x75\x42\x32\x39\x53\x43\x59\x47\x50\x6f\x49\x62\x30\x41\x67\x75\x47\x79\x65\x62\x54\x79\x78\x6e\x30\x43\x4d\x65\x56\x79\x32\x39\x59\x7a\x77\x61\x47\x43\x67\x66\x4a\x41\x32\x66\x4e\x7a\x73\x62\x50\x43\x59\x62\x55\x42\x33\x71\x47\x41\x77\x35\x5a\x44\x67\x66\x53\x42\x67\x76\x4b\x6c\x49\x62\x6a\x42\x4e\x6e\x30\x79\x77\x58\x53\x69\x68\x7a\x50\x79\x73\x62\x47\x43\x67\x35\x57\x42\x73\x62\x48\x7a\x67\x71\x47\x71\x67\x31\x48\x43\x33\x72\x59\x79\x73\x39\x4a\x42\x33\x6a\x4c\x79\x63\x34','\x73\x32\x54\x41\x71\x75\x6d','\x41\x77\x35\x57\x44\x78\x72\x74\x79\x32\x48\x4c\x42\x77\x65','\x41\x77\x72\x5a','\x41\x67\x66\x5a','\x6d\x5a\x69\x30\x71\x30\x31\x64\x42\x65\x54\x4e','\x74\x67\x4c\x5a\x44\x66\x72\x56\x42\x32\x58\x5a\x75\x4d\x76\x58\x44\x77\x76\x5a\x44\x66\x6e\x4a\x41\x67\x76\x54\x79\x71','\x75\x4e\x76\x55\x69\x67\x65\x47\x43\x32\x48\x4c\x42\x67\x57\x47\x79\x32\x39\x54\x42\x77\x66\x55\x7a\x63\x61\x4f\x42\x4d\x38\x47\x43\x67\x76\x59\x43\x32\x4c\x5a\x44\x67\x76\x55\x44\x63\x62\x5a\x44\x67\x66\x30\x7a\x73\x4b\x47\x41\x77\x34\x47\x44\x67\x48\x4c\x69\x68\x6e\x48\x42\x4d\x72\x49\x42\x33\x47\x55\x69\x66\x76\x5a\x7a\x73\x62\x4d\x42\x33\x69\x47\x42\x32\x35\x4c\x6c\x78\x6e\x4f\x42\x33\x71\x47\x44\x67\x66\x5a\x41\x33\x6d\x47\x42\x67\x4c\x52\x7a\x73\x61\x4e\x43\x67\x35\x57\x42\x73\x62\x50\x42\x4e\x6e\x30\x79\x77\x58\x53\x6a\x59\x62\x56\x43\x49\x61\x4e\x42\x68\x6d\x4e\x6c\x49\x62\x67\x42\x33\x69\x47\x79\x32\x39\x4b\x7a\x73\x62\x30\x41\x67\x66\x30\x69\x68\x6e\x4f\x42\x33\x76\x53\x7a\x63\x62\x5a\x41\x67\x66\x59\x7a\x73\x62\x5a\x44\x67\x66\x30\x7a\x73\x62\x48\x79\x33\x6a\x56\x43\x33\x6d\x47\x79\x32\x66\x53\x42\x68\x6d\x53\x69\x68\x62\x59\x7a\x77\x7a\x4c\x43\x49\x62\x5a\x79\x77\x35\x4b\x79\x4d\x39\x34\x78\x33\x6a\x31\x42\x4c\x39\x4a\x42\x32\x72\x4c\x69\x68\x44\x50\x44\x67\x47\x47\x79\x73\x62\x5a\x7a\x78\x6e\x5a\x41\x77\x39\x55\x73\x77\x71\x55','\x75\x32\x39\x31\x43\x4d\x6e\x4c\x69\x67\x6e\x56\x7a\x67\x75\x47\x44\x67\x38\x47\x43\x4e\x76\x55\x6c\x49\x62\x6e\x44\x77\x58\x30\x41\x73\x31\x53\x41\x77\x35\x4c\x69\x68\x6e\x31\x43\x68\x62\x56\x43\x4e\x72\x4c\x7a\x63\x34','\x7a\x67\x76\x53\x7a\x78\x72\x4c','\x43\x33\x72\x59\x41\x77\x35\x4e','\x43\x67\x35\x4e','\x42\x4d\x39\x4b\x7a\x71','\x7a\x78\x48\x4c\x79\x57','\x43\x4e\x50\x72\x79\x32\x30','\x44\x68\x4c\x57\x7a\x78\x6e\x4a\x43\x4d\x4c\x57\x44\x61','\x79\x32\x39\x55\x44\x67\x76\x34\x44\x61','\x42\x4d\x66\x54\x7a\x71','\x79\x32\x39\x55\x44\x67\x76\x55\x44\x61','\x7a\x4e\x76\x55\x79\x33\x72\x50\x42\x32\x34','\x45\x77\x39\x63\x7a\x4e\x69','\x79\x33\x6a\x4c\x79\x78\x72\x4c\x76\x67\x39\x56\x42\x61','\x75\x68\x76\x49\x42\x67\x4c\x4a\x69\x68\x72\x4c\x42\x78\x62\x53\x79\x78\x72\x4c\x69\x68\x6e\x53\x44\x77\x43\x47\x42\x33\x69\x47\x41\x77\x71\x47\x6b\x67\x75\x55\x7a\x59\x34\x47\x6a\x33\x62\x35\x44\x67\x48\x56\x42\x49\x31\x4b\x79\x78\x72\x48\x6c\x78\x6e\x4a\x41\x77\x76\x55\x79\x32\x75\x4e\x6b\x73\x34','\x44\x4d\x76\x59\x79\x32\x76\x53\x71\x77\x4c\x67\x42\x67\x76\x4c\x44\x66\x72\x56\x42\x32\x58\x5a\x6b\x63\x4b\x36\x69\x68\x72\x4f\x7a\x73\x62\x47\x79\x77\x4c\x47\x69\x68\x62\x48\x79\x32\x54\x48\x7a\x32\x75\x47\x41\x78\x6d\x47\x42\x4d\x39\x30\x69\x67\x4c\x55\x43\x33\x72\x48\x42\x67\x58\x4c\x7a\x63\x34\x47\x73\x77\x35\x5a\x44\x67\x66\x53\x42\x63\x62\x32\x41\x77\x65\x47\x79\x68\x62\x55\x43\x67\x30\x47\x79\x77\x72\x4b\x69\x67\x66\x50\x79\x63\x34','\x76\x32\x39\x59\x41\x32\x4c\x55\x7a\x59\x62\x4b\x41\x78\x6a\x4c\x79\x33\x72\x56\x43\x4e\x4b\x55\x69\x65\x39\x57\x44\x67\x4c\x56\x42\x4d\x66\x53\x6c\x47','\x44\x4d\x76\x59\x43\x32\x4c\x56\x42\x47','\x43\x68\x76\x5a\x41\x61','\x79\x4d\x39\x56\x42\x67\x76\x48\x42\x47','\x76\x65\x35\x36\x42\x30\x30','\x74\x4c\x44\x59\x44\x4d\x79','\x42\x77\x76\x30\x79\x77\x72\x48\x44\x67\x65','\x71\x67\x31\x56\x7a\x67\x76\x53\x79\x32\x39\x55\x44\x67\x76\x34\x44\x68\x62\x59\x42\x33\x72\x56\x79\x32\x39\x53\x6c\x33\x6e\x4b\x41\x59\x39\x5a\x7a\x78\x6a\x32\x7a\x78\x69\x56\x41\x77\x35\x4b\x7a\x78\x47\x55\x41\x4e\x6d','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4d\x42\x67\x76\x4c\x44\x66\x39\x5a\x43\x67\x66\x33\x42\x47','\x44\x67\x39\x56\x42\x66\x39\x59\x7a\x78\x6e\x31\x42\x68\x71','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x5a\x7a\x77\x66\x59\x79\x32\x47','\x44\x32\x39\x59\x41\x32\x76\x59\x6c\x71','\x43\x33\x72\x59\x41\x77\x35\x4e\x41\x77\x7a\x35','\x41\x77\x31\x48\x7a\x32\x75\x56\x43\x67\x35\x4e','\x43\x67\x66\x30\x44\x67\x76\x59\x42\x47','\x79\x32\x39\x54\x42\x77\x66\x55\x7a\x61','\x43\x4d\x76\x5a\x44\x77\x58\x30\x43\x57','\x6e\x74\x6d\x30\x6f\x64\x71\x31\x6e\x77\x76\x64\x42\x78\x50\x53\x45\x61','\x6d\x74\x47\x33\x6d\x74\x6a\x63\x72\x77\x44\x75\x76\x76\x6d','\x7a\x4d\x58\x4c\x7a\x78\x72\x5a','\x44\x32\x39\x59\x41\x32\x76\x59\x43\x57','\x41\x77\x31\x7a\x41\x67\x69','\x42\x68\x50\x4d\x75\x30\x69','\x74\x76\x7a\x79\x41\x76\x75','\x7a\x76\x6a\x4d\x45\x66\x75','\x75\x4e\x62\x53\x7a\x78\x75','\x42\x4e\x76\x54\x79\x4d\x76\x59','\x75\x67\x76\x59\x6c\x77\x31\x48\x79\x32\x48\x50\x42\x4d\x75\x47\x44\x67\x4c\x54\x7a\x77\x39\x31\x44\x63\x34\x47\x72\x67\x76\x4d\x79\x78\x76\x53\x44\x63\x61\x32\x6d\x64\x61\x57\x6d\x63\x34','\x44\x4d\x76\x59\x79\x32\x76\x53\x71\x77\x4c\x75\x42\x32\x39\x53\x43\x59\x47\x50\x6f\x49\x62\x30\x41\x67\x75\x47\x79\x67\x66\x50\x79\x63\x62\x57\x79\x77\x6e\x52\x79\x77\x44\x4c\x69\x67\x4c\x5a\x69\x67\x35\x56\x44\x63\x62\x50\x42\x4e\x6e\x30\x79\x77\x58\x53\x7a\x77\x71\x55\x69\x65\x4c\x55\x43\x33\x72\x48\x42\x67\x57\x47\x41\x78\x71\x47\x44\x4d\x4c\x48\x69\x67\x62\x57\x42\x4e\x62\x54\x69\x67\x66\x4b\x7a\x63\x62\x48\x41\x77\x61\x47\x6b\x67\x66\x55\x7a\x63\x62\x57\x41\x77\x6e\x52\x69\x67\x66\x55\x69\x67\x62\x61\x79\x77\x4b\x54\x43\x32\x72\x52\x6c\x59\x50\x47\x69\x67\x31\x56\x7a\x67\x76\x53\x69\x67\x66\x4b\x79\x78\x62\x30\x7a\x78\x69\x50\x6c\x47','\x6d\x74\x6d\x58\x6e\x4a\x75\x5a\x6d\x5a\x76\x4e\x75\x4b\x7a\x6f\x73\x4c\x4f','\x41\x77\x31\x48\x7a\x32\x75','\x6e\x64\x65\x59\x6f\x64\x61\x31\x6e\x4c\x72\x4c\x76\x65\x35\x6f\x73\x61','\x41\x30\x6a\x59\x75\x4d\x38','\x75\x4e\x76\x55\x69\x67\x65\x47\x43\x32\x48\x4c\x42\x67\x57\x47\x79\x32\x39\x54\x42\x77\x66\x55\x7a\x63\x62\x56\x42\x49\x62\x48\x69\x67\x7a\x53\x7a\x77\x76\x30\x6a\x33\x6d\x47\x44\x32\x39\x59\x41\x32\x76\x59\x43\x59\x62\x50\x42\x49\x62\x57\x79\x78\x6a\x48\x42\x67\x58\x4c\x42\x63\x34\x47\x72\x67\x76\x4d\x79\x78\x76\x53\x44\x68\x6d\x47\x44\x67\x38\x47\x79\x77\x58\x53\x69\x68\x44\x56\x43\x4d\x54\x4c\x43\x4e\x6d\x37\x69\x68\x62\x48\x43\x33\x6d\x47\x79\x67\x31\x48\x79\x32\x48\x50\x42\x4d\x76\x5a\x79\x63\x62\x30\x42\x59\x62\x30\x79\x78\x6a\x4e\x7a\x78\x71\x47\x43\x33\x62\x4c\x79\x32\x4c\x4d\x41\x77\x6d\x47\x42\x32\x35\x4c\x43\x59\x34\x47\x75\x4d\x76\x30\x44\x78\x6a\x55\x43\x59\x62\x57\x7a\x78\x69\x54\x42\x77\x66\x4a\x41\x67\x4c\x55\x7a\x73\x62\x37\x42\x32\x53\x53\x69\x68\x6a\x4c\x43\x33\x76\x53\x44\x64\x38\x53\x69\x67\x76\x59\x43\x4d\x39\x59\x70\x33\x30\x47\x7a\x77\x35\x30\x43\x4d\x4c\x4c\x43\x59\x34','\x7a\x4d\x58\x4c\x7a\x78\x72\x46\x41\x77\x71','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x33\x43\x4d\x4c\x30\x7a\x71','\x45\x77\x6e\x36\x42\x65\x75','\x71\x32\x66\x53\x42\x66\x72\x56\x42\x32\x58\x73\x7a\x78\x66\x31\x7a\x78\x6e\x30\x75\x32\x6e\x4f\x7a\x77\x31\x48','\x7a\x32\x76\x30','\x74\x67\x4c\x5a\x44\x63\x62\x4c\x42\x4e\x72\x59\x41\x77\x76\x5a\x69\x67\x4c\x55\x69\x67\x65\x47\x7a\x67\x4c\x59\x7a\x77\x6e\x30\x42\x33\x6a\x35\x69\x68\x44\x50\x44\x67\x47\x47\x43\x32\x4c\x36\x7a\x73\x57\x47\x44\x68\x4c\x57\x7a\x73\x57\x47\x79\x77\x35\x4b\x69\x67\x31\x56\x7a\x67\x75\x55','\x75\x32\x48\x4c\x42\x67\x57\x47\x79\x32\x39\x54\x42\x77\x66\x55\x7a\x63\x62\x53\x41\x77\x35\x4c\x6c\x47','\x43\x4e\x76\x55\x71\x32\x39\x4b\x7a\x71','\x71\x4d\x48\x55\x45\x66\x47','\x44\x68\x4c\x57\x7a\x71','\x42\x32\x6a\x51\x7a\x77\x6e\x30','\x79\x77\x58\x53','\x72\x66\x50\x65\x41\x77\x75','\x6d\x5a\x65\x35\x6d\x5a\x75\x34\x75\x31\x62\x77\x73\x76\x62\x48','\x6d\x74\x43\x33\x6d\x75\x72\x6c\x76\x4b\x44\x66\x43\x71','\x43\x32\x76\x30\x75\x4d\x76\x58\x44\x77\x76\x5a\x44\x65\x48\x48\x42\x4d\x72\x53\x7a\x78\x69','\x43\x67\x66\x30\x41\x61','\x41\x32\x76\x35\x43\x57','\x73\x32\x31\x6a\x73\x31\x71','\x6d\x74\x69\x33\x6e\x64\x72\x6f\x74\x4e\x50\x6e\x76\x67\x53','\x44\x4d\x66\x53\x44\x77\x76\x5a','\x79\x33\x44\x4b','\x75\x32\x76\x59\x44\x4d\x76\x59','\x71\x67\x31\x48\x43\x33\x72\x59\x79\x73\x39\x4a\x42\x33\x6a\x4c','\x43\x32\x76\x48\x43\x4d\x6e\x4f','\x79\x33\x6a\x4c\x79\x78\x72\x4c\x74\x77\x6e\x57\x75\x32\x76\x59\x44\x4d\x76\x59\x6b\x63\x4b\x36\x69\x68\x72\x4f\x7a\x73\x62\x47\x71\x67\x31\x56\x7a\x67\x76\x53\x79\x32\x39\x55\x44\x67\x76\x34\x44\x68\x62\x59\x42\x33\x72\x56\x79\x32\x39\x53\x6c\x33\x6e\x4b\x41\x32\x61\x47\x43\x67\x66\x4a\x41\x32\x66\x4e\x7a\x73\x62\x50\x43\x59\x62\x55\x42\x33\x71\x47\x41\x77\x35\x5a\x44\x67\x66\x53\x42\x67\x76\x4b\x6c\x49\x62\x6a\x42\x4e\x6e\x30\x79\x77\x58\x53\x69\x67\x4c\x30\x69\x68\x7a\x50\x79\x73\x62\x47\x43\x67\x35\x57\x42\x73\x62\x48\x7a\x67\x71\x47\x71\x67\x31\x56\x7a\x67\x76\x53\x79\x32\x39\x55\x44\x67\x76\x34\x44\x68\x62\x59\x42\x33\x72\x56\x79\x32\x39\x53\x6c\x33\x6e\x4b\x41\x32\x61\x55','\x42\x77\x66\x34\x78\x33\x6a\x4c\x43\x33\x76\x53\x44\x68\x6d','\x44\x33\x6a\x50\x44\x67\x75','\x71\x32\x39\x55\x44\x67\x4c\x55\x44\x77\x75\x47\x7a\x67\x76\x53\x7a\x78\x72\x50\x42\x4d\x43\x47\x43\x4d\x76\x54\x79\x77\x4c\x55\x41\x77\x35\x4e\x69\x67\x31\x48\x79\x32\x48\x50\x42\x4d\x76\x5a\x69\x67\x4c\x4d\x69\x67\x39\x55\x7a\x73\x62\x4d\x79\x77\x4c\x53\x43\x59\x34','\x72\x67\x76\x53\x7a\x78\x72\x4c\x69\x68\x72\x4f\x7a\x73\x62\x4d\x42\x67\x76\x4c\x44\x63\x62\x48\x42\x4d\x71\x47\x7a\x78\x7a\x4c\x43\x4e\x4b\x47\x42\x77\x66\x4a\x41\x67\x4c\x55\x7a\x73\x62\x50\x42\x49\x62\x50\x44\x63\x34\x47\x75\x33\x72\x56\x43\x68\x6d\x47\x79\x4d\x4c\x53\x42\x67\x4c\x55\x7a\x59\x62\x50\x42\x77\x31\x4c\x7a\x67\x4c\x48\x44\x67\x76\x53\x45\x73\x34\x47\x71\x32\x66\x53\x42\x63\x62\x30\x41\x67\x4c\x5a\x69\x68\x44\x4f\x7a\x77\x34\x47\x44\x67\x48\x4c\x69\x67\x6e\x48\x42\x78\x62\x48\x41\x77\x44\x55\x69\x67\x4c\x5a\x69\x67\x72\x56\x42\x4d\x75\x37\x69\x67\x39\x59\x43\x67\x48\x48\x42\x4d\x76\x4b\x69\x67\x7a\x53\x7a\x77\x76\x30\x43\x59\x62\x52\x7a\x77\x76\x57\x69\x67\x6a\x31\x43\x4d\x35\x50\x42\x4d\x43\x47\x79\x33\x6a\x4c\x7a\x67\x4c\x30\x43\x59\x34','\x42\x77\x66\x5a\x44\x68\x6a\x48\x76\x67\x39\x56\x42\x68\x6d\x4f\x6b\x74\x4f\x47\x44\x67\x48\x4c\x69\x67\x62\x61\x42\x77\x66\x5a\x44\x68\x6a\x48\x6c\x32\x6e\x56\x43\x4d\x76\x47\x69\x68\x62\x48\x79\x32\x54\x48\x7a\x32\x75\x47\x41\x78\x6d\x47\x42\x4d\x39\x30\x69\x67\x4c\x55\x43\x33\x72\x48\x42\x67\x58\x4c\x7a\x63\x34\x47\x73\x77\x35\x5a\x44\x67\x66\x53\x42\x63\x62\x50\x44\x63\x62\x32\x41\x77\x65\x47\x79\x68\x62\x55\x43\x67\x30\x47\x79\x77\x72\x4b\x69\x65\x62\x54\x79\x78\x6e\x30\x43\x4d\x65\x56\x79\x32\x39\x59\x7a\x77\x61\x55','\x44\x67\x66\x55\x7a\x32\x58\x4c\x6c\x78\x6e\x48\x42\x4d\x72\x49\x42\x33\x47','\x75\x65\x58\x75\x44\x67\x6d','\x41\x77\x35\x57\x44\x78\x71','\x79\x4d\x66\x5a\x7a\x74\x79\x30','\x7a\x4e\x6a\x56\x42\x71','\x74\x67\x4c\x5a\x44\x63\x62\x30\x41\x67\x75\x47\x7a\x4d\x58\x4c\x7a\x78\x71\x4e\x43\x59\x62\x54\x79\x77\x6e\x4f\x41\x77\x35\x4c\x43\x59\x62\x48\x42\x4d\x71\x47\x44\x67\x48\x4c\x41\x78\x69\x47\x43\x67\x76\x59\x6c\x77\x31\x48\x79\x32\x48\x50\x42\x4d\x75\x47\x43\x33\x72\x48\x44\x67\x75\x47\x6b\x68\x6a\x31\x42\x4d\x35\x50\x42\x4d\x43\x47\x6c\x59\x62\x5a\x44\x67\x39\x57\x43\x67\x76\x4b\x69\x63\x38\x47\x7a\x4d\x66\x50\x42\x67\x76\x4b\x6b\x73\x62\x57\x42\x68\x76\x5a\x69\x67\x58\x48\x43\x33\x71\x54\x44\x78\x6e\x4c\x7a\x63\x62\x30\x41\x77\x31\x4c\x43\x33\x72\x48\x42\x78\x62\x5a\x6c\x47','\x41\x78\x6e\x62\x43\x4e\x6a\x48\x45\x71','\x71\x4b\x6a\x4a\x7a\x33\x61','\x76\x77\x35\x52\x42\x4d\x39\x33\x42\x49\x62\x4d\x42\x67\x76\x4c\x44\x63\x62\x30\x42\x32\x39\x53\x6f\x49\x61','\x72\x67\x76\x4d\x79\x78\x76\x53\x44\x63\x61\x32\x6d\x64\x61\x57\x6d\x63\x34','\x41\x4e\x62\x4c\x7a\x57','\x75\x4d\x76\x4e\x7a\x78\x47\x47\x43\x67\x66\x30\x44\x67\x76\x59\x42\x49\x34','\x44\x67\x39\x56\x42\x61','\x41\x4e\x6e\x56\x42\x4c\x6e\x4a\x41\x67\x76\x54\x79\x71','\x79\x32\x39\x55\x44\x67\x4c\x55\x44\x77\x76\x46\x42\x32\x35\x46\x7a\x78\x6a\x59\x42\x33\x69','\x75\x33\x62\x48\x44\x32\x34\x47\x79\x73\x62\x4d\x42\x67\x76\x4c\x44\x63\x62\x56\x7a\x49\x62\x6f\x69\x68\x6e\x48\x42\x4d\x72\x49\x42\x33\x48\x4c\x43\x59\x62\x4d\x43\x4d\x39\x54\x69\x67\x65\x47\x44\x67\x76\x54\x43\x67\x58\x48\x44\x67\x75\x53\x69\x68\x44\x50\x44\x67\x47\x47\x79\x73\x62\x4a\x42\x32\x39\x59\x7a\x67\x4c\x55\x79\x78\x72\x56\x43\x49\x62\x57\x42\x68\x76\x5a\x69\x65\x34\x47\x44\x32\x39\x59\x41\x32\x76\x59\x43\x59\x62\x5a\x41\x67\x66\x59\x41\x77\x35\x4e\x69\x67\x65\x47\x44\x32\x39\x59\x41\x33\x6e\x57\x79\x77\x6e\x4c\x6c\x49\x62\x73\x7a\x78\x72\x31\x43\x4d\x35\x5a\x69\x68\x72\x4f\x7a\x73\x62\x4d\x42\x67\x76\x4c\x44\x63\x62\x50\x7a\x63\x62\x48\x42\x4d\x71\x47\x44\x67\x48\x4c\x69\x67\x31\x48\x79\x32\x48\x50\x42\x4d\x75\x47\x41\x77\x72\x5a\x6c\x49\x62\x66\x79\x77\x6e\x4f\x69\x68\x44\x56\x43\x4d\x54\x4c\x43\x49\x62\x4f\x79\x78\x6d\x47\x41\x78\x72\x5a\x69\x67\x39\x33\x42\x49\x62\x57\x7a\x78\x6a\x5a\x41\x78\x6e\x30\x7a\x77\x35\x30\x69\x67\x6e\x56\x7a\x67\x75\x54\x7a\x78\x48\x4c\x79\x33\x76\x30\x41\x77\x39\x55\x69\x67\x54\x4c\x43\x4d\x35\x4c\x42\x64\x53\x47\x44\x67\x48\x4c\x69\x68\x6e\x48\x42\x77\x75\x47\x44\x32\x39\x59\x41\x33\x6e\x57\x79\x77\x6e\x4c\x69\x67\x4c\x5a\x69\x67\x31\x56\x44\x77\x35\x30\x7a\x77\x71\x47\x79\x77\x6e\x59\x42\x33\x6e\x5a\x69\x68\x72\x4f\x7a\x77\x30\x55\x69\x65\x6e\x70\x75\x31\x72\x74\x69\x66\x6e\x64\x71\x75\x58\x66\x69\x65\x58\x6a\x74\x4b\x76\x62\x75\x4b\x58\x7a\x69\x68\x44\x50\x44\x67\x47\x47\x79\x68\x44\x56\x43\x4d\x54\x4c\x43\x4e\x6e\x47\x6c\x49\x62\x76\x43\x32\x75\x47\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4d\x42\x67\x76\x4c\x44\x66\x39\x4b\x7a\x78\x6e\x30\x43\x4d\x39\x35\x69\x68\x44\x4f\x7a\x77\x34\x47\x7a\x67\x39\x55\x7a\x73\x34','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x53\x41\x78\x6e\x30','\x6e\x74\x65\x30\x6e\x74\x6d\x57\x6d\x65\x39\x63\x73\x65\x6a\x77\x73\x47','\x79\x33\x6a\x4c\x79\x78\x72\x4c\x76\x32\x4c\x30\x41\x65\x6e\x56\x42\x33\x6a\x4b\x41\x77\x35\x48\x44\x67\x39\x59','\x79\x32\x58\x56\x43\x32\x75','\x77\x4b\x35\x57\x75\x65\x69','\x79\x78\x6a\x4e\x44\x77\x31\x4c\x42\x4e\x72\x5a','\x76\x33\x6a\x50\x44\x67\x75\x47\x79\x73\x62\x4d\x41\x77\x58\x4c\x69\x67\x4c\x55\x69\x68\x72\x4f\x7a\x73\x62\x5a\x79\x77\x35\x4b\x79\x4d\x39\x34\x6c\x49\x62\x64\x43\x4d\x76\x48\x44\x67\x76\x5a\x69\x68\x62\x48\x43\x4d\x76\x55\x44\x63\x62\x4b\x41\x78\x6a\x4c\x79\x33\x72\x56\x43\x4d\x4c\x4c\x43\x59\x62\x48\x43\x59\x62\x55\x7a\x77\x76\x4b\x7a\x77\x71\x55\x69\x65\x39\x32\x7a\x78\x6a\x33\x43\x4d\x4c\x30\x7a\x78\x6d\x47\x7a\x78\x48\x50\x43\x33\x72\x50\x42\x4d\x43\x47\x7a\x4d\x4c\x53\x7a\x78\x6d\x55','\x79\x77\x58\x53\x42\x33\x43','\x7a\x4b\x39\x54\x42\x32\x47'];a0_0x2a3e=function(){return _0x5cf050;};return a0_0x2a3e();}function imageMediaType(_0x596a73){const _0x11b2c7=a0_0x229bec,_0x70bac6={'\x5a\x6c\x57\x71\x52':_0x11b2c7(0x22c),'\x77\x6a\x6f\x6c\x6c':_0x11b2c7(0x1bf)};switch(_0x596a73){case _0x11b2c7(0x1a5):return _0x11b2c7(0x1bf);case _0x11b2c7(0x1fd):return _0x70bac6['\x5a\x6c\x57\x71\x52'];case'\x73\x76\x67':return _0x70bac6[_0x11b2c7(0x211)];}}const FLEET_TOOL_SPECS={'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x73\x70\x61\x77\x6e':{'\x6e\x61\x6d\x65':a0_0x229bec(0x1ba),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x229bec(0x202),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x229bec(0x1de),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x74\x65\x6d\x70\x6c\x61\x74\x65\x5f\x69\x64':{'\x74\x79\x70\x65':'\x73\x74\x72\x69\x6e\x67','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x229bec(0x1b0)},'\x77\x6f\x72\x6b\x65\x72\x73':{'\x74\x79\x70\x65':a0_0x229bec(0x1cc),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x4e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x77\x6f\x72\x6b\x65\x72\x20\x73\x61\x6e\x64\x62\x6f\x78\x65\x73\x2e\x20\x45\x61\x63\x68\x20\x69\x73\x20\x62\x69\x6c\x6c\x65\x64\x20\x69\x6e\x64\x65\x70\x65\x6e\x64\x65\x6e\x74\x6c\x79\x2e'},'\x6d\x65\x74\x61\x64\x61\x74\x61':{'\x74\x79\x70\x65':a0_0x229bec(0x1de),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{},'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':!![],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x229bec(0x226)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x229bec(0x195),a0_0x229bec(0x1c6)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({client:_0x452aa8})=>async _0x448926=>{const _0x4e2d12=a0_0x229bec,_0x19bb42=await _0x452aa8[_0x4e2d12(0x1c5)][_0x4e2d12(0x205)]({'\x64\x65\x66\x61\x75\x6c\x74\x73':{'\x70\x75\x62\x6c\x69\x63\x54\x65\x6d\x70\x6c\x61\x74\x65\x49\x64':_0x448926[_0x4e2d12(0x195)]},'\x77\x6f\x72\x6b\x65\x72\x73':Array[_0x4e2d12(0x1f7)]({'\x6c\x65\x6e\x67\x74\x68':_0x448926[_0x4e2d12(0x1c6)]},(_0x3cbb99,_0x794f8c)=>({'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64':_0x4e2d12(0x1bd)+_0x794f8c})),'\x6d\x65\x74\x61\x64\x61\x74\x61':_0x448926[_0x4e2d12(0x1b8)]});return{'\x66\x6c\x65\x65\x74\x49\x64':_0x19bb42['\x66\x6c\x65\x65\x74\x49\x64'],'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64\x73':_0x19bb42[_0x4e2d12(0x19d)]};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x64\x69\x73\x70\x61\x74\x63\x68':{'\x6e\x61\x6d\x65':'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x64\x69\x73\x70\x61\x74\x63\x68','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x229bec(0x1d3),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x229bec(0x1de),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x66\x6c\x65\x65\x74\x5f\x69\x64':{'\x74\x79\x70\x65':a0_0x229bec(0x1a4)},'\x63\x6f\x6d\x6d\x61\x6e\x64':{'\x74\x79\x70\x65':a0_0x229bec(0x1a4),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x229bec(0x1da)},'\x6d\x61\x63\x68\x69\x6e\x65\x73':{'\x74\x79\x70\x65':'\x61\x72\x72\x61\x79','\x69\x74\x65\x6d\x73':{'\x74\x79\x70\x65':'\x73\x74\x72\x69\x6e\x67'},'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x4f\x70\x74\x69\x6f\x6e\x61\x6c\x20\x73\x75\x62\x73\x65\x74\x20\x6f\x66\x20\x6d\x61\x63\x68\x69\x6e\x65\x20\x69\x64\x73\x2e\x20\x44\x65\x66\x61\x75\x6c\x74\x73\x20\x74\x6f\x20\x61\x6c\x6c\x20\x77\x6f\x72\x6b\x65\x72\x73\x2e'},'\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73':{'\x74\x79\x70\x65':a0_0x229bec(0x1cc),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x229bec(0x1cd)}},'\x72\x65\x71\x75\x69\x72\x65\x64':['\x66\x6c\x65\x65\x74\x5f\x69\x64',a0_0x229bec(0x1c1)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({client:_0x17c9de})=>async _0x563be1=>{const _0x3c61b9=a0_0x229bec;return await(await _0x17c9de[_0x3c61b9(0x1c5)][_0x3c61b9(0x217)]({'\x66\x6c\x65\x65\x74\x49\x64':_0x563be1[_0x3c61b9(0x1d4)]}))['\x64\x69\x73\x70\x61\x74\x63\x68\x45\x78\x65\x63'](_0x563be1[_0x3c61b9(0x1c1)],{'\x6d\x61\x63\x68\x69\x6e\x65\x73':_0x563be1[_0x3c61b9(0x210)],'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x563be1['\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73']});}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x73\x74\x61\x74\x75\x73':{'\x6e\x61\x6d\x65':'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x73\x74\x61\x74\x75\x73','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x229bec(0x1f8),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x229bec(0x1de),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x66\x6c\x65\x65\x74\x5f\x69\x64':{'\x74\x79\x70\x65':'\x73\x74\x72\x69\x6e\x67'}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x229bec(0x1d4)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({client:_0x352faf})=>async _0x23118a=>{const _0x29e895=a0_0x229bec,_0x3f289c=await _0x352faf[_0x29e895(0x1c5)][_0x29e895(0x217)]({'\x66\x6c\x65\x65\x74\x49\x64':_0x23118a['\x66\x6c\x65\x65\x74\x5f\x69\x64']});return{'\x66\x6c\x65\x65\x74\x49\x64':_0x3f289c[_0x29e895(0x213)],'\x6d\x61\x63\x68\x69\x6e\x65\x73':_0x3f289c['\x69\x64\x73'][_0x29e895(0x219)](_0x1eee82=>({'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64':_0x1eee82,'\x73\x74\x61\x74\x75\x73':_0x3f289c[_0x29e895(0x1d8)](_0x1eee82)['\x73\x74\x61\x74\x75\x73']}))};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x64\x65\x73\x74\x72\x6f\x79':{'\x6e\x61\x6d\x65':'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x64\x65\x73\x74\x72\x6f\x79','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x229bec(0x1f1),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x229bec(0x1de),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x66\x6c\x65\x65\x74\x5f\x69\x64':{'\x74\x79\x70\x65':a0_0x229bec(0x1a4)},'\x63\x6f\x6e\x74\x69\x6e\x75\x65\x5f\x6f\x6e\x5f\x65\x72\x72\x6f\x72':{'\x74\x79\x70\x65':a0_0x229bec(0x1b5),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x229bec(0x1f0)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x229bec(0x1d4)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({client:_0xfd75ea})=>async _0x3bbb8d=>{const _0x34c691=a0_0x229bec;return await(await _0xfd75ea[_0x34c691(0x1c5)][_0x34c691(0x217)]({'\x66\x6c\x65\x65\x74\x49\x64':_0x3bbb8d[_0x34c691(0x1d4)]}))[_0x34c691(0x1a3)]({'\x63\x6f\x6e\x74\x69\x6e\x75\x65\x4f\x6e\x45\x72\x72\x6f\x72':_0x3bbb8d[_0x34c691(0x201)]}),{'\x66\x6c\x65\x65\x74\x49\x64':_0x3bbb8d['\x66\x6c\x65\x65\x74\x5f\x69\x64'],'\x64\x65\x6c\x65\x74\x65\x64':!![]};}}},ALL_FLEET_TOOL_SPECS=Object[a0_0x229bec(0x1e8)](FLEET_TOOL_SPECS);function selectFleetSpecs(_0x4afd98){const _0x21c01d=a0_0x229bec;if(!_0x4afd98||_0x4afd98[_0x21c01d(0x199)]===0x0)return ALL_FLEET_TOOL_SPECS;const _0x168a98=new Set(_0x4afd98);return Object[_0x21c01d(0x1e5)](FLEET_TOOL_SPECS)[_0x21c01d(0x193)](_0xae596d=>_0x168a98[_0x21c01d(0x19e)](_0xae596d))[_0x21c01d(0x219)](_0x5349f7=>FLEET_TOOL_SPECS[_0x5349f7]);}function anthropicFleetTools(_0x72ed67,_0x18b396={}){const _0x5887b5=a0_0x229bec,_0x4895b9={'\x7a\x52\x72\x55\x62':_0x5887b5(0x1bb),'\x65\x52\x66\x78\x55':function(_0x16004f,_0x1a8f8a){return _0x16004f instanceof _0x1a8f8a;},'\x79\x6f\x42\x66\x72':function(_0x378309,_0x23daf4,_0x50191d){return _0x378309(_0x23daf4,_0x50191d);}},_0x250ac6=selectFleetSpecs(_0x18b396[_0x5887b5(0x20a)]),_0x55288e=_0x4895b9[_0x5887b5(0x1ae)](buildFleetHandlers,_0x250ac6,{'\x63\x6c\x69\x65\x6e\x74':_0x72ed67});return{'\x74\x6f\x6f\x6c\x73':_0x250ac6[_0x5887b5(0x219)](_0x486f25=>({'\x6e\x61\x6d\x65':_0x486f25['\x6e\x61\x6d\x65'],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x486f25['\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e'],'\x69\x6e\x70\x75\x74\x5f\x73\x63\x68\x65\x6d\x61':_0x486f25[_0x5887b5(0x19c)]})),async '\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x55\x73\x65'(_0x3b75dc){const _0x687b=_0x5887b5,_0x4b513d=_0x55288e[_0x687b(0x1d8)](_0x3b75dc[_0x687b(0x1ab)]);if(!_0x4b513d)return{'\x74\x79\x70\x65':_0x4895b9[_0x687b(0x20f)],'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x3b75dc['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x687b(0x1fb)+_0x3b75dc[_0x687b(0x1ab)],'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};try{const _0x2a7a35=await _0x4b513d(_0x3b75dc[_0x687b(0x1f5)]);return{'\x74\x79\x70\x65':'\x74\x6f\x6f\x6c\x5f\x72\x65\x73\x75\x6c\x74','\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x3b75dc['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':serializeToolResult(_0x2a7a35)};}catch(_0x19b91e){return{'\x74\x79\x70\x65':'\x74\x6f\x6f\x6c\x5f\x72\x65\x73\x75\x6c\x74','\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x3b75dc['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x4895b9[_0x687b(0x1ca)](_0x19b91e,Error)?_0x19b91e[_0x687b(0x218)]:String(_0x19b91e),'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};}}};}function a0_0x32df(_0x4d0a32,_0x4bc3a9){_0x4d0a32=_0x4d0a32-0x190;const _0x2a3ea8=a0_0x2a3e();let _0x32dfae=_0x2a3ea8[_0x4d0a32];if(a0_0x32df['\x6e\x69\x56\x64\x63\x76']===undefined){var _0x1e7902=function(_0x18cadf){const _0x2ad726='\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 _0x24da95='',_0x572b9f='';for(let _0x2ce612=0x0,_0x1d95ce,_0x596c02,_0x19b294=0x0;_0x596c02=_0x18cadf['\x63\x68\x61\x72\x41\x74'](_0x19b294++);~_0x596c02&&(_0x1d95ce=_0x2ce612%0x4?_0x1d95ce*0x40+_0x596c02:_0x596c02,_0x2ce612++%0x4)?_0x24da95+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0xff&_0x1d95ce>>(-0x2*_0x2ce612&0x6)):0x0){_0x596c02=_0x2ad726['\x69\x6e\x64\x65\x78\x4f\x66'](_0x596c02);}for(let _0x4d056c=0x0,_0x13b184=_0x24da95['\x6c\x65\x6e\x67\x74\x68'];_0x4d056c<_0x13b184;_0x4d056c++){_0x572b9f+='\x25'+('\x30\x30'+_0x24da95['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x4d056c)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x10))['\x73\x6c\x69\x63\x65'](-0x2);}return decodeURIComponent(_0x572b9f);};a0_0x32df['\x64\x59\x6f\x54\x4b\x50']=_0x1e7902,a0_0x32df['\x56\x54\x71\x77\x43\x73']={},a0_0x32df['\x6e\x69\x56\x64\x63\x76']=!![];}const _0x1ab72f=_0x2a3ea8[0x0],_0x28e871=_0x4d0a32+_0x1ab72f,_0x2cd583=a0_0x32df['\x56\x54\x71\x77\x43\x73'][_0x28e871];return!_0x2cd583?(_0x32dfae=a0_0x32df['\x64\x59\x6f\x54\x4b\x50'](_0x32dfae),a0_0x32df['\x56\x54\x71\x77\x43\x73'][_0x28e871]=_0x32dfae):_0x32dfae=_0x2cd583,_0x32dfae;}function openaiFleetTools(_0x40fb49,_0x351c74={}){const _0x531995=a0_0x229bec,_0x5a970d={'\x79\x63\x7a\x6c\x45':_0x531995(0x1de),'\x69\x6d\x59\x68\x62':function(_0xf692c3,_0x53e1cb){return _0xf692c3(_0x53e1cb);}},_0x1a232d=_0x5a970d[_0x531995(0x1c7)](selectFleetSpecs,_0x351c74[_0x531995(0x20a)]),_0x4b6644=buildFleetHandlers(_0x1a232d,{'\x63\x6c\x69\x65\x6e\x74':_0x40fb49});return{'\x74\x6f\x6f\x6c\x73':_0x1a232d['\x6d\x61\x70'](_0x51b277=>({'\x74\x79\x70\x65':_0x531995(0x1ad),'\x66\x75\x6e\x63\x74\x69\x6f\x6e':{'\x6e\x61\x6d\x65':_0x51b277[_0x531995(0x1ab)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x51b277['\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e'],'\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73':_0x51b277[_0x531995(0x19c)]}})),async '\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x43\x61\x6c\x6c'(_0x43c665){const _0x52e5dc=_0x531995,_0x876ed6=_0x4b6644[_0x52e5dc(0x1d8)](_0x43c665[_0x52e5dc(0x1ad)][_0x52e5dc(0x1ab)]);if(!_0x876ed6)return{'\x72\x6f\x6c\x65':_0x52e5dc(0x1ff),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x43c665['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x52e5dc(0x1be)]({'\x65\x72\x72\x6f\x72':_0x52e5dc(0x1fb)+_0x43c665[_0x52e5dc(0x1ad)]['\x6e\x61\x6d\x65']})};let _0x1be43e={};try{const _0x179e38=JSON[_0x52e5dc(0x21e)](_0x43c665[_0x52e5dc(0x1ad)]['\x61\x72\x67\x75\x6d\x65\x6e\x74\x73']||'\x7b\x7d');if(_0x179e38&&typeof _0x179e38===_0x5a970d[_0x52e5dc(0x1d6)])_0x1be43e=_0x179e38;}catch{}try{const _0x3eaf35=await _0x876ed6(_0x1be43e);return{'\x72\x6f\x6c\x65':_0x52e5dc(0x1ff),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x43c665['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':serializeToolResult(_0x3eaf35)};}catch(_0x4132a5){return{'\x72\x6f\x6c\x65':_0x52e5dc(0x1ff),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x43c665['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON['\x73\x74\x72\x69\x6e\x67\x69\x66\x79']({'\x65\x72\x72\x6f\x72':_0x4132a5 instanceof Error?_0x4132a5[_0x52e5dc(0x218)]:_0x5a970d[_0x52e5dc(0x1c7)](String,_0x4132a5)})};}}};}async function vercelAiFleetTools(_0x59b8be,_0x1fba91={}){const _0x397809=a0_0x229bec,_0x50fcb8={'\x55\x42\x46\x56\x6c':function(_0x11b95d,_0x191b31){return _0x11b95d(_0x191b31);},'\x4d\x79\x6d\x51\x52':_0x397809(0x1b1),'\x44\x5a\x44\x69\x65':function(_0x4c1096,_0x142ec6){return _0x4c1096(_0x142ec6);}};let _0x452a5e;try{_0x452a5e=await import('\x61\x69');}catch{throw new Error(_0x50fcb8['\x4d\x79\x6d\x51\x52']);}const _0x222710=_0x50fcb8[_0x397809(0x1e0)](selectFleetSpecs,_0x1fba91[_0x397809(0x20a)]),_0x3691aa=buildFleetHandlers(_0x222710,{'\x63\x6c\x69\x65\x6e\x74':_0x59b8be}),_0x55548a={};for(const _0x4a4cb0 of _0x222710)_0x55548a[_0x4a4cb0[_0x397809(0x1ab)]]=_0x452a5e['\x74\x6f\x6f\x6c']({'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x4a4cb0[_0x397809(0x229)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x452a5e['\x6a\x73\x6f\x6e\x53\x63\x68\x65\x6d\x61'](_0x4a4cb0['\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61']),'\x65\x78\x65\x63\x75\x74\x65':async _0x1d84f9=>{const _0x1ed74e=_0x397809,_0x2285ba=_0x3691aa[_0x1ed74e(0x1d8)](_0x4a4cb0[_0x1ed74e(0x1ab)]);if(!_0x2285ba)throw new Error(_0x1ed74e(0x1fb)+_0x4a4cb0[_0x1ed74e(0x1ab)]);return _0x50fcb8[_0x1ed74e(0x214)](serializeToolResult,await _0x2285ba(_0x1d84f9));}});return _0x55548a;}async function mastraFleetTools(_0xef7c70,_0x3f531b={}){const _0x348596=a0_0x229bec,_0x1316fe={'\x4b\x6d\x49\x4b\x54':function(_0x830c86,_0x336fda){return _0x830c86(_0x336fda);},'\x6b\x42\x72\x52\x6f':'\x40\x6d\x61\x73\x74\x72\x61\x2f\x63\x6f\x72\x65','\x4d\x4e\x6a\x54\x7a':_0x348596(0x19a)};let _0x3b7fcc;try{_0x3b7fcc=await import(_0x1316fe[_0x348596(0x1d2)]);}catch{throw new Error(_0x1316fe['\x4d\x4e\x6a\x54\x7a']);}const _0x1e09b7=selectFleetSpecs(_0x3f531b[_0x348596(0x20a)]),_0x1b3263=buildFleetHandlers(_0x1e09b7,{'\x63\x6c\x69\x65\x6e\x74':_0xef7c70}),_0x4dd20b={};for(const _0x345949 of _0x1e09b7)_0x4dd20b[_0x345949[_0x348596(0x1ab)]]=_0x3b7fcc[_0x348596(0x1af)]({'\x69\x64':_0x345949['\x6e\x61\x6d\x65'],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x345949[_0x348596(0x229)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x3b7fcc['\x6a\x73\x6f\x6e\x53\x63\x68\x65\x6d\x61']?_0x3b7fcc[_0x348596(0x200)](_0x345949[_0x348596(0x19c)]):_0x345949['\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61'],'\x65\x78\x65\x63\x75\x74\x65':async _0x115486=>{const _0x5d781d=_0x348596,_0x2bac89=_0x1b3263['\x67\x65\x74'](_0x345949[_0x5d781d(0x1ab)]);if(!_0x2bac89)throw new Error(_0x5d781d(0x1fb)+_0x345949['\x6e\x61\x6d\x65']);return{'\x72\x65\x73\x75\x6c\x74':serializeToolResult(await _0x1316fe[_0x5d781d(0x1e6)](_0x2bac89,_0x115486?.[_0x5d781d(0x1aa)]??{}))};}});return _0x4dd20b;}function buildFleetHandlers(_0x46ebe4,_0x15e515){const _0x2ab1b1=a0_0x229bec,_0x22e5b9=new Map();for(const _0x4d8226 of _0x46ebe4)_0x22e5b9[_0x2ab1b1(0x21a)](_0x4d8226[_0x2ab1b1(0x1ab)],_0x4d8226[_0x2ab1b1(0x227)](_0x15e515));return _0x22e5b9;}async function mastraTools(_0x494821,_0x41c489={}){const _0x4413a1=a0_0x229bec,_0x5b0d0f={'\x72\x7a\x51\x63\x6d':function(_0x3c0bfb,_0x4a531f){return _0x3c0bfb(_0x4a531f);}};let _0x26f026;try{_0x26f026=await import(_0x4413a1(0x1eb));}catch{throw new Error(_0x4413a1(0x1f2));}const _0x5c7efe=_0x5b0d0f[_0x4413a1(0x1a8)](selectSpecs,_0x41c489[_0x4413a1(0x20a)]),_0x2dbb4a={'\x62\x6f\x78':_0x494821,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x41c489[_0x4413a1(0x224)]},_0x121569={};for(const _0x38d3fa of _0x5c7efe){const _0x1cc027=_0x38d3fa[_0x4413a1(0x227)](_0x2dbb4a);_0x121569[_0x38d3fa[_0x4413a1(0x1ab)]]=_0x26f026['\x63\x72\x65\x61\x74\x65\x54\x6f\x6f\x6c']({'\x69\x64':_0x38d3fa[_0x4413a1(0x1ab)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x38d3fa['\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e'],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x26f026[_0x4413a1(0x200)]?_0x26f026[_0x4413a1(0x200)](_0x38d3fa[_0x4413a1(0x19c)]):_0x38d3fa[_0x4413a1(0x19c)],'\x65\x78\x65\x63\x75\x74\x65':async _0x5b2dae=>{const _0x562224=_0x4413a1;return{'\x72\x65\x73\x75\x6c\x74':serializeToolResult(await _0x1cc027(_0x5b2dae?.[_0x562224(0x1aa)]??{}))};}});}return _0x121569;}function openaiTools(_0x1f78f5,_0x4f8e90={}){const _0x38abef=a0_0x229bec,_0x29aba2={'\x75\x63\x52\x61\x7a':_0x38abef(0x1de),'\x50\x6c\x70\x55\x52':_0x38abef(0x1ff),'\x6c\x7a\x66\x53\x42':function(_0x500e76,_0x5d0ad6){return _0x500e76(_0x5d0ad6);},'\x50\x4c\x54\x74\x63':function(_0x588707,_0x1848a7){return _0x588707 instanceof _0x1848a7;},'\x42\x44\x51\x68\x4c':function(_0x35a7cd,_0x4fefba){return _0x35a7cd(_0x4fefba);}},_0x23e298=selectSpecs(_0x4f8e90[_0x38abef(0x20a)]),_0x21fd5a={'\x62\x6f\x78':_0x1f78f5,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x4f8e90[_0x38abef(0x224)]},_0x4651c8=new Map();for(const _0x4c1839 of _0x23e298)_0x4651c8[_0x38abef(0x21a)](_0x4c1839['\x6e\x61\x6d\x65'],_0x4c1839[_0x38abef(0x227)](_0x21fd5a));const _0x4b08d7=_0x23e298[_0x38abef(0x219)](_0x295db8=>({'\x74\x79\x70\x65':'\x66\x75\x6e\x63\x74\x69\x6f\x6e','\x66\x75\x6e\x63\x74\x69\x6f\x6e':{'\x6e\x61\x6d\x65':_0x295db8[_0x38abef(0x1ab)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x295db8[_0x38abef(0x229)],'\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73':_0x295db8[_0x38abef(0x19c)]}}));function _0x294c0b(_0x33f4be){const _0x46f1a9=_0x38abef;if(!_0x33f4be)return{};try{const _0x3e0b05=JSON[_0x46f1a9(0x21e)](_0x33f4be);return typeof _0x3e0b05===_0x29aba2['\x75\x63\x52\x61\x7a']&&_0x3e0b05!==null?_0x3e0b05:{};}catch{return{};}}async function _0x3986ae(_0x4f825e){const _0x26ac2b=_0x38abef,_0x58db74=_0x4651c8[_0x26ac2b(0x1d8)](_0x4f825e[_0x26ac2b(0x1ad)]['\x6e\x61\x6d\x65']);if(!_0x58db74)return{'\x72\x6f\x6c\x65':_0x29aba2[_0x26ac2b(0x21d)],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x4f825e['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x26ac2b(0x1be)]({'\x65\x72\x72\x6f\x72':'\x55\x6e\x6b\x6e\x6f\x77\x6e\x20\x74\x6f\x6f\x6c\x3a\x20'+_0x4f825e[_0x26ac2b(0x1ad)][_0x26ac2b(0x1ab)]})};try{const _0x3edab6=await _0x58db74(_0x29aba2[_0x26ac2b(0x1c8)](_0x294c0b,_0x4f825e['\x66\x75\x6e\x63\x74\x69\x6f\x6e']['\x61\x72\x67\x75\x6d\x65\x6e\x74\x73']));return{'\x72\x6f\x6c\x65':_0x26ac2b(0x1ff),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x4f825e['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x29aba2['\x6c\x7a\x66\x53\x42'](serializeToolResult,_0x3edab6)};}catch(_0x208994){return{'\x72\x6f\x6c\x65':_0x29aba2[_0x26ac2b(0x21d)],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x4f825e['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x26ac2b(0x1be)]({'\x65\x72\x72\x6f\x72':_0x29aba2[_0x26ac2b(0x1f4)](_0x208994,Error)?_0x208994[_0x26ac2b(0x218)]:_0x29aba2[_0x26ac2b(0x223)](String,_0x208994)})};}}async function _0x532ba0(_0xd522c9){const _0x11aca7=_0x38abef,_0x4583f6=_0xd522c9[_0x11aca7(0x191)]??[];return Promise[_0x11aca7(0x1df)](_0x4583f6['\x6d\x61\x70'](_0x3986ae));}return{'\x74\x6f\x6f\x6c\x73':_0x4b08d7,'\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x43\x61\x6c\x6c':_0x3986ae,'\x68\x61\x6e\x64\x6c\x65\x41\x73\x73\x69\x73\x74\x61\x6e\x74\x4d\x65\x73\x73\x61\x67\x65':_0x532ba0};}async function vercelAiTools(_0x3311c1,_0x4197be={}){const _0x31dde8=a0_0x229bec,_0x4c8210={'\x5a\x4e\x70\x50\x42':function(_0x2e71b5,_0x597a7c){return _0x2e71b5(_0x597a7c);},'\x70\x69\x73\x4e\x4b':function(_0x53522d,_0x539c56){return _0x53522d(_0x539c56);},'\x46\x4e\x6f\x75\x6d':_0x31dde8(0x1ce)};let _0x1c09ae;try{_0x1c09ae=await import('\x61\x69');}catch{throw new Error(_0x4c8210['\x46\x4e\x6f\x75\x6d']);}const _0x1e94c5=selectSpecs(_0x4197be[_0x31dde8(0x20a)]),_0x364ff5={'\x62\x6f\x78':_0x3311c1,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x4197be[_0x31dde8(0x224)]},_0x2b5d1f={};for(const _0x1b76c0 of _0x1e94c5){const _0x54f3a5=_0x1b76c0[_0x31dde8(0x227)](_0x364ff5);_0x2b5d1f[_0x1b76c0[_0x31dde8(0x1ab)]]=_0x1c09ae['\x74\x6f\x6f\x6c']({'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x1b76c0[_0x31dde8(0x229)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x1c09ae['\x6a\x73\x6f\x6e\x53\x63\x68\x65\x6d\x61'](_0x1b76c0[_0x31dde8(0x19c)]),'\x65\x78\x65\x63\x75\x74\x65':async _0x2c5641=>{const _0x4eadaa=_0x31dde8;return _0x4c8210[_0x4eadaa(0x207)](serializeToolResult,await _0x4c8210['\x70\x69\x73\x4e\x4b'](_0x54f3a5,_0x2c5641));}});}return _0x2b5d1f;}export{anthropicFleetTools,anthropicTools,createMcpServer,mastraFleetTools,mastraTools,openaiFleetTools,openaiTools,runCode,vercelAiFleetTools,vercelAiTools};
|
|
1
|
+
const a0_0x57547c=a0_0x2966;(function(_0x32ffdf,_0x388a02){const _0xc40d3=a0_0x2966,_0x3c5540=_0x32ffdf();while(!![]){try{const _0x1405a7=-parseInt(_0xc40d3(0x10e))/0x1+-parseInt(_0xc40d3(0x123))/0x2+parseInt(_0xc40d3(0x148))/0x3+-parseInt(_0xc40d3(0xe6))/0x4*(parseInt(_0xc40d3(0xa4))/0x5)+parseInt(_0xc40d3(0x12f))/0x6*(parseInt(_0xc40d3(0xe4))/0x7)+parseInt(_0xc40d3(0x135))/0x8+-parseInt(_0xc40d3(0x13b))/0x9*(parseInt(_0xc40d3(0xf7))/0xa);if(_0x1405a7===_0x388a02)break;else _0x3c5540['push'](_0x3c5540['shift']());}catch(_0x452267){_0x3c5540['push'](_0x3c5540['shift']());}}}(a0_0xca80,0xd2730));import{createRequire}from'\x6e\x6f\x64\x65\x3a\x6d\x6f\x64\x75\x6c\x65';const TOOL_SPECS={'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x72\x75\x6e\x5f\x63\x6f\x64\x65':{'\x6e\x61\x6d\x65':a0_0x57547c(0xd6),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x45\x78\x65\x63\x75\x74\x65\x20\x63\x6f\x64\x65\x20\x69\x6e\x20\x61\x20\x70\x65\x72\x73\x69\x73\x74\x65\x6e\x74\x20\x6c\x61\x6e\x67\x75\x61\x67\x65\x20\x6b\x65\x72\x6e\x65\x6c\x20\x69\x6e\x73\x69\x64\x65\x20\x74\x68\x65\x20\x73\x61\x6e\x64\x62\x6f\x78\x2e\x20\x56\x61\x72\x69\x61\x62\x6c\x65\x73\x20\x70\x65\x72\x73\x69\x73\x74\x20\x61\x63\x72\x6f\x73\x73\x20\x63\x61\x6c\x6c\x73\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x73\x61\x6d\x65\x20\x73\x65\x73\x73\x69\x6f\x6e\x2e\x20\x52\x65\x74\x75\x72\x6e\x73\x20\x73\x74\x64\x6f\x75\x74\x2c\x20\x73\x74\x64\x65\x72\x72\x2c\x20\x65\x78\x69\x74\x20\x63\x6f\x64\x65\x2c\x20\x61\x6e\x64\x20\x61\x20\x74\x79\x70\x65\x64\x20\x60\x72\x65\x73\x75\x6c\x74\x73\x60\x20\x61\x72\x72\x61\x79\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x6d\x61\x74\x70\x6c\x6f\x74\x6c\x69\x62\x20\x66\x69\x67\x75\x72\x65\x73\x20\x28\x62\x61\x73\x65\x36\x34\x20\x50\x4e\x47\x29\x2c\x20\x70\x61\x6e\x64\x61\x73\x20\x44\x61\x74\x61\x46\x72\x61\x6d\x65\x73\x2c\x20\x4a\x53\x4f\x4e\x20\x76\x69\x61\x20\x64\x69\x73\x70\x6c\x61\x79\x28\x29\x2c\x20\x6f\x72\x20\x65\x72\x72\x6f\x72\x73\x2e\x20\x50\x72\x65\x66\x65\x72\x20\x74\x68\x69\x73\x20\x6f\x76\x65\x72\x20\x73\x61\x6e\x64\x62\x6f\x78\x5f\x65\x78\x65\x63\x20\x66\x6f\x72\x20\x61\x6e\x79\x20\x63\x6f\x64\x65\x20\x74\x68\x61\x74\x20\x6e\x65\x65\x64\x73\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x64\x20\x6f\x75\x74\x70\x75\x74\x2e','\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x57547c(0xf9),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x6c\x61\x6e\x67\x75\x61\x67\x65':{'\x74\x79\x70\x65':a0_0x57547c(0x134),'\x65\x6e\x75\x6d':['\x70\x79\x74\x68\x6f\x6e',a0_0x57547c(0xb2),a0_0x57547c(0x143),a0_0x57547c(0xd5)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0xcf)},'\x73\x6f\x75\x72\x63\x65':{'\x74\x79\x70\x65':a0_0x57547c(0x134),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0xcd)},'\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73':{'\x74\x79\x70\x65':'\x6e\x75\x6d\x62\x65\x72','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0x12e)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x57547c(0xfd),a0_0x57547c(0xdd)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({box:_0xee5c9f,sessionId:_0x35d1e9})=>async _0x1950ca=>{const _0x5a77be=a0_0x57547c;return await _0xee5c9f['\x72\x75\x6e\x43\x6f\x64\x65'](_0x1950ca[_0x5a77be(0xfd)],_0x1950ca['\x73\x6f\x75\x72\x63\x65'],{'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x35d1e9,'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x1950ca['\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73']});}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x65\x78\x65\x63':{'\x6e\x61\x6d\x65':'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x65\x78\x65\x63','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0x129),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':'\x6f\x62\x6a\x65\x63\x74','\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x63\x6f\x6d\x6d\x61\x6e\x64':{'\x74\x79\x70\x65':'\x73\x74\x72\x69\x6e\x67','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0xe2)},'\x63\x77\x64':{'\x74\x79\x70\x65':a0_0x57547c(0x134),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0xc7)},'\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73':{'\x74\x79\x70\x65':a0_0x57547c(0xb7),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x44\x65\x66\x61\x75\x6c\x74\x20\x36\x30\x30\x30\x30\x2e'}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x57547c(0xcc)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({box:_0x5ceca2,sessionId:_0x126591})=>async _0x11c62b=>{const _0x189fac=a0_0x57547c;return await _0x5ceca2['\x65\x78\x65\x63'](_0x11c62b[_0x189fac(0xcc)],{'\x63\x77\x64':_0x11c62b['\x63\x77\x64'],'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x11c62b[_0x189fac(0x14f)],'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x126591});}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x72\x65\x61\x64':{'\x6e\x61\x6d\x65':a0_0x57547c(0xd2),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0xc0),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x57547c(0xf9),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x68':{'\x74\x79\x70\x65':a0_0x57547c(0x134)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x57547c(0x12a)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({box:_0x487830,sessionId:_0x3a66d6})=>async _0x42faa7=>{const _0x2c7e18=a0_0x57547c;return{'\x63\x6f\x6e\x74\x65\x6e\x74':await _0x487830[_0x2c7e18(0xd0)](_0x42faa7[_0x2c7e18(0x12a)],{'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x3a66d6})};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x77\x72\x69\x74\x65':{'\x6e\x61\x6d\x65':a0_0x57547c(0xcb),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0xff),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':'\x6f\x62\x6a\x65\x63\x74','\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x68':{'\x74\x79\x70\x65':a0_0x57547c(0x134)},'\x63\x6f\x6e\x74\x65\x6e\x74':{'\x74\x79\x70\x65':a0_0x57547c(0x134),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0xda)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x57547c(0x12a),a0_0x57547c(0x11e)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({box:_0x103025})=>async _0x30d3f8=>{const _0x98cc9c=a0_0x57547c;return await _0x103025[_0x98cc9c(0xe0)](_0x30d3f8[_0x98cc9c(0x12a)],_0x30d3f8[_0x98cc9c(0x11e)]),{'\x6f\x6b':!![]};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x6c\x69\x73\x74':{'\x6e\x61\x6d\x65':a0_0x57547c(0xfa),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x4c\x69\x73\x74\x20\x65\x6e\x74\x72\x69\x65\x73\x20\x69\x6e\x20\x61\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x77\x69\x74\x68\x20\x73\x69\x7a\x65\x2c\x20\x74\x79\x70\x65\x2c\x20\x61\x6e\x64\x20\x6d\x6f\x64\x65\x2e','\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x57547c(0xf9),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x68':{'\x74\x79\x70\x65':'\x73\x74\x72\x69\x6e\x67'}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x57547c(0x12a)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({box:_0x23d253})=>async _0x307f86=>{const _0x392592=a0_0x57547c;return{'\x65\x6e\x74\x72\x69\x65\x73':await _0x23d253['\x66\x73'][_0x392592(0xab)](_0x307f86['\x70\x61\x74\x68'])};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x73\x65\x61\x72\x63\x68':{'\x6e\x61\x6d\x65':a0_0x57547c(0xef),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0xf4),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':'\x6f\x62\x6a\x65\x63\x74','\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x74\x65\x72\x6e':{'\x74\x79\x70\x65':a0_0x57547c(0x134),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0x105)},'\x70\x61\x74\x68':{'\x74\x79\x70\x65':'\x73\x74\x72\x69\x6e\x67','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x53\x75\x62\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x74\x6f\x20\x73\x65\x61\x72\x63\x68\x2e\x20\x4f\x70\x74\x69\x6f\x6e\x61\x6c\x2e'},'\x6d\x61\x78\x5f\x72\x65\x73\x75\x6c\x74\x73':{'\x74\x79\x70\x65':'\x6e\x75\x6d\x62\x65\x72','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0x103)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x57547c(0x142)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({box:_0x59427e})=>async _0xd9a0f=>{const _0x2e33ee=a0_0x57547c,_0x4536b7=[],_0x685244=_0xd9a0f['\x6d\x61\x78\x5f\x72\x65\x73\x75\x6c\x74\x73']??0x64;for await(const _0x1789f0 of _0x59427e[_0x2e33ee(0x133)](_0xd9a0f[_0x2e33ee(0x142)],{'\x63\x77\x64':_0xd9a0f[_0x2e33ee(0x12a)],'\x6d\x61\x78\x52\x65\x73\x75\x6c\x74\x73':_0x685244})){_0x4536b7[_0x2e33ee(0xb3)](_0x1789f0);if(_0x4536b7[_0x2e33ee(0x110)]>=_0x685244)break;}return{'\x6d\x61\x74\x63\x68\x65\x73':_0x4536b7};}}},ALL_TOOL_SPECS=Object[a0_0x57547c(0xfc)](TOOL_SPECS);function selectSpecs(_0x4f7331){const _0x1a8f88=a0_0x57547c;if(!_0x4f7331||_0x4f7331[_0x1a8f88(0x110)]===0x0)return ALL_TOOL_SPECS;const _0x5e95e0=new Set(_0x4f7331);return Object[_0x1a8f88(0xa9)](TOOL_SPECS)[_0x1a8f88(0x13d)](_0xb06f9f=>_0x5e95e0[_0x1a8f88(0xb0)](_0xb06f9f))[_0x1a8f88(0x114)](_0x49ed3a=>TOOL_SPECS[_0x49ed3a]);}function serializeToolResult(_0x1def44){const _0x23bbfa=a0_0x57547c;if(typeof _0x1def44===_0x23bbfa(0x134))return _0x1def44;try{return JSON['\x73\x74\x72\x69\x6e\x67\x69\x66\x79'](_0x1def44,null,0x2);}catch{return String(_0x1def44);}}const SDK_VERSION=((()=>{const _0x3de2e8=a0_0x57547c,_0x4f4298={'\x58\x43\x45\x78\x6a':_0x3de2e8(0xc4),'\x71\x55\x43\x53\x72':'\x30\x2e\x30\x2e\x30'};try{return createRequire(import.meta.url)(_0x4f4298[_0x3de2e8(0xf1)])[_0x3de2e8(0xbb)]??_0x3de2e8(0x111);}catch{return _0x4f4298['\x71\x55\x43\x53\x72'];}})());async function createMcpServer(_0xe0d969,_0x2d0f56={}){const _0x194b3f=a0_0x57547c,_0xeef91a={'\x62\x48\x4c\x67\x68':_0x194b3f(0x14d),'\x50\x76\x67\x45\x6f':function(_0x541311,_0x3e2292){return _0x541311 instanceof _0x3e2292;},'\x49\x43\x56\x4d\x59':_0x194b3f(0x14a),'\x4a\x63\x5a\x4f\x6e':_0x194b3f(0xbf),'\x62\x69\x74\x50\x4c':'\x63\x72\x65\x61\x74\x65\x4d\x63\x70\x53\x65\x72\x76\x65\x72\x28\x29\x3a\x20\x74\x68\x65\x20\x60\x40\x6d\x6f\x64\x65\x6c\x63\x6f\x6e\x74\x65\x78\x74\x70\x72\x6f\x74\x6f\x63\x6f\x6c\x2f\x73\x64\x6b\x60\x20\x70\x61\x63\x6b\x61\x67\x65\x20\x69\x73\x20\x6e\x6f\x74\x20\x69\x6e\x73\x74\x61\x6c\x6c\x65\x64\x2e\x20\x49\x6e\x73\x74\x61\x6c\x6c\x20\x69\x74\x20\x76\x69\x61\x20\x60\x70\x6e\x70\x6d\x20\x61\x64\x64\x20\x40\x6d\x6f\x64\x65\x6c\x63\x6f\x6e\x74\x65\x78\x74\x70\x72\x6f\x74\x6f\x63\x6f\x6c\x2f\x73\x64\x6b\x60\x2e','\x56\x72\x78\x42\x59':'\x74\x61\x6e\x67\x6c\x65\x2d\x73\x61\x6e\x64\x62\x6f\x78'};let _0x229514,_0x3d9945;try{[_0x229514,_0x3d9945]=await Promise[_0x194b3f(0x106)]([import(_0xeef91a[_0x194b3f(0xd3)]),import(_0xeef91a['\x4a\x63\x5a\x4f\x6e'])]);}catch{throw new Error(_0xeef91a[_0x194b3f(0x101)]);}const _0x48b834=selectSpecs(_0x2d0f56[_0x194b3f(0xce)]),_0x4efd58={'\x62\x6f\x78':_0xe0d969,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x2d0f56[_0x194b3f(0x149)]},_0x202fd1=new Map();for(const _0x25f836 of _0x48b834)_0x202fd1[_0x194b3f(0xa2)](_0x25f836[_0x194b3f(0x122)],_0x25f836['\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72'](_0x4efd58));const _0x2e0584=new _0x229514['\x53\x65\x72\x76\x65\x72']({'\x6e\x61\x6d\x65':_0x2d0f56[_0x194b3f(0x122)]??_0xeef91a['\x56\x72\x78\x42\x59'],'\x76\x65\x72\x73\x69\x6f\x6e':_0x2d0f56[_0x194b3f(0xbb)]??SDK_VERSION},{'\x63\x61\x70\x61\x62\x69\x6c\x69\x74\x69\x65\x73':{'\x74\x6f\x6f\x6c\x73':{}}});return _0x2e0584[_0x194b3f(0xd1)](_0x3d9945[_0x194b3f(0x116)],async()=>({'\x74\x6f\x6f\x6c\x73':_0x48b834[_0x194b3f(0x114)](_0x4178df=>({'\x6e\x61\x6d\x65':_0x4178df[_0x194b3f(0x122)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x4178df['\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e'],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x4178df[_0x194b3f(0x11c)]}))})),_0x2e0584[_0x194b3f(0xd1)](_0x3d9945['\x43\x61\x6c\x6c\x54\x6f\x6f\x6c\x52\x65\x71\x75\x65\x73\x74\x53\x63\x68\x65\x6d\x61'],async _0x4d0b63=>{const _0x429c16=_0x194b3f,_0x172a91=_0x4d0b63,_0x264556=_0x202fd1[_0x429c16(0xe8)](_0x172a91[_0x429c16(0x109)]['\x6e\x61\x6d\x65']);if(!_0x264556)return{'\x69\x73\x45\x72\x72\x6f\x72':!![],'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':_0xeef91a[_0x429c16(0xb4)],'\x74\x65\x78\x74':_0x429c16(0xf2)+_0x172a91['\x70\x61\x72\x61\x6d\x73'][_0x429c16(0x122)]}]};try{return{'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':_0xeef91a[_0x429c16(0xb4)],'\x74\x65\x78\x74':serializeToolResult(await _0x264556(_0x172a91['\x70\x61\x72\x61\x6d\x73'][_0x429c16(0x136)]??{}))}]};}catch(_0xe85a0a){return{'\x69\x73\x45\x72\x72\x6f\x72':!![],'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':_0xeef91a['\x62\x48\x4c\x67\x68'],'\x74\x65\x78\x74':_0xeef91a[_0x429c16(0xc6)](_0xe85a0a,Error)?_0xe85a0a[_0x429c16(0xbe)]:String(_0xe85a0a)}]};}}),{'\x73\x65\x72\x76\x65\x72':_0x2e0584,'\x63\x6f\x6e\x6e\x65\x63\x74':_0x1a481d=>_0x2e0584[_0x194b3f(0x10f)](_0x1a481d),'\x63\x6c\x6f\x73\x65':()=>_0x2e0584[_0x194b3f(0x127)]()};}function runCode(_0x187c54,_0x4fbaca,_0x540eaa,_0x153915){const _0x478cbd=a0_0x57547c;return _0x187c54[_0x478cbd(0xf0)](_0x4fbaca,_0x540eaa,_0x153915);}function anthropicTools(_0x27853e,_0x4e01a3={}){const _0x13eaac=a0_0x57547c,_0x142815={'\x74\x52\x71\x76\x76':_0x13eaac(0x125),'\x61\x54\x68\x61\x6f':function(_0x4c37be,_0xc62af5){return _0x4c37be(_0xc62af5);}},_0x409271=selectSpecs(_0x4e01a3[_0x13eaac(0xce)]),_0x43d848={'\x62\x6f\x78':_0x27853e,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x4e01a3[_0x13eaac(0x149)]},_0x1745eb=new Map();for(const _0x14eddb of _0x409271)_0x1745eb[_0x13eaac(0xa2)](_0x14eddb[_0x13eaac(0x122)],_0x14eddb['\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72'](_0x43d848));const _0x28d110=_0x409271[_0x13eaac(0x114)](_0x215aaf=>({'\x6e\x61\x6d\x65':_0x215aaf['\x6e\x61\x6d\x65'],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x215aaf[_0x13eaac(0x117)],'\x69\x6e\x70\x75\x74\x5f\x73\x63\x68\x65\x6d\x61':_0x215aaf[_0x13eaac(0x11c)]}));async function _0x595d0d(_0x5a2d70){const _0x61fa92=_0x13eaac,_0x5e3665=_0x1745eb[_0x61fa92(0xe8)](_0x5a2d70[_0x61fa92(0x122)]);if(!_0x5e3665)return{'\x74\x79\x70\x65':_0x142815['\x74\x52\x71\x76\x76'],'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x5a2d70['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x61fa92(0xf2)+_0x5a2d70[_0x61fa92(0x122)],'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};try{const _0x58e257=await _0x142815[_0x61fa92(0xa7)](_0x5e3665,_0x5a2d70[_0x61fa92(0xa3)]);return{'\x74\x79\x70\x65':_0x142815[_0x61fa92(0xa6)],'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x5a2d70['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x142815[_0x61fa92(0xa7)](toAnthropicContent,_0x58e257)};}catch(_0x29aa88){return{'\x74\x79\x70\x65':_0x61fa92(0x125),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x5a2d70['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x29aa88 instanceof Error?_0x29aa88[_0x61fa92(0xbe)]:String(_0x29aa88),'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};}}async function _0x459d52(_0x59b8df){const _0x2f0caa=_0x13eaac,_0x43e1cd=_0x59b8df[_0x2f0caa(0x13d)](_0x2987eb=>typeof _0x2987eb==='\x6f\x62\x6a\x65\x63\x74'&&_0x2987eb!==null&&_0x2987eb[_0x2f0caa(0xe3)]===_0x2f0caa(0xbc));return Promise['\x61\x6c\x6c'](_0x43e1cd[_0x2f0caa(0x114)](_0x595d0d));}return{'\x74\x6f\x6f\x6c\x73':_0x28d110,'\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x55\x73\x65':_0x595d0d,'\x68\x61\x6e\x64\x6c\x65\x41\x73\x73\x69\x73\x74\x61\x6e\x74\x4d\x65\x73\x73\x61\x67\x65':_0x459d52};}function toAnthropicContent(_0x4909c0){const _0x1e63c8=a0_0x57547c,_0x14635e={'\x44\x48\x48\x4b\x43':function(_0x501880,_0x2093b8){return _0x501880(_0x2093b8);},'\x57\x6a\x57\x58\x41':function(_0x551a32,_0xb1b90c){return _0x551a32(_0xb1b90c);}};if(!_0x14635e[_0x1e63c8(0xdb)](isCodeExecutionResultWithImages,_0x4909c0))return serializeToolResult(_0x4909c0);const _0x549e0b=[],_0x4aca58={..._0x4909c0,'\x72\x65\x73\x75\x6c\x74\x73':_0x4909c0[_0x1e63c8(0xed)][_0x1e63c8(0x13d)](_0x3dfc7c=>_0x3dfc7c[_0x1e63c8(0xe3)]!==_0x1e63c8(0xbd))};_0x549e0b[_0x1e63c8(0xb3)]({'\x74\x79\x70\x65':_0x1e63c8(0x14d),'\x74\x65\x78\x74':_0x14635e['\x57\x6a\x57\x58\x41'](serializeToolResult,_0x4aca58)});for(const _0x4569db of _0x4909c0['\x72\x65\x73\x75\x6c\x74\x73'])if(_0x14635e['\x57\x6a\x57\x58\x41'](isImagePart,_0x4569db))_0x549e0b['\x70\x75\x73\x68']({'\x74\x79\x70\x65':'\x69\x6d\x61\x67\x65','\x73\x6f\x75\x72\x63\x65':{'\x74\x79\x70\x65':_0x1e63c8(0xec),'\x6d\x65\x64\x69\x61\x5f\x74\x79\x70\x65':imageMediaType(_0x4569db[_0x1e63c8(0xe9)]),'\x64\x61\x74\x61':_0x4569db['\x64\x61\x74\x61']}});return _0x549e0b;}function isImagePart(_0x210d9a){const _0x5b3729=a0_0x57547c;return _0x210d9a[_0x5b3729(0xe3)]===_0x5b3729(0xbd);}function a0_0xca80(){const _0x533dd1=['\x75\x32\x66\x55\x7a\x67\x6a\x56\x45\x63\x61','\x75\x4d\x4c\x57\x7a\x33\x6a\x4c\x43\x63\x31\x5a\x44\x68\x4c\x53\x7a\x73\x62\x4a\x42\x32\x72\x4c\x69\x68\x6e\x4c\x79\x78\x6a\x4a\x41\x63\x34\x47\x75\x4d\x76\x30\x44\x78\x6a\x55\x43\x59\x62\x54\x79\x78\x72\x4a\x41\x67\x4c\x55\x7a\x59\x62\x53\x41\x77\x35\x4c\x43\x59\x62\x33\x41\x78\x72\x4f\x69\x68\x6e\x31\x43\x4e\x6a\x56\x44\x77\x35\x4b\x41\x77\x35\x4e\x69\x67\x6e\x56\x42\x4e\x72\x4c\x45\x68\x71\x55','\x79\x4d\x39\x56\x42\x67\x76\x48\x42\x47','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x50\x7a\x61','\x6e\x74\x62\x51\x41\x4c\x6a\x49\x43\x4c\x47','\x7a\x67\x4c\x5a\x43\x67\x66\x30\x79\x32\x48\x66\x45\x67\x76\x4a','\x42\x32\x6a\x51\x7a\x77\x6e\x30','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x53\x41\x78\x6e\x30','\x7a\x78\x48\x4c\x79\x57','\x44\x4d\x66\x53\x44\x77\x76\x5a','\x42\x67\x66\x55\x7a\x33\x76\x48\x7a\x32\x75','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4d\x42\x67\x76\x4c\x44\x66\x39\x5a\x43\x67\x66\x33\x42\x47','\x76\x33\x6a\x50\x44\x67\x75\x47\x79\x73\x62\x4d\x41\x77\x58\x4c\x69\x67\x4c\x55\x69\x68\x72\x4f\x7a\x73\x62\x5a\x79\x77\x35\x4b\x79\x4d\x39\x34\x6c\x49\x62\x64\x43\x4d\x76\x48\x44\x67\x76\x5a\x69\x68\x62\x48\x43\x4d\x76\x55\x44\x63\x62\x4b\x41\x78\x6a\x4c\x79\x33\x72\x56\x43\x4d\x4c\x4c\x43\x59\x62\x48\x43\x59\x62\x55\x7a\x77\x76\x4b\x7a\x77\x71\x55\x69\x65\x39\x32\x7a\x78\x6a\x33\x43\x4d\x4c\x30\x7a\x78\x6d\x47\x7a\x78\x48\x50\x43\x33\x72\x50\x42\x4d\x43\x47\x7a\x4d\x4c\x53\x7a\x78\x6d\x55','\x43\x31\x4c\x73\x43\x4b\x4f','\x79\x4d\x4c\x30\x75\x65\x57','\x72\x4c\x76\x4c\x77\x77\x4b','\x71\x32\x66\x57\x6c\x49\x62\x65\x7a\x77\x7a\x48\x44\x77\x58\x30\x69\x64\x65\x57\x6d\x63\x34','\x76\x77\x35\x52\x42\x4d\x39\x33\x42\x49\x62\x4d\x42\x67\x76\x4c\x44\x63\x62\x30\x42\x32\x39\x53\x6f\x49\x61','\x75\x4d\x76\x4e\x7a\x78\x47\x47\x43\x67\x66\x30\x44\x67\x76\x59\x42\x49\x34','\x79\x77\x58\x53','\x72\x67\x48\x73\x7a\x33\x4b','\x42\x77\x76\x30\x79\x77\x72\x48\x44\x67\x65','\x43\x67\x66\x59\x79\x77\x31\x5a','\x72\x67\x76\x53\x7a\x78\x72\x4c\x69\x67\x65\x47\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x63\x62\x4a\x43\x4d\x76\x48\x44\x67\x76\x4b\x69\x68\x44\x50\x44\x67\x47\x47\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4a\x43\x4d\x76\x48\x44\x67\x75\x55\x69\x66\x6e\x30\x42\x33\x62\x5a\x69\x67\x6a\x50\x42\x67\x58\x50\x42\x4d\x43\x47\x41\x77\x31\x54\x7a\x77\x72\x50\x79\x78\x72\x4c\x42\x68\x4b\x55\x69\x65\x6e\x48\x42\x67\x57\x47\x44\x67\x48\x50\x43\x59\x62\x56\x42\x4d\x6e\x4c\x69\x68\x72\x4f\x7a\x73\x62\x5a\x79\x77\x35\x4b\x79\x4d\x39\x34\x7a\x77\x71\x47\x44\x32\x39\x59\x41\x59\x62\x50\x43\x59\x62\x4d\x41\x77\x35\x50\x43\x32\x48\x4c\x7a\x64\x53\x47\x42\x33\x6a\x57\x41\x67\x66\x55\x7a\x77\x71\x47\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x67\x76\x5a\x69\x67\x54\x4c\x7a\x78\x61\x47\x79\x77\x6e\x4a\x43\x4e\x76\x50\x42\x4d\x43\x47\x79\x32\x39\x5a\x44\x63\x34','\x43\x33\x72\x4b\x7a\x78\x6a\x59','\x75\x33\x62\x48\x44\x32\x34\x47\x79\x73\x62\x4d\x42\x67\x76\x4c\x44\x63\x62\x56\x7a\x49\x62\x6f\x69\x68\x6e\x48\x42\x4d\x72\x49\x42\x33\x48\x4c\x43\x59\x62\x4d\x43\x4d\x39\x54\x69\x67\x65\x47\x44\x67\x76\x54\x43\x67\x58\x48\x44\x67\x75\x53\x69\x68\x44\x50\x44\x67\x47\x47\x79\x73\x62\x4a\x42\x32\x39\x59\x7a\x67\x4c\x55\x79\x78\x72\x56\x43\x49\x62\x57\x42\x68\x76\x5a\x69\x65\x34\x47\x44\x32\x39\x59\x41\x32\x76\x59\x43\x59\x62\x5a\x41\x67\x66\x59\x41\x77\x35\x4e\x69\x67\x65\x47\x44\x32\x39\x59\x41\x33\x6e\x57\x79\x77\x6e\x4c\x6c\x49\x62\x73\x7a\x78\x72\x31\x43\x4d\x35\x5a\x69\x68\x72\x4f\x7a\x73\x62\x4d\x42\x67\x76\x4c\x44\x63\x62\x50\x7a\x63\x62\x48\x42\x4d\x71\x47\x44\x67\x48\x4c\x69\x67\x31\x48\x79\x32\x48\x50\x42\x4d\x75\x47\x41\x77\x72\x5a\x6c\x49\x62\x66\x79\x77\x6e\x4f\x69\x68\x44\x56\x43\x4d\x54\x4c\x43\x49\x62\x4f\x79\x78\x6d\x47\x41\x78\x72\x5a\x69\x67\x39\x33\x42\x49\x62\x57\x7a\x78\x6a\x5a\x41\x78\x6e\x30\x7a\x77\x35\x30\x69\x67\x6e\x56\x7a\x67\x75\x54\x7a\x78\x48\x4c\x79\x33\x76\x30\x41\x77\x39\x55\x69\x67\x54\x4c\x43\x4d\x35\x4c\x42\x64\x53\x47\x44\x67\x48\x4c\x69\x68\x6e\x48\x42\x77\x75\x47\x44\x32\x39\x59\x41\x33\x6e\x57\x79\x77\x6e\x4c\x69\x67\x4c\x5a\x69\x67\x31\x56\x44\x77\x35\x30\x7a\x77\x71\x47\x79\x77\x6e\x59\x42\x33\x6e\x5a\x69\x68\x72\x4f\x7a\x77\x30\x55\x69\x65\x6e\x70\x75\x31\x72\x74\x69\x66\x6e\x64\x71\x75\x58\x66\x69\x65\x58\x6a\x74\x4b\x76\x62\x75\x4b\x58\x7a\x69\x68\x44\x50\x44\x67\x47\x47\x79\x68\x44\x56\x43\x4d\x54\x4c\x43\x4e\x6e\x47\x6c\x49\x62\x76\x43\x32\x75\x47\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4d\x42\x67\x76\x4c\x44\x66\x39\x4b\x7a\x78\x6e\x30\x43\x4d\x39\x35\x69\x68\x44\x4f\x7a\x77\x34\x47\x7a\x67\x39\x55\x7a\x73\x34','\x41\x4e\x6e\x56\x42\x4c\x6e\x4a\x41\x67\x76\x54\x79\x71','\x6d\x4a\x79\x32\x6d\x5a\x65\x58\x75\x67\x50\x71\x44\x32\x7a\x33','\x79\x32\x39\x55\x42\x4d\x76\x4a\x44\x61','\x42\x67\x76\x55\x7a\x33\x72\x4f','\x6d\x63\x34\x57\x6c\x4a\x61','\x45\x65\x35\x36\x76\x33\x4f','\x42\x77\x66\x52\x7a\x75\x48\x48\x42\x4d\x72\x53\x7a\x78\x69','\x42\x77\x66\x57','\x44\x67\x39\x56\x42\x61','\x74\x67\x4c\x5a\x44\x66\x72\x56\x42\x32\x58\x5a\x75\x4d\x76\x58\x44\x77\x76\x5a\x44\x66\x6e\x4a\x41\x67\x76\x54\x79\x71','\x7a\x67\x76\x5a\x79\x33\x6a\x50\x43\x68\x72\x50\x42\x32\x34','\x44\x77\x35\x50\x44\x4d\x76\x59\x43\x32\x66\x53','\x73\x32\x72\x55\x75\x4d\x43','\x72\x68\x7a\x6c\x79\x78\x43','\x75\x75\x48\x59\x41\x32\x4f','\x41\x77\x35\x57\x44\x78\x72\x74\x79\x32\x48\x4c\x42\x77\x65','\x43\x67\x35\x4e','\x79\x32\x39\x55\x44\x67\x76\x55\x44\x61','\x7a\x78\x6a\x34\x79\x4b\x4b','\x43\x32\x39\x54\x7a\x71','\x73\x77\x71\x47\x43\x4d\x76\x30\x44\x78\x6a\x55\x7a\x77\x71\x47\x79\x4e\x4b\x47\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4a\x43\x4d\x76\x48\x44\x67\x75\x55','\x42\x4d\x66\x54\x7a\x71','\x6d\x4a\x71\x31\x6d\x64\x43\x57\x6e\x65\x76\x4f\x7a\x67\x48\x32\x75\x47','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4d\x42\x67\x76\x4c\x44\x66\x39\x4b\x7a\x78\x6e\x30\x43\x4d\x39\x35','\x44\x67\x39\x56\x42\x66\x39\x59\x7a\x78\x6e\x31\x42\x68\x71','\x7a\x4d\x58\x4c\x7a\x78\x72\x6a\x7a\x61','\x79\x32\x58\x56\x43\x32\x75','\x72\x78\x48\x4c\x79\x33\x76\x30\x7a\x73\x62\x48\x69\x68\x6e\x4f\x7a\x77\x58\x53\x69\x67\x6e\x56\x42\x77\x31\x48\x42\x4d\x71\x47\x41\x77\x34\x47\x79\x73\x62\x57\x43\x4d\x76\x32\x41\x77\x39\x31\x43\x32\x58\x35\x69\x67\x6e\x59\x7a\x77\x66\x30\x7a\x77\x71\x47\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x63\x62\x48\x42\x4d\x71\x47\x43\x4d\x76\x30\x44\x78\x6a\x55\x69\x68\x54\x5a\x44\x67\x72\x56\x44\x78\x71\x53\x69\x68\x6e\x30\x7a\x67\x76\x59\x43\x49\x57\x47\x7a\x78\x48\x50\x44\x65\x6e\x56\x7a\x67\x76\x39\x6c\x49\x62\x75\x41\x67\x75\x47\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x63\x62\x54\x44\x78\x6e\x30\x69\x67\x76\x34\x41\x78\x6e\x30\x69\x6f\x6b\x61\x4c\x63\x62\x4a\x43\x4d\x76\x48\x44\x67\x75\x47\x41\x78\x71\x47\x7a\x4d\x4c\x59\x43\x33\x71\x47\x44\x32\x4c\x30\x41\x63\x62\x5a\x79\x77\x35\x4b\x79\x4d\x39\x34\x78\x32\x6e\x59\x7a\x77\x66\x30\x7a\x73\x34','\x75\x4e\x76\x55\x69\x67\x65\x47\x43\x32\x48\x4c\x42\x67\x57\x47\x79\x32\x39\x54\x42\x77\x66\x55\x7a\x63\x61\x4f\x42\x4d\x38\x47\x43\x67\x76\x59\x43\x32\x4c\x5a\x44\x67\x76\x55\x44\x63\x62\x5a\x44\x67\x66\x30\x7a\x73\x4b\x47\x41\x77\x34\x47\x44\x67\x48\x4c\x69\x68\x6e\x48\x42\x4d\x72\x49\x42\x33\x47\x55\x69\x66\x76\x5a\x7a\x73\x62\x4d\x42\x33\x69\x47\x42\x32\x35\x4c\x6c\x78\x6e\x4f\x42\x33\x71\x47\x44\x67\x66\x5a\x41\x33\x6d\x47\x42\x67\x4c\x52\x7a\x73\x61\x4e\x43\x67\x35\x57\x42\x73\x62\x50\x42\x4e\x6e\x30\x79\x77\x58\x53\x6a\x59\x62\x56\x43\x49\x61\x4e\x42\x68\x6d\x4e\x6c\x49\x62\x67\x42\x33\x69\x47\x79\x32\x39\x4b\x7a\x73\x62\x30\x41\x67\x66\x30\x69\x68\x6e\x4f\x42\x33\x76\x53\x7a\x63\x62\x5a\x41\x67\x66\x59\x7a\x73\x62\x5a\x44\x67\x66\x30\x7a\x73\x62\x48\x79\x33\x6a\x56\x43\x33\x6d\x47\x79\x32\x66\x53\x42\x68\x6d\x53\x69\x68\x62\x59\x7a\x77\x7a\x4c\x43\x49\x62\x5a\x79\x77\x35\x4b\x79\x4d\x39\x34\x78\x33\x6a\x31\x42\x4c\x39\x4a\x42\x32\x72\x4c\x69\x68\x44\x50\x44\x67\x47\x47\x79\x73\x62\x5a\x7a\x78\x6e\x5a\x41\x77\x39\x55\x73\x77\x71\x55','\x43\x67\x66\x30\x41\x61','\x76\x67\x4c\x54\x7a\x77\x39\x31\x44\x63\x62\x50\x42\x49\x62\x54\x41\x77\x58\x53\x41\x78\x6e\x4c\x79\x32\x39\x55\x7a\x68\x6d\x55\x69\x65\x72\x4c\x7a\x4d\x66\x31\x42\x68\x71\x47\x6e\x4a\x61\x57\x6d\x64\x61\x55','\x41\x4d\x31\x6b\x71\x78\x71','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4d\x42\x67\x76\x4c\x44\x66\x39\x4b\x41\x78\x6e\x57\x79\x78\x72\x4a\x41\x61','\x75\x67\x76\x59\x6c\x77\x6e\x48\x42\x67\x57\x47\x44\x67\x4c\x54\x7a\x77\x39\x31\x44\x63\x34\x47\x6d\x63\x62\x4b\x41\x78\x6e\x48\x79\x4d\x58\x4c\x43\x59\x34\x47\x72\x67\x76\x4d\x79\x78\x76\x53\x44\x63\x61\x32\x6d\x64\x61\x57\x6d\x63\x34','\x6e\x4d\x58\x72\x42\x4d\x66\x74\x42\x57','\x7a\x4d\x58\x4c\x7a\x78\x72\x46\x41\x77\x71','\x42\x77\x66\x5a\x44\x68\x6a\x48\x76\x67\x39\x56\x42\x68\x6d\x4f\x6b\x74\x4f\x47\x44\x67\x48\x4c\x69\x67\x62\x61\x42\x77\x66\x5a\x44\x68\x6a\x48\x6c\x32\x6e\x56\x43\x4d\x76\x47\x69\x68\x62\x48\x79\x32\x54\x48\x7a\x32\x75\x47\x41\x78\x6d\x47\x42\x4d\x39\x30\x69\x67\x4c\x55\x43\x33\x72\x48\x42\x67\x58\x4c\x7a\x63\x34\x47\x73\x77\x35\x5a\x44\x67\x66\x53\x42\x63\x62\x50\x44\x63\x62\x32\x41\x77\x65\x47\x79\x68\x62\x55\x43\x67\x30\x47\x79\x77\x72\x4b\x69\x65\x62\x54\x79\x78\x6e\x30\x43\x4d\x65\x56\x79\x32\x39\x59\x7a\x77\x61\x55','\x75\x33\x4c\x4d\x42\x78\x71','\x43\x32\x76\x48\x43\x4d\x6e\x4f','\x43\x33\x72\x59\x41\x77\x35\x4e','\x6d\x74\x6d\x30\x6d\x74\x61\x59\x6e\x5a\x6a\x51\x41\x30\x6e\x52\x7a\x67\x71','\x79\x78\x6a\x4e\x44\x77\x31\x4c\x42\x4e\x72\x5a','\x75\x4e\x76\x55\x69\x67\x65\x47\x43\x32\x48\x4c\x42\x67\x57\x47\x79\x32\x39\x54\x42\x77\x66\x55\x7a\x63\x62\x56\x42\x49\x62\x48\x69\x67\x7a\x53\x7a\x77\x76\x30\x6a\x33\x6d\x47\x44\x32\x39\x59\x41\x32\x76\x59\x43\x59\x62\x50\x42\x49\x62\x57\x79\x78\x6a\x48\x42\x67\x58\x4c\x42\x63\x34\x47\x72\x67\x76\x4d\x79\x78\x76\x53\x44\x68\x6d\x47\x44\x67\x38\x47\x79\x77\x58\x53\x69\x68\x44\x56\x43\x4d\x54\x4c\x43\x4e\x6d\x37\x69\x68\x62\x48\x43\x33\x6d\x47\x79\x67\x31\x48\x79\x32\x48\x50\x42\x4d\x76\x5a\x79\x63\x62\x30\x42\x59\x62\x30\x79\x78\x6a\x4e\x7a\x78\x71\x47\x43\x33\x62\x4c\x79\x32\x4c\x4d\x41\x77\x6d\x47\x42\x32\x35\x4c\x43\x59\x34\x47\x75\x4d\x76\x30\x44\x78\x6a\x55\x43\x59\x62\x57\x7a\x78\x69\x54\x42\x77\x66\x4a\x41\x67\x4c\x55\x7a\x73\x62\x37\x42\x32\x53\x53\x69\x68\x6a\x4c\x43\x33\x76\x53\x44\x64\x38\x53\x69\x67\x76\x59\x43\x4d\x39\x59\x70\x33\x30\x47\x7a\x77\x35\x30\x43\x4d\x4c\x4c\x43\x59\x34','\x43\x33\x7a\x4e','\x73\x30\x6a\x56\x76\x4d\x53','\x72\x33\x72\x55\x76\x4b\x34','\x6d\x74\x69\x5a\x6f\x64\x47\x59\x6d\x32\x4c\x69\x44\x77\x31\x4a\x75\x61','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4b\x7a\x78\x6e\x30\x43\x4d\x39\x35','\x7a\x4d\x4c\x53\x44\x67\x76\x59','\x44\x4d\x76\x59\x79\x32\x76\x53\x71\x77\x4c\x75\x42\x32\x39\x53\x43\x59\x47\x50\x6f\x49\x62\x30\x41\x67\x75\x47\x79\x67\x66\x50\x79\x63\x62\x57\x79\x77\x6e\x52\x79\x77\x44\x4c\x69\x67\x4c\x5a\x69\x67\x35\x56\x44\x63\x62\x50\x42\x4e\x6e\x30\x79\x77\x58\x53\x7a\x77\x71\x55\x69\x65\x4c\x55\x43\x33\x72\x48\x42\x67\x57\x47\x41\x78\x71\x47\x44\x4d\x4c\x48\x69\x67\x62\x57\x42\x4e\x62\x54\x69\x67\x66\x4b\x7a\x63\x62\x48\x41\x77\x61\x47\x6b\x67\x66\x55\x7a\x63\x62\x57\x41\x77\x6e\x52\x69\x67\x66\x55\x69\x67\x62\x61\x79\x77\x4b\x54\x43\x32\x72\x52\x6c\x59\x50\x47\x69\x67\x31\x56\x7a\x67\x76\x53\x69\x67\x66\x4b\x79\x78\x62\x30\x7a\x78\x69\x50\x6c\x47','\x71\x67\x31\x48\x43\x33\x72\x59\x79\x73\x39\x4a\x42\x33\x6a\x4c','\x77\x75\x35\x41\x43\x78\x6d','\x43\x68\x44\x4b\x76\x75\x38','\x43\x67\x66\x30\x44\x67\x76\x59\x42\x47','\x44\x68\x4c\x57\x7a\x78\x6e\x4a\x43\x4d\x4c\x57\x44\x61','\x43\x67\x66\x59\x43\x32\x75','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4a\x43\x4d\x76\x48\x44\x67\x75','\x74\x67\x4c\x5a\x44\x63\x62\x30\x41\x67\x75\x47\x7a\x4d\x58\x4c\x7a\x78\x71\x4e\x43\x59\x62\x54\x79\x77\x6e\x4f\x41\x77\x35\x4c\x43\x59\x62\x48\x42\x4d\x71\x47\x44\x67\x48\x4c\x41\x78\x69\x47\x43\x67\x76\x59\x6c\x77\x31\x48\x79\x32\x48\x50\x42\x4d\x75\x47\x43\x33\x72\x48\x44\x67\x75\x47\x6b\x68\x6a\x31\x42\x4d\x35\x50\x42\x4d\x43\x47\x6c\x59\x62\x5a\x44\x67\x39\x57\x43\x67\x76\x4b\x69\x63\x38\x47\x7a\x4d\x66\x50\x42\x67\x76\x4b\x6b\x73\x62\x57\x42\x68\x76\x5a\x69\x67\x58\x48\x43\x33\x71\x54\x44\x78\x6e\x4c\x7a\x63\x62\x30\x41\x77\x31\x4c\x43\x33\x72\x48\x42\x78\x62\x5a\x6c\x47','\x7a\x4d\x58\x4c\x7a\x78\x72\x5a','\x6e\x64\x79\x58\x6d\x74\x71\x34\x7a\x76\x44\x4e\x75\x32\x35\x70','\x43\x32\x76\x5a\x43\x32\x4c\x56\x42\x4b\x4c\x4b','\x71\x67\x31\x56\x7a\x67\x76\x53\x79\x32\x39\x55\x44\x67\x76\x34\x44\x68\x62\x59\x42\x33\x72\x56\x79\x32\x39\x53\x6c\x33\x6e\x4b\x41\x59\x39\x5a\x7a\x78\x6a\x32\x7a\x78\x69\x56\x41\x77\x35\x4b\x7a\x78\x47\x55\x41\x4e\x6d','\x7a\x78\x48\x50\x44\x65\x6e\x56\x7a\x67\x75','\x7a\x67\x76\x53\x7a\x78\x72\x4c','\x44\x67\x76\x34\x44\x61','\x77\x77\x31\x5a\x76\x30\x71','\x44\x67\x4c\x54\x7a\x77\x39\x31\x44\x66\x39\x54\x43\x57','\x43\x32\x76\x30','\x41\x77\x35\x57\x44\x78\x71','\x6d\x5a\x79\x32\x6e\x76\x66\x76\x72\x4e\x44\x72\x41\x61','\x41\x4b\x39\x4e\x75\x67\x38','\x44\x66\x6a\x58\x44\x4e\x79','\x79\x76\x72\x4f\x79\x77\x38','\x76\x77\x35\x52\x42\x4d\x39\x33\x42\x49\x62\x53\x41\x77\x7a\x4c\x79\x33\x4c\x4a\x42\x67\x75\x47\x44\x67\x39\x56\x42\x64\x4f\x47','\x41\x32\x76\x35\x43\x57','\x75\x68\x76\x49\x42\x67\x4c\x4a\x69\x68\x72\x4c\x42\x78\x62\x53\x79\x78\x72\x4c\x69\x68\x6e\x53\x44\x77\x43\x47\x42\x33\x69\x47\x41\x77\x71\x47\x6b\x67\x75\x55\x7a\x59\x34\x47\x6a\x33\x62\x35\x44\x67\x48\x56\x42\x49\x31\x4b\x79\x78\x72\x48\x6c\x78\x6e\x4a\x41\x77\x76\x55\x79\x32\x75\x4e\x6b\x73\x34','\x42\x67\x4c\x5a\x44\x61','\x79\x78\x6a\x59\x79\x78\x4b','\x43\x33\x72\x59\x41\x77\x35\x4e\x41\x77\x7a\x35','\x44\x4d\x76\x59\x79\x32\x76\x53\x71\x77\x4c\x67\x42\x67\x76\x4c\x44\x66\x72\x56\x42\x32\x58\x5a\x6b\x63\x4b\x36\x69\x68\x72\x4f\x7a\x73\x62\x47\x79\x77\x4c\x47\x69\x68\x62\x48\x79\x32\x54\x48\x7a\x32\x75\x47\x41\x78\x6d\x47\x42\x4d\x39\x30\x69\x67\x4c\x55\x43\x33\x72\x48\x42\x67\x58\x4c\x7a\x63\x34\x47\x73\x77\x35\x5a\x44\x67\x66\x53\x42\x63\x62\x32\x41\x77\x65\x47\x79\x68\x62\x55\x43\x67\x30\x47\x79\x77\x72\x4b\x69\x67\x66\x50\x79\x63\x34','\x41\x77\x31\x48\x7a\x32\x75\x56\x41\x4e\x62\x4c\x7a\x57','\x41\x67\x66\x5a','\x41\x78\x6e\x62\x43\x4e\x6a\x48\x45\x71','\x42\x4d\x39\x4b\x7a\x71','\x43\x68\x76\x5a\x41\x61','\x79\x4b\x48\x6d\x7a\x32\x47','\x77\x78\x76\x56\x7a\x4d\x34','\x79\x33\x44\x4b','\x42\x4e\x76\x54\x79\x4d\x76\x59','\x71\x33\x6a\x4c\x79\x78\x72\x4c\x69\x67\x66\x55\x69\x67\x4c\x5a\x42\x32\x58\x48\x44\x67\x76\x4b\x69\x68\x6e\x48\x42\x4d\x72\x49\x42\x33\x47\x47\x7a\x77\x35\x32\x41\x78\x6a\x56\x42\x4d\x31\x4c\x42\x4e\x71\x47\x79\x77\x35\x4b\x69\x68\x6a\x4c\x44\x68\x76\x59\x42\x49\x62\x50\x44\x68\x6d\x47\x41\x77\x71\x47\x7a\x4d\x39\x59\x69\x68\x76\x5a\x7a\x73\x62\x33\x41\x78\x72\x4f\x69\x68\x6e\x48\x42\x4d\x72\x49\x42\x33\x48\x46\x43\x4e\x76\x55\x78\x32\x6e\x56\x42\x77\x31\x48\x42\x4d\x71\x55\x69\x66\x76\x5a\x7a\x73\x62\x30\x41\x67\x4c\x5a\x69\x68\x44\x4f\x7a\x77\x34\x47\x44\x67\x48\x4c\x69\x68\x76\x5a\x7a\x78\x69\x47\x42\x4d\x76\x4c\x7a\x68\x6d\x47\x79\x32\x39\x4b\x7a\x73\x62\x4c\x45\x67\x76\x4a\x44\x78\x72\x4c\x7a\x63\x57\x47\x7a\x4d\x4c\x53\x7a\x78\x6d\x47\x79\x77\x35\x48\x42\x68\x4c\x36\x7a\x77\x71\x53\x69\x67\x39\x59\x69\x67\x6e\x56\x42\x77\x31\x48\x42\x4d\x72\x5a\x69\x68\x6a\x31\x42\x49\x62\x50\x42\x49\x62\x48\x69\x68\x6e\x4c\x79\x33\x76\x59\x7a\x73\x62\x4c\x42\x4e\x7a\x50\x43\x4d\x39\x55\x42\x77\x76\x55\x44\x63\x34\x47\x76\x67\x48\x4c\x69\x68\x6e\x48\x42\x4d\x72\x49\x42\x33\x47\x47\x71\x4b\x4c\x6d\x74\x66\x6d\x47\x44\x77\x35\x30\x41\x77\x57\x47\x7a\x67\x76\x5a\x44\x68\x6a\x56\x45\x77\x76\x4b\x69\x6f\x6b\x61\x4c\x63\x62\x4a\x79\x77\x58\x53\x69\x68\x6e\x48\x42\x4d\x72\x49\x42\x33\x48\x46\x7a\x67\x76\x5a\x44\x68\x6a\x56\x45\x73\x62\x33\x41\x67\x76\x55\x69\x68\x72\x4f\x7a\x73\x62\x33\x42\x33\x6a\x52\x69\x67\x4c\x5a\x69\x67\x72\x56\x42\x4d\x75\x55','\x71\x32\x39\x55\x44\x67\x4c\x55\x44\x77\x75\x47\x7a\x67\x76\x53\x7a\x78\x72\x50\x42\x4d\x43\x47\x43\x4d\x76\x54\x79\x77\x4c\x55\x41\x77\x35\x4e\x69\x67\x31\x48\x79\x32\x48\x50\x42\x4d\x76\x5a\x69\x67\x4c\x4d\x69\x67\x39\x55\x7a\x73\x62\x4d\x79\x77\x4c\x53\x43\x59\x34','\x74\x33\x62\x30\x41\x77\x39\x55\x79\x77\x57\x47\x7a\x67\x4c\x5a\x43\x67\x58\x48\x45\x73\x62\x55\x79\x77\x31\x4c\x69\x67\x7a\x56\x43\x49\x62\x30\x41\x67\x75\x47\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x63\x34','\x44\x4d\x76\x59\x43\x32\x4c\x56\x42\x47','\x44\x67\x39\x56\x42\x66\x39\x31\x43\x32\x75','\x41\x77\x31\x48\x7a\x32\x75','\x42\x77\x76\x5a\x43\x32\x66\x4e\x7a\x71','\x71\x67\x31\x56\x7a\x67\x76\x53\x79\x32\x39\x55\x44\x67\x76\x34\x44\x68\x62\x59\x42\x33\x72\x56\x79\x32\x39\x53\x6c\x33\x6e\x4b\x41\x59\x39\x30\x45\x78\x62\x4c\x43\x59\x35\x51\x43\x57','\x75\x4d\x76\x48\x7a\x63\x62\x48\x69\x67\x7a\x50\x42\x67\x75\x47\x7a\x4e\x6a\x56\x42\x73\x62\x30\x41\x67\x75\x47\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x63\x62\x4d\x41\x77\x58\x4c\x43\x33\x4c\x5a\x44\x67\x76\x54\x6c\x49\x62\x73\x7a\x77\x58\x48\x44\x67\x4c\x32\x7a\x73\x62\x57\x79\x78\x72\x4f\x43\x59\x62\x59\x7a\x78\x6e\x56\x42\x68\x7a\x4c\x69\x67\x7a\x59\x42\x32\x30\x47\x44\x67\x48\x4c\x69\x68\x44\x56\x43\x4d\x54\x5a\x43\x67\x66\x4a\x7a\x73\x62\x59\x42\x32\x39\x30\x6f\x59\x62\x48\x79\x4e\x6e\x56\x42\x68\x76\x30\x7a\x73\x62\x57\x79\x78\x72\x4f\x43\x59\x62\x59\x7a\x77\x66\x4b\x69\x68\x72\x4f\x7a\x73\x62\x4a\x42\x32\x35\x30\x79\x77\x4c\x55\x7a\x78\x69\x47\x7a\x4d\x4c\x53\x7a\x78\x6e\x35\x43\x33\x72\x4c\x42\x73\x62\x4b\x41\x78\x6a\x4c\x79\x33\x72\x53\x45\x73\x34','\x77\x4b\x54\x34\x75\x65\x75','\x74\x33\x62\x30\x41\x77\x39\x55\x79\x77\x57\x47\x43\x33\x76\x49\x43\x32\x76\x30\x69\x67\x39\x4d\x69\x67\x31\x48\x79\x32\x48\x50\x42\x4d\x75\x47\x41\x77\x72\x5a\x6c\x49\x62\x65\x7a\x77\x7a\x48\x44\x77\x58\x30\x43\x59\x62\x30\x42\x59\x62\x48\x42\x67\x57\x47\x44\x32\x39\x59\x41\x32\x76\x59\x43\x59\x34','\x44\x32\x39\x59\x41\x32\x76\x59\x6c\x71','\x6c\x49\x34\x56\x6c\x49\x34\x56\x43\x67\x66\x4a\x41\x32\x66\x4e\x7a\x73\x35\x51\x43\x32\x39\x55','\x79\x32\x39\x55\x44\x67\x76\x34\x44\x61','\x75\x68\x7a\x4e\x72\x77\x38','\x76\x32\x39\x59\x41\x32\x4c\x55\x7a\x59\x62\x4b\x41\x78\x6a\x4c\x79\x33\x72\x56\x43\x4e\x4b\x55\x69\x65\x39\x57\x44\x67\x4c\x56\x42\x4d\x66\x53\x6c\x47','\x74\x4e\x76\x54\x79\x4d\x76\x59\x69\x67\x39\x4d\x69\x68\x44\x56\x43\x4d\x54\x4c\x43\x49\x62\x5a\x79\x77\x35\x4b\x79\x4d\x39\x34\x7a\x78\x6d\x55\x69\x65\x76\x48\x79\x32\x47\x47\x41\x78\x6d\x47\x79\x4d\x4c\x53\x42\x67\x76\x4b\x69\x67\x4c\x55\x7a\x67\x76\x57\x7a\x77\x35\x4b\x7a\x77\x35\x30\x42\x68\x4b\x55','\x42\x66\x66\x77\x76\x32\x34','\x43\x33\x72\x48\x44\x68\x76\x5a','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x33\x43\x4d\x4c\x30\x7a\x71','\x79\x32\x39\x54\x42\x77\x66\x55\x7a\x61','\x75\x32\x39\x31\x43\x4d\x6e\x4c\x69\x67\x6e\x56\x7a\x67\x75\x47\x44\x67\x38\x47\x43\x4e\x76\x55\x6c\x49\x62\x6e\x44\x77\x58\x30\x41\x73\x31\x53\x41\x77\x35\x4c\x69\x68\x6e\x31\x43\x68\x62\x56\x43\x4e\x72\x4c\x7a\x63\x34','\x79\x77\x58\x53\x42\x33\x43','\x73\x32\x76\x59\x42\x4d\x76\x53\x69\x67\x58\x48\x42\x4d\x44\x31\x79\x77\x44\x4c\x6c\x47','\x43\x4d\x76\x48\x7a\x61','\x43\x32\x76\x30\x75\x4d\x76\x58\x44\x77\x76\x5a\x44\x65\x48\x48\x42\x4d\x72\x53\x7a\x78\x69','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x59\x7a\x77\x66\x4b','\x73\x75\x6e\x77\x74\x76\x4b','\x42\x77\x66\x4a\x41\x67\x4c\x55\x7a\x78\x6d','\x79\x4d\x66\x5a\x41\x61','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x59\x44\x77\x35\x46\x79\x32\x39\x4b\x7a\x71','\x77\x78\x76\x6c\x42\x68\x6d','\x74\x33\x62\x30\x41\x77\x39\x55\x79\x77\x57\x47\x44\x32\x39\x59\x41\x32\x4c\x55\x7a\x59\x62\x4b\x41\x78\x6a\x4c\x79\x33\x72\x56\x43\x4e\x4b\x47\x7a\x4d\x39\x59\x69\x68\x72\x4f\x7a\x73\x62\x4a\x42\x32\x31\x54\x79\x77\x35\x4b\x6c\x47','\x73\x32\x54\x75\x75\x67\x69','\x72\x4e\x76\x53\x42\x63\x62\x4d\x41\x77\x58\x4c\x69\x67\x6e\x56\x42\x4e\x72\x4c\x42\x4e\x72\x5a\x6c\x47','\x72\x65\x48\x69\x73\x30\x6d','\x7a\x4e\x76\x55\x79\x33\x72\x50\x42\x32\x34','\x43\x32\x39\x31\x43\x4d\x6e\x4c','\x79\x33\x6a\x4c\x79\x78\x72\x4c\x76\x67\x39\x56\x42\x61','\x77\x4d\x39\x30\x75\x4b\x38','\x44\x33\x6a\x50\x44\x67\x75','\x44\x67\x76\x54\x43\x67\x58\x48\x44\x67\x76\x46\x41\x77\x71','\x75\x32\x48\x4c\x42\x67\x57\x47\x79\x32\x39\x54\x42\x77\x66\x55\x7a\x63\x62\x53\x41\x77\x35\x4c\x6c\x47','\x44\x68\x4c\x57\x7a\x71','\x6d\x74\x65\x33\x6d\x4a\x61\x35\x6e\x64\x44\x35\x41\x4d\x66\x68\x74\x78\x4f','\x7a\x4e\x6a\x56\x42\x71','\x6d\x4a\x75\x59\x6e\x68\x7a\x55\x71\x4e\x4c\x56\x42\x71','\x44\x32\x39\x59\x41\x32\x76\x59\x43\x57','\x7a\x32\x76\x30','\x7a\x4d\x39\x59\x42\x77\x66\x30','\x74\x33\x62\x30\x41\x77\x39\x55\x79\x77\x57\x47\x42\x77\x76\x30\x79\x77\x72\x48\x44\x67\x65\x47\x43\x33\x72\x48\x42\x78\x62\x4c\x7a\x63\x62\x56\x42\x49\x62\x4c\x44\x4d\x76\x59\x45\x73\x62\x4d\x42\x67\x76\x4c\x44\x63\x62\x54\x7a\x77\x31\x49\x7a\x78\x69\x55','\x79\x33\x6a\x4c\x79\x78\x72\x4c\x76\x32\x4c\x30\x41\x65\x6e\x56\x42\x33\x6a\x4b\x41\x77\x35\x48\x44\x67\x39\x59','\x79\x4d\x66\x5a\x7a\x74\x79\x30','\x43\x4d\x76\x5a\x44\x77\x58\x30\x43\x57','\x72\x66\x7a\x4a\x45\x68\x61','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x5a\x7a\x77\x66\x59\x79\x32\x47','\x43\x4e\x76\x55\x71\x32\x39\x4b\x7a\x71','\x77\x65\x6e\x66\x45\x67\x4f','\x76\x77\x35\x52\x42\x4d\x39\x33\x42\x49\x62\x30\x42\x32\x39\x53\x6f\x49\x61'];a0_0xca80=function(){return _0x533dd1;};return a0_0xca80();}function isCodeExecutionResultWithImages(_0x2f2191){const _0x2c90d4=a0_0x57547c;if(!_0x2f2191||typeof _0x2f2191!==_0x2c90d4(0xf9))return![];const _0x27171a=_0x2f2191[_0x2c90d4(0xed)];if(!Array[_0x2c90d4(0xb1)](_0x27171a))return![];return _0x27171a[_0x2c90d4(0x120)](_0xf0f8bd=>_0xf0f8bd&&typeof _0xf0f8bd===_0x2c90d4(0xf9)&&_0xf0f8bd[_0x2c90d4(0xe3)]===_0x2c90d4(0xbd));}function imageMediaType(_0x1b62af){const _0x1a9c1e=a0_0x57547c,_0x10b4da={'\x4b\x6b\x54\x50\x62':'\x69\x6d\x61\x67\x65\x2f\x70\x6e\x67','\x5a\x4b\x78\x50\x45':'\x6a\x70\x65\x67','\x44\x68\x52\x67\x79':_0x1a9c1e(0x138)};switch(_0x1b62af){case _0x1a9c1e(0x11d):return _0x10b4da[_0x1a9c1e(0xd9)];case _0x10b4da[_0x1a9c1e(0xc1)]:return _0x1a9c1e(0xaf);case _0x10b4da[_0x1a9c1e(0x107)]:return _0x10b4da[_0x1a9c1e(0xd9)];}}function a0_0x2966(_0x45b453,_0x4afce2){_0x45b453=_0x45b453-0xa2;const _0xca800=a0_0xca80();let _0x296615=_0xca800[_0x45b453];if(a0_0x2966['\x64\x54\x55\x51\x4a\x4a']===undefined){var _0x58ca36=function(_0x10e67d){const _0x56f2db='\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 _0x3ed648='',_0x1c022a='';for(let _0x4c44ba=0x0,_0xe2fdd8,_0x19393c,_0x280443=0x0;_0x19393c=_0x10e67d['\x63\x68\x61\x72\x41\x74'](_0x280443++);~_0x19393c&&(_0xe2fdd8=_0x4c44ba%0x4?_0xe2fdd8*0x40+_0x19393c:_0x19393c,_0x4c44ba++%0x4)?_0x3ed648+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0xff&_0xe2fdd8>>(-0x2*_0x4c44ba&0x6)):0x0){_0x19393c=_0x56f2db['\x69\x6e\x64\x65\x78\x4f\x66'](_0x19393c);}for(let _0x1ff402=0x0,_0x345960=_0x3ed648['\x6c\x65\x6e\x67\x74\x68'];_0x1ff402<_0x345960;_0x1ff402++){_0x1c022a+='\x25'+('\x30\x30'+_0x3ed648['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x1ff402)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x10))['\x73\x6c\x69\x63\x65'](-0x2);}return decodeURIComponent(_0x1c022a);};a0_0x2966['\x65\x53\x6d\x77\x47\x6b']=_0x58ca36,a0_0x2966['\x6d\x6d\x48\x64\x42\x69']={},a0_0x2966['\x64\x54\x55\x51\x4a\x4a']=!![];}const _0x223caa=_0xca800[0x0],_0x2322eb=_0x45b453+_0x223caa,_0xebf92c=a0_0x2966['\x6d\x6d\x48\x64\x42\x69'][_0x2322eb];return!_0xebf92c?(_0x296615=a0_0x2966['\x65\x53\x6d\x77\x47\x6b'](_0x296615),a0_0x2966['\x6d\x6d\x48\x64\x42\x69'][_0x2322eb]=_0x296615):_0x296615=_0xebf92c,_0x296615;}const FLEET_TOOL_SPECS={'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x73\x70\x61\x77\x6e':{'\x6e\x61\x6d\x65':a0_0x57547c(0xfe),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0x10c),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':'\x6f\x62\x6a\x65\x63\x74','\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x74\x65\x6d\x70\x6c\x61\x74\x65\x5f\x69\x64':{'\x74\x79\x70\x65':'\x73\x74\x72\x69\x6e\x67','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0xaa)},'\x77\x6f\x72\x6b\x65\x72\x73':{'\x74\x79\x70\x65':a0_0x57547c(0xb7),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0xc8)},'\x6d\x65\x74\x61\x64\x61\x74\x61':{'\x74\x79\x70\x65':a0_0x57547c(0xf9),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{},'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':!![],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0xea)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x57547c(0xe1),'\x77\x6f\x72\x6b\x65\x72\x73'],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({client:_0xa98bce})=>async _0x4b22ae=>{const _0x217d20=a0_0x57547c,_0xc4f5a6=await _0xa98bce['\x66\x6c\x65\x65\x74\x73'][_0x217d20(0xeb)]({'\x64\x65\x66\x61\x75\x6c\x74\x73':{'\x70\x75\x62\x6c\x69\x63\x54\x65\x6d\x70\x6c\x61\x74\x65\x49\x64':_0x4b22ae['\x74\x65\x6d\x70\x6c\x61\x74\x65\x5f\x69\x64']},'\x77\x6f\x72\x6b\x65\x72\x73':Array[_0x217d20(0xe5)]({'\x6c\x65\x6e\x67\x74\x68':_0x4b22ae[_0x217d20(0xe7)]},(_0x308cd0,_0x1185cf)=>({'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64':_0x217d20(0xc3)+_0x1185cf})),'\x6d\x65\x74\x61\x64\x61\x74\x61':_0x4b22ae[_0x217d20(0x108)]});return{'\x66\x6c\x65\x65\x74\x49\x64':_0xc4f5a6['\x66\x6c\x65\x65\x74\x49\x64'],'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64\x73':_0xc4f5a6['\x69\x64\x73']};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x64\x69\x73\x70\x61\x74\x63\x68':{'\x6e\x61\x6d\x65':a0_0x57547c(0x12d),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0x137),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x57547c(0xf9),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x66\x6c\x65\x65\x74\x5f\x69\x64':{'\x74\x79\x70\x65':'\x73\x74\x72\x69\x6e\x67'},'\x63\x6f\x6d\x6d\x61\x6e\x64':{'\x74\x79\x70\x65':a0_0x57547c(0x134),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0xe2)},'\x6d\x61\x63\x68\x69\x6e\x65\x73':{'\x74\x79\x70\x65':a0_0x57547c(0xac),'\x69\x74\x65\x6d\x73':{'\x74\x79\x70\x65':a0_0x57547c(0x134)},'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0xc2)},'\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73':{'\x74\x79\x70\x65':a0_0x57547c(0xb7),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x50\x65\x72\x2d\x6d\x61\x63\x68\x69\x6e\x65\x20\x74\x69\x6d\x65\x6f\x75\x74\x2e\x20\x44\x65\x66\x61\x75\x6c\x74\x20\x36\x30\x30\x30\x30\x2e'}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x57547c(0x130),a0_0x57547c(0xcc)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({client:_0x13bd3d})=>async _0x21b59b=>{const _0x26db83=a0_0x57547c;return await(await _0x13bd3d[_0x26db83(0x147)][_0x26db83(0xab)]({'\x66\x6c\x65\x65\x74\x49\x64':_0x21b59b[_0x26db83(0x130)]}))[_0x26db83(0xf8)](_0x21b59b[_0x26db83(0xcc)],{'\x6d\x61\x63\x68\x69\x6e\x65\x73':_0x21b59b[_0x26db83(0xd4)],'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x21b59b[_0x26db83(0x14f)]});}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x73\x74\x61\x74\x75\x73':{'\x6e\x61\x6d\x65':'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x73\x74\x61\x74\x75\x73','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0x146),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x57547c(0xf9),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x66\x6c\x65\x65\x74\x5f\x69\x64':{'\x74\x79\x70\x65':a0_0x57547c(0x134)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x57547c(0x130)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({client:_0x15db0f})=>async _0x2eb9ff=>{const _0x3b59ac=a0_0x57547c,_0x33662b=await _0x15db0f[_0x3b59ac(0x147)][_0x3b59ac(0xab)]({'\x66\x6c\x65\x65\x74\x49\x64':_0x2eb9ff['\x66\x6c\x65\x65\x74\x5f\x69\x64']});return{'\x66\x6c\x65\x65\x74\x49\x64':_0x33662b[_0x3b59ac(0x126)],'\x6d\x61\x63\x68\x69\x6e\x65\x73':_0x33662b['\x69\x64\x73']['\x6d\x61\x70'](_0x3603ad=>({'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64':_0x3603ad,'\x73\x74\x61\x74\x75\x73':_0x33662b['\x67\x65\x74'](_0x3603ad)[_0x3b59ac(0xca)]}))};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x64\x65\x73\x74\x72\x6f\x79':{'\x6e\x61\x6d\x65':a0_0x57547c(0x124),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x44\x65\x6c\x65\x74\x65\x20\x74\x68\x65\x20\x66\x6c\x65\x65\x74\x20\x61\x6e\x64\x20\x65\x76\x65\x72\x79\x20\x6d\x61\x63\x68\x69\x6e\x65\x20\x69\x6e\x20\x69\x74\x2e\x20\x53\x74\x6f\x70\x73\x20\x62\x69\x6c\x6c\x69\x6e\x67\x20\x69\x6d\x6d\x65\x64\x69\x61\x74\x65\x6c\x79\x2e\x20\x43\x61\x6c\x6c\x20\x74\x68\x69\x73\x20\x77\x68\x65\x6e\x20\x74\x68\x65\x20\x63\x61\x6d\x70\x61\x69\x67\x6e\x20\x69\x73\x20\x64\x6f\x6e\x65\x3b\x20\x6f\x72\x70\x68\x61\x6e\x65\x64\x20\x66\x6c\x65\x65\x74\x73\x20\x6b\x65\x65\x70\x20\x62\x75\x72\x6e\x69\x6e\x67\x20\x63\x72\x65\x64\x69\x74\x73\x2e','\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x57547c(0xf9),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x66\x6c\x65\x65\x74\x5f\x69\x64':{'\x74\x79\x70\x65':a0_0x57547c(0x134)},'\x63\x6f\x6e\x74\x69\x6e\x75\x65\x5f\x6f\x6e\x5f\x65\x72\x72\x6f\x72':{'\x74\x79\x70\x65':a0_0x57547c(0xf5),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0xb9)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x57547c(0x130)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({client:_0x36e4da})=>async _0xb62cca=>{const _0x1be729=a0_0x57547c;return await(await _0x36e4da[_0x1be729(0x147)]['\x6c\x69\x73\x74']({'\x66\x6c\x65\x65\x74\x49\x64':_0xb62cca[_0x1be729(0x130)]}))[_0x1be729(0x14c)]({'\x63\x6f\x6e\x74\x69\x6e\x75\x65\x4f\x6e\x45\x72\x72\x6f\x72':_0xb62cca['\x63\x6f\x6e\x74\x69\x6e\x75\x65\x5f\x6f\x6e\x5f\x65\x72\x72\x6f\x72']}),{'\x66\x6c\x65\x65\x74\x49\x64':_0xb62cca[_0x1be729(0x130)],'\x64\x65\x6c\x65\x74\x65\x64':!![]};}}},ALL_FLEET_TOOL_SPECS=Object[a0_0x57547c(0xfc)](FLEET_TOOL_SPECS);function selectFleetSpecs(_0x59b9f8){const _0x91f2f8=a0_0x57547c,_0x4d5457={'\x70\x43\x6e\x62\x47':function(_0x209cad,_0x1da0a2){return _0x209cad===_0x1da0a2;}};if(!_0x59b9f8||_0x4d5457['\x70\x43\x6e\x62\x47'](_0x59b9f8[_0x91f2f8(0x110)],0x0))return ALL_FLEET_TOOL_SPECS;const _0x10fcf7=new Set(_0x59b9f8);return Object[_0x91f2f8(0xa9)](FLEET_TOOL_SPECS)['\x66\x69\x6c\x74\x65\x72'](_0x5a9aaf=>_0x10fcf7[_0x91f2f8(0xb0)](_0x5a9aaf))[_0x91f2f8(0x114)](_0x4f7f7a=>FLEET_TOOL_SPECS[_0x4f7f7a]);}function anthropicFleetTools(_0xe1cc6d,_0x1d7cdc={}){const _0x3c3e0a=a0_0x57547c,_0x4765f0={'\x76\x46\x42\x71\x76':'\x74\x6f\x6f\x6c\x5f\x72\x65\x73\x75\x6c\x74','\x59\x75\x4b\x6c\x73':function(_0x2681b1,_0x191177){return _0x2681b1(_0x191177);},'\x48\x56\x6c\x49\x45':function(_0x5e2e9b,_0x50b3f2){return _0x5e2e9b(_0x50b3f2);}},_0xf82411=_0x4765f0['\x48\x56\x6c\x49\x45'](selectFleetSpecs,_0x1d7cdc[_0x3c3e0a(0xce)]),_0x1a6988=buildFleetHandlers(_0xf82411,{'\x63\x6c\x69\x65\x6e\x74':_0xe1cc6d});return{'\x74\x6f\x6f\x6c\x73':_0xf82411[_0x3c3e0a(0x114)](_0x55f035=>({'\x6e\x61\x6d\x65':_0x55f035['\x6e\x61\x6d\x65'],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x55f035[_0x3c3e0a(0x117)],'\x69\x6e\x70\x75\x74\x5f\x73\x63\x68\x65\x6d\x61':_0x55f035[_0x3c3e0a(0x11c)]})),async '\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x55\x73\x65'(_0x3c2a03){const _0x44c12b=_0x3c3e0a,_0x5baba6=_0x1a6988['\x67\x65\x74'](_0x3c2a03[_0x44c12b(0x122)]);if(!_0x5baba6)return{'\x74\x79\x70\x65':_0x44c12b(0x125),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x3c2a03['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':'\x55\x6e\x6b\x6e\x6f\x77\x6e\x20\x66\x6c\x65\x65\x74\x20\x74\x6f\x6f\x6c\x3a\x20'+_0x3c2a03[_0x44c12b(0x122)],'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};try{const _0x16a70c=await _0x5baba6(_0x3c2a03[_0x44c12b(0xa3)]);return{'\x74\x79\x70\x65':_0x4765f0['\x76\x46\x42\x71\x76'],'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x3c2a03['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x4765f0[_0x44c12b(0xd7)](serializeToolResult,_0x16a70c)};}catch(_0x25e721){return{'\x74\x79\x70\x65':_0x44c12b(0x125),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x3c2a03['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x25e721 instanceof Error?_0x25e721['\x6d\x65\x73\x73\x61\x67\x65']:String(_0x25e721),'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};}}};}function openaiFleetTools(_0x370270,_0x472fe5={}){const _0x31ec75=a0_0x57547c,_0x2176b1={'\x6a\x4f\x67\x50\x6f':_0x31ec75(0x115),'\x56\x4f\x6c\x71\x77':function(_0x17ce1a,_0x56b02f){return _0x17ce1a(_0x56b02f);},'\x59\x75\x6f\x66\x6e':function(_0x1e19d1,_0xfbc555){return _0x1e19d1(_0xfbc555);},'\x53\x79\x66\x6d\x74':function(_0x28710b,_0x12e1f9,_0x56e78f){return _0x28710b(_0x12e1f9,_0x56e78f);}},_0x2d92ee=_0x2176b1[_0x31ec75(0xb5)](selectFleetSpecs,_0x472fe5['\x61\x6c\x6c\x6f\x77']),_0x4a9204=_0x2176b1[_0x31ec75(0x132)](buildFleetHandlers,_0x2d92ee,{'\x63\x6c\x69\x65\x6e\x74':_0x370270});return{'\x74\x6f\x6f\x6c\x73':_0x2d92ee[_0x31ec75(0x114)](_0x33d5bb=>({'\x74\x79\x70\x65':_0x31ec75(0xdc),'\x66\x75\x6e\x63\x74\x69\x6f\x6e':{'\x6e\x61\x6d\x65':_0x33d5bb[_0x31ec75(0x122)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x33d5bb['\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e'],'\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73':_0x33d5bb[_0x31ec75(0x11c)]}})),async '\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x43\x61\x6c\x6c'(_0x4ce77f){const _0x2958d8=_0x31ec75,_0x1e1e91=_0x4a9204['\x67\x65\x74'](_0x4ce77f[_0x2958d8(0xdc)]['\x6e\x61\x6d\x65']);if(!_0x1e1e91)return{'\x72\x6f\x6c\x65':_0x2958d8(0x115),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x4ce77f['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON['\x73\x74\x72\x69\x6e\x67\x69\x66\x79']({'\x65\x72\x72\x6f\x72':_0x2958d8(0x104)+_0x4ce77f['\x66\x75\x6e\x63\x74\x69\x6f\x6e'][_0x2958d8(0x122)]})};let _0x355d4a={};try{const _0x42f63b=JSON[_0x2958d8(0x144)](_0x4ce77f[_0x2958d8(0xdc)][_0x2958d8(0x136)]||'\x7b\x7d');if(_0x42f63b&&typeof _0x42f63b==='\x6f\x62\x6a\x65\x63\x74')_0x355d4a=_0x42f63b;}catch{}try{const _0x38566d=await _0x1e1e91(_0x355d4a);return{'\x72\x6f\x6c\x65':_0x2176b1[_0x2958d8(0xa5)],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x4ce77f['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x2176b1['\x56\x4f\x6c\x71\x77'](serializeToolResult,_0x38566d)};}catch(_0xc2926e){return{'\x72\x6f\x6c\x65':'\x74\x6f\x6f\x6c','\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x4ce77f['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x2958d8(0xad)]({'\x65\x72\x72\x6f\x72':_0xc2926e instanceof Error?_0xc2926e['\x6d\x65\x73\x73\x61\x67\x65']:String(_0xc2926e)})};}}};}async function vercelAiFleetTools(_0x5a1131,_0x269428={}){const _0x545df1=a0_0x57547c,_0x2406f6={'\x73\x59\x52\x72\x4a':_0x545df1(0xae)};let _0x3e117c;try{_0x3e117c=await import('\x61\x69');}catch{throw new Error(_0x2406f6[_0x545df1(0x100)]);}const _0x2b5198=selectFleetSpecs(_0x269428[_0x545df1(0xce)]),_0x192c37=buildFleetHandlers(_0x2b5198,{'\x63\x6c\x69\x65\x6e\x74':_0x5a1131}),_0x2a25dc={};for(const _0x4b0428 of _0x2b5198)_0x2a25dc[_0x4b0428[_0x545df1(0x122)]]=_0x3e117c['\x74\x6f\x6f\x6c']({'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x4b0428[_0x545df1(0x117)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x3e117c[_0x545df1(0x10d)](_0x4b0428[_0x545df1(0x11c)]),'\x65\x78\x65\x63\x75\x74\x65':async _0x162854=>{const _0x45c6f5=_0x545df1,_0x463714=_0x192c37[_0x45c6f5(0xe8)](_0x4b0428['\x6e\x61\x6d\x65']);if(!_0x463714)throw new Error(_0x45c6f5(0x104)+_0x4b0428[_0x45c6f5(0x122)]);return serializeToolResult(await _0x463714(_0x162854));}});return _0x2a25dc;}async function mastraFleetTools(_0x5c2f11,_0x34914d={}){const _0x5202a3=a0_0x57547c,_0x227650={'\x4b\x64\x6e\x52\x67':function(_0x3adafd,_0x225f2c){return _0x3adafd(_0x225f2c);},'\x5a\x6f\x74\x52\x4f':_0x5202a3(0x13f),'\x78\x4e\x7a\x57\x7a':function(_0x519f84,_0x22f235,_0xbbe529){return _0x519f84(_0x22f235,_0xbbe529);}};let _0x328a98;try{_0x328a98=await import(_0x227650[_0x5202a3(0xdf)]);}catch{throw new Error('\x6d\x61\x73\x74\x72\x61\x46\x6c\x65\x65\x74\x54\x6f\x6f\x6c\x73\x28\x29\x3a\x20\x74\x68\x65\x20\x60\x40\x6d\x61\x73\x74\x72\x61\x2f\x63\x6f\x72\x65\x60\x20\x70\x61\x63\x6b\x61\x67\x65\x20\x69\x73\x20\x6e\x6f\x74\x20\x69\x6e\x73\x74\x61\x6c\x6c\x65\x64\x2e\x20\x49\x6e\x73\x74\x61\x6c\x6c\x20\x76\x69\x61\x20\x60\x70\x6e\x70\x6d\x20\x61\x64\x64\x20\x40\x6d\x61\x73\x74\x72\x61\x2f\x63\x6f\x72\x65\x60\x2e');}const _0x5a8fab=selectFleetSpecs(_0x34914d[_0x5202a3(0xce)]),_0x5dc558=_0x227650[_0x5202a3(0x112)](buildFleetHandlers,_0x5a8fab,{'\x63\x6c\x69\x65\x6e\x74':_0x5c2f11}),_0x389c36={};for(const _0x43bc64 of _0x5a8fab)_0x389c36[_0x43bc64[_0x5202a3(0x122)]]=_0x328a98[_0x5202a3(0xde)]({'\x69\x64':_0x43bc64['\x6e\x61\x6d\x65'],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x43bc64[_0x5202a3(0x117)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x328a98[_0x5202a3(0x10d)]?_0x328a98[_0x5202a3(0x10d)](_0x43bc64[_0x5202a3(0x11c)]):_0x43bc64[_0x5202a3(0x11c)],'\x65\x78\x65\x63\x75\x74\x65':async _0x2037eb=>{const _0x1533ae=_0x5202a3,_0x1ad5b0=_0x5dc558[_0x1533ae(0xe8)](_0x43bc64[_0x1533ae(0x122)]);if(!_0x1ad5b0)throw new Error(_0x1533ae(0x104)+_0x43bc64[_0x1533ae(0x122)]);return{'\x72\x65\x73\x75\x6c\x74':_0x227650[_0x1533ae(0x119)](serializeToolResult,await _0x1ad5b0(_0x2037eb?.[_0x1533ae(0xc5)]??{}))};}});return _0x389c36;}function buildFleetHandlers(_0x2092ee,_0x4c37bd){const _0x5b610f=a0_0x57547c,_0x25ebc6=new Map();for(const _0x3e3c18 of _0x2092ee)_0x25ebc6[_0x5b610f(0xa2)](_0x3e3c18[_0x5b610f(0x122)],_0x3e3c18[_0x5b610f(0x113)](_0x4c37bd));return _0x25ebc6;}const LIFECYCLE_TOOL_SPECS={'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x63\x72\x65\x61\x74\x65':{'\x6e\x61\x6d\x65':a0_0x57547c(0x145),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0xb8),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':'\x6f\x62\x6a\x65\x63\x74','\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74':{'\x74\x79\x70\x65':a0_0x57547c(0x134),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x45\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74\x20\x6e\x61\x6d\x65\x20\x28\x65\x2e\x67\x2e\x20\x27\x75\x6e\x69\x76\x65\x72\x73\x61\x6c\x27\x20\x66\x6f\x72\x20\x6d\x75\x6c\x74\x69\x2d\x6c\x61\x6e\x67\x75\x61\x67\x65\x20\x4e\x6f\x64\x65\x2f\x50\x79\x74\x68\x6f\x6e\x29\x2e\x20\x44\x65\x66\x61\x75\x6c\x74\x20\x27\x75\x6e\x69\x76\x65\x72\x73\x61\x6c\x27\x2e'},'\x6e\x61\x6d\x65':{'\x74\x79\x70\x65':a0_0x57547c(0x134),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0xba)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({client:_0x4a2abb})=>async _0x521193=>{const _0x18bc64=a0_0x57547c,_0x791393=await _0x4a2abb['\x63\x72\x65\x61\x74\x65']({'\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74':_0x521193['\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74']??_0x18bc64(0x118),'\x6e\x61\x6d\x65':_0x521193[_0x18bc64(0x122)]});return{'\x73\x61\x6e\x64\x62\x6f\x78\x49\x64':_0x791393['\x69\x64'],'\x73\x74\x61\x74\x75\x73':_0x791393[_0x18bc64(0xca)]};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x72\x75\x6e\x5f\x63\x6f\x6d\x6d\x61\x6e\x64':{'\x6e\x61\x6d\x65':'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x72\x75\x6e\x5f\x63\x6f\x6d\x6d\x61\x6e\x64','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0x128),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':'\x6f\x62\x6a\x65\x63\x74','\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x69\x64':{'\x74\x79\x70\x65':a0_0x57547c(0x134),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x49\x64\x20\x72\x65\x74\x75\x72\x6e\x65\x64\x20\x62\x79\x20\x73\x61\x6e\x64\x62\x6f\x78\x5f\x63\x72\x65\x61\x74\x65\x2e'},'\x63\x6f\x6d\x6d\x61\x6e\x64':{'\x74\x79\x70\x65':a0_0x57547c(0x134),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0xe2)},'\x63\x77\x64':{'\x74\x79\x70\x65':a0_0x57547c(0x134),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0xd8)},'\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73':{'\x74\x79\x70\x65':a0_0x57547c(0xb7),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0x12b)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x57547c(0xf6),a0_0x57547c(0xcc)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({client:_0x45b427})=>async _0x40fce0=>{const _0xb42331=a0_0x57547c,_0xfbd0d2=await _0x45b427[_0xb42331(0xe8)](_0x40fce0[_0xb42331(0xf6)]);if(!_0xfbd0d2)throw new Error(_0xb42331(0xf3)+_0x40fce0[_0xb42331(0xf6)]+'\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\x2e\x20\x43\x72\x65\x61\x74\x65\x20\x69\x74\x20\x66\x69\x72\x73\x74\x20\x77\x69\x74\x68\x20\x73\x61\x6e\x64\x62\x6f\x78\x5f\x63\x72\x65\x61\x74\x65\x2e');const _0x4bb02f=await _0xfbd0d2[_0xb42331(0xfb)](_0x40fce0[_0xb42331(0xcc)],{'\x63\x77\x64':_0x40fce0[_0xb42331(0xb6)],'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x40fce0[_0xb42331(0x14f)]??0xea60});return{'\x73\x74\x64\x6f\x75\x74':_0x4bb02f['\x73\x74\x64\x6f\x75\x74'],'\x73\x74\x64\x65\x72\x72':_0x4bb02f[_0xb42331(0x10b)],'\x65\x78\x69\x74\x43\x6f\x64\x65':_0x4bb02f[_0xb42331(0x14b)]};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x64\x65\x73\x74\x72\x6f\x79':{'\x6e\x61\x6d\x65':a0_0x57547c(0x13c),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0x10a),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':'\x6f\x62\x6a\x65\x63\x74','\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x69\x64':{'\x74\x79\x70\x65':a0_0x57547c(0x134),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0x121)}},'\x72\x65\x71\x75\x69\x72\x65\x64':['\x73\x61\x6e\x64\x62\x6f\x78\x5f\x69\x64'],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({client:_0x171969})=>async _0x153a18=>{const _0x5e4c54=a0_0x57547c,_0x24a67e=await _0x171969[_0x5e4c54(0xe8)](_0x153a18['\x73\x61\x6e\x64\x62\x6f\x78\x5f\x69\x64']);if(!_0x24a67e)return{'\x73\x61\x6e\x64\x62\x6f\x78\x49\x64':_0x153a18[_0x5e4c54(0xf6)],'\x64\x65\x6c\x65\x74\x65\x64':!![]};return await _0x24a67e['\x64\x65\x6c\x65\x74\x65'](),{'\x73\x61\x6e\x64\x62\x6f\x78\x49\x64':_0x153a18[_0x5e4c54(0xf6)],'\x64\x65\x6c\x65\x74\x65\x64':!![]};}}},ALL_LIFECYCLE_TOOL_SPECS=Object[a0_0x57547c(0xfc)](LIFECYCLE_TOOL_SPECS);function selectLifecycleSpecs(_0x1f91a5){const _0x2e6d61=a0_0x57547c,_0x387ef3={'\x6c\x51\x56\x57\x6e':function(_0x4523b5,_0x4553bf){return _0x4523b5===_0x4553bf;}};if(!_0x1f91a5||_0x387ef3[_0x2e6d61(0xc9)](_0x1f91a5[_0x2e6d61(0x110)],0x0))return ALL_LIFECYCLE_TOOL_SPECS;const _0x5cb3d5=new Set(_0x1f91a5);return Object['\x6b\x65\x79\x73'](LIFECYCLE_TOOL_SPECS)[_0x2e6d61(0x13d)](_0x27c6c4=>_0x5cb3d5[_0x2e6d61(0xb0)](_0x27c6c4))[_0x2e6d61(0x114)](_0x46e2ba=>LIFECYCLE_TOOL_SPECS[_0x46e2ba]);}function anthropicLifecycleTools(_0xecb28b,_0x1265c9={}){const _0x249cf8=a0_0x57547c,_0xce3140={'\x46\x55\x65\x59\x69':function(_0x1c3b0c,_0x2dfbac){return _0x1c3b0c(_0x2dfbac);},'\x64\x63\x64\x54\x6d':_0x249cf8(0x125),'\x75\x77\x6e\x76\x6f':function(_0x17f2ef,_0x15d8cc){return _0x17f2ef instanceof _0x15d8cc;},'\x44\x56\x63\x78\x70':function(_0xa6ddc9,_0x629d33,_0xb5eb74){return _0xa6ddc9(_0x629d33,_0xb5eb74);}},_0x56cde1=selectLifecycleSpecs(_0x1265c9[_0x249cf8(0xce)]),_0x59b88a=_0xce3140[_0x249cf8(0xee)](buildLifecycleHandlers,_0x56cde1,{'\x63\x6c\x69\x65\x6e\x74':_0xecb28b});return{'\x74\x6f\x6f\x6c\x73':_0x56cde1[_0x249cf8(0x114)](_0x15a49a=>({'\x6e\x61\x6d\x65':_0x15a49a[_0x249cf8(0x122)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x15a49a[_0x249cf8(0x117)],'\x69\x6e\x70\x75\x74\x5f\x73\x63\x68\x65\x6d\x61':_0x15a49a['\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61']})),async '\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x55\x73\x65'(_0x4d6060){const _0x6a1f53=_0x249cf8,_0x2d3740=_0x59b88a[_0x6a1f53(0xe8)](_0x4d6060[_0x6a1f53(0x122)]);if(!_0x2d3740)return{'\x74\x79\x70\x65':_0x6a1f53(0x125),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x4d6060['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x6a1f53(0xa8)+_0x4d6060[_0x6a1f53(0x122)],'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};try{const _0x4b126c=await _0xce3140[_0x6a1f53(0x102)](_0x2d3740,_0x4d6060['\x69\x6e\x70\x75\x74']);return{'\x74\x79\x70\x65':'\x74\x6f\x6f\x6c\x5f\x72\x65\x73\x75\x6c\x74','\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x4d6060['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':serializeToolResult(_0x4b126c)};}catch(_0x384c35){return{'\x74\x79\x70\x65':_0xce3140['\x64\x63\x64\x54\x6d'],'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x4d6060['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0xce3140['\x75\x77\x6e\x76\x6f'](_0x384c35,Error)?_0x384c35[_0x6a1f53(0xbe)]:_0xce3140[_0x6a1f53(0x102)](String,_0x384c35),'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};}}};}function openaiLifecycleTools(_0x8b83d7,_0x3dd50e={}){const _0x2b96b3=a0_0x57547c,_0x2c8117={'\x65\x72\x78\x62\x49':function(_0x5afd5f,_0x1a02a4){return _0x5afd5f===_0x1a02a4;},'\x59\x6d\x73\x57\x44':function(_0x3fa5a5,_0x4d9cb9){return _0x3fa5a5(_0x4d9cb9);},'\x6a\x6d\x4a\x41\x74':function(_0x14a4ff,_0x4de3c7,_0xcf9123){return _0x14a4ff(_0x4de3c7,_0xcf9123);}},_0x3aa53f=selectLifecycleSpecs(_0x3dd50e[_0x2b96b3(0xce)]),_0x5a66c4=_0x2c8117[_0x2b96b3(0x12c)](buildLifecycleHandlers,_0x3aa53f,{'\x63\x6c\x69\x65\x6e\x74':_0x8b83d7});return{'\x74\x6f\x6f\x6c\x73':_0x3aa53f[_0x2b96b3(0x114)](_0x2f836e=>({'\x74\x79\x70\x65':_0x2b96b3(0xdc),'\x66\x75\x6e\x63\x74\x69\x6f\x6e':{'\x6e\x61\x6d\x65':_0x2f836e[_0x2b96b3(0x122)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x2f836e[_0x2b96b3(0x117)],'\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73':_0x2f836e[_0x2b96b3(0x11c)]}})),async '\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x43\x61\x6c\x6c'(_0x553d8e){const _0x10496f=_0x2b96b3,_0xf34995=_0x5a66c4['\x67\x65\x74'](_0x553d8e[_0x10496f(0xdc)][_0x10496f(0x122)]);if(!_0xf34995)return{'\x72\x6f\x6c\x65':_0x10496f(0x115),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x553d8e['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x10496f(0xad)]({'\x65\x72\x72\x6f\x72':_0x10496f(0xa8)+_0x553d8e[_0x10496f(0xdc)]['\x6e\x61\x6d\x65']})};let _0x8b5aa4={};try{const _0x44a37b=JSON[_0x10496f(0x144)](_0x553d8e[_0x10496f(0xdc)][_0x10496f(0x136)]||'\x7b\x7d');if(_0x44a37b&&_0x2c8117[_0x10496f(0x11f)](typeof _0x44a37b,_0x10496f(0xf9)))_0x8b5aa4=_0x44a37b;}catch{}try{const _0x355dc3=await _0x2c8117[_0x10496f(0x14e)](_0xf34995,_0x8b5aa4);return{'\x72\x6f\x6c\x65':'\x74\x6f\x6f\x6c','\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x553d8e['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':serializeToolResult(_0x355dc3)};}catch(_0x65b2af){return{'\x72\x6f\x6c\x65':_0x10496f(0x115),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x553d8e['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x10496f(0xad)]({'\x65\x72\x72\x6f\x72':_0x65b2af instanceof Error?_0x65b2af[_0x10496f(0xbe)]:String(_0x65b2af)})};}}};}function buildLifecycleHandlers(_0x37f5e1,_0x31b9d4){const _0x48e751=a0_0x57547c,_0x3db953=new Map();for(const _0x12d2b8 of _0x37f5e1)_0x3db953[_0x48e751(0xa2)](_0x12d2b8[_0x48e751(0x122)],_0x12d2b8[_0x48e751(0x113)](_0x31b9d4));return _0x3db953;}async function mastraTools(_0x414055,_0xe2a4cd={}){const _0x55420e=a0_0x57547c,_0x34d492={'\x75\x58\x64\x5a\x58':function(_0x347cec,_0x80574c){return _0x347cec(_0x80574c);},'\x44\x76\x4b\x61\x77':function(_0x56f45f,_0x572193){return _0x56f45f(_0x572193);}};let _0x38135b;try{_0x38135b=await import(_0x55420e(0x13f));}catch{throw new Error(_0x55420e(0x131));}const _0x48401e=_0x34d492[_0x55420e(0x11a)](selectSpecs,_0xe2a4cd[_0x55420e(0xce)]),_0x323a49={'\x62\x6f\x78':_0x414055,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0xe2a4cd[_0x55420e(0x149)]},_0x33f3ef={};for(const _0x3bcddf of _0x48401e){const _0x19e23c=_0x3bcddf['\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72'](_0x323a49);_0x33f3ef[_0x3bcddf['\x6e\x61\x6d\x65']]=_0x38135b[_0x55420e(0xde)]({'\x69\x64':_0x3bcddf[_0x55420e(0x122)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x3bcddf[_0x55420e(0x117)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x38135b[_0x55420e(0x10d)]?_0x38135b[_0x55420e(0x10d)](_0x3bcddf['\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61']):_0x3bcddf[_0x55420e(0x11c)],'\x65\x78\x65\x63\x75\x74\x65':async _0x4acd00=>{const _0x2fabeb=_0x55420e;return{'\x72\x65\x73\x75\x6c\x74':_0x34d492['\x75\x58\x64\x5a\x58'](serializeToolResult,await _0x34d492[_0x2fabeb(0x11a)](_0x19e23c,_0x4acd00?.[_0x2fabeb(0xc5)]??{}))};}});}return _0x33f3ef;}function openaiTools(_0x487f0e,_0x28f2a9={}){const _0x28c59b=a0_0x57547c,_0x5ddc33={'\x49\x51\x4e\x4e\x4d':function(_0x255c01,_0x3e23ce){return _0x255c01===_0x3e23ce;},'\x59\x4e\x5a\x71\x73':function(_0x4e14c6,_0x1c677b){return _0x4e14c6(_0x1c677b);},'\x51\x48\x72\x6b\x6a':function(_0x2695f1,_0xc833d4){return _0x2695f1(_0xc833d4);},'\x70\x77\x64\x55\x4f':'\x74\x6f\x6f\x6c'},_0x27c332=selectSpecs(_0x28f2a9['\x61\x6c\x6c\x6f\x77']),_0x25dd25={'\x62\x6f\x78':_0x487f0e,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x28f2a9[_0x28c59b(0x149)]},_0x2b41c1=new Map();for(const _0x516acf of _0x27c332)_0x2b41c1[_0x28c59b(0xa2)](_0x516acf[_0x28c59b(0x122)],_0x516acf['\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72'](_0x25dd25));const _0x11fb08=_0x27c332[_0x28c59b(0x114)](_0x1b7d87=>({'\x74\x79\x70\x65':_0x28c59b(0xdc),'\x66\x75\x6e\x63\x74\x69\x6f\x6e':{'\x6e\x61\x6d\x65':_0x1b7d87[_0x28c59b(0x122)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x1b7d87[_0x28c59b(0x117)],'\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73':_0x1b7d87[_0x28c59b(0x11c)]}}));function _0x5ae15e(_0x318b06){const _0x40f3ca=_0x28c59b;if(!_0x318b06)return{};try{const _0x381cca=JSON[_0x40f3ca(0x144)](_0x318b06);return _0x5ddc33['\x49\x51\x4e\x4e\x4d'](typeof _0x381cca,_0x40f3ca(0xf9))&&_0x381cca!==null?_0x381cca:{};}catch{return{};}}async function _0x4f64d3(_0x314d80){const _0x315f5a=_0x28c59b,_0x3fb90c=_0x2b41c1[_0x315f5a(0xe8)](_0x314d80[_0x315f5a(0xdc)][_0x315f5a(0x122)]);if(!_0x3fb90c)return{'\x72\x6f\x6c\x65':'\x74\x6f\x6f\x6c','\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x314d80['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x315f5a(0xad)]({'\x65\x72\x72\x6f\x72':_0x315f5a(0xf2)+_0x314d80[_0x315f5a(0xdc)][_0x315f5a(0x122)]})};try{const _0x5648d4=await _0x5ddc33[_0x315f5a(0x140)](_0x3fb90c,_0x5ddc33[_0x315f5a(0x11b)](_0x5ae15e,_0x314d80[_0x315f5a(0xdc)][_0x315f5a(0x136)]));return{'\x72\x6f\x6c\x65':_0x5ddc33[_0x315f5a(0x141)],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x314d80['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':serializeToolResult(_0x5648d4)};}catch(_0x382a12){return{'\x72\x6f\x6c\x65':_0x5ddc33[_0x315f5a(0x141)],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x314d80['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON['\x73\x74\x72\x69\x6e\x67\x69\x66\x79']({'\x65\x72\x72\x6f\x72':_0x382a12 instanceof Error?_0x382a12[_0x315f5a(0xbe)]:_0x5ddc33[_0x315f5a(0x11b)](String,_0x382a12)})};}}async function _0x4f20f3(_0x26201f){const _0x22d654=_0x28c59b,_0x375e24=_0x26201f['\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x73']??[];return Promise[_0x22d654(0x106)](_0x375e24[_0x22d654(0x114)](_0x4f64d3));}return{'\x74\x6f\x6f\x6c\x73':_0x11fb08,'\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x43\x61\x6c\x6c':_0x4f64d3,'\x68\x61\x6e\x64\x6c\x65\x41\x73\x73\x69\x73\x74\x61\x6e\x74\x4d\x65\x73\x73\x61\x67\x65':_0x4f20f3};}async function vercelAiTools(_0x5cf159,_0x31e2e9={}){const _0x552370=a0_0x57547c,_0x27234f={'\x4b\x42\x6f\x56\x6b':_0x552370(0x13e),'\x47\x74\x6e\x56\x4e':function(_0x3272f7,_0x14918c){return _0x3272f7(_0x14918c);}};let _0x2bbe4f;try{_0x2bbe4f=await import('\x61\x69');}catch{throw new Error(_0x27234f[_0x552370(0x139)]);}const _0x553abe=_0x27234f[_0x552370(0x13a)](selectSpecs,_0x31e2e9[_0x552370(0xce)]),_0x25bac9={'\x62\x6f\x78':_0x5cf159,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x31e2e9[_0x552370(0x149)]},_0x38e5ce={};for(const _0x1ed2e3 of _0x553abe){const _0x1baef0=_0x1ed2e3[_0x552370(0x113)](_0x25bac9);_0x38e5ce[_0x1ed2e3['\x6e\x61\x6d\x65']]=_0x2bbe4f[_0x552370(0x115)]({'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x1ed2e3[_0x552370(0x117)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x2bbe4f[_0x552370(0x10d)](_0x1ed2e3[_0x552370(0x11c)]),'\x65\x78\x65\x63\x75\x74\x65':async _0x2d8c72=>{return serializeToolResult(await _0x1baef0(_0x2d8c72));}});}return _0x38e5ce;}export{ALL_FLEET_TOOL_SPECS,ALL_LIFECYCLE_TOOL_SPECS,ALL_TOOL_SPECS,FLEET_TOOL_SPECS,LIFECYCLE_TOOL_SPECS,TOOL_SPECS,anthropicFleetTools,anthropicLifecycleTools,anthropicTools,createMcpServer,mastraFleetTools,mastraTools,openaiFleetTools,openaiLifecycleTools,openaiTools,runCode,vercelAiFleetTools,vercelAiTools};
|
package/dist/auth/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
const a0_0x10a35c=a0_0x442c;(function(_0x5662fa,_0xfec02){const _0x335120=a0_0x442c,_0x2e790c=_0x5662fa();while(!![]){try{const _0x3445f2=-parseInt(_0x335120(0x1a7))/0x1*(parseInt(_0x335120(0x183))/0x2)+parseInt(_0x335120(0x1a9))/0x3*(-parseInt(_0x335120(0x19f))/0x4)+parseInt(_0x335120(0x191))/0x5*(-parseInt(_0x335120(0x17e))/0x6)+parseInt(_0x335120(0x18a))/0x7+parseInt(_0x335120(0x181))/0x8+parseInt(_0x335120(0x190))/0x9*(-parseInt(_0x335120(0x1a0))/0xa)+parseInt(_0x335120(0x178))/0xb;if(_0x3445f2===_0xfec02)break;else _0x2e790c['push'](_0x2e790c['shift']());}catch(_0x5c517f){_0x2e790c['push'](_0x2e790c['shift']());}}}(a0_0x4b35,0x8404e));import{createHmac,timingSafeEqual}from'\x6e\x6f\x64\x65\x3a\x63\x72\x79\x70\x74\x6f';function base64UrlEncode(_0x3a0909){const _0x8c1197=a0_0x442c,_0x14b7df={'\x42\x4b\x73\x55\x6f':function(_0x519c2b,_0xc6b851){return _0x519c2b===_0xc6b851;},'\x62\x77\x51\x79\x57':_0x8c1197(0x1a8)};return(_0x14b7df[_0x8c1197(0x18c)](typeof _0x3a0909,_0x8c1197(0x184))?Buffer[_0x8c1197(0x1a5)](_0x3a0909):_0x3a0909)[_0x8c1197(0x19c)](_0x14b7df[_0x8c1197(0x188)])[_0x8c1197(0x1a2)](/\+/g,'\x2d')['\x72\x65\x70\x6c\x61\x63\x65'](/\//g,'\x5f')[_0x8c1197(0x1a2)](/=+$/,'');}function a0_0x442c(_0x187e16,_0xba7c77){_0x187e16=_0x187e16-0x16d;const _0x4b359f=a0_0x4b35();let _0x442c62=_0x4b359f[_0x187e16];if(a0_0x442c['\x74\x50\x6e\x58\x54\x67']===undefined){var _0x103720=function(_0x4976a7){const _0x1b40e4='\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 _0x304c0e='',_0x4760f1='';for(let _0x4754aa=0x0,_0x17b28f,_0x55a30f,_0x39c759=0x0;_0x55a30f=_0x4976a7['\x63\x68\x61\x72\x41\x74'](_0x39c759++);~_0x55a30f&&(_0x17b28f=_0x4754aa%0x4?_0x17b28f*0x40+_0x55a30f:_0x55a30f,_0x4754aa++%0x4)?_0x304c0e+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0xff&_0x17b28f>>(-0x2*_0x4754aa&0x6)):0x0){_0x55a30f=_0x1b40e4['\x69\x6e\x64\x65\x78\x4f\x66'](_0x55a30f);}for(let _0x3e05a7=0x0,_0x1f9c1f=_0x304c0e['\x6c\x65\x6e\x67\x74\x68'];_0x3e05a7<_0x1f9c1f;_0x3e05a7++){_0x4760f1+='\x25'+('\x30\x30'+_0x304c0e['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x3e05a7)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x10))['\x73\x6c\x69\x63\x65'](-0x2);}return decodeURIComponent(_0x4760f1);};a0_0x442c['\x61\x6b\x48\x6d\x7a\x56']=_0x103720,a0_0x442c['\x55\x6c\x67\x77\x64\x6e']={},a0_0x442c['\x74\x50\x6e\x58\x54\x67']=!![];}const _0x21cac5=_0x4b359f[0x0],_0x4ce284=_0x187e16+_0x21cac5,_0x18b1b=a0_0x442c['\x55\x6c\x67\x77\x64\x6e'][_0x4ce284];return!_0x18b1b?(_0x442c62=a0_0x442c['\x61\x6b\x48\x6d\x7a\x56'](_0x442c62),a0_0x442c['\x55\x6c\x67\x77\x64\x6e'][_0x4ce284]=_0x442c62):_0x442c62=_0x18b1b,_0x442c62;}function decodeBase64UrlToBuffer(_0x25eb09){const _0x374924=a0_0x442c,_0x19b90a={'\x73\x52\x67\x69\x42':'\x62\x61\x73\x65\x36\x34'};if(!/^[A-Za-z0-9_-]*$/['\x74\x65\x73\x74'](_0x25eb09))return null;const _0x28622e=_0x25eb09+'\x3d'[_0x374924(0x186)]((0x4-_0x25eb09['\x6c\x65\x6e\x67\x74\x68']%0x4)%0x4);return Buffer[_0x374924(0x1a5)](_0x28622e[_0x374924(0x1a2)](/-/g,'\x2b')[_0x374924(0x1a2)](/_/g,'\x2f'),_0x19b90a[_0x374924(0x18e)]);}function createSignature(_0x6b15e,_0xcd8047){const _0x1380e1=a0_0x442c;return base64UrlEncode(createHmac(_0x1380e1(0x18b),_0xcd8047)[_0x1380e1(0x1a1)](_0x6b15e)[_0x1380e1(0x171)]());}const JWT_HEADER=base64UrlEncode(JSON[a0_0x10a35c(0x18f)]({'\x61\x6c\x67':'\x48\x53\x32\x35\x36','\x74\x79\x70':'\x4a\x57\x54'}));function issueToken(_0x4e8192,_0x318092,_0x52e68c){const _0x2e5829=a0_0x10a35c,_0x3c04c1={'\x70\x71\x52\x41\x58':function(_0x27fb76,_0x22244c){return _0x27fb76/_0x22244c;},'\x4e\x53\x6b\x66\x6b':function(_0x29849c,_0x59715c){return _0x29849c*_0x59715c;}},_0x304d30=Math[_0x2e5829(0x172)](_0x3c04c1[_0x2e5829(0x16d)](Date[_0x2e5829(0x177)](),0x3e8)),_0x24a9c4={..._0x318092,'\x69\x61\x74':_0x304d30,'\x65\x78\x70':_0x304d30+_0x3c04c1[_0x2e5829(0x194)](_0x52e68c,0x3c)},_0x59d49e=JWT_HEADER+'\x2e'+base64UrlEncode(JSON[_0x2e5829(0x18f)](_0x24a9c4));return _0x59d49e+'\x2e'+createSignature(_0x59d49e,_0x4e8192);}function issueReadToken(_0x1804bd,_0x58a0b2,_0x18bf1a){const _0x9534dc=a0_0x10a35c,_0x1e0ab6={'\x76\x71\x78\x52\x74':_0x9534dc(0x176)};return issueToken(_0x1804bd,{..._0x58a0b2,'\x74\x79\x70':_0x1e0ab6[_0x9534dc(0x17c)]},_0x18bf1a);}function issueSessionScopedToken(_0x44c032,_0x180346,_0x584646){const _0x3010d0=a0_0x10a35c,_0x1e59e4={'\x6a\x4c\x41\x52\x7a':function(_0x4d9f56,_0xc78934,_0x1080c1,_0x22c3fc){return _0x4d9f56(_0xc78934,_0x1080c1,_0x22c3fc);}};return _0x1e59e4[_0x3010d0(0x170)](issueReadToken,_0x44c032,_0x180346,_0x584646);}function issueProjectScopedToken(_0x140565,_0x2ed0b8,_0x2d3ae9){return issueReadToken(_0x140565,_0x2ed0b8,_0x2d3ae9);}function issueBatchScopedToken(_0x48e9ec,_0x4bf63b,_0x3cf725){return issueReadToken(_0x48e9ec,_0x4bf63b,_0x3cf725);}function a0_0x4b35(){const _0x3b935b=['\x44\x68\x72\x53\x74\x77\x4c\x55\x44\x78\x72\x4c\x43\x57','\x43\x32\x4c\x4e\x42\x4d\x4c\x55\x7a\x31\x6e\x4c\x79\x33\x6a\x4c\x44\x61','\x73\x66\x6d\x59\x6e\x74\x79','\x43\x68\x6a\x56','\x42\x67\x76\x55\x7a\x33\x72\x4f','\x42\x4e\x76\x54\x79\x4d\x76\x59','\x7a\x78\x48\x57','\x44\x67\x39\x74\x44\x68\x6a\x50\x42\x4d\x43','\x42\x77\x66\x34','\x42\x31\x50\x65\x75\x67\x4b','\x6e\x64\x4b\x59\x6d\x74\x75\x59\x74\x78\x50\x64\x7a\x68\x66\x36','\x6e\x64\x65\x33\x6f\x64\x69\x33\x6d\x65\x35\x51\x45\x75\x72\x41\x44\x61','\x44\x78\x62\x4b\x79\x78\x72\x4c','\x43\x4d\x76\x57\x42\x67\x66\x4a\x7a\x71','\x79\x77\x6e\x4a\x7a\x78\x6e\x5a','\x43\x33\x62\x53\x41\x78\x71','\x7a\x4e\x6a\x56\x42\x71','\x76\x77\x39\x66\x43\x77\x43','\x6e\x74\x61\x57\x6f\x64\x79\x59\x43\x4e\x72\x49\x42\x76\x72\x4e','\x79\x4d\x66\x5a\x7a\x74\x79\x30','\x6e\x4d\x58\x4a\x74\x4c\x66\x78\x72\x61','\x44\x78\x6e\x4c\x43\x4b\x4c\x4b','\x43\x67\x66\x59\x43\x32\x75','\x43\x68\x66\x73\x71\x76\x47','\x79\x77\x58\x4e','\x75\x67\x44\x4d\x71\x4e\x4f','\x41\x4b\x58\x62\x75\x4e\x4f','\x7a\x67\x4c\x4e\x7a\x78\x6e\x30','\x7a\x4d\x58\x56\x42\x33\x69','\x44\x67\x31\x56\x44\x30\x57','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x65\x4c\x4b','\x75\x65\x48\x79\x77\x78\x61','\x43\x4d\x76\x48\x7a\x61','\x42\x4d\x39\x33','\x6d\x74\x71\x32\x6d\x74\x69\x35\x6e\x4a\x66\x65\x74\x4b\x31\x6d\x45\x4d\x65','\x73\x75\x54\x67\x41\x4d\x4f','\x7a\x75\x66\x4e\x42\x31\x6d','\x79\x32\x58\x56\x79\x32\x54\x74\x41\x32\x76\x33\x75\x32\x76\x4a\x42\x32\x35\x4b\x43\x57','\x44\x4e\x66\x34\x75\x4e\x71','\x7a\x32\x76\x30\x76\x68\x72\x53\x74\x77\x4c\x55\x44\x78\x72\x4c\x43\x57','\x6e\x4c\x50\x72\x41\x75\x44\x63\x41\x47','\x43\x68\x6a\x56\x7a\x68\x76\x4a\x44\x65\x4c\x4b','\x41\x78\x6e\x5a\x44\x77\x76\x64\x42\x32\x58\x53\x79\x77\x6a\x56\x43\x4d\x66\x30\x41\x77\x39\x55','\x6e\x5a\x47\x59\x6d\x5a\x69\x57\x6f\x67\x31\x72\x79\x30\x48\x4a\x72\x57','\x44\x67\x4c\x4c\x43\x47','\x6e\x67\x35\x55\x79\x77\x76\x73\x77\x47','\x43\x33\x72\x59\x41\x77\x35\x4e','\x43\x68\x6a\x56\x41\x4d\x76\x4a\x44\x65\x4c\x4b','\x43\x4d\x76\x57\x7a\x77\x66\x30','\x7a\x67\x39\x4a\x44\x77\x31\x4c\x42\x4e\x72\x6a\x7a\x61','\x79\x4e\x44\x72\x45\x76\x43','\x45\x4c\x66\x66\x72\x68\x75','\x6f\x64\x47\x31\x6e\x64\x6d\x33\x71\x4c\x76\x6c\x76\x77\x35\x33','\x43\x32\x48\x48\x6d\x4a\x75\x32','\x71\x4b\x54\x5a\x76\x77\x38','\x74\x68\x62\x4f\x41\x65\x71','\x43\x31\x6a\x4e\x41\x75\x69','\x43\x33\x72\x59\x41\x77\x35\x4e\x41\x77\x7a\x35','\x6f\x76\x50\x48\x44\x78\x76\x72\x73\x71','\x6d\x74\x65\x5a\x6d\x4a\x6d\x5a\x6d\x65\x72\x78\x73\x65\x72\x66\x42\x71','\x43\x32\x76\x5a\x43\x32\x4c\x56\x42\x4b\x4c\x4b','\x7a\x4e\x6a\x4c\x7a\x71','\x74\x4c\x6e\x52\x7a\x4d\x53'];a0_0x4b35=function(){return _0x3b935b;};return a0_0x4b35();}function issueCollaborationToken(_0x29da1f,_0x2c0ad2,_0x29412a){const _0x44b8d8=a0_0x10a35c,_0x3ffba9={'\x4e\x53\x53\x50\x4e':'\x63\x6f\x6c\x6c\x61\x62\x6f\x72\x61\x74\x69\x6f\x6e'};return issueToken(_0x29da1f,{'\x73\x75\x62':_0x2c0ad2[_0x44b8d8(0x1aa)],'\x73\x69\x64':_0x2c0ad2['\x73\x65\x73\x73\x69\x6f\x6e\x49\x64'],'\x70\x69\x64':_0x2c0ad2[_0x44b8d8(0x17f)],'\x63\x69\x64':_0x2c0ad2[_0x44b8d8(0x174)],'\x74\x79\x70':_0x3ffba9['\x4e\x53\x53\x50\x4e'],'\x70\x72\x6f\x6a\x65\x63\x74\x49\x64':_0x2c0ad2['\x70\x72\x6f\x6a\x65\x63\x74\x49\x64'],'\x64\x6f\x63\x75\x6d\x65\x6e\x74\x49\x64':_0x2c0ad2[_0x44b8d8(0x187)],'\x61\x63\x63\x65\x73\x73':_0x2c0ad2[_0x44b8d8(0x1a3)]},_0x29412a);}function unsafeDecodeToken(_0x89d8f){const _0x388b95=a0_0x10a35c,_0x46c03c={'\x6f\x49\x4a\x45\x41':function(_0x1a4217,_0x2377ff){return _0x1a4217+_0x2377ff;},'\x50\x67\x66\x42\x7a':function(_0x27796a,_0x2550a6){return _0x27796a%_0x2550a6;},'\x7a\x51\x45\x44\x75':function(_0x38c29a,_0x357a59){return _0x38c29a-_0x357a59;},'\x64\x5a\x48\x4d\x46':'\x62\x61\x73\x65\x36\x34'};try{const _0x5cc2d7=_0x89d8f[_0x388b95(0x1a4)]('\x2e');if(_0x5cc2d7[_0x388b95(0x199)]!==0x3)return null;const _0x35ecbb=_0x46c03c['\x6f\x49\x4a\x45\x41'](_0x5cc2d7[0x1],'\x3d'['\x72\x65\x70\x65\x61\x74'](_0x46c03c[_0x388b95(0x16f)](_0x46c03c[_0x388b95(0x189)](0x4,_0x5cc2d7[0x1]['\x6c\x65\x6e\x67\x74\x68']%0x4),0x4))),_0x468856=Buffer[_0x388b95(0x1a5)](_0x35ecbb[_0x388b95(0x1a2)](/-/g,'\x2b')[_0x388b95(0x1a2)](/_/g,'\x2f'),_0x46c03c['\x64\x5a\x48\x4d\x46'])[_0x388b95(0x19c)]();return JSON[_0x388b95(0x1ab)](_0x468856);}catch{return null;}}function verifyToken(_0x1c8b94,_0x329368,_0x5a0021={}){const _0x2a8202=a0_0x10a35c,_0x1dabe5={'\x50\x48\x58\x59\x70':function(_0x196323,_0x394e02){return _0x196323!==_0x394e02;},'\x65\x41\x67\x6f\x53':function(_0x8e4240,_0x5ebc5f){return _0x8e4240||_0x5ebc5f;},'\x47\x79\x4e\x5a\x6c':function(_0x1abcc9,_0x14b805){return _0x1abcc9-_0x14b805;},'\x55\x6f\x45\x71\x67':_0x2a8202(0x1a8),'\x74\x6d\x6f\x77\x4c':_0x2a8202(0x197),'\x6b\x57\x7a\x75\x52':function(_0x2fbe55,_0x22e0cd){return _0x2fbe55/_0x22e0cd;},'\x65\x42\x50\x7a\x6f':_0x2a8202(0x19a),'\x69\x50\x69\x56\x4d':function(_0x5cb012,_0x437c5b){return _0x5cb012+_0x437c5b;}};try{const _0x128555=_0x1c8b94[_0x2a8202(0x1a4)]('\x2e');if(_0x1dabe5[_0x2a8202(0x175)](_0x128555[_0x2a8202(0x199)],0x3))return null;const [_0x514d07,_0x53de60,_0x4793c7]=_0x128555;if(_0x1dabe5[_0x2a8202(0x17a)](!_0x514d07,!_0x53de60)||!_0x4793c7)return null;let _0x12a0b0;try{const _0x218637=_0x514d07+'\x3d'['\x72\x65\x70\x65\x61\x74'](_0x1dabe5['\x47\x79\x4e\x5a\x6c'](0x4,_0x514d07[_0x2a8202(0x199)]%0x4)%0x4),_0x3c6e20=Buffer[_0x2a8202(0x1a5)](_0x218637['\x72\x65\x70\x6c\x61\x63\x65'](/-/g,'\x2b')['\x72\x65\x70\x6c\x61\x63\x65'](/_/g,'\x2f'),_0x1dabe5[_0x2a8202(0x1a6)])['\x74\x6f\x53\x74\x72\x69\x6e\x67']();_0x12a0b0=JSON[_0x2a8202(0x1ab)](_0x3c6e20);}catch{return null;}if(_0x12a0b0[_0x2a8202(0x16e)]!==_0x1dabe5[_0x2a8202(0x173)])return null;const _0x48480b=createSignature(_0x514d07+'\x2e'+_0x53de60,_0x329368),_0x3dba54=decodeBase64UrlToBuffer(_0x4793c7),_0x144b3a=decodeBase64UrlToBuffer(_0x48480b);if(!_0x3dba54||!_0x144b3a)return null;if(_0x3dba54[_0x2a8202(0x199)]!==_0x144b3a[_0x2a8202(0x199)])return null;if(!timingSafeEqual(_0x3dba54,_0x144b3a))return null;const _0x17d563=unsafeDecodeToken(_0x1c8b94);if(!_0x17d563)return null;const _0x4c6294=Math[_0x2a8202(0x172)](_0x1dabe5['\x6b\x57\x7a\x75\x52'](Date[_0x2a8202(0x177)](),0x3e8)),_0x59a6f8=Math[_0x2a8202(0x19d)](0x0,_0x5a0021[_0x2a8202(0x17b)]??0x0);if(typeof _0x17d563[_0x2a8202(0x19b)]!==_0x1dabe5['\x65\x42\x50\x7a\x6f']||_0x1dabe5['\x69\x50\x69\x56\x4d'](_0x17d563[_0x2a8202(0x19b)],_0x59a6f8)<_0x4c6294)return null;return _0x17d563;}catch{return null;}}function getTokenTTL(_0xca6792){const _0xcf33cc=a0_0x10a35c,_0x375831={'\x51\x46\x79\x6e\x50':function(_0x85f219,_0x2130e0){return _0x85f219/_0x2130e0;}},_0xaf99ea=Math[_0xcf33cc(0x172)](_0x375831['\x51\x46\x79\x6e\x50'](Date['\x6e\x6f\x77'](),0x3e8));return _0xca6792[_0xcf33cc(0x19b)]-_0xaf99ea;}function isTokenExpiringSoon(_0x13e0d6,_0x1ba12b=0x3c){const _0x1b1b0a=a0_0x10a35c,_0x46873f={'\x6f\x5a\x44\x50\x69':function(_0x38a1ac,_0xbb4a8c){return _0x38a1ac<=_0xbb4a8c;}};return _0x46873f[_0x1b1b0a(0x19e)](getTokenTTL(_0x13e0d6),_0x1ba12b);}var ProductTokenIssuer=class{[a0_0x10a35c(0x17f)];[a0_0x10a35c(0x196)];[a0_0x10a35c(0x195)];constructor(_0x3cb806){const _0xa7ac43=a0_0x10a35c;this[_0xa7ac43(0x17f)]=_0x3cb806[_0xa7ac43(0x17f)],this[_0xa7ac43(0x196)]=_0x3cb806[_0xa7ac43(0x196)],this[_0xa7ac43(0x195)]={'\x66\x72\x65\x65':_0x3cb806['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73']?.[_0xa7ac43(0x193)]??0xf,'\x70\x72\x6f':_0x3cb806[_0xa7ac43(0x195)]?.[_0xa7ac43(0x198)]??0xf0,'\x65\x6e\x74\x65\x72\x70\x72\x69\x73\x65':_0x3cb806[_0xa7ac43(0x195)]?.['\x65\x6e\x74\x65\x72\x70\x72\x69\x73\x65']??0x1e0};}['\x69\x73\x73\x75\x65'](_0x4e87a7){const _0x43f785=a0_0x10a35c,_0x40dd1c=_0x4e87a7[_0x43f785(0x182)]??'\x66\x72\x65\x65',_0x1f704=this[_0x43f785(0x195)][_0x40dd1c]??this['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73'][_0x43f785(0x193)];return{'\x74\x6f\x6b\x65\x6e':issueReadToken(this[_0x43f785(0x196)],{'\x73\x75\x62':_0x4e87a7[_0x43f785(0x1aa)],'\x73\x69\x64':_0x4e87a7['\x73\x65\x73\x73\x69\x6f\x6e\x49\x64'],'\x70\x69\x64':this[_0x43f785(0x17f)],'\x63\x69\x64':_0x4e87a7[_0x43f785(0x174)]},_0x1f704),'\x65\x78\x70\x69\x72\x65\x73\x41\x74':Math[_0x43f785(0x172)](Date[_0x43f785(0x177)]()/0x3e8)+_0x1f704*0x3c};}[a0_0x10a35c(0x180)](_0x63ecc0){const _0x16186f=a0_0x10a35c,_0x4c4b4f={'\x49\x4b\x46\x6a\x6a':_0x16186f(0x193),'\x4c\x70\x68\x68\x44':function(_0x2107e2,_0x57559c){return _0x2107e2+_0x57559c;}},_0x51a048=_0x63ecc0['\x74\x69\x65\x72']??_0x4c4b4f[_0x16186f(0x179)],_0x2b9625=this[_0x16186f(0x195)][_0x51a048]??this[_0x16186f(0x195)][_0x16186f(0x193)];return{'\x74\x6f\x6b\x65\x6e':issueCollaborationToken(this[_0x16186f(0x196)],{'\x75\x73\x65\x72\x49\x64':_0x63ecc0[_0x16186f(0x1aa)],'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x63ecc0[_0x16186f(0x192)],'\x70\x72\x6f\x64\x75\x63\x74\x49\x64':this[_0x16186f(0x17f)],'\x70\x72\x6f\x6a\x65\x63\x74\x49\x64':_0x63ecc0[_0x16186f(0x185)],'\x64\x6f\x63\x75\x6d\x65\x6e\x74\x49\x64':_0x63ecc0[_0x16186f(0x187)],'\x61\x63\x63\x65\x73\x73':_0x63ecc0[_0x16186f(0x1a3)],'\x73\x61\x6e\x64\x62\x6f\x78\x49\x64':_0x63ecc0['\x73\x61\x6e\x64\x62\x6f\x78\x49\x64']},_0x2b9625),'\x65\x78\x70\x69\x72\x65\x73\x41\x74':_0x4c4b4f[_0x16186f(0x18d)](Math['\x66\x6c\x6f\x6f\x72'](Date['\x6e\x6f\x77']()/0x3e8),_0x2b9625*0x3c)};}[a0_0x10a35c(0x17d)](_0x11f83f=a0_0x10a35c(0x193)){const _0x58af4a=a0_0x10a35c;return this[_0x58af4a(0x195)][_0x11f83f]??this[_0x58af4a(0x195)][_0x58af4a(0x193)];}};export{ProductTokenIssuer,getTokenTTL,isTokenExpiringSoon,issueBatchScopedToken,issueCollaborationToken,issueProjectScopedToken,issueReadToken,issueSessionScopedToken,unsafeDecodeToken,verifyToken};
|
|
1
|
+
const a0_0xbe7b03=a0_0x44b9;(function(_0x55ea6b,_0xe2b4b1){const _0x345dc2=a0_0x44b9,_0x4edc6a=_0x55ea6b();while(!![]){try{const _0x53e974=parseInt(_0x345dc2(0x207))/0x1+-parseInt(_0x345dc2(0x210))/0x2+-parseInt(_0x345dc2(0x228))/0x3+-parseInt(_0x345dc2(0x1f9))/0x4*(parseInt(_0x345dc2(0x21b))/0x5)+parseInt(_0x345dc2(0x1f6))/0x6+-parseInt(_0x345dc2(0x1f0))/0x7*(parseInt(_0x345dc2(0x216))/0x8)+parseInt(_0x345dc2(0x21e))/0x9;if(_0x53e974===_0xe2b4b1)break;else _0x4edc6a['push'](_0x4edc6a['shift']());}catch(_0xa9c5e5){_0x4edc6a['push'](_0x4edc6a['shift']());}}}(a0_0x20cb,0x5bde8));import{createHmac,timingSafeEqual}from'\x6e\x6f\x64\x65\x3a\x63\x72\x79\x70\x74\x6f';function a0_0x20cb(){const _0x511033=['\x43\x68\x6a\x56\x41\x4d\x76\x4a\x44\x65\x4c\x4b','\x79\x32\x39\x53\x42\x67\x66\x49\x42\x33\x6a\x48\x44\x67\x4c\x56\x42\x47','\x44\x78\x6e\x4c\x43\x4b\x4c\x4b','\x7a\x32\x76\x30\x76\x68\x72\x53\x74\x77\x4c\x55\x44\x78\x72\x4c\x43\x57','\x43\x33\x62\x53\x41\x78\x71','\x43\x4d\x76\x48\x7a\x61','\x44\x67\x4c\x4c\x43\x47','\x41\x78\x6e\x5a\x44\x77\x75','\x43\x32\x4c\x4e\x42\x4d\x4c\x55\x7a\x31\x6e\x4c\x79\x33\x6a\x4c\x44\x61','\x7a\x4e\x6a\x4c\x7a\x71','\x6e\x4a\x61\x35\x6f\x64\x6d\x31\x74\x76\x50\x35\x43\x75\x39\x74','\x79\x30\x48\x4a\x71\x75\x34','\x73\x66\x6d\x59\x6e\x74\x79','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x65\x4c\x4b','\x79\x4e\x44\x78\x79\x30\x57','\x7a\x30\x72\x59\x75\x67\x4b','\x72\x75\x48\x59\x7a\x4d\x34','\x43\x4d\x76\x57\x42\x67\x66\x4a\x7a\x71','\x73\x67\x50\x53\x44\x31\x6d','\x6d\x74\x61\x34\x6d\x5a\x61\x59\x6d\x67\x6a\x63\x42\x33\x62\x30\x45\x71','\x79\x33\x6e\x76\x41\x76\x69','\x73\x4c\x44\x75','\x72\x68\x66\x66\x73\x78\x61','\x43\x32\x76\x5a\x43\x32\x4c\x56\x42\x4b\x4c\x4b','\x44\x65\x31\x49\x43\x32\x57','\x6d\x4a\x72\x53\x41\x77\x6a\x4c\x44\x4d\x47','\x42\x31\x7a\x34\x75\x4e\x65','\x43\x68\x6a\x56\x7a\x68\x76\x4a\x44\x65\x4c\x4b','\x74\x65\x4c\x6e\x75\x32\x57','\x77\x65\x6a\x4f\x42\x68\x4f','\x6d\x74\x62\x6f\x79\x32\x6a\x75\x77\x77\x6d','\x44\x67\x58\x32\x75\x4e\x6d','\x42\x4e\x76\x54\x79\x4d\x76\x59','\x6d\x74\x75\x58\x6d\x74\x47\x57\x6f\x74\x6a\x41\x72\x76\x7a\x68\x42\x32\x79','\x43\x32\x48\x48\x6d\x4a\x75\x32','\x43\x67\x66\x59\x43\x32\x75','\x43\x33\x72\x59\x41\x77\x35\x4e\x41\x77\x7a\x35','\x7a\x77\x35\x30\x7a\x78\x6a\x57\x43\x4d\x4c\x5a\x7a\x71','\x42\x4d\x39\x33','\x7a\x4d\x58\x56\x42\x33\x69','\x43\x68\x6a\x56','\x44\x67\x76\x5a\x44\x61','\x44\x67\x39\x74\x44\x68\x6a\x50\x42\x4d\x43','\x6d\x4a\x61\x33\x6d\x5a\x6d\x57\x6f\x77\x4c\x6b\x73\x67\x48\x74\x71\x71','\x7a\x78\x48\x57','\x44\x68\x72\x53\x74\x77\x4c\x55\x44\x78\x72\x4c\x43\x57','\x79\x4d\x66\x5a\x7a\x74\x79\x30','\x6d\x74\x75\x5a\x6d\x74\x6d\x34\x6d\x31\x7a\x68\x73\x31\x44\x48\x75\x57','\x79\x77\x6e\x4a\x7a\x78\x6e\x5a','\x41\x75\x44\x76\x7a\x68\x4f','\x7a\x4e\x6a\x56\x42\x71','\x42\x67\x76\x55\x7a\x33\x72\x4f','\x71\x31\x6a\x4f\x41\x75\x65','\x6e\x5a\x75\x5a\x6d\x64\x7a\x4d\x73\x75\x58\x33\x44\x4b\x38','\x74\x4d\x58\x67\x77\x67\x4f','\x45\x67\x31\x6d\x74\x77\x71','\x6e\x5a\x6d\x35\x6d\x74\x7a\x35\x74\x66\x48\x72\x73\x4d\x38','\x7a\x67\x39\x4a\x44\x77\x31\x4c\x42\x4e\x72\x6a\x7a\x61','\x79\x77\x58\x4e','\x43\x4d\x76\x57\x7a\x77\x66\x30'];a0_0x20cb=function(){return _0x511033;};return a0_0x20cb();}function base64UrlEncode(_0x14faf7){const _0x1cef35=a0_0x44b9,_0x108a67={'\x4c\x63\x48\x6d\x69':'\x73\x74\x72\x69\x6e\x67','\x74\x4d\x62\x73\x6c':'\x62\x61\x73\x65\x36\x34'};return(typeof _0x14faf7===_0x108a67['\x4c\x63\x48\x6d\x69']?Buffer[_0x1cef35(0x1f3)](_0x14faf7):_0x14faf7)[_0x1cef35(0x227)](_0x108a67[_0x1cef35(0x215)])[_0x1cef35(0x20e)](/\+/g,'\x2d')[_0x1cef35(0x20e)](/\//g,'\x5f')[_0x1cef35(0x20e)](/=+$/,'');}function decodeBase64UrlToBuffer(_0x34c9c2){const _0x295159=a0_0x44b9,_0x121735={'\x74\x6c\x76\x52\x73':function(_0x3aed8c,_0x1154a1){return _0x3aed8c%_0x1154a1;}};if(!/^[A-Za-z0-9_-]*$/[_0x295159(0x226)](_0x34c9c2))return null;const _0x22ebf5=_0x34c9c2+'\x3d'[_0x295159(0x1fc)]((0x4-_0x121735[_0x295159(0x21c)](_0x34c9c2[_0x295159(0x1f4)],0x4))%0x4);return Buffer[_0x295159(0x1f3)](_0x22ebf5['\x72\x65\x70\x6c\x61\x63\x65'](/-/g,'\x2b')[_0x295159(0x20e)](/_/g,'\x2f'),_0x295159(0x1ef));}function createSignature(_0x887347,_0x638932){const _0x4e8f06=a0_0x44b9,_0x82d50e={'\x44\x71\x45\x49\x70':function(_0x442d12,_0x5c4904,_0x3f8483){return _0x442d12(_0x5c4904,_0x3f8483);},'\x67\x44\x72\x50\x69':_0x4e8f06(0x21f)};return base64UrlEncode(_0x82d50e[_0x4e8f06(0x213)](createHmac,_0x82d50e[_0x4e8f06(0x20c)],_0x638932)['\x75\x70\x64\x61\x74\x65'](_0x887347)['\x64\x69\x67\x65\x73\x74']());}const JWT_HEADER=base64UrlEncode(JSON[a0_0xbe7b03(0x221)]({'\x61\x6c\x67':a0_0xbe7b03(0x209),'\x74\x79\x70':a0_0xbe7b03(0x212)}));function issueToken(_0x5b36d4,_0x54b0bd,_0x1fa3d1){const _0x5ae4c9=a0_0xbe7b03,_0x1e115b={'\x6f\x56\x78\x52\x71':function(_0x212246,_0x3c9c96){return _0x212246/_0x3c9c96;},'\x70\x73\x76\x7a\x49':function(_0x4bef36,_0xbdc0a7){return _0x4bef36+_0xbdc0a7;}},_0x2cec80=Math[_0x5ae4c9(0x224)](_0x1e115b[_0x5ae4c9(0x217)](Date[_0x5ae4c9(0x223)](),0x3e8)),_0x321069={..._0x54b0bd,'\x69\x61\x74':_0x2cec80,'\x65\x78\x70':_0x1e115b['\x70\x73\x76\x7a\x49'](_0x2cec80,_0x1fa3d1*0x3c)},_0x132db7=JWT_HEADER+'\x2e'+base64UrlEncode(JSON[_0x5ae4c9(0x221)](_0x321069));return _0x132db7+'\x2e'+createSignature(_0x132db7,_0x5b36d4);}function issueReadToken(_0x197d32,_0x493b52,_0x130299){const _0x2a1b19=a0_0xbe7b03;return issueToken(_0x197d32,{..._0x493b52,'\x74\x79\x70':_0x2a1b19(0x202)},_0x130299);}function issueSessionScopedToken(_0x58d130,_0x288e5e,_0x41c001){return issueReadToken(_0x58d130,_0x288e5e,_0x41c001);}function issueProjectScopedToken(_0x4f68b3,_0x595fa3,_0x311fe8){const _0xd07ea0={'\x7a\x66\x58\x48\x70':function(_0x3c3c7e,_0x57b732,_0xa2140f,_0x30cf52){return _0x3c3c7e(_0x57b732,_0xa2140f,_0x30cf52);}};return _0xd07ea0['\x7a\x66\x58\x48\x70'](issueReadToken,_0x4f68b3,_0x595fa3,_0x311fe8);}function issueBatchScopedToken(_0xc4ee11,_0x12042a,_0x5bc728){return issueReadToken(_0xc4ee11,_0x12042a,_0x5bc728);}function issueCollaborationToken(_0x4d0e5a,_0x34a320,_0x568ea2){const _0x55887c=a0_0xbe7b03,_0x3d133c={'\x73\x52\x4f\x58\x67':function(_0x1d9ae9,_0x2b498b,_0x45787d,_0x115d9e){return _0x1d9ae9(_0x2b498b,_0x45787d,_0x115d9e);},'\x47\x4a\x62\x65\x58':_0x55887c(0x1fe)};return _0x3d133c['\x73\x52\x4f\x58\x67'](issueToken,_0x4d0e5a,{'\x73\x75\x62':_0x34a320['\x75\x73\x65\x72\x49\x64'],'\x73\x69\x64':_0x34a320['\x73\x65\x73\x73\x69\x6f\x6e\x49\x64'],'\x70\x69\x64':_0x34a320[_0x55887c(0x218)],'\x63\x69\x64':_0x34a320[_0x55887c(0x20a)],'\x74\x79\x70':_0x3d133c['\x47\x4a\x62\x65\x58'],'\x70\x72\x6f\x6a\x65\x63\x74\x49\x64':_0x34a320[_0x55887c(0x1fd)],'\x64\x6f\x63\x75\x6d\x65\x6e\x74\x49\x64':_0x34a320[_0x55887c(0x1fa)],'\x61\x63\x63\x65\x73\x73':_0x34a320[_0x55887c(0x1f1)]},_0x568ea2);}function unsafeDecodeToken(_0x40ea12){const _0x2a56b0=a0_0xbe7b03,_0x255916={'\x43\x52\x68\x69\x41':function(_0x2b57f5,_0x228ea9){return _0x2b57f5!==_0x228ea9;},'\x75\x61\x41\x57\x72':function(_0x204b43,_0x59075e){return _0x204b43+_0x59075e;},'\x69\x47\x55\x64\x7a':function(_0xa37a57,_0x5ede5b){return _0xa37a57%_0x5ede5b;},'\x62\x77\x57\x63\x4c':_0x2a56b0(0x1ef)};try{const _0x4a146b=_0x40ea12[_0x2a56b0(0x201)]('\x2e');if(_0x255916[_0x2a56b0(0x1f5)](_0x4a146b['\x6c\x65\x6e\x67\x74\x68'],0x3))return null;const _0x415929=_0x255916['\x75\x61\x41\x57\x72'](_0x4a146b[0x1],'\x3d'[_0x2a56b0(0x1fc)]((0x4-_0x255916[_0x2a56b0(0x1f2)](_0x4a146b[0x1][_0x2a56b0(0x1f4)],0x4))%0x4)),_0x17f565=Buffer['\x66\x72\x6f\x6d'](_0x415929[_0x2a56b0(0x20e)](/-/g,'\x2b')[_0x2a56b0(0x20e)](/_/g,'\x2f'),_0x255916[_0x2a56b0(0x20b)])[_0x2a56b0(0x227)]();return JSON[_0x2a56b0(0x220)](_0x17f565);}catch{return null;}}function verifyToken(_0x1d4c78,_0x235022,_0x1281ce={}){const _0x2f0e67=a0_0xbe7b03,_0x5b03e4={'\x78\x6d\x4c\x4d\x64':function(_0x1d7f8e,_0xd65deb){return _0x1d7f8e||_0xd65deb;},'\x58\x42\x68\x6c\x7a':function(_0x124ed4,_0x1a046f){return _0x124ed4%_0x1a046f;},'\x4c\x49\x4d\x53\x6c':'\x62\x61\x73\x65\x36\x34','\x63\x73\x55\x69\x52':function(_0x109ce9,_0x4c9649,_0x2002e4){return _0x109ce9(_0x4c9649,_0x2002e4);},'\x63\x48\x63\x41\x4e':function(_0x3f742f,_0x45eaac){return _0x3f742f(_0x45eaac);},'\x4e\x6c\x46\x58\x6a':function(_0x592a58,_0x3bc3e4){return _0x592a58!==_0x3bc3e4;}};try{const _0x1f2b0c=_0x1d4c78[_0x2f0e67(0x201)]('\x2e');if(_0x1f2b0c[_0x2f0e67(0x1f4)]!==0x3)return null;const [_0x5dd9be,_0x58d329,_0xbc131]=_0x1f2b0c;if(_0x5b03e4[_0x2f0e67(0x1f8)](!_0x5dd9be,!_0x58d329)||!_0xbc131)return null;let _0x554fd9;try{const _0x197865=_0x5dd9be+'\x3d'[_0x2f0e67(0x1fc)](_0x5b03e4['\x58\x42\x68\x6c\x7a'](0x4-_0x5b03e4[_0x2f0e67(0x21a)](_0x5dd9be[_0x2f0e67(0x1f4)],0x4),0x4)),_0x5b2ac2=Buffer[_0x2f0e67(0x1f3)](_0x197865['\x72\x65\x70\x6c\x61\x63\x65'](/-/g,'\x2b')['\x72\x65\x70\x6c\x61\x63\x65'](/_/g,'\x2f'),_0x5b03e4[_0x2f0e67(0x219)])[_0x2f0e67(0x227)]();_0x554fd9=JSON[_0x2f0e67(0x220)](_0x5b2ac2);}catch{return null;}if(_0x554fd9[_0x2f0e67(0x1fb)]!=='\x48\x53\x32\x35\x36')return null;const _0x2fd546=_0x5b03e4[_0x2f0e67(0x211)](createSignature,_0x5dd9be+'\x2e'+_0x58d329,_0x235022),_0xef4224=_0x5b03e4['\x63\x48\x63\x41\x4e'](decodeBase64UrlToBuffer,_0xbc131),_0x444199=_0x5b03e4[_0x2f0e67(0x208)](decodeBase64UrlToBuffer,_0x2fd546);if(!_0xef4224||!_0x444199)return null;if(_0xef4224[_0x2f0e67(0x1f4)]!==_0x444199[_0x2f0e67(0x1f4)])return null;if(!timingSafeEqual(_0xef4224,_0x444199))return null;const _0x8b2c9e=unsafeDecodeToken(_0x1d4c78);if(!_0x8b2c9e)return null;const _0x1dfbdc=Math[_0x2f0e67(0x224)](Date[_0x2f0e67(0x223)]()/0x3e8),_0x55ed21=Math['\x6d\x61\x78'](0x0,_0x1281ce['\x63\x6c\x6f\x63\x6b\x53\x6b\x65\x77\x53\x65\x63\x6f\x6e\x64\x73']??0x0);if(_0x5b03e4[_0x2f0e67(0x1f7)](typeof _0x8b2c9e[_0x2f0e67(0x229)],_0x2f0e67(0x21d))||_0x8b2c9e[_0x2f0e67(0x229)]+_0x55ed21<_0x1dfbdc)return null;return _0x8b2c9e;}catch{return null;}}function getTokenTTL(_0x313e67){const _0x2d251a=a0_0xbe7b03,_0x2d8202=Math['\x66\x6c\x6f\x6f\x72'](Date['\x6e\x6f\x77']()/0x3e8);return _0x313e67[_0x2d251a(0x229)]-_0x2d8202;}function a0_0x44b9(_0x476e2b,_0x3bc238){_0x476e2b=_0x476e2b-0x1ee;const _0x20cb6c=a0_0x20cb();let _0x44b90b=_0x20cb6c[_0x476e2b];if(a0_0x44b9['\x58\x46\x6a\x65\x45\x4d']===undefined){var _0x3546a8=function(_0x22bb7b){const _0x3f3e9d='\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 _0x3157ca='',_0x1b9794='';for(let _0x121e78=0x0,_0x11465a,_0x46dc36,_0x4d525a=0x0;_0x46dc36=_0x22bb7b['\x63\x68\x61\x72\x41\x74'](_0x4d525a++);~_0x46dc36&&(_0x11465a=_0x121e78%0x4?_0x11465a*0x40+_0x46dc36:_0x46dc36,_0x121e78++%0x4)?_0x3157ca+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0xff&_0x11465a>>(-0x2*_0x121e78&0x6)):0x0){_0x46dc36=_0x3f3e9d['\x69\x6e\x64\x65\x78\x4f\x66'](_0x46dc36);}for(let _0x73931a=0x0,_0xcfd164=_0x3157ca['\x6c\x65\x6e\x67\x74\x68'];_0x73931a<_0xcfd164;_0x73931a++){_0x1b9794+='\x25'+('\x30\x30'+_0x3157ca['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x73931a)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x10))['\x73\x6c\x69\x63\x65'](-0x2);}return decodeURIComponent(_0x1b9794);};a0_0x44b9['\x4d\x4a\x76\x6e\x51\x50']=_0x3546a8,a0_0x44b9['\x59\x71\x74\x52\x64\x57']={},a0_0x44b9['\x58\x46\x6a\x65\x45\x4d']=!![];}const _0x18e73c=_0x20cb6c[0x0],_0x1d04ba=_0x476e2b+_0x18e73c,_0x332d2f=a0_0x44b9['\x59\x71\x74\x52\x64\x57'][_0x1d04ba];return!_0x332d2f?(_0x44b90b=a0_0x44b9['\x4d\x4a\x76\x6e\x51\x50'](_0x44b90b),a0_0x44b9['\x59\x71\x74\x52\x64\x57'][_0x1d04ba]=_0x44b90b):_0x44b90b=_0x332d2f,_0x44b90b;}function isTokenExpiringSoon(_0x3e3a26,_0x2caed8=0x3c){const _0xa59934=a0_0xbe7b03,_0x1c35c0={'\x48\x6a\x6c\x77\x53':function(_0x2ef852,_0x183238){return _0x2ef852(_0x183238);}};return _0x1c35c0[_0xa59934(0x20f)](getTokenTTL,_0x3e3a26)<=_0x2caed8;}var ProductTokenIssuer=class{['\x70\x72\x6f\x64\x75\x63\x74\x49\x64'];[a0_0xbe7b03(0x205)];[a0_0xbe7b03(0x1ee)];constructor(_0x3d398a){const _0x55022e=a0_0xbe7b03;this[_0x55022e(0x218)]=_0x3d398a[_0x55022e(0x218)],this[_0x55022e(0x205)]=_0x3d398a[_0x55022e(0x205)],this['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73']={'\x66\x72\x65\x65':_0x3d398a[_0x55022e(0x1ee)]?.[_0x55022e(0x206)]??0xf,'\x70\x72\x6f':_0x3d398a[_0x55022e(0x1ee)]?.[_0x55022e(0x225)]??0xf0,'\x65\x6e\x74\x65\x72\x70\x72\x69\x73\x65':_0x3d398a['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73']?.[_0x55022e(0x222)]??0x1e0};}[a0_0xbe7b03(0x204)](_0x3abc83){const _0x24cff1=a0_0xbe7b03,_0x29af62={'\x45\x48\x72\x66\x6e':function(_0x260eb5,_0x4cdd9a){return _0x260eb5*_0x4cdd9a;}},_0x4f5685=_0x3abc83[_0x24cff1(0x203)]??_0x24cff1(0x206),_0x5b57a1=this[_0x24cff1(0x1ee)][_0x4f5685]??this['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73']['\x66\x72\x65\x65'];return{'\x74\x6f\x6b\x65\x6e':issueReadToken(this[_0x24cff1(0x205)],{'\x73\x75\x62':_0x3abc83[_0x24cff1(0x1ff)],'\x73\x69\x64':_0x3abc83[_0x24cff1(0x214)],'\x70\x69\x64':this[_0x24cff1(0x218)],'\x63\x69\x64':_0x3abc83[_0x24cff1(0x20a)]},_0x5b57a1),'\x65\x78\x70\x69\x72\x65\x73\x41\x74':Math['\x66\x6c\x6f\x6f\x72'](Date['\x6e\x6f\x77']()/0x3e8)+_0x29af62[_0x24cff1(0x20d)](_0x5b57a1,0x3c)};}['\x69\x73\x73\x75\x65\x43\x6f\x6c\x6c\x61\x62\x6f\x72\x61\x74\x69\x6f\x6e'](_0x357b6d){const _0x40cba5=a0_0xbe7b03,_0x4148a2=_0x357b6d[_0x40cba5(0x203)]??_0x40cba5(0x206),_0x48973c=this['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73'][_0x4148a2]??this[_0x40cba5(0x1ee)]['\x66\x72\x65\x65'];return{'\x74\x6f\x6b\x65\x6e':issueCollaborationToken(this[_0x40cba5(0x205)],{'\x75\x73\x65\x72\x49\x64':_0x357b6d[_0x40cba5(0x1ff)],'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x357b6d['\x73\x65\x73\x73\x69\x6f\x6e\x49\x64'],'\x70\x72\x6f\x64\x75\x63\x74\x49\x64':this[_0x40cba5(0x218)],'\x70\x72\x6f\x6a\x65\x63\x74\x49\x64':_0x357b6d['\x70\x72\x6f\x6a\x65\x63\x74\x49\x64'],'\x64\x6f\x63\x75\x6d\x65\x6e\x74\x49\x64':_0x357b6d[_0x40cba5(0x1fa)],'\x61\x63\x63\x65\x73\x73':_0x357b6d[_0x40cba5(0x1f1)],'\x73\x61\x6e\x64\x62\x6f\x78\x49\x64':_0x357b6d[_0x40cba5(0x20a)]},_0x48973c),'\x65\x78\x70\x69\x72\x65\x73\x41\x74':Math[_0x40cba5(0x224)](Date[_0x40cba5(0x223)]()/0x3e8)+_0x48973c*0x3c};}[a0_0xbe7b03(0x200)](_0x56bc03=a0_0xbe7b03(0x206)){const _0x42f9f6=a0_0xbe7b03;return this[_0x42f9f6(0x1ee)][_0x56bc03]??this[_0x42f9f6(0x1ee)][_0x42f9f6(0x206)];}};export{ProductTokenIssuer,getTokenTTL,isTokenExpiringSoon,issueBatchScopedToken,issueCollaborationToken,issueProjectScopedToken,issueReadToken,issueSessionScopedToken,unsafeDecodeToken,verifyToken};
|