@tangle-network/sandbox 0.4.3 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
- import { F as CodeExecutionOptions, I as CodeExecutionResult, L as CodeLanguage, n as SandboxInstance, z as CodeResultPart } from "../sandbox-0XVWuuJR.js";
2
- import { i as SandboxClient } from "../client-luMZjrob.js";
1
+ import { F as CodeExecutionOptions, I as CodeExecutionResult, L as CodeLanguage, n as SandboxInstance, z as CodeResultPart } from "../sandbox-Dyf07Ckv.js";
2
+ import { i as SandboxClient } from "../client-DMkVWoYk.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
@@ -315,6 +315,93 @@ declare function openaiFleetTools(client: SandboxClient, options?: FleetToolPack
315
315
  declare function vercelAiFleetTools(client: SandboxClient, options?: FleetToolPackOptions): Promise<Record<string, unknown>>;
316
316
  declare function mastraFleetTools(client: SandboxClient, options?: FleetToolPackOptions): Promise<Record<string, unknown>>;
317
317
  //#endregion
318
+ //#region src/agent/tools/lifecycle/_specs.d.ts
319
+ interface LifecycleToolHandlerContext {
320
+ client: SandboxClient;
321
+ }
322
+ interface LifecycleToolSpec<TArgs = Record<string, unknown>, TResult = unknown> {
323
+ name: string;
324
+ description: string;
325
+ inputSchema: ToolJSONSchema;
326
+ makeHandler: (ctx: LifecycleToolHandlerContext) => (args: TArgs) => Promise<TResult>;
327
+ }
328
+ declare const LIFECYCLE_TOOL_SPECS: {
329
+ readonly sandbox_create: LifecycleToolSpec<{
330
+ environment?: string;
331
+ name?: string;
332
+ }, unknown>;
333
+ readonly sandbox_run_command: LifecycleToolSpec<{
334
+ sandbox_id: string;
335
+ command: string;
336
+ cwd?: string;
337
+ timeout_ms?: number;
338
+ }, unknown>;
339
+ readonly sandbox_destroy: LifecycleToolSpec<{
340
+ sandbox_id: string;
341
+ }, unknown>;
342
+ };
343
+ type LifecycleToolName = keyof typeof LIFECYCLE_TOOL_SPECS;
344
+ //#endregion
345
+ //#region src/agent/tools/lifecycle/index.d.ts
346
+ interface LifecycleToolPackOptions {
347
+ /** Which lifecycle tools to expose. Defaults to all three. */
348
+ allow?: LifecycleToolName[];
349
+ }
350
+ interface AnthropicLifecycleTool {
351
+ name: string;
352
+ description: string;
353
+ input_schema: {
354
+ type: "object";
355
+ properties: Record<string, unknown>;
356
+ required?: string[];
357
+ additionalProperties?: boolean;
358
+ };
359
+ }
360
+ interface AnthropicLifecycleToolPack {
361
+ tools: AnthropicLifecycleTool[];
362
+ handleToolUse(block: {
363
+ type: "tool_use";
364
+ id: string;
365
+ name: string;
366
+ input: Record<string, unknown>;
367
+ }): Promise<{
368
+ type: "tool_result";
369
+ tool_use_id: string;
370
+ content: string;
371
+ is_error?: boolean;
372
+ }>;
373
+ }
374
+ declare function anthropicLifecycleTools(client: SandboxClient, options?: LifecycleToolPackOptions): AnthropicLifecycleToolPack;
375
+ interface OpenAILifecycleTool {
376
+ type: "function";
377
+ function: {
378
+ name: string;
379
+ description: string;
380
+ parameters: {
381
+ type: "object";
382
+ properties: Record<string, unknown>;
383
+ required?: string[];
384
+ additionalProperties?: boolean;
385
+ };
386
+ };
387
+ }
388
+ interface OpenAILifecycleToolPack {
389
+ tools: OpenAILifecycleTool[];
390
+ handleToolCall(call: {
391
+ id: string;
392
+ type?: "function";
393
+ function: {
394
+ name: string;
395
+ arguments: string;
396
+ };
397
+ }): Promise<{
398
+ role: "tool";
399
+ tool_call_id: string;
400
+ content: string;
401
+ }>;
402
+ }
403
+ declare function openaiLifecycleTools(client: SandboxClient, options?: LifecycleToolPackOptions): OpenAILifecycleToolPack;
404
+ //#endregion
318
405
  //#region src/agent/tools/mastra.d.ts
319
406
  interface MastraToolPackOptions {
320
407
  allow?: ToolName[];
@@ -430,4 +517,4 @@ type AnyTool = unknown;
430
517
  */
431
518
  declare function vercelAiTools(box: SandboxInstance, options?: VercelAiToolPackOptions): Promise<Record<string, AnyTool>>;
432
519
  //#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 };
520
+ export { 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, type FleetToolName, type FleetToolPackOptions, type LifecycleToolName, type LifecycleToolPackOptions, type MastraToolPackOptions, type McpServerHandle, type McpServerOptions, type OpenAIFleetTool, type OpenAIFleetToolPack, type OpenAILifecycleTool, type OpenAILifecycleToolPack, type OpenAITool, type OpenAIToolCall, type OpenAIToolPack, type OpenAIToolPackOptions, type OpenAIToolResultMessage, type ToolName, type VercelAiToolPackOptions, anthropicFleetTools, anthropicLifecycleTools, anthropicTools, createMcpServer, mastraFleetTools, mastraTools, openaiFleetTools, openaiLifecycleTools, openaiTools, runCode, vercelAiFleetTools, vercelAiTools };
@@ -1 +1 @@
1
- const a0_0x22eb98=a0_0x50b7;(function(_0x178a1b,_0x221ca1){const _0x1a9ac8=a0_0x50b7,_0x372aa8=_0x178a1b();while(!![]){try{const _0x4f2129=parseInt(_0x1a9ac8(0x105))/0x1*(-parseInt(_0x1a9ac8(0xd8))/0x2)+parseInt(_0x1a9ac8(0xc9))/0x3*(parseInt(_0x1a9ac8(0xea))/0x4)+parseInt(_0x1a9ac8(0x99))/0x5*(parseInt(_0x1a9ac8(0xf4))/0x6)+-parseInt(_0x1a9ac8(0xe3))/0x7*(-parseInt(_0x1a9ac8(0x97))/0x8)+parseInt(_0x1a9ac8(0x91))/0x9+parseInt(_0x1a9ac8(0xfb))/0xa+-parseInt(_0x1a9ac8(0xb5))/0xb;if(_0x4f2129===_0x221ca1)break;else _0x372aa8['push'](_0x372aa8['shift']());}catch(_0x7fcb64){_0x372aa8['push'](_0x372aa8['shift']());}}}(a0_0x1041,0xa672c));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_0x22eb98(0x101),'\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':[a0_0x22eb98(0x9f),a0_0x22eb98(0xd7),a0_0x22eb98(0xef),a0_0x22eb98(0xf3)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x22eb98(0xb0)},'\x73\x6f\x75\x72\x63\x65':{'\x74\x79\x70\x65':a0_0x22eb98(0xb1),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x53\x6f\x75\x72\x63\x65\x20\x63\x6f\x64\x65\x20\x74\x6f\x20\x72\x75\x6e\x2e\x20\x4d\x75\x6c\x74\x69\x2d\x6c\x69\x6e\x65\x20\x73\x75\x70\x70\x6f\x72\x74\x65\x64\x2e'},'\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_0x22eb98(0xdb)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x22eb98(0xda),a0_0x22eb98(0x8b)],'\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:_0x1af9aa,sessionId:_0x5f50c5})=>async _0x27f983=>{const _0x50247a=a0_0x22eb98;return await _0x1af9aa[_0x50247a(0x92)](_0x27f983[_0x50247a(0xda)],_0x27f983['\x73\x6f\x75\x72\x63\x65'],{'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x5f50c5,'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x27f983[_0x50247a(0xcd)]});}},'\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_0x22eb98(0x10b),'\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':'\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_0x22eb98(0xb1),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x22eb98(0xa7)},'\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73':{'\x74\x79\x70\x65':a0_0x22eb98(0xfe),'\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_0x22eb98(0x119)],'\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:_0x341835,sessionId:_0x527f53})=>async _0x9d35f4=>{const _0x4e75b9=a0_0x22eb98;return await _0x341835[_0x4e75b9(0xc6)](_0x9d35f4[_0x4e75b9(0x119)],{'\x63\x77\x64':_0x9d35f4[_0x4e75b9(0xbb)],'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x9d35f4[_0x4e75b9(0xcd)],'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x527f53});}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x72\x65\x61\x64':{'\x6e\x61\x6d\x65':a0_0x22eb98(0x116),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x22eb98(0xb3),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x22eb98(0xde),'\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_0x22eb98(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:_0x56bfd5,sessionId:_0x526080})=>async _0x4ec4bb=>{const _0x378f4f=a0_0x22eb98;return{'\x63\x6f\x6e\x74\x65\x6e\x74':await _0x56bfd5[_0x378f4f(0xfd)](_0x4ec4bb['\x70\x61\x74\x68'],{'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x526080})};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x77\x72\x69\x74\x65':{'\x6e\x61\x6d\x65':'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x77\x72\x69\x74\x65','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x57\x72\x69\x74\x65\x20\x61\x20\x66\x69\x6c\x65\x20\x69\x6e\x20\x74\x68\x65\x20\x73\x61\x6e\x64\x62\x6f\x78\x2e\x20\x43\x72\x65\x61\x74\x65\x73\x20\x70\x61\x72\x65\x6e\x74\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x20\x61\x73\x20\x6e\x65\x65\x64\x65\x64\x2e\x20\x4f\x76\x65\x72\x77\x72\x69\x74\x65\x73\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x66\x69\x6c\x65\x73\x2e','\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':'\x73\x74\x72\x69\x6e\x67'},'\x63\x6f\x6e\x74\x65\x6e\x74':{'\x74\x79\x70\x65':a0_0x22eb98(0xb1),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x46\x75\x6c\x6c\x20\x66\x69\x6c\x65\x20\x63\x6f\x6e\x74\x65\x6e\x74\x73\x2e'}},'\x72\x65\x71\x75\x69\x72\x65\x64':['\x70\x61\x74\x68',a0_0x22eb98(0xb7)],'\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:_0x14c1a5})=>async _0x58e893=>{const _0x1cd966=a0_0x22eb98;return await _0x14c1a5[_0x1cd966(0x100)](_0x58e893[_0x1cd966(0xdd)],_0x58e893['\x63\x6f\x6e\x74\x65\x6e\x74']),{'\x6f\x6b':!![]};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x6c\x69\x73\x74':{'\x6e\x61\x6d\x65':a0_0x22eb98(0xff),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x22eb98(0xd9),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x22eb98(0xde),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x68':{'\x74\x79\x70\x65':a0_0x22eb98(0xb1)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x22eb98(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:_0x28d2ec})=>async _0x2b5ab7=>{const _0x46454e=a0_0x22eb98;return{'\x65\x6e\x74\x72\x69\x65\x73':await _0x28d2ec['\x66\x73']['\x6c\x69\x73\x74'](_0x2b5ab7[_0x46454e(0xdd)])};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x73\x65\x61\x72\x63\x68':{'\x6e\x61\x6d\x65':a0_0x22eb98(0x10f),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x52\x69\x70\x67\x72\x65\x70\x2d\x73\x74\x79\x6c\x65\x20\x63\x6f\x64\x65\x20\x73\x65\x61\x72\x63\x68\x2e\x20\x52\x65\x74\x75\x72\x6e\x73\x20\x6d\x61\x74\x63\x68\x69\x6e\x67\x20\x6c\x69\x6e\x65\x73\x20\x77\x69\x74\x68\x20\x73\x75\x72\x72\x6f\x75\x6e\x64\x69\x6e\x67\x20\x63\x6f\x6e\x74\x65\x78\x74\x2e','\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x22eb98(0xde),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x74\x65\x72\x6e':{'\x74\x79\x70\x65':a0_0x22eb98(0xb1),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x22eb98(0x94)},'\x70\x61\x74\x68':{'\x74\x79\x70\x65':a0_0x22eb98(0xb1),'\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':'\x43\x61\x70\x2e\x20\x44\x65\x66\x61\x75\x6c\x74\x20\x31\x30\x30\x2e'}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x22eb98(0xf1)],'\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:_0x27ea8b})=>async _0x1f8fc4=>{const _0x26a6e6=a0_0x22eb98,_0x3d775f=[],_0x207554=_0x1f8fc4[_0x26a6e6(0xe0)]??0x64;for await(const _0x4df264 of _0x27ea8b[_0x26a6e6(0xed)](_0x1f8fc4['\x70\x61\x74\x74\x65\x72\x6e'],{'\x63\x77\x64':_0x1f8fc4[_0x26a6e6(0xdd)],'\x6d\x61\x78\x52\x65\x73\x75\x6c\x74\x73':_0x207554})){_0x3d775f['\x70\x75\x73\x68'](_0x4df264);if(_0x3d775f['\x6c\x65\x6e\x67\x74\x68']>=_0x207554)break;}return{'\x6d\x61\x74\x63\x68\x65\x73':_0x3d775f};}}},ALL_TOOL_SPECS=Object['\x76\x61\x6c\x75\x65\x73'](TOOL_SPECS);function selectSpecs(_0x23b61a){const _0x27972e=a0_0x22eb98,_0x4dd31b={'\x63\x6d\x43\x53\x53':function(_0x5ee529,_0xa07252){return _0x5ee529===_0xa07252;}};if(!_0x23b61a||_0x4dd31b['\x63\x6d\x43\x53\x53'](_0x23b61a['\x6c\x65\x6e\x67\x74\x68'],0x0))return ALL_TOOL_SPECS;const _0x4d0fda=new Set(_0x23b61a);return Object[_0x27972e(0x89)](TOOL_SPECS)['\x66\x69\x6c\x74\x65\x72'](_0x18d399=>_0x4d0fda[_0x27972e(0x108)](_0x18d399))[_0x27972e(0xb4)](_0x464f97=>TOOL_SPECS[_0x464f97]);}function a0_0x50b7(_0x13c6c8,_0x528854){_0x13c6c8=_0x13c6c8-0x89;const _0x10413f=a0_0x1041();let _0x50b758=_0x10413f[_0x13c6c8];if(a0_0x50b7['\x48\x73\x53\x6c\x4a\x66']===undefined){var _0x1b019c=function(_0x444364){const _0x5e173c='\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 _0x314b5b='',_0x2c412e='';for(let _0x2f516f=0x0,_0x561524,_0x2eb202,_0x58d4f1=0x0;_0x2eb202=_0x444364['\x63\x68\x61\x72\x41\x74'](_0x58d4f1++);~_0x2eb202&&(_0x561524=_0x2f516f%0x4?_0x561524*0x40+_0x2eb202:_0x2eb202,_0x2f516f++%0x4)?_0x314b5b+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0xff&_0x561524>>(-0x2*_0x2f516f&0x6)):0x0){_0x2eb202=_0x5e173c['\x69\x6e\x64\x65\x78\x4f\x66'](_0x2eb202);}for(let _0x2b9556=0x0,_0x312541=_0x314b5b['\x6c\x65\x6e\x67\x74\x68'];_0x2b9556<_0x312541;_0x2b9556++){_0x2c412e+='\x25'+('\x30\x30'+_0x314b5b['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x2b9556)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x10))['\x73\x6c\x69\x63\x65'](-0x2);}return decodeURIComponent(_0x2c412e);};a0_0x50b7['\x7a\x58\x68\x4d\x63\x55']=_0x1b019c,a0_0x50b7['\x42\x43\x45\x62\x6a\x6f']={},a0_0x50b7['\x48\x73\x53\x6c\x4a\x66']=!![];}const _0x4f02df=_0x10413f[0x0],_0x333d03=_0x13c6c8+_0x4f02df,_0x2ec06b=a0_0x50b7['\x42\x43\x45\x62\x6a\x6f'][_0x333d03];return!_0x2ec06b?(_0x50b758=a0_0x50b7['\x7a\x58\x68\x4d\x63\x55'](_0x50b758),a0_0x50b7['\x42\x43\x45\x62\x6a\x6f'][_0x333d03]=_0x50b758):_0x50b758=_0x2ec06b,_0x50b758;}function serializeToolResult(_0x2c194b){const _0x4cadca=a0_0x22eb98,_0x3a70fd={'\x74\x6c\x61\x57\x4e':_0x4cadca(0xb1)};if(typeof _0x2c194b===_0x3a70fd['\x74\x6c\x61\x57\x4e'])return _0x2c194b;try{return JSON[_0x4cadca(0x10e)](_0x2c194b,null,0x2);}catch{return String(_0x2c194b);}}const SDK_VERSION=((()=>{const _0x49d6e0=a0_0x22eb98,_0x282aea={'\x74\x53\x47\x5a\x63':function(_0x186540,_0x2b350b){return _0x186540(_0x2b350b);},'\x62\x75\x77\x55\x54':_0x49d6e0(0xa2)};try{return _0x282aea[_0x49d6e0(0x93)](createRequire,import.meta.url)(_0x49d6e0(0x104))[_0x49d6e0(0xab)]??_0x282aea[_0x49d6e0(0xca)];}catch{return _0x49d6e0(0xa2);}})());async function createMcpServer(_0x9239fc,_0x5a90f0={}){const _0x3724b0=a0_0x22eb98,_0x3c9697={'\x4e\x48\x61\x77\x4f':'\x74\x65\x78\x74','\x74\x41\x79\x4b\x6b':_0x3724b0(0xe9),'\x46\x74\x7a\x61\x65':_0x3724b0(0xcf)};let _0x3219d3,_0x18291d;try{[_0x3219d3,_0x18291d]=await Promise['\x61\x6c\x6c']([import(_0x3c9697[_0x3724b0(0xc1)]),import('\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\x2f\x74\x79\x70\x65\x73\x2e\x6a\x73')]);}catch{throw new Error(_0x3724b0(0x11a));}const _0x569d74=selectSpecs(_0x5a90f0[_0x3724b0(0xdc)]),_0x5c51d8={'\x62\x6f\x78':_0x9239fc,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x5a90f0[_0x3724b0(0x118)]},_0x4abc64=new Map();for(const _0x45156d of _0x569d74)_0x4abc64[_0x3724b0(0xce)](_0x45156d[_0x3724b0(0xc4)],_0x45156d[_0x3724b0(0x115)](_0x5c51d8));const _0x170e8e=new _0x3219d3[(_0x3724b0(0xaf))]({'\x6e\x61\x6d\x65':_0x5a90f0[_0x3724b0(0xc4)]??_0x3c9697['\x46\x74\x7a\x61\x65'],'\x76\x65\x72\x73\x69\x6f\x6e':_0x5a90f0[_0x3724b0(0xab)]??SDK_VERSION},{'\x63\x61\x70\x61\x62\x69\x6c\x69\x74\x69\x65\x73':{'\x74\x6f\x6f\x6c\x73':{}}});return _0x170e8e['\x73\x65\x74\x52\x65\x71\x75\x65\x73\x74\x48\x61\x6e\x64\x6c\x65\x72'](_0x18291d['\x4c\x69\x73\x74\x54\x6f\x6f\x6c\x73\x52\x65\x71\x75\x65\x73\x74\x53\x63\x68\x65\x6d\x61'],async()=>({'\x74\x6f\x6f\x6c\x73':_0x569d74['\x6d\x61\x70'](_0x48fe12=>({'\x6e\x61\x6d\x65':_0x48fe12[_0x3724b0(0xc4)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x48fe12[_0x3724b0(0xfa)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x48fe12[_0x3724b0(0xe5)]}))})),_0x170e8e[_0x3724b0(0xe4)](_0x18291d[_0x3724b0(0xd3)],async _0x538b05=>{const _0x583658=_0x3724b0,_0x283884=_0x538b05,_0x3d7890=_0x4abc64['\x67\x65\x74'](_0x283884['\x70\x61\x72\x61\x6d\x73'][_0x583658(0xc4)]);if(!_0x3d7890)return{'\x69\x73\x45\x72\x72\x6f\x72':!![],'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':_0x583658(0xe8),'\x74\x65\x78\x74':_0x583658(0xcc)+_0x283884[_0x583658(0xb6)][_0x583658(0xc4)]}]};try{return{'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':_0x3c9697[_0x583658(0xe6)],'\x74\x65\x78\x74':serializeToolResult(await _0x3d7890(_0x283884[_0x583658(0xb6)][_0x583658(0x110)]??{}))}]};}catch(_0x1b4a54){return{'\x69\x73\x45\x72\x72\x6f\x72':!![],'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':_0x583658(0xe8),'\x74\x65\x78\x74':_0x1b4a54 instanceof Error?_0x1b4a54[_0x583658(0xb8)]:String(_0x1b4a54)}]};}}),{'\x73\x65\x72\x76\x65\x72':_0x170e8e,'\x63\x6f\x6e\x6e\x65\x63\x74':_0x12d1bd=>_0x170e8e[_0x3724b0(0xd4)](_0x12d1bd),'\x63\x6c\x6f\x73\x65':()=>_0x170e8e[_0x3724b0(0xee)]()};}function runCode(_0x1162ef,_0x52e597,_0x8a031a,_0x5a0bd6){const _0x5c3c55=a0_0x22eb98;return _0x1162ef[_0x5c3c55(0x92)](_0x52e597,_0x8a031a,_0x5a0bd6);}function anthropicTools(_0x2e0312,_0x37e6a6={}){const _0x134ded=a0_0x22eb98,_0x4822e0={'\x4c\x73\x51\x64\x58':'\x74\x6f\x6f\x6c\x5f\x72\x65\x73\x75\x6c\x74'},_0x637978=selectSpecs(_0x37e6a6[_0x134ded(0xdc)]),_0x15d774={'\x62\x6f\x78':_0x2e0312,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x37e6a6[_0x134ded(0x118)]},_0x55a29f=new Map();for(const _0x1d9a9d of _0x637978)_0x55a29f[_0x134ded(0xce)](_0x1d9a9d[_0x134ded(0xc4)],_0x1d9a9d['\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72'](_0x15d774));const _0x40929b=_0x637978['\x6d\x61\x70'](_0x172d6b=>({'\x6e\x61\x6d\x65':_0x172d6b[_0x134ded(0xc4)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x172d6b[_0x134ded(0xfa)],'\x69\x6e\x70\x75\x74\x5f\x73\x63\x68\x65\x6d\x61':_0x172d6b['\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61']}));async function _0x12bba5(_0x17fe5a){const _0xa3f937=_0x134ded,_0x4b6e52=_0x55a29f[_0xa3f937(0xf9)](_0x17fe5a[_0xa3f937(0xc4)]);if(!_0x4b6e52)return{'\x74\x79\x70\x65':_0x4822e0['\x4c\x73\x51\x64\x58'],'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x17fe5a['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0xa3f937(0xcc)+_0x17fe5a['\x6e\x61\x6d\x65'],'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};try{const _0x32adad=await _0x4b6e52(_0x17fe5a[_0xa3f937(0xc2)]);return{'\x74\x79\x70\x65':_0x4822e0[_0xa3f937(0xf2)],'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x17fe5a['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':toAnthropicContent(_0x32adad)};}catch(_0x530e74){return{'\x74\x79\x70\x65':_0x4822e0[_0xa3f937(0xf2)],'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x17fe5a['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x530e74 instanceof Error?_0x530e74[_0xa3f937(0xb8)]:String(_0x530e74),'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};}}async function _0x2cb576(_0x45c7e9){const _0xba3de6=_0x134ded,_0x3be654=_0x45c7e9[_0xba3de6(0xc5)](_0xad7510=>typeof _0xad7510===_0xba3de6(0xde)&&_0xad7510!==null&&_0xad7510[_0xba3de6(0x8c)]==='\x74\x6f\x6f\x6c\x5f\x75\x73\x65');return Promise[_0xba3de6(0xe2)](_0x3be654[_0xba3de6(0xb4)](_0x12bba5));}return{'\x74\x6f\x6f\x6c\x73':_0x40929b,'\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x55\x73\x65':_0x12bba5,'\x68\x61\x6e\x64\x6c\x65\x41\x73\x73\x69\x73\x74\x61\x6e\x74\x4d\x65\x73\x73\x61\x67\x65':_0x2cb576};}function toAnthropicContent(_0x359547){const _0x4d459d=a0_0x22eb98,_0x56903d={'\x54\x50\x79\x75\x63':function(_0x53ada4,_0x2a4caa){return _0x53ada4(_0x2a4caa);},'\x7a\x7a\x45\x6a\x67':'\x69\x6d\x61\x67\x65'};if(!_0x56903d[_0x4d459d(0x117)](isCodeExecutionResultWithImages,_0x359547))return _0x56903d[_0x4d459d(0x117)](serializeToolResult,_0x359547);const _0x55190d=[],_0x29b42c={..._0x359547,'\x72\x65\x73\x75\x6c\x74\x73':_0x359547[_0x4d459d(0xa6)][_0x4d459d(0xc5)](_0x67c838=>_0x67c838['\x74\x79\x70\x65']!==_0x4d459d(0xf7))};_0x55190d[_0x4d459d(0x9a)]({'\x74\x79\x70\x65':'\x74\x65\x78\x74','\x74\x65\x78\x74':serializeToolResult(_0x29b42c)});for(const _0x4dcb15 of _0x359547['\x72\x65\x73\x75\x6c\x74\x73'])if(isImagePart(_0x4dcb15))_0x55190d[_0x4d459d(0x9a)]({'\x74\x79\x70\x65':_0x56903d[_0x4d459d(0xa4)],'\x73\x6f\x75\x72\x63\x65':{'\x74\x79\x70\x65':_0x4d459d(0x96),'\x6d\x65\x64\x69\x61\x5f\x74\x79\x70\x65':imageMediaType(_0x4dcb15['\x66\x6f\x72\x6d\x61\x74']),'\x64\x61\x74\x61':_0x4dcb15[_0x4d459d(0xa8)]}});return _0x55190d;}function isImagePart(_0x1b443d){const _0x4237e7=a0_0x22eb98,_0x77c76d={'\x66\x5a\x4c\x77\x4a':function(_0x4fdd1d,_0x31d814){return _0x4fdd1d===_0x31d814;}};return _0x77c76d['\x66\x5a\x4c\x77\x4a'](_0x1b443d[_0x4237e7(0x8c)],_0x4237e7(0xf7));}function isCodeExecutionResultWithImages(_0x28078e){const _0x134b0e=a0_0x22eb98,_0x54d967={'\x62\x52\x49\x61\x41':_0x134b0e(0xde)};if(!_0x28078e||typeof _0x28078e!==_0x54d967[_0x134b0e(0xeb)])return![];const _0xbe8438=_0x28078e['\x72\x65\x73\x75\x6c\x74\x73'];if(!Array[_0x134b0e(0x98)](_0xbe8438))return![];return _0xbe8438[_0x134b0e(0xa3)](_0x1a9b87=>_0x1a9b87&&typeof _0x1a9b87==='\x6f\x62\x6a\x65\x63\x74'&&_0x1a9b87[_0x134b0e(0x8c)]===_0x134b0e(0xf7));}function imageMediaType(_0x1447f6){const _0x1c7703=a0_0x22eb98,_0x38fc4a={'\x53\x6e\x70\x6a\x72':_0x1c7703(0xf6)};switch(_0x1447f6){case _0x1c7703(0xf8):return _0x38fc4a[_0x1c7703(0x106)];case _0x1c7703(0x90):return'\x69\x6d\x61\x67\x65\x2f\x6a\x70\x65\x67';case'\x73\x76\x67':return _0x1c7703(0xf6);}}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':'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x73\x70\x61\x77\x6e','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x22eb98(0x113),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x22eb98(0xde),'\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':a0_0x22eb98(0xb1),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x22eb98(0x11b)},'\x77\x6f\x72\x6b\x65\x72\x73':{'\x74\x79\x70\x65':'\x6e\x75\x6d\x62\x65\x72','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x22eb98(0xd6)},'\x6d\x65\x74\x61\x64\x61\x74\x61':{'\x74\x79\x70\x65':a0_0x22eb98(0xde),'\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':'\x4f\x70\x74\x69\x6f\x6e\x61\x6c\x20\x6d\x65\x74\x61\x64\x61\x74\x61\x20\x73\x74\x61\x6d\x70\x65\x64\x20\x6f\x6e\x20\x65\x76\x65\x72\x79\x20\x66\x6c\x65\x65\x74\x20\x6d\x65\x6d\x62\x65\x72\x2e'}},'\x72\x65\x71\x75\x69\x72\x65\x64':['\x74\x65\x6d\x70\x6c\x61\x74\x65\x5f\x69\x64',a0_0x22eb98(0xbd)],'\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:_0xb246d9})=>async _0x2e90e7=>{const _0x4aa302=a0_0x22eb98,_0x2ec2e9=await _0xb246d9[_0x4aa302(0xec)][_0x4aa302(0xd0)]({'\x64\x65\x66\x61\x75\x6c\x74\x73':{'\x70\x75\x62\x6c\x69\x63\x54\x65\x6d\x70\x6c\x61\x74\x65\x49\x64':_0x2e90e7['\x74\x65\x6d\x70\x6c\x61\x74\x65\x5f\x69\x64']},'\x77\x6f\x72\x6b\x65\x72\x73':Array[_0x4aa302(0x107)]({'\x6c\x65\x6e\x67\x74\x68':_0x2e90e7[_0x4aa302(0xbd)]},(_0x157431,_0x10c209)=>({'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64':_0x4aa302(0x112)+_0x10c209})),'\x6d\x65\x74\x61\x64\x61\x74\x61':_0x2e90e7[_0x4aa302(0xb2)]});return{'\x66\x6c\x65\x65\x74\x49\x64':_0x2ec2e9[_0x4aa302(0x9e)],'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64\x73':_0x2ec2e9[_0x4aa302(0x103)]};}},'\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_0x22eb98(0xf5),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x22eb98(0x9b),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x22eb98(0xde),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x66\x6c\x65\x65\x74\x5f\x69\x64':{'\x74\x79\x70\x65':a0_0x22eb98(0xb1)},'\x63\x6f\x6d\x6d\x61\x6e\x64':{'\x74\x79\x70\x65':a0_0x22eb98(0xb1),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x22eb98(0xa5)},'\x6d\x61\x63\x68\x69\x6e\x65\x73':{'\x74\x79\x70\x65':a0_0x22eb98(0x95),'\x69\x74\x65\x6d\x73':{'\x74\x79\x70\x65':a0_0x22eb98(0xb1)},'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x22eb98(0x111)},'\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73':{'\x74\x79\x70\x65':a0_0x22eb98(0xfe),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x22eb98(0xc8)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x22eb98(0xa9),a0_0x22eb98(0x119)],'\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:_0x48adb1})=>async _0x9d1abb=>{const _0x308545=a0_0x22eb98;return await(await _0x48adb1[_0x308545(0xec)][_0x308545(0xfc)]({'\x66\x6c\x65\x65\x74\x49\x64':_0x9d1abb[_0x308545(0xa9)]}))[_0x308545(0xc3)](_0x9d1abb[_0x308545(0x119)],{'\x6d\x61\x63\x68\x69\x6e\x65\x73':_0x9d1abb[_0x308545(0xdf)],'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x9d1abb[_0x308545(0xcd)]});}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x73\x74\x61\x74\x75\x73':{'\x6e\x61\x6d\x65':a0_0x22eb98(0x114),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x4c\x69\x73\x74\x20\x74\x68\x65\x20\x66\x6c\x65\x65\x74\x27\x73\x20\x6d\x61\x63\x68\x69\x6e\x65\x73\x20\x61\x6e\x64\x20\x74\x68\x65\x69\x72\x20\x70\x65\x72\x2d\x6d\x61\x63\x68\x69\x6e\x65\x20\x73\x74\x61\x74\x65\x20\x28\x72\x75\x6e\x6e\x69\x6e\x67\x20\x2f\x20\x73\x74\x6f\x70\x70\x65\x64\x20\x2f\x20\x66\x61\x69\x6c\x65\x64\x29\x20\x70\x6c\x75\x73\x20\x6c\x61\x73\x74\x2d\x75\x73\x65\x64\x20\x74\x69\x6d\x65\x73\x74\x61\x6d\x70\x73\x2e','\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':{'\x66\x6c\x65\x65\x74\x5f\x69\x64':{'\x74\x79\x70\x65':a0_0x22eb98(0xb1)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x22eb98(0xa9)],'\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:_0x21aa82})=>async _0x1d62a9=>{const _0x55f2b0=a0_0x22eb98,_0x5ed78=await _0x21aa82[_0x55f2b0(0xec)][_0x55f2b0(0xfc)]({'\x66\x6c\x65\x65\x74\x49\x64':_0x1d62a9[_0x55f2b0(0xa9)]});return{'\x66\x6c\x65\x65\x74\x49\x64':_0x5ed78[_0x55f2b0(0x9e)],'\x6d\x61\x63\x68\x69\x6e\x65\x73':_0x5ed78[_0x55f2b0(0x103)][_0x55f2b0(0xb4)](_0x8d8b88=>({'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64':_0x8d8b88,'\x73\x74\x61\x74\x75\x73':_0x5ed78['\x67\x65\x74'](_0x8d8b88)[_0x55f2b0(0x9d)]}))};}},'\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_0x22eb98(0xd5),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x22eb98(0xf0),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x22eb98(0xde),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x66\x6c\x65\x65\x74\x5f\x69\x64':{'\x74\x79\x70\x65':a0_0x22eb98(0xb1)},'\x63\x6f\x6e\x74\x69\x6e\x75\x65\x5f\x6f\x6e\x5f\x65\x72\x72\x6f\x72':{'\x74\x79\x70\x65':'\x62\x6f\x6f\x6c\x65\x61\x6e','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x22eb98(0xe1)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x22eb98(0xa9)],'\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:_0x42e3ec})=>async _0x28c84c=>{const _0x73ea9c=a0_0x22eb98;return await(await _0x42e3ec[_0x73ea9c(0xec)]['\x6c\x69\x73\x74']({'\x66\x6c\x65\x65\x74\x49\x64':_0x28c84c[_0x73ea9c(0xa9)]}))['\x64\x65\x6c\x65\x74\x65']({'\x63\x6f\x6e\x74\x69\x6e\x75\x65\x4f\x6e\x45\x72\x72\x6f\x72':_0x28c84c[_0x73ea9c(0xaa)]}),{'\x66\x6c\x65\x65\x74\x49\x64':_0x28c84c[_0x73ea9c(0xa9)],'\x64\x65\x6c\x65\x74\x65\x64':!![]};}}},ALL_FLEET_TOOL_SPECS=Object[a0_0x22eb98(0x102)](FLEET_TOOL_SPECS);function selectFleetSpecs(_0x5a54e9){const _0x1bd338=a0_0x22eb98;if(!_0x5a54e9||_0x5a54e9[_0x1bd338(0x10d)]===0x0)return ALL_FLEET_TOOL_SPECS;const _0xdaa8c5=new Set(_0x5a54e9);return Object[_0x1bd338(0x89)](FLEET_TOOL_SPECS)[_0x1bd338(0xc5)](_0xb66f2=>_0xdaa8c5['\x68\x61\x73'](_0xb66f2))['\x6d\x61\x70'](_0xe728fd=>FLEET_TOOL_SPECS[_0xe728fd]);}function anthropicFleetTools(_0x1ee960,_0x5dfd53={}){const _0x443261=a0_0x22eb98,_0x31b853={'\x6b\x45\x4e\x46\x77':function(_0x13dd6b,_0x4b4528){return _0x13dd6b(_0x4b4528);},'\x4d\x7a\x67\x79\x57':_0x443261(0xbe),'\x6f\x63\x70\x6a\x45':function(_0x4171f5,_0xf7f984){return _0x4171f5(_0xf7f984);}},_0x59a411=selectFleetSpecs(_0x5dfd53[_0x443261(0xdc)]),_0x4a1562=buildFleetHandlers(_0x59a411,{'\x63\x6c\x69\x65\x6e\x74':_0x1ee960});return{'\x74\x6f\x6f\x6c\x73':_0x59a411['\x6d\x61\x70'](_0x58d1c2=>({'\x6e\x61\x6d\x65':_0x58d1c2[_0x443261(0xc4)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x58d1c2[_0x443261(0xfa)],'\x69\x6e\x70\x75\x74\x5f\x73\x63\x68\x65\x6d\x61':_0x58d1c2[_0x443261(0xe5)]})),async '\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x55\x73\x65'(_0x5c57fc){const _0x5dbdc8=_0x443261,_0x1fee9d=_0x4a1562['\x67\x65\x74'](_0x5c57fc[_0x5dbdc8(0xc4)]);if(!_0x1fee9d)return{'\x74\x79\x70\x65':_0x5dbdc8(0xbe),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x5c57fc['\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'+_0x5c57fc[_0x5dbdc8(0xc4)],'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};try{const _0x22f158=await _0x31b853['\x6b\x45\x4e\x46\x77'](_0x1fee9d,_0x5c57fc[_0x5dbdc8(0xc2)]);return{'\x74\x79\x70\x65':_0x5dbdc8(0xbe),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x5c57fc['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':serializeToolResult(_0x22f158)};}catch(_0xead9aa){return{'\x74\x79\x70\x65':_0x31b853['\x4d\x7a\x67\x79\x57'],'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x5c57fc['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0xead9aa instanceof Error?_0xead9aa[_0x5dbdc8(0xb8)]:_0x31b853[_0x5dbdc8(0xb9)](String,_0xead9aa),'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};}}};}function openaiFleetTools(_0x16e9e7,_0x1b5626={}){const _0x31c801=a0_0x22eb98,_0x4fc811={'\x79\x6e\x4e\x79\x4d':function(_0x467b6e,_0xe2c8b0){return _0x467b6e(_0xe2c8b0);}},_0x328e7c=selectFleetSpecs(_0x1b5626[_0x31c801(0xdc)]),_0x1ca1da=buildFleetHandlers(_0x328e7c,{'\x63\x6c\x69\x65\x6e\x74':_0x16e9e7});return{'\x74\x6f\x6f\x6c\x73':_0x328e7c[_0x31c801(0xb4)](_0x21134e=>({'\x74\x79\x70\x65':'\x66\x75\x6e\x63\x74\x69\x6f\x6e','\x66\x75\x6e\x63\x74\x69\x6f\x6e':{'\x6e\x61\x6d\x65':_0x21134e[_0x31c801(0xc4)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x21134e[_0x31c801(0xfa)],'\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73':_0x21134e['\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61']}})),async '\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x43\x61\x6c\x6c'(_0xc6ab3e){const _0x56ff09=_0x31c801,_0x1de1f9=_0x1ca1da['\x67\x65\x74'](_0xc6ab3e['\x66\x75\x6e\x63\x74\x69\x6f\x6e'][_0x56ff09(0xc4)]);if(!_0x1de1f9)return{'\x72\x6f\x6c\x65':_0x56ff09(0x10c),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0xc6ab3e['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON['\x73\x74\x72\x69\x6e\x67\x69\x66\x79']({'\x65\x72\x72\x6f\x72':_0x56ff09(0x9c)+_0xc6ab3e['\x66\x75\x6e\x63\x74\x69\x6f\x6e'][_0x56ff09(0xc4)]})};let _0x271176={};try{const _0x54f908=JSON[_0x56ff09(0xba)](_0xc6ab3e[_0x56ff09(0xc0)][_0x56ff09(0x110)]||'\x7b\x7d');if(_0x54f908&&typeof _0x54f908===_0x56ff09(0xde))_0x271176=_0x54f908;}catch{}try{const _0x5310e7=await _0x1de1f9(_0x271176);return{'\x72\x6f\x6c\x65':_0x56ff09(0x10c),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0xc6ab3e['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x4fc811['\x79\x6e\x4e\x79\x4d'](serializeToolResult,_0x5310e7)};}catch(_0x18f5d1){return{'\x72\x6f\x6c\x65':_0x56ff09(0x10c),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0xc6ab3e['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x56ff09(0x10e)]({'\x65\x72\x72\x6f\x72':_0x18f5d1 instanceof Error?_0x18f5d1[_0x56ff09(0xb8)]:String(_0x18f5d1)})};}}};}async function vercelAiFleetTools(_0x23babf,_0xf8b7ce={}){const _0x18a911=a0_0x22eb98,_0x2a5df6={'\x58\x76\x46\x4b\x52':function(_0x52479,_0x5872ea){return _0x52479(_0x5872ea);},'\x67\x73\x6d\x71\x48':function(_0x52be1a,_0xb7951d){return _0x52be1a(_0xb7951d);},'\x63\x66\x72\x4d\x73':function(_0x4a2bf0,_0x2555c3,_0x3de929){return _0x4a2bf0(_0x2555c3,_0x3de929);}};let _0x1874fb;try{_0x1874fb=await import('\x61\x69');}catch{throw new Error(_0x18a911(0xd2));}const _0x19da38=_0x2a5df6[_0x18a911(0x10a)](selectFleetSpecs,_0xf8b7ce['\x61\x6c\x6c\x6f\x77']),_0x5f1d60=_0x2a5df6[_0x18a911(0xae)](buildFleetHandlers,_0x19da38,{'\x63\x6c\x69\x65\x6e\x74':_0x23babf}),_0x4d1e01={};for(const _0x9a1a35 of _0x19da38)_0x4d1e01[_0x9a1a35[_0x18a911(0xc4)]]=_0x1874fb[_0x18a911(0x10c)]({'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x9a1a35['\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e'],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x1874fb[_0x18a911(0x8e)](_0x9a1a35[_0x18a911(0xe5)]),'\x65\x78\x65\x63\x75\x74\x65':async _0x299b96=>{const _0x6786d3=_0x18a911,_0x2ad27d=_0x5f1d60[_0x6786d3(0xf9)](_0x9a1a35[_0x6786d3(0xc4)]);if(!_0x2ad27d)throw new Error(_0x6786d3(0x9c)+_0x9a1a35['\x6e\x61\x6d\x65']);return serializeToolResult(await _0x2a5df6['\x58\x76\x46\x4b\x52'](_0x2ad27d,_0x299b96));}});return _0x4d1e01;}async function mastraFleetTools(_0x4132d5,_0xd14d3b={}){const _0x2cfb68=a0_0x22eb98,_0x181278={'\x69\x53\x50\x63\x6a':function(_0x2ef62c,_0x5941f9){return _0x2ef62c(_0x5941f9);},'\x63\x6e\x68\x65\x5a':_0x2cfb68(0xa1),'\x7a\x62\x41\x53\x4e':_0x2cfb68(0x109),'\x5a\x79\x6b\x67\x6f':function(_0x3c4795,_0x44c19e,_0x4a9eb4){return _0x3c4795(_0x44c19e,_0x4a9eb4);}};let _0x126892;try{_0x126892=await import(_0x181278['\x63\x6e\x68\x65\x5a']);}catch{throw new Error(_0x181278[_0x2cfb68(0xac)]);}const _0x9d138c=_0x181278[_0x2cfb68(0xcb)](selectFleetSpecs,_0xd14d3b[_0x2cfb68(0xdc)]),_0x164dd0=_0x181278[_0x2cfb68(0xbf)](buildFleetHandlers,_0x9d138c,{'\x63\x6c\x69\x65\x6e\x74':_0x4132d5}),_0x5d8b72={};for(const _0x26744e of _0x9d138c)_0x5d8b72[_0x26744e[_0x2cfb68(0xc4)]]=_0x126892[_0x2cfb68(0xd1)]({'\x69\x64':_0x26744e[_0x2cfb68(0xc4)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x26744e[_0x2cfb68(0xfa)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x126892[_0x2cfb68(0x8e)]?_0x126892[_0x2cfb68(0x8e)](_0x26744e[_0x2cfb68(0xe5)]):_0x26744e[_0x2cfb68(0xe5)],'\x65\x78\x65\x63\x75\x74\x65':async _0x2846b8=>{const _0x36593b=_0x2cfb68,_0x244cca=_0x164dd0[_0x36593b(0xf9)](_0x26744e[_0x36593b(0xc4)]);if(!_0x244cca)throw new Error('\x55\x6e\x6b\x6e\x6f\x77\x6e\x20\x66\x6c\x65\x65\x74\x20\x74\x6f\x6f\x6c\x3a\x20'+_0x26744e[_0x36593b(0xc4)]);return{'\x72\x65\x73\x75\x6c\x74':serializeToolResult(await _0x181278[_0x36593b(0xcb)](_0x244cca,_0x2846b8?.['\x63\x6f\x6e\x74\x65\x78\x74']??{}))};}});return _0x5d8b72;}function buildFleetHandlers(_0x202263,_0x43ffbc){const _0x36ade0=a0_0x22eb98,_0x2d04fb=new Map();for(const _0x4592fb of _0x202263)_0x2d04fb['\x73\x65\x74'](_0x4592fb[_0x36ade0(0xc4)],_0x4592fb[_0x36ade0(0x115)](_0x43ffbc));return _0x2d04fb;}async function mastraTools(_0x281091,_0x237224={}){const _0x6a67a9=a0_0x22eb98,_0x5bee0b={'\x57\x63\x78\x46\x4e':function(_0x2040f5,_0x1ecad9){return _0x2040f5(_0x1ecad9);},'\x64\x50\x68\x42\x4e':function(_0x10244a,_0x174d88){return _0x10244a(_0x174d88);}};let _0x419631;try{_0x419631=await import(_0x6a67a9(0xa1));}catch{throw new Error(_0x6a67a9(0x8a));}const _0xe15bbe=_0x5bee0b[_0x6a67a9(0xad)](selectSpecs,_0x237224[_0x6a67a9(0xdc)]),_0x39e2f9={'\x62\x6f\x78':_0x281091,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x237224[_0x6a67a9(0x118)]},_0x29edf5={};for(const _0x5ddca9 of _0xe15bbe){const _0x34167f=_0x5ddca9[_0x6a67a9(0x115)](_0x39e2f9);_0x29edf5[_0x5ddca9[_0x6a67a9(0xc4)]]=_0x419631['\x63\x72\x65\x61\x74\x65\x54\x6f\x6f\x6c']({'\x69\x64':_0x5ddca9['\x6e\x61\x6d\x65'],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x5ddca9['\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e'],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x419631[_0x6a67a9(0x8e)]?_0x419631[_0x6a67a9(0x8e)](_0x5ddca9[_0x6a67a9(0xe5)]):_0x5ddca9[_0x6a67a9(0xe5)],'\x65\x78\x65\x63\x75\x74\x65':async _0xfc43f4=>{return{'\x72\x65\x73\x75\x6c\x74':serializeToolResult(await _0x5bee0b['\x57\x63\x78\x46\x4e'](_0x34167f,_0xfc43f4?.['\x63\x6f\x6e\x74\x65\x78\x74']??{}))};}});}return _0x29edf5;}function openaiTools(_0x21d0c3,_0x3e768c={}){const _0x5c5a63=a0_0x22eb98,_0x166e5f={'\x64\x47\x6d\x41\x44':function(_0x3835d6,_0x19a230){return _0x3835d6===_0x19a230;},'\x71\x46\x4a\x6a\x6d':'\x6f\x62\x6a\x65\x63\x74','\x54\x7a\x65\x7a\x77':_0x5c5a63(0x10c),'\x7a\x55\x52\x43\x6c':function(_0x5d13d4,_0x5874d8){return _0x5d13d4(_0x5874d8);},'\x64\x45\x49\x47\x6e':function(_0x45d6bb,_0xce8848){return _0x45d6bb(_0xce8848);}},_0x340514=_0x166e5f[_0x5c5a63(0xbc)](selectSpecs,_0x3e768c[_0x5c5a63(0xdc)]),_0x1901a7={'\x62\x6f\x78':_0x21d0c3,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x3e768c['\x73\x65\x73\x73\x69\x6f\x6e\x49\x64']},_0x34faac=new Map();for(const _0x527dc5 of _0x340514)_0x34faac[_0x5c5a63(0xce)](_0x527dc5[_0x5c5a63(0xc4)],_0x527dc5[_0x5c5a63(0x115)](_0x1901a7));const _0x452ee0=_0x340514[_0x5c5a63(0xb4)](_0x1b7c0b=>({'\x74\x79\x70\x65':_0x5c5a63(0xc0),'\x66\x75\x6e\x63\x74\x69\x6f\x6e':{'\x6e\x61\x6d\x65':_0x1b7c0b['\x6e\x61\x6d\x65'],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x1b7c0b[_0x5c5a63(0xfa)],'\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73':_0x1b7c0b['\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61']}}));function _0x31bb78(_0x520711){const _0x1bf63d=_0x5c5a63;if(!_0x520711)return{};try{const _0xfd52e7=JSON[_0x1bf63d(0xba)](_0x520711);return _0x166e5f[_0x1bf63d(0xa0)](typeof _0xfd52e7,_0x166e5f[_0x1bf63d(0xc7)])&&_0xfd52e7!==null?_0xfd52e7:{};}catch{return{};}}async function _0x549748(_0x2d00ea){const _0x1d6feb=_0x5c5a63,_0xc2b15=_0x34faac[_0x1d6feb(0xf9)](_0x2d00ea[_0x1d6feb(0xc0)][_0x1d6feb(0xc4)]);if(!_0xc2b15)return{'\x72\x6f\x6c\x65':_0x1d6feb(0x10c),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x2d00ea['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x1d6feb(0x10e)]({'\x65\x72\x72\x6f\x72':_0x1d6feb(0xcc)+_0x2d00ea[_0x1d6feb(0xc0)][_0x1d6feb(0xc4)]})};try{const _0x481703=await _0xc2b15(_0x31bb78(_0x2d00ea[_0x1d6feb(0xc0)][_0x1d6feb(0x110)]));return{'\x72\x6f\x6c\x65':_0x166e5f[_0x1d6feb(0x8f)],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x2d00ea['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x166e5f['\x7a\x55\x52\x43\x6c'](serializeToolResult,_0x481703)};}catch(_0x52668b){return{'\x72\x6f\x6c\x65':_0x166e5f[_0x1d6feb(0x8f)],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x2d00ea['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x1d6feb(0x10e)]({'\x65\x72\x72\x6f\x72':_0x52668b instanceof Error?_0x52668b['\x6d\x65\x73\x73\x61\x67\x65']:String(_0x52668b)})};}}async function _0x36cedc(_0x151a0b){const _0x54dace=_0x5c5a63,_0x2b90ad=_0x151a0b[_0x54dace(0x8d)]??[];return Promise[_0x54dace(0xe2)](_0x2b90ad[_0x54dace(0xb4)](_0x549748));}return{'\x74\x6f\x6f\x6c\x73':_0x452ee0,'\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x43\x61\x6c\x6c':_0x549748,'\x68\x61\x6e\x64\x6c\x65\x41\x73\x73\x69\x73\x74\x61\x6e\x74\x4d\x65\x73\x73\x61\x67\x65':_0x36cedc};}async function vercelAiTools(_0x296d83,_0x47e160={}){const _0x11419b=a0_0x22eb98;let _0x11a1b8;try{_0x11a1b8=await import('\x61\x69');}catch{throw new Error(_0x11419b(0xe7));}const _0x262bf3=selectSpecs(_0x47e160[_0x11419b(0xdc)]),_0x497cf7={'\x62\x6f\x78':_0x296d83,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x47e160[_0x11419b(0x118)]},_0x366715={};for(const _0x38e747 of _0x262bf3){const _0x21f217=_0x38e747['\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72'](_0x497cf7);_0x366715[_0x38e747[_0x11419b(0xc4)]]=_0x11a1b8['\x74\x6f\x6f\x6c']({'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x38e747[_0x11419b(0xfa)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x11a1b8[_0x11419b(0x8e)](_0x38e747[_0x11419b(0xe5)]),'\x65\x78\x65\x63\x75\x74\x65':async _0x1bbf22=>{return serializeToolResult(await _0x21f217(_0x1bbf22));}});}return _0x366715;}export{anthropicFleetTools,anthropicTools,createMcpServer,mastraFleetTools,mastraTools,openaiFleetTools,openaiTools,runCode,vercelAiFleetTools,vercelAiTools};function a0_0x1041(){const _0x1f6a33=['\x43\x4d\x76\x48\x7a\x61','\x42\x4e\x76\x54\x79\x4d\x76\x59','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x53\x41\x78\x6e\x30','\x44\x33\x6a\x50\x44\x67\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','\x44\x4d\x66\x53\x44\x77\x76\x5a','\x41\x77\x72\x5a','\x6c\x49\x34\x56\x6c\x49\x34\x56\x43\x67\x66\x4a\x41\x32\x66\x4e\x7a\x73\x35\x51\x43\x32\x39\x55','\x6d\x74\x71\x5a\x6d\x74\x4b\x5a\x45\x4b\x48\x72\x74\x31\x48\x4e','\x75\x32\x35\x57\x41\x4e\x69','\x7a\x4e\x6a\x56\x42\x71','\x41\x67\x66\x5a','\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','\x7a\x33\x6e\x54\x43\x75\x47','\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','\x44\x67\x39\x56\x42\x61','\x42\x67\x76\x55\x7a\x33\x72\x4f','\x43\x33\x72\x59\x41\x77\x35\x4e\x41\x77\x7a\x35','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x5a\x7a\x77\x66\x59\x79\x32\x47','\x79\x78\x6a\x4e\x44\x77\x31\x4c\x42\x4e\x72\x5a','\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','\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\x4d\x42\x67\x76\x4c\x44\x66\x39\x5a\x44\x67\x66\x30\x44\x78\x6d','\x42\x77\x66\x52\x7a\x75\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','\x76\x66\x62\x35\x44\x77\x6d','\x43\x32\x76\x5a\x43\x32\x4c\x56\x42\x4b\x4c\x4b','\x79\x32\x39\x54\x42\x77\x66\x55\x7a\x61','\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','\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','\x41\x32\x76\x35\x43\x57','\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','\x43\x32\x39\x31\x43\x4d\x6e\x4c','\x44\x68\x4c\x57\x7a\x71','\x44\x67\x39\x56\x42\x66\x39\x4a\x79\x77\x58\x53\x43\x57','\x41\x4e\x6e\x56\x42\x4c\x6e\x4a\x41\x67\x76\x54\x79\x71','\x76\x68\x50\x4c\x45\x4e\x43','\x41\x4e\x62\x4c\x7a\x57','\x6f\x74\x69\x32\x6e\x74\x61\x59\x6d\x30\x72\x5a\x79\x4e\x72\x69\x43\x47','\x43\x4e\x76\x55\x71\x32\x39\x4b\x7a\x71','\x44\x66\x6e\x68\x77\x4d\x6d','\x75\x4d\x76\x4e\x7a\x78\x47\x47\x43\x67\x66\x30\x44\x67\x76\x59\x42\x49\x34','\x79\x78\x6a\x59\x79\x78\x4b','\x79\x4d\x66\x5a\x7a\x74\x79\x30','\x6f\x66\x4c\x6f\x75\x67\x48\x36\x45\x71','\x41\x78\x6e\x62\x43\x4e\x6a\x48\x45\x71','\x6e\x78\x6e\x30\x44\x32\x35\x64\x73\x47','\x43\x68\x76\x5a\x41\x61','\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','\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','\x43\x33\x72\x48\x44\x68\x76\x5a','\x7a\x4d\x58\x4c\x7a\x78\x72\x6a\x7a\x61','\x43\x68\x4c\x30\x41\x67\x39\x55','\x7a\x65\x44\x54\x71\x75\x71','\x71\x67\x31\x48\x43\x33\x72\x59\x79\x73\x39\x4a\x42\x33\x6a\x4c','\x6d\x63\x34\x57\x6c\x4a\x61','\x43\x32\x39\x54\x7a\x71','\x45\x4e\x50\x66\x41\x4d\x43','\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\x4d\x76\x5a\x44\x77\x58\x30\x43\x57','\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','\x7a\x67\x66\x30\x79\x71','\x7a\x4d\x58\x4c\x7a\x78\x72\x46\x41\x77\x71','\x79\x32\x39\x55\x44\x67\x4c\x55\x44\x77\x76\x46\x42\x32\x35\x46\x7a\x78\x6a\x59\x42\x33\x69','\x44\x4d\x76\x59\x43\x32\x4c\x56\x42\x47','\x45\x4d\x6a\x62\x75\x30\x34','\x7a\x66\x62\x4f\x71\x4b\x34','\x79\x32\x7a\x59\x74\x78\x6d','\x75\x32\x76\x59\x44\x4d\x76\x59','\x73\x32\x76\x59\x42\x4d\x76\x53\x69\x67\x58\x48\x42\x4d\x44\x31\x79\x77\x44\x4c\x6c\x47','\x43\x33\x72\x59\x41\x77\x35\x4e','\x42\x77\x76\x30\x79\x77\x72\x48\x44\x67\x65','\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','\x42\x77\x66\x57','\x6d\x74\x71\x32\x6e\x4a\x47\x32\x6e\x5a\x7a\x69\x43\x75\x48\x49\x72\x4c\x79','\x43\x67\x66\x59\x79\x77\x31\x5a','\x79\x32\x39\x55\x44\x67\x76\x55\x44\x61','\x42\x77\x76\x5a\x43\x32\x66\x4e\x7a\x71','\x42\x32\x6e\x57\x41\x4b\x75','\x43\x67\x66\x59\x43\x32\x75','\x79\x33\x44\x4b','\x7a\x65\x76\x6a\x72\x32\x34','\x44\x32\x39\x59\x41\x32\x76\x59\x43\x57','\x44\x67\x39\x56\x42\x66\x39\x59\x7a\x78\x6e\x31\x42\x68\x71','\x77\x4e\x4c\x52\x7a\x32\x38','\x7a\x4e\x76\x55\x79\x33\x72\x50\x42\x32\x34','\x44\x65\x66\x35\x73\x32\x53','\x41\x77\x35\x57\x44\x78\x71','\x7a\x67\x4c\x5a\x43\x67\x66\x30\x79\x32\x48\x66\x45\x67\x76\x4a','\x42\x4d\x66\x54\x7a\x71','\x7a\x4d\x4c\x53\x44\x67\x76\x59','\x7a\x78\x48\x4c\x79\x57','\x43\x75\x7a\x6b\x41\x4d\x30','\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','\x6e\x74\x47\x33\x6f\x74\x72\x66\x43\x33\x50\x66\x72\x76\x79','\x79\x4e\x76\x33\x76\x76\x71','\x41\x76\x6e\x71\x79\x32\x4f','\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','\x43\x32\x76\x30','\x44\x67\x66\x55\x7a\x32\x58\x4c\x6c\x78\x6e\x48\x42\x4d\x72\x49\x42\x33\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\x33\x6a\x4c\x79\x78\x72\x4c\x76\x67\x39\x56\x42\x61','\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','\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','\x79\x32\x39\x55\x42\x4d\x76\x4a\x44\x61','\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','\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\x4d\x39\x4b\x7a\x71','\x6d\x74\x7a\x5a\x72\x67\x66\x53\x75\x30\x4f','\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','\x42\x67\x66\x55\x7a\x33\x76\x48\x7a\x32\x75','\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','\x79\x77\x58\x53\x42\x33\x43','\x43\x67\x66\x30\x41\x61','\x42\x32\x6a\x51\x7a\x77\x6e\x30','\x42\x77\x66\x4a\x41\x67\x4c\x55\x7a\x78\x6d','\x42\x77\x66\x34\x78\x33\x6a\x4c\x43\x33\x76\x53\x44\x68\x6d','\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','\x79\x77\x58\x53','\x6d\x74\x43\x57\x6e\x64\x47\x31\x7a\x76\x66\x58\x44\x67\x54\x4f','\x43\x32\x76\x30\x75\x4d\x76\x58\x44\x77\x76\x5a\x44\x65\x48\x48\x42\x4d\x72\x53\x7a\x78\x69','\x41\x77\x35\x57\x44\x78\x72\x74\x79\x32\x48\x4c\x42\x77\x65','\x74\x4b\x48\x48\x44\x30\x38','\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','\x44\x67\x76\x34\x44\x61','\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','\x6d\x74\x47\x30\x74\x33\x44\x52\x7a\x75\x72\x30','\x79\x4c\x6a\x6a\x79\x75\x65','\x7a\x4d\x58\x4c\x7a\x78\x72\x5a','\x43\x32\x76\x48\x43\x4d\x6e\x4f','\x79\x32\x58\x56\x43\x32\x75','\x44\x68\x4c\x57\x7a\x78\x6e\x4a\x43\x4d\x4c\x57\x44\x61','\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','\x43\x67\x66\x30\x44\x67\x76\x59\x42\x47','\x74\x68\x6e\x72\x7a\x66\x47','\x79\x4d\x66\x5a\x41\x61','\x6e\x4a\x43\x32\x6d\x4a\x47\x30\x6e\x4c\x76\x76\x75\x76\x76\x6a\x79\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','\x41\x77\x31\x48\x7a\x32\x75\x56\x43\x67\x35\x4e','\x41\x77\x31\x48\x7a\x32\x75','\x43\x67\x35\x4e','\x7a\x32\x76\x30','\x7a\x67\x76\x5a\x79\x33\x6a\x50\x43\x68\x72\x50\x42\x32\x34','\x6e\x5a\x47\x5a\x6f\x64\x65\x57\x43\x30\x54\x6f\x74\x75\x72\x4f','\x42\x67\x4c\x5a\x44\x61'];a0_0x1041=function(){return _0x1f6a33;};return a0_0x1041();}
1
+ const a0_0x3abaa3=a0_0x1227;(function(_0x3b2699,_0x2d7850){const _0x2c3d73=a0_0x1227,_0x37854d=_0x3b2699();while(!![]){try{const _0x4441c8=-parseInt(_0x2c3d73(0x101))/0x1+parseInt(_0x2c3d73(0x17d))/0x2*(parseInt(_0x2c3d73(0x17b))/0x3)+parseInt(_0x2c3d73(0xff))/0x4*(parseInt(_0x2c3d73(0x179))/0x5)+-parseInt(_0x2c3d73(0x135))/0x6+-parseInt(_0x2c3d73(0x197))/0x7*(parseInt(_0x2c3d73(0x11f))/0x8)+parseInt(_0x2c3d73(0x116))/0x9+parseInt(_0x2c3d73(0x128))/0xa*(-parseInt(_0x2c3d73(0x15d))/0xb);if(_0x4441c8===_0x2d7850)break;else _0x37854d['push'](_0x37854d['shift']());}catch(_0x5c2c49){_0x37854d['push'](_0x37854d['shift']());}}}(a0_0x6d55,0xc0ef5));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_0x3abaa3(0x127),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x3abaa3(0x11a),'\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':[a0_0x3abaa3(0x112),'\x6e\x6f\x64\x65',a0_0x3abaa3(0x189),a0_0x3abaa3(0x111)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3abaa3(0x18c)},'\x73\x6f\x75\x72\x63\x65':{'\x74\x79\x70\x65':a0_0x3abaa3(0x1a5),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3abaa3(0x14b)},'\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73':{'\x74\x79\x70\x65':a0_0x3abaa3(0x195),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3abaa3(0x16a)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x3abaa3(0x10d),a0_0x3abaa3(0x171)],'\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:_0x328f3e,sessionId:_0x57a807})=>async _0x34df5d=>{const _0x4338a7=a0_0x3abaa3;return await _0x328f3e[_0x4338a7(0x13b)](_0x34df5d[_0x4338a7(0x10d)],_0x34df5d[_0x4338a7(0x171)],{'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x57a807,'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x34df5d[_0x4338a7(0x187)]});}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x65\x78\x65\x63':{'\x6e\x61\x6d\x65':a0_0x3abaa3(0x167),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x52\x75\x6e\x20\x61\x20\x73\x68\x65\x6c\x6c\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x20\x28\x6e\x6f\x20\x70\x65\x72\x73\x69\x73\x74\x65\x6e\x74\x20\x73\x74\x61\x74\x65\x29\x20\x69\x6e\x20\x74\x68\x65\x20\x73\x61\x6e\x64\x62\x6f\x78\x2e\x20\x55\x73\x65\x20\x66\x6f\x72\x20\x6f\x6e\x65\x2d\x73\x68\x6f\x74\x20\x74\x61\x73\x6b\x73\x20\x6c\x69\x6b\x65\x20\x27\x70\x6e\x70\x6d\x20\x69\x6e\x73\x74\x61\x6c\x6c\x27\x20\x6f\x72\x20\x27\x6c\x73\x27\x2e\x20\x46\x6f\x72\x20\x63\x6f\x64\x65\x20\x74\x68\x61\x74\x20\x73\x68\x6f\x75\x6c\x64\x20\x73\x68\x61\x72\x65\x20\x73\x74\x61\x74\x65\x20\x61\x63\x72\x6f\x73\x73\x20\x63\x61\x6c\x6c\x73\x2c\x20\x70\x72\x65\x66\x65\x72\x20\x73\x61\x6e\x64\x62\x6f\x78\x5f\x72\x75\x6e\x5f\x63\x6f\x64\x65\x20\x77\x69\x74\x68\x20\x61\x20\x73\x65\x73\x73\x69\x6f\x6e\x49\x64\x2e','\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x3abaa3(0x11a),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x63\x6f\x6d\x6d\x61\x6e\x64':{'\x74\x79\x70\x65':a0_0x3abaa3(0x1a5),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3abaa3(0x12c)},'\x63\x77\x64':{'\x74\x79\x70\x65':a0_0x3abaa3(0x1a5),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3abaa3(0x196)},'\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73':{'\x74\x79\x70\x65':a0_0x3abaa3(0x195),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3abaa3(0x16f)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x3abaa3(0x148)],'\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:_0x46d75a,sessionId:_0x41e084})=>async _0x43628f=>{const _0x1291a1=a0_0x3abaa3;return await _0x46d75a['\x65\x78\x65\x63'](_0x43628f[_0x1291a1(0x148)],{'\x63\x77\x64':_0x43628f['\x63\x77\x64'],'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x43628f[_0x1291a1(0x187)],'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x41e084});}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x72\x65\x61\x64':{'\x6e\x61\x6d\x65':a0_0x3abaa3(0x175),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3abaa3(0x126),'\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_0x3abaa3(0x1a5)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x3abaa3(0x110)],'\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:_0x353360,sessionId:_0x8a28c6})=>async _0x531578=>{const _0x268288=a0_0x3abaa3;return{'\x63\x6f\x6e\x74\x65\x6e\x74':await _0x353360['\x72\x65\x61\x64'](_0x531578[_0x268288(0x110)],{'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x8a28c6})};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x77\x72\x69\x74\x65':{'\x6e\x61\x6d\x65':a0_0x3abaa3(0x163),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3abaa3(0x162),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x3abaa3(0x11a),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x68':{'\x74\x79\x70\x65':a0_0x3abaa3(0x1a5)},'\x63\x6f\x6e\x74\x65\x6e\x74':{'\x74\x79\x70\x65':a0_0x3abaa3(0x1a5),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3abaa3(0x176)}},'\x72\x65\x71\x75\x69\x72\x65\x64':['\x70\x61\x74\x68','\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:_0x52f9bf})=>async _0x82f675=>{const _0x60feda=a0_0x3abaa3;return await _0x52f9bf[_0x60feda(0x183)](_0x82f675[_0x60feda(0x110)],_0x82f675[_0x60feda(0x10b)]),{'\x6f\x6b':!![]};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x6c\x69\x73\x74':{'\x6e\x61\x6d\x65':a0_0x3abaa3(0x143),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3abaa3(0x121),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x3abaa3(0x11a),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x68':{'\x74\x79\x70\x65':a0_0x3abaa3(0x1a5)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x3abaa3(0x110)],'\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:_0x3743c9})=>async _0x45e7cf=>{const _0x3952c2=a0_0x3abaa3;return{'\x65\x6e\x74\x72\x69\x65\x73':await _0x3743c9['\x66\x73'][_0x3952c2(0x119)](_0x45e7cf[_0x3952c2(0x110)])};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x73\x65\x61\x72\x63\x68':{'\x6e\x61\x6d\x65':a0_0x3abaa3(0x18e),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3abaa3(0x172),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x3abaa3(0x11a),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x74\x65\x72\x6e':{'\x74\x79\x70\x65':a0_0x3abaa3(0x1a5),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x52\x65\x67\x65\x78\x20\x70\x61\x74\x74\x65\x72\x6e\x2e'},'\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_0x3abaa3(0x195),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3abaa3(0x108)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x3abaa3(0x17a)],'\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:_0xe7fad9})=>async _0x109816=>{const _0x33f507=a0_0x3abaa3,_0x4f2cc5={'\x47\x47\x65\x4a\x6b':function(_0x466b2f,_0x47afc6){return _0x466b2f>=_0x47afc6;}},_0x3978ea=[],_0x169484=_0x109816[_0x33f507(0x186)]??0x64;for await(const _0x57d48c of _0xe7fad9['\x73\x65\x61\x72\x63\x68'](_0x109816[_0x33f507(0x17a)],{'\x63\x77\x64':_0x109816['\x70\x61\x74\x68'],'\x6d\x61\x78\x52\x65\x73\x75\x6c\x74\x73':_0x169484})){_0x3978ea[_0x33f507(0x198)](_0x57d48c);if(_0x4f2cc5['\x47\x47\x65\x4a\x6b'](_0x3978ea[_0x33f507(0x18b)],_0x169484))break;}return{'\x6d\x61\x74\x63\x68\x65\x73':_0x3978ea};}}},ALL_TOOL_SPECS=Object[a0_0x3abaa3(0x14f)](TOOL_SPECS);function selectSpecs(_0x2464e8){const _0x3458bb=a0_0x3abaa3;if(!_0x2464e8||_0x2464e8[_0x3458bb(0x18b)]===0x0)return ALL_TOOL_SPECS;const _0x16c9fc=new Set(_0x2464e8);return Object[_0x3458bb(0x156)](TOOL_SPECS)[_0x3458bb(0x131)](_0x2621bb=>_0x16c9fc[_0x3458bb(0x178)](_0x2621bb))[_0x3458bb(0x144)](_0x1a7563=>TOOL_SPECS[_0x1a7563]);}function serializeToolResult(_0x170b89){const _0x23f92b=a0_0x3abaa3,_0x1296ee={'\x63\x4b\x4d\x56\x4f':function(_0x3c729c,_0x18805f){return _0x3c729c===_0x18805f;},'\x68\x51\x4b\x43\x76':_0x23f92b(0x1a5)};if(_0x1296ee[_0x23f92b(0x184)](typeof _0x170b89,_0x1296ee[_0x23f92b(0x146)]))return _0x170b89;try{return JSON['\x73\x74\x72\x69\x6e\x67\x69\x66\x79'](_0x170b89,null,0x2);}catch{return String(_0x170b89);}}const SDK_VERSION=((()=>{const _0x20ef58=a0_0x3abaa3,_0x2e1bb8={'\x62\x45\x4a\x54\x63':_0x20ef58(0x123)};try{return createRequire(import.meta.url)(_0x20ef58(0x152))['\x76\x65\x72\x73\x69\x6f\x6e']??_0x2e1bb8[_0x20ef58(0x160)];}catch{return'\x30\x2e\x30\x2e\x30';}})());async function createMcpServer(_0x78d9da,_0x40127a={}){const _0x1a7e8d=a0_0x3abaa3,_0x3186b1={'\x4e\x6d\x4b\x49\x73':function(_0x3006b7,_0x18f470){return _0x3006b7 instanceof _0x18f470;},'\x74\x41\x55\x77\x42':'\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\x2f\x74\x79\x70\x65\x73\x2e\x6a\x73'};let _0x539ad6,_0x58c860;try{[_0x539ad6,_0x58c860]=await Promise[_0x1a7e8d(0x192)]([import(_0x1a7e8d(0x12f)),import(_0x3186b1[_0x1a7e8d(0x170)])]);}catch{throw new Error(_0x1a7e8d(0x169));}const _0x27f13b=selectSpecs(_0x40127a[_0x1a7e8d(0x14d)]),_0xaefed2={'\x62\x6f\x78':_0x78d9da,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x40127a[_0x1a7e8d(0x157)]},_0x25ada2=new Map();for(const _0xffaa45 of _0x27f13b)_0x25ada2[_0x1a7e8d(0x132)](_0xffaa45[_0x1a7e8d(0x155)],_0xffaa45['\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72'](_0xaefed2));const _0x1ad7e3=new _0x539ad6[(_0x1a7e8d(0x1a3))]({'\x6e\x61\x6d\x65':_0x40127a[_0x1a7e8d(0x155)]??'\x74\x61\x6e\x67\x6c\x65\x2d\x73\x61\x6e\x64\x62\x6f\x78','\x76\x65\x72\x73\x69\x6f\x6e':_0x40127a[_0x1a7e8d(0x14e)]??SDK_VERSION},{'\x63\x61\x70\x61\x62\x69\x6c\x69\x74\x69\x65\x73':{'\x74\x6f\x6f\x6c\x73':{}}});return _0x1ad7e3[_0x1a7e8d(0x1a2)](_0x58c860[_0x1a7e8d(0x173)],async()=>({'\x74\x6f\x6f\x6c\x73':_0x27f13b[_0x1a7e8d(0x144)](_0x2f8d6f=>({'\x6e\x61\x6d\x65':_0x2f8d6f['\x6e\x61\x6d\x65'],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x2f8d6f[_0x1a7e8d(0x100)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x2f8d6f[_0x1a7e8d(0x1a0)]}))})),_0x1ad7e3[_0x1a7e8d(0x1a2)](_0x58c860[_0x1a7e8d(0x1a8)],async _0x55065f=>{const _0x1519ee=_0x1a7e8d,_0xa2a296=_0x55065f,_0xc1e22d=_0x25ada2[_0x1519ee(0x17e)](_0xa2a296[_0x1519ee(0x10f)][_0x1519ee(0x155)]);if(!_0xc1e22d)return{'\x69\x73\x45\x72\x72\x6f\x72':!![],'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':_0x1519ee(0x11e),'\x74\x65\x78\x74':_0x1519ee(0x10e)+_0xa2a296['\x70\x61\x72\x61\x6d\x73']['\x6e\x61\x6d\x65']}]};try{return{'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':_0x1519ee(0x11e),'\x74\x65\x78\x74':serializeToolResult(await _0xc1e22d(_0xa2a296[_0x1519ee(0x10f)]['\x61\x72\x67\x75\x6d\x65\x6e\x74\x73']??{}))}]};}catch(_0x4f3481){return{'\x69\x73\x45\x72\x72\x6f\x72':!![],'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':_0x1519ee(0x11e),'\x74\x65\x78\x74':_0x3186b1[_0x1519ee(0x10c)](_0x4f3481,Error)?_0x4f3481[_0x1519ee(0x182)]:String(_0x4f3481)}]};}}),{'\x73\x65\x72\x76\x65\x72':_0x1ad7e3,'\x63\x6f\x6e\x6e\x65\x63\x74':_0x25115c=>_0x1ad7e3[_0x1a7e8d(0x15b)](_0x25115c),'\x63\x6c\x6f\x73\x65':()=>_0x1ad7e3[_0x1a7e8d(0x13f)]()};}function runCode(_0x1b7534,_0xa269e7,_0x4dc1ff,_0x46045b){const _0x3fc535=a0_0x3abaa3;return _0x1b7534[_0x3fc535(0x13b)](_0xa269e7,_0x4dc1ff,_0x46045b);}function anthropicTools(_0x1ffdb2,_0x49ca50={}){const _0x5bae64=a0_0x3abaa3,_0x49eaa7={'\x4b\x68\x74\x75\x51':function(_0x236c8b,_0x576301){return _0x236c8b(_0x576301);},'\x56\x6d\x72\x68\x6f':_0x5bae64(0x1a7),'\x72\x63\x67\x75\x4e':function(_0x3b87cc,_0x4d07f4){return _0x3b87cc instanceof _0x4d07f4;}},_0x5b306d=selectSpecs(_0x49ca50[_0x5bae64(0x14d)]),_0xd745f9={'\x62\x6f\x78':_0x1ffdb2,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x49ca50[_0x5bae64(0x157)]},_0xb2833a=new Map();for(const _0x515f61 of _0x5b306d)_0xb2833a[_0x5bae64(0x132)](_0x515f61['\x6e\x61\x6d\x65'],_0x515f61[_0x5bae64(0x165)](_0xd745f9));const _0x256f39=_0x5b306d['\x6d\x61\x70'](_0x3d9610=>({'\x6e\x61\x6d\x65':_0x3d9610[_0x5bae64(0x155)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x3d9610[_0x5bae64(0x100)],'\x69\x6e\x70\x75\x74\x5f\x73\x63\x68\x65\x6d\x61':_0x3d9610['\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61']}));async function _0x378f30(_0x2ba641){const _0x48fdeb=_0x5bae64,_0x4e5cb9=_0xb2833a[_0x48fdeb(0x17e)](_0x2ba641[_0x48fdeb(0x155)]);if(!_0x4e5cb9)return{'\x74\x79\x70\x65':_0x48fdeb(0x1a7),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x2ba641['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':'\x55\x6e\x6b\x6e\x6f\x77\x6e\x20\x74\x6f\x6f\x6c\x3a\x20'+_0x2ba641['\x6e\x61\x6d\x65'],'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};try{const _0x34d2fb=await _0x49eaa7[_0x48fdeb(0x185)](_0x4e5cb9,_0x2ba641[_0x48fdeb(0x10a)]);return{'\x74\x79\x70\x65':_0x48fdeb(0x1a7),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x2ba641['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':toAnthropicContent(_0x34d2fb)};}catch(_0x4e44f0){return{'\x74\x79\x70\x65':_0x49eaa7[_0x48fdeb(0x16b)],'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x2ba641['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x49eaa7[_0x48fdeb(0x17f)](_0x4e44f0,Error)?_0x4e44f0[_0x48fdeb(0x182)]:String(_0x4e44f0),'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};}}async function _0x3adb32(_0x52dbfa){const _0x50dfde=_0x5bae64,_0xc8889c=_0x52dbfa['\x66\x69\x6c\x74\x65\x72'](_0x4a79ff=>typeof _0x4a79ff===_0x50dfde(0x11a)&&_0x4a79ff!==null&&_0x4a79ff[_0x50dfde(0x19d)]===_0x50dfde(0x13e));return Promise[_0x50dfde(0x192)](_0xc8889c[_0x50dfde(0x144)](_0x378f30));}return{'\x74\x6f\x6f\x6c\x73':_0x256f39,'\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x55\x73\x65':_0x378f30,'\x68\x61\x6e\x64\x6c\x65\x41\x73\x73\x69\x73\x74\x61\x6e\x74\x4d\x65\x73\x73\x61\x67\x65':_0x3adb32};}function toAnthropicContent(_0x360532){const _0x29d8cc=a0_0x3abaa3,_0x180536={'\x74\x78\x51\x4f\x7a':function(_0x2ccd16,_0x618722){return _0x2ccd16(_0x618722);},'\x78\x77\x48\x53\x4e':_0x29d8cc(0x11e),'\x41\x4b\x4f\x42\x76':function(_0x262015,_0xa3ac9f){return _0x262015(_0xa3ac9f);}};if(!isCodeExecutionResultWithImages(_0x360532))return _0x180536[_0x29d8cc(0x134)](serializeToolResult,_0x360532);const _0x3eef04=[],_0x2029d7={..._0x360532,'\x72\x65\x73\x75\x6c\x74\x73':_0x360532['\x72\x65\x73\x75\x6c\x74\x73']['\x66\x69\x6c\x74\x65\x72'](_0x20afdf=>_0x20afdf['\x74\x79\x70\x65']!==_0x29d8cc(0x139))};_0x3eef04['\x70\x75\x73\x68']({'\x74\x79\x70\x65':_0x180536[_0x29d8cc(0x13a)],'\x74\x65\x78\x74':_0x180536[_0x29d8cc(0x138)](serializeToolResult,_0x2029d7)});for(const _0x4fb880 of _0x360532['\x72\x65\x73\x75\x6c\x74\x73'])if(_0x180536['\x74\x78\x51\x4f\x7a'](isImagePart,_0x4fb880))_0x3eef04[_0x29d8cc(0x198)]({'\x74\x79\x70\x65':_0x29d8cc(0x139),'\x73\x6f\x75\x72\x63\x65':{'\x74\x79\x70\x65':'\x62\x61\x73\x65\x36\x34','\x6d\x65\x64\x69\x61\x5f\x74\x79\x70\x65':imageMediaType(_0x4fb880['\x66\x6f\x72\x6d\x61\x74']),'\x64\x61\x74\x61':_0x4fb880[_0x29d8cc(0x106)]}});return _0x3eef04;}function isImagePart(_0x8d6389){const _0x53eada=a0_0x3abaa3,_0x31d075={'\x74\x53\x77\x75\x71':function(_0x3cb679,_0x1604a0){return _0x3cb679===_0x1604a0;}};return _0x31d075[_0x53eada(0x191)](_0x8d6389[_0x53eada(0x19d)],_0x53eada(0x139));}function a0_0x1227(_0x3832e9,_0x922e26){_0x3832e9=_0x3832e9-0xfb;const _0x6d5584=a0_0x6d55();let _0x122722=_0x6d5584[_0x3832e9];if(a0_0x1227['\x70\x47\x49\x65\x51\x62']===undefined){var _0x536ddb=function(_0x1f500e){const _0x27d902='\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 _0x452835='',_0xe8e63='';for(let _0x1422c3=0x0,_0x2d1e42,_0xd145c7,_0x10d9e6=0x0;_0xd145c7=_0x1f500e['\x63\x68\x61\x72\x41\x74'](_0x10d9e6++);~_0xd145c7&&(_0x2d1e42=_0x1422c3%0x4?_0x2d1e42*0x40+_0xd145c7:_0xd145c7,_0x1422c3++%0x4)?_0x452835+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0xff&_0x2d1e42>>(-0x2*_0x1422c3&0x6)):0x0){_0xd145c7=_0x27d902['\x69\x6e\x64\x65\x78\x4f\x66'](_0xd145c7);}for(let _0x5d3bba=0x0,_0x172dad=_0x452835['\x6c\x65\x6e\x67\x74\x68'];_0x5d3bba<_0x172dad;_0x5d3bba++){_0xe8e63+='\x25'+('\x30\x30'+_0x452835['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x5d3bba)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x10))['\x73\x6c\x69\x63\x65'](-0x2);}return decodeURIComponent(_0xe8e63);};a0_0x1227['\x6a\x6d\x69\x57\x74\x4f']=_0x536ddb,a0_0x1227['\x62\x53\x70\x74\x6c\x79']={},a0_0x1227['\x70\x47\x49\x65\x51\x62']=!![];}const _0x494be6=_0x6d5584[0x0],_0x123036=_0x3832e9+_0x494be6,_0x191c5f=a0_0x1227['\x62\x53\x70\x74\x6c\x79'][_0x123036];return!_0x191c5f?(_0x122722=a0_0x1227['\x6a\x6d\x69\x57\x74\x4f'](_0x122722),a0_0x1227['\x62\x53\x70\x74\x6c\x79'][_0x123036]=_0x122722):_0x122722=_0x191c5f,_0x122722;}function isCodeExecutionResultWithImages(_0x20d678){const _0x5b5356=a0_0x3abaa3,_0x1540f0={'\x52\x67\x4b\x74\x66':_0x5b5356(0x11a)};if(!_0x20d678||typeof _0x20d678!==_0x1540f0[_0x5b5356(0x136)])return![];const _0xe5e494=_0x20d678[_0x5b5356(0x15e)];if(!Array[_0x5b5356(0x149)](_0xe5e494))return![];return _0xe5e494[_0x5b5356(0x118)](_0x483aa8=>_0x483aa8&&typeof _0x483aa8===_0x5b5356(0x11a)&&_0x483aa8[_0x5b5356(0x19d)]===_0x5b5356(0x139));}function imageMediaType(_0xb3bd67){const _0x272002=a0_0x3abaa3,_0x23acf1={'\x5a\x65\x41\x78\x63':_0x272002(0x14c),'\x71\x71\x6f\x78\x50':'\x69\x6d\x61\x67\x65\x2f\x70\x6e\x67','\x71\x52\x53\x44\x4f':_0x272002(0x11d)};switch(_0xb3bd67){case _0x23acf1[_0x272002(0x133)]:return _0x23acf1[_0x272002(0x1aa)];case _0x23acf1[_0x272002(0x104)]:return _0x272002(0x17c);case _0x272002(0x1a6):return _0x23acf1[_0x272002(0x1aa)];}}function a0_0x6d55(){const _0x1d4ab8=['\x79\x77\x58\x53\x42\x33\x43','\x44\x4d\x76\x59\x43\x32\x4c\x56\x42\x47','\x44\x4d\x66\x53\x44\x77\x76\x5a','\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','\x7a\x78\x48\x50\x44\x65\x6e\x56\x7a\x67\x75','\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\x78\x6a\x4e\x44\x77\x31\x4c\x42\x4e\x72\x5a','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4a\x43\x4d\x76\x48\x44\x67\x75','\x42\x4d\x66\x54\x7a\x71','\x41\x32\x76\x35\x43\x57','\x43\x32\x76\x5a\x43\x32\x4c\x56\x42\x4b\x4c\x4b','\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','\x44\x32\x39\x59\x41\x32\x76\x59\x43\x57','\x7a\x32\x7a\x54\x42\x77\x79','\x79\x32\x39\x55\x42\x4d\x76\x4a\x44\x61','\x43\x67\x66\x59\x43\x32\x75','\x6e\x64\x72\x4e\x73\x30\x4c\x69\x72\x77\x4f','\x43\x4d\x76\x5a\x44\x77\x58\x30\x43\x57','\x43\x33\x72\x48\x44\x68\x76\x5a','\x79\x4b\x76\x6b\x76\x67\x6d','\x79\x75\x44\x71\x41\x76\x71','\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\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x33\x43\x4d\x4c\x30\x7a\x71','\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\x77\x66\x52\x7a\x75\x48\x48\x42\x4d\x72\x53\x7a\x78\x69','\x79\x32\x39\x55\x44\x67\x4c\x55\x44\x77\x76\x46\x42\x32\x35\x46\x7a\x78\x6a\x59\x42\x33\x69','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4c\x45\x67\x76\x4a','\x44\x67\x76\x54\x43\x67\x58\x48\x44\x67\x76\x46\x41\x77\x71','\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','\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','\x76\x4d\x31\x59\x41\x67\x38','\x7a\x4e\x6a\x56\x42\x71','\x76\x65\x50\x6f\x74\x32\x47','\x7a\x4d\x58\x4c\x7a\x78\x72\x6a\x7a\x61','\x72\x67\x76\x4d\x79\x78\x76\x53\x44\x63\x61\x32\x6d\x64\x61\x57\x6d\x63\x34','\x44\x65\x66\x76\x44\x30\x69','\x43\x32\x39\x31\x43\x4d\x6e\x4c','\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','\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\x78\x66\x71\x73\x66\x4f','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x59\x7a\x77\x66\x4b','\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','\x79\x32\x7a\x48\x43\x65\x6d','\x41\x67\x66\x5a','\x6d\x74\x62\x55\x77\x68\x6a\x59\x74\x4b\x75','\x43\x67\x66\x30\x44\x67\x76\x59\x42\x47','\x6e\x5a\x75\x30\x6e\x5a\x6d\x30\x77\x68\x6a\x73\x79\x4c\x7a\x41','\x41\x77\x31\x48\x7a\x32\x75\x56\x41\x4e\x62\x4c\x7a\x57','\x6e\x65\x50\x74\x42\x68\x6e\x71\x72\x47','\x7a\x32\x76\x30','\x43\x4d\x6e\x4e\x44\x75\x34','\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\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','\x42\x77\x76\x5a\x43\x32\x66\x4e\x7a\x71','\x44\x33\x6a\x50\x44\x67\x75','\x79\x30\x54\x6e\x76\x4b\x38','\x73\x32\x48\x30\x44\x76\x65','\x42\x77\x66\x34\x78\x33\x6a\x4c\x43\x33\x76\x53\x44\x68\x6d','\x44\x67\x4c\x54\x7a\x77\x39\x31\x44\x66\x39\x54\x43\x57','\x44\x67\x39\x56\x42\x66\x39\x4a\x79\x77\x58\x53\x43\x57','\x44\x68\x4c\x57\x7a\x78\x6e\x4a\x43\x4d\x4c\x57\x44\x61','\x7a\x67\x76\x53\x7a\x78\x72\x4c','\x42\x67\x76\x55\x7a\x33\x72\x4f','\x73\x32\x76\x59\x42\x4d\x76\x53\x69\x67\x58\x48\x42\x4d\x44\x31\x79\x77\x44\x4c\x6c\x47','\x79\x33\x6a\x4c\x79\x78\x72\x4c\x76\x67\x39\x56\x42\x61','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x5a\x7a\x77\x66\x59\x79\x32\x47','\x79\x33\x6a\x4c\x79\x78\x72\x4c','\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\x66\x6e\x33\x44\x78\x65','\x79\x77\x58\x53','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x50\x7a\x61','\x7a\x31\x76\x7a\x41\x67\x34','\x42\x4e\x76\x54\x79\x4d\x76\x59','\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','\x6d\x5a\x69\x35\x6e\x33\x48\x4c\x74\x33\x50\x53\x76\x57','\x43\x68\x76\x5a\x41\x61','\x7a\x65\x4c\x74\x74\x32\x75','\x7a\x77\x35\x32\x41\x78\x6a\x56\x42\x4d\x31\x4c\x42\x4e\x71','\x45\x78\x4c\x63\x71\x4e\x47','\x73\x33\x76\x72\x42\x76\x47','\x44\x68\x4c\x57\x7a\x71','\x79\x32\x39\x55\x44\x67\x76\x34\x44\x61','\x79\x33\x44\x4b','\x41\x77\x35\x57\x44\x78\x72\x74\x79\x32\x48\x4c\x42\x77\x65','\x77\x4d\x48\x6e\x75\x68\x47','\x43\x32\x76\x30\x75\x4d\x76\x58\x44\x77\x76\x5a\x44\x65\x48\x48\x42\x4d\x72\x53\x7a\x78\x69','\x75\x32\x76\x59\x44\x4d\x76\x59','\x44\x32\x39\x59\x41\x32\x76\x59\x6c\x71','\x43\x33\x72\x59\x41\x77\x35\x4e','\x43\x33\x7a\x4e','\x44\x67\x39\x56\x42\x66\x39\x59\x7a\x78\x6e\x31\x42\x68\x71','\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','\x43\x30\x54\x33\x42\x30\x4f','\x43\x78\x66\x56\x45\x66\x61','\x75\x32\x66\x55\x7a\x67\x6a\x56\x45\x63\x61','\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','\x72\x77\x35\x32\x41\x78\x6a\x56\x42\x4d\x31\x4c\x42\x4e\x71\x47\x42\x4d\x66\x54\x7a\x73\x61\x4f\x7a\x73\x35\x4e\x6c\x49\x61\x4e\x44\x77\x35\x50\x44\x4d\x76\x59\x43\x32\x66\x53\x6a\x59\x62\x4d\x42\x33\x69\x47\x42\x78\x76\x53\x44\x67\x4b\x54\x42\x67\x66\x55\x7a\x33\x76\x48\x7a\x32\x75\x47\x74\x4d\x39\x4b\x7a\x73\x39\x71\x45\x78\x72\x4f\x42\x32\x34\x50\x6c\x49\x62\x65\x7a\x77\x7a\x48\x44\x77\x58\x30\x69\x63\x44\x31\x42\x4d\x4c\x32\x7a\x78\x6a\x5a\x79\x77\x57\x4e\x6c\x47','\x43\x4b\x6a\x55\x41\x4d\x43','\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','\x73\x30\x39\x63\x79\x4c\x61','\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','\x7a\x4d\x58\x4c\x7a\x78\x72\x46\x41\x77\x71','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x59\x44\x77\x35\x46\x79\x32\x39\x54\x42\x77\x66\x55\x7a\x61','\x6d\x74\x47\x58\x6f\x64\x79\x59\x6e\x66\x48\x4e\x74\x4b\x31\x49\x76\x57','\x7a\x67\x76\x5a\x79\x33\x6a\x50\x43\x68\x72\x50\x42\x32\x34','\x6d\x5a\x47\x59\x6e\x74\x43\x58\x76\x30\x48\x4d\x44\x32\x54\x6e','\x7a\x4d\x58\x4c\x7a\x78\x72\x5a','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4b\x7a\x78\x6e\x30\x43\x4d\x39\x35','\x43\x76\x6a\x74\x72\x65\x38','\x44\x67\x39\x56\x42\x61','\x7a\x67\x66\x30\x79\x71','\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','\x71\x32\x66\x57\x6c\x49\x62\x65\x7a\x77\x7a\x48\x44\x77\x58\x30\x69\x64\x65\x57\x6d\x63\x34','\x7a\x65\x31\x56\x72\x32\x47','\x41\x77\x35\x57\x44\x78\x71','\x79\x32\x39\x55\x44\x67\x76\x55\x44\x61','\x74\x4d\x31\x6c\x73\x78\x6d','\x42\x67\x66\x55\x7a\x33\x76\x48\x7a\x32\x75','\x76\x77\x35\x52\x42\x4d\x39\x33\x42\x49\x62\x30\x42\x32\x39\x53\x6f\x49\x61','\x43\x67\x66\x59\x79\x77\x31\x5a','\x43\x67\x66\x30\x41\x61','\x79\x4d\x66\x5a\x41\x61','\x43\x68\x4c\x30\x41\x67\x39\x55','\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\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','\x41\x4e\x6e\x56\x42\x4c\x6e\x4a\x41\x67\x76\x54\x79\x71','\x6f\x74\x71\x5a\x6e\x5a\x69\x34\x6d\x31\x48\x54\x73\x32\x66\x4b\x45\x71','\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','\x43\x32\x39\x54\x7a\x71','\x42\x67\x4c\x5a\x44\x61','\x42\x32\x6a\x51\x7a\x77\x6e\x30','\x43\x33\x72\x59\x41\x77\x35\x4e\x41\x77\x7a\x35','\x71\x67\x31\x48\x43\x33\x72\x59\x79\x73\x39\x4a\x42\x33\x6a\x4c','\x41\x4e\x62\x4c\x7a\x57','\x44\x67\x76\x34\x44\x61','\x6e\x5a\x69\x30\x6d\x67\x31\x73\x76\x33\x6e\x63\x75\x71','\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','\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','\x43\x67\x44\x71\x42\x77\x75','\x6d\x63\x34\x57\x6c\x4a\x61','\x43\x75\x54\x67\x74\x30\x69','\x44\x77\x35\x50\x44\x4d\x76\x59\x43\x32\x66\x53','\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','\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','\x6d\x74\x61\x35\x6d\x4a\x4b\x31\x6d\x67\x66\x69\x74\x68\x44\x6d\x45\x71','\x42\x32\x7a\x6f\x42\x68\x6d','\x7a\x78\x48\x4c\x79\x57','\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','\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','\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','\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','\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','\x41\x77\x72\x5a','\x7a\x4d\x4c\x53\x44\x67\x76\x59','\x43\x32\x76\x30','\x77\x4d\x76\x62\x45\x67\x6d','\x44\x68\x48\x72\x74\x33\x4f','\x6d\x4a\x75\x30\x6f\x64\x43\x59\x6f\x67\x54\x56\x74\x77\x58\x67\x75\x47','\x75\x4d\x44\x6c\x44\x67\x79','\x42\x77\x76\x30\x79\x77\x72\x48\x44\x67\x65','\x71\x75\x54\x70\x71\x4e\x79','\x41\x77\x31\x48\x7a\x32\x75','\x45\x68\x44\x69\x75\x30\x34','\x43\x4e\x76\x55\x71\x32\x39\x4b\x7a\x71','\x7a\x4e\x76\x55\x79\x33\x72\x50\x42\x32\x34','\x44\x33\x48\x68\x76\x67\x47','\x44\x67\x39\x56\x42\x66\x39\x31\x43\x32\x75','\x79\x32\x58\x56\x43\x32\x75','\x69\x67\x35\x56\x44\x63\x62\x4d\x42\x33\x76\x55\x7a\x63\x34\x47\x71\x33\x6a\x4c\x79\x78\x72\x4c\x69\x67\x4c\x30\x69\x67\x7a\x50\x43\x4e\x6e\x30\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','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4d\x42\x67\x76\x4c\x44\x66\x39\x5a\x44\x67\x66\x30\x44\x78\x6d','\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','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x53\x41\x78\x6e\x30','\x42\x77\x66\x57','\x75\x77\x31\x56\x7a\x78\x4b','\x41\x66\x66\x6c\x71\x33\x79','\x41\x77\x58\x33\x75\x78\x43','\x79\x32\x39\x54\x42\x77\x66\x55\x7a\x61','\x41\x78\x6e\x62\x43\x4e\x6a\x48\x45\x71','\x43\x33\x72\x4b\x7a\x78\x6a\x59','\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','\x43\x67\x35\x4e'];a0_0x6d55=function(){return _0x1d4ab8;};return a0_0x6d55();}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_0x3abaa3(0x117),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x53\x70\x61\x77\x6e\x20\x61\x20\x66\x6c\x65\x65\x74\x20\x6f\x66\x20\x4e\x20\x73\x61\x6e\x64\x62\x6f\x78\x65\x73\x20\x66\x72\x6f\x6d\x20\x61\x20\x74\x65\x6d\x70\x6c\x61\x74\x65\x2c\x20\x77\x69\x74\x68\x20\x61\x20\x63\x6f\x6f\x72\x64\x69\x6e\x61\x74\x6f\x72\x20\x70\x6c\x75\x73\x20\x4e\x20\x77\x6f\x72\x6b\x65\x72\x73\x20\x73\x68\x61\x72\x69\x6e\x67\x20\x61\x20\x77\x6f\x72\x6b\x73\x70\x61\x63\x65\x2e\x20\x52\x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x66\x6c\x65\x65\x74\x20\x69\x64\x20\x61\x6e\x64\x20\x74\x68\x65\x20\x6d\x61\x63\x68\x69\x6e\x65\x20\x69\x64\x73\x2e\x20\x45\x61\x63\x68\x20\x77\x6f\x72\x6b\x65\x72\x20\x68\x61\x73\x20\x69\x74\x73\x20\x6f\x77\x6e\x20\x70\x65\x72\x73\x69\x73\x74\x65\x6e\x74\x20\x63\x6f\x64\x65\x2d\x65\x78\x65\x63\x75\x74\x69\x6f\x6e\x20\x6b\x65\x72\x6e\x65\x6c\x3b\x20\x74\x68\x65\x20\x73\x61\x6d\x65\x20\x77\x6f\x72\x6b\x73\x70\x61\x63\x65\x20\x69\x73\x20\x6d\x6f\x75\x6e\x74\x65\x64\x20\x61\x63\x72\x6f\x73\x73\x20\x74\x68\x65\x6d\x2e\x20\x43\x4f\x53\x54\x53\x20\x53\x43\x41\x4c\x45\x20\x4c\x49\x4e\x45\x41\x52\x4c\x59\x20\x77\x69\x74\x68\x20\x60\x77\x6f\x72\x6b\x65\x72\x73\x60\x2e\x20\x55\x73\x65\x20\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x64\x65\x73\x74\x72\x6f\x79\x20\x77\x68\x65\x6e\x20\x64\x6f\x6e\x65\x2e','\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x3abaa3(0x11a),'\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':a0_0x3abaa3(0x1a5),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3abaa3(0x164)},'\x77\x6f\x72\x6b\x65\x72\x73':{'\x74\x79\x70\x65':'\x6e\x75\x6d\x62\x65\x72','\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_0x3abaa3(0x11a),'\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_0x3abaa3(0x12b)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x3abaa3(0x168),a0_0x3abaa3(0x159)],'\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:_0x5431a2})=>async _0x157e2d=>{const _0x1a084a=a0_0x3abaa3,_0x1de15d=await _0x5431a2[_0x1a084a(0x102)]['\x63\x72\x65\x61\x74\x65\x57\x69\x74\x68\x43\x6f\x6f\x72\x64\x69\x6e\x61\x74\x6f\x72']({'\x64\x65\x66\x61\x75\x6c\x74\x73':{'\x70\x75\x62\x6c\x69\x63\x54\x65\x6d\x70\x6c\x61\x74\x65\x49\x64':_0x157e2d[_0x1a084a(0x168)]},'\x77\x6f\x72\x6b\x65\x72\x73':Array[_0x1a084a(0x16c)]({'\x6c\x65\x6e\x67\x74\x68':_0x157e2d[_0x1a084a(0x159)]},(_0xa3d396,_0x4c5788)=>({'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64':_0x1a084a(0x1a4)+_0x4c5788})),'\x6d\x65\x74\x61\x64\x61\x74\x61':_0x157e2d[_0x1a084a(0x137)]});return{'\x66\x6c\x65\x65\x74\x49\x64':_0x1de15d[_0x1a084a(0x16e)],'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64\x73':_0x1de15d['\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':'\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':'\x52\x75\x6e\x20\x61\x20\x73\x68\x65\x6c\x6c\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x20\x6f\x6e\x20\x61\x20\x66\x6c\x65\x65\x74\x27\x73\x20\x77\x6f\x72\x6b\x65\x72\x73\x20\x69\x6e\x20\x70\x61\x72\x61\x6c\x6c\x65\x6c\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\x3b\x20\x70\x61\x73\x73\x20\x60\x6d\x61\x63\x68\x69\x6e\x65\x73\x60\x20\x74\x6f\x20\x74\x61\x72\x67\x65\x74\x20\x73\x70\x65\x63\x69\x66\x69\x63\x20\x6f\x6e\x65\x73\x2e\x20\x52\x65\x74\x75\x72\x6e\x73\x20\x70\x65\x72\x2d\x6d\x61\x63\x68\x69\x6e\x65\x20\x7b\x6f\x6b\x2c\x20\x72\x65\x73\x75\x6c\x74\x3f\x2c\x20\x65\x72\x72\x6f\x72\x3f\x7d\x20\x65\x6e\x74\x72\x69\x65\x73\x2e','\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':{'\x66\x6c\x65\x65\x74\x5f\x69\x64':{'\x74\x79\x70\x65':a0_0x3abaa3(0x1a5)},'\x63\x6f\x6d\x6d\x61\x6e\x64':{'\x74\x79\x70\x65':a0_0x3abaa3(0x1a5),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3abaa3(0x12c)},'\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':a0_0x3abaa3(0x12e)},'\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73':{'\x74\x79\x70\x65':a0_0x3abaa3(0x195),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3abaa3(0x120)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x3abaa3(0xfd),a0_0x3abaa3(0x148)],'\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:_0xffc60c})=>async _0x4cc1e8=>{const _0x36778d=a0_0x3abaa3;return await(await _0xffc60c[_0x36778d(0x102)][_0x36778d(0x119)]({'\x66\x6c\x65\x65\x74\x49\x64':_0x4cc1e8['\x66\x6c\x65\x65\x74\x5f\x69\x64']}))['\x64\x69\x73\x70\x61\x74\x63\x68\x45\x78\x65\x63'](_0x4cc1e8[_0x36778d(0x148)],{'\x6d\x61\x63\x68\x69\x6e\x65\x73':_0x4cc1e8['\x6d\x61\x63\x68\x69\x6e\x65\x73'],'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x4cc1e8[_0x36778d(0x187)]});}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x73\x74\x61\x74\x75\x73':{'\x6e\x61\x6d\x65':a0_0x3abaa3(0x141),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3abaa3(0x1af),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x3abaa3(0x11a),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x66\x6c\x65\x65\x74\x5f\x69\x64':{'\x74\x79\x70\x65':a0_0x3abaa3(0x1a5)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x3abaa3(0xfd)],'\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:_0x1f8f94})=>async _0x39d50f=>{const _0x11ea0b=a0_0x3abaa3,_0x40e0a1=await _0x1f8f94[_0x11ea0b(0x102)]['\x6c\x69\x73\x74']({'\x66\x6c\x65\x65\x74\x49\x64':_0x39d50f[_0x11ea0b(0xfd)]});return{'\x66\x6c\x65\x65\x74\x49\x64':_0x40e0a1[_0x11ea0b(0x16e)],'\x6d\x61\x63\x68\x69\x6e\x65\x73':_0x40e0a1[_0x11ea0b(0x130)]['\x6d\x61\x70'](_0xbf1701=>({'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64':_0xbf1701,'\x73\x74\x61\x74\x75\x73':_0x40e0a1[_0x11ea0b(0x17e)](_0xbf1701)['\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':a0_0x3abaa3(0x190),'\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_0x3abaa3(0x11a),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x66\x6c\x65\x65\x74\x5f\x69\x64':{'\x74\x79\x70\x65':a0_0x3abaa3(0x1a5)},'\x63\x6f\x6e\x74\x69\x6e\x75\x65\x5f\x6f\x6e\x5f\x65\x72\x72\x6f\x72':{'\x74\x79\x70\x65':'\x62\x6f\x6f\x6c\x65\x61\x6e','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3abaa3(0x142)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x3abaa3(0xfd)],'\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:_0x3635a8})=>async _0xd73143=>{const _0x288ea0=a0_0x3abaa3;return await(await _0x3635a8[_0x288ea0(0x102)][_0x288ea0(0x119)]({'\x66\x6c\x65\x65\x74\x49\x64':_0xd73143[_0x288ea0(0xfd)]}))[_0x288ea0(0x18a)]({'\x63\x6f\x6e\x74\x69\x6e\x75\x65\x4f\x6e\x45\x72\x72\x6f\x72':_0xd73143[_0x288ea0(0x166)]}),{'\x66\x6c\x65\x65\x74\x49\x64':_0xd73143[_0x288ea0(0xfd)],'\x64\x65\x6c\x65\x74\x65\x64':!![]};}}},ALL_FLEET_TOOL_SPECS=Object[a0_0x3abaa3(0x14f)](FLEET_TOOL_SPECS);function selectFleetSpecs(_0x188606){const _0x8f7b20=a0_0x3abaa3,_0x27fa08={'\x59\x68\x4b\x4c\x57':function(_0x4a8835,_0x32c5a2){return _0x4a8835===_0x32c5a2;}};if(!_0x188606||_0x27fa08['\x59\x68\x4b\x4c\x57'](_0x188606['\x6c\x65\x6e\x67\x74\x68'],0x0))return ALL_FLEET_TOOL_SPECS;const _0x945581=new Set(_0x188606);return Object[_0x8f7b20(0x156)](FLEET_TOOL_SPECS)[_0x8f7b20(0x131)](_0x434356=>_0x945581['\x68\x61\x73'](_0x434356))['\x6d\x61\x70'](_0xd0f163=>FLEET_TOOL_SPECS[_0xd0f163]);}function anthropicFleetTools(_0x311b97,_0x596cf8={}){const _0x59b7bc=a0_0x3abaa3,_0xc1d3cc={'\x70\x67\x50\x6d\x65':function(_0xf87954,_0x31aac8){return _0xf87954(_0x31aac8);},'\x64\x4d\x6f\x47\x68':function(_0x1d4059,_0x442570,_0x11d191){return _0x1d4059(_0x442570,_0x11d191);}},_0x3154f3=_0xc1d3cc[_0x59b7bc(0x122)](selectFleetSpecs,_0x596cf8[_0x59b7bc(0x14d)]),_0x5c3426=_0xc1d3cc[_0x59b7bc(0x109)](buildFleetHandlers,_0x3154f3,{'\x63\x6c\x69\x65\x6e\x74':_0x311b97});return{'\x74\x6f\x6f\x6c\x73':_0x3154f3['\x6d\x61\x70'](_0x49c360=>({'\x6e\x61\x6d\x65':_0x49c360[_0x59b7bc(0x155)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x49c360['\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e'],'\x69\x6e\x70\x75\x74\x5f\x73\x63\x68\x65\x6d\x61':_0x49c360[_0x59b7bc(0x1a0)]})),async '\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x55\x73\x65'(_0x4fc9ed){const _0x212f67=_0x59b7bc,_0x1da442=_0x5c3426[_0x212f67(0x17e)](_0x4fc9ed['\x6e\x61\x6d\x65']);if(!_0x1da442)return{'\x74\x79\x70\x65':_0x212f67(0x1a7),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x4fc9ed['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x212f67(0x113)+_0x4fc9ed[_0x212f67(0x155)],'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};try{const _0xdff8e2=await _0x1da442(_0x4fc9ed['\x69\x6e\x70\x75\x74']);return{'\x74\x79\x70\x65':_0x212f67(0x1a7),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x4fc9ed['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':serializeToolResult(_0xdff8e2)};}catch(_0x238b64){return{'\x74\x79\x70\x65':_0x212f67(0x1a7),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x4fc9ed['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x238b64 instanceof Error?_0x238b64[_0x212f67(0x182)]:String(_0x238b64),'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};}}};}function openaiFleetTools(_0x1b3a2b,_0x352d3a={}){const _0x12f10f=a0_0x3abaa3,_0x1d088c={'\x67\x55\x59\x68\x6e':function(_0x2efab8,_0x37088d){return _0x2efab8===_0x37088d;},'\x59\x79\x48\x48\x41':_0x12f10f(0x11a),'\x5a\x68\x4d\x50\x78':_0x12f10f(0x105),'\x65\x71\x50\x48\x5a':function(_0xf9c139,_0x1657e6){return _0xf9c139(_0x1657e6);},'\x69\x6c\x77\x51\x77':function(_0x52877e,_0x17fb65,_0x176c84){return _0x52877e(_0x17fb65,_0x176c84);}},_0x30e85e=selectFleetSpecs(_0x352d3a[_0x12f10f(0x14d)]),_0x5d3348=_0x1d088c[_0x12f10f(0x147)](buildFleetHandlers,_0x30e85e,{'\x63\x6c\x69\x65\x6e\x74':_0x1b3a2b});return{'\x74\x6f\x6f\x6c\x73':_0x30e85e['\x6d\x61\x70'](_0x155f6a=>({'\x74\x79\x70\x65':_0x12f10f(0x13c),'\x66\x75\x6e\x63\x74\x69\x6f\x6e':{'\x6e\x61\x6d\x65':_0x155f6a[_0x12f10f(0x155)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x155f6a['\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e'],'\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73':_0x155f6a[_0x12f10f(0x1a0)]}})),async '\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x43\x61\x6c\x6c'(_0x116d1b){const _0x18c81f=_0x12f10f,_0x494422=_0x5d3348['\x67\x65\x74'](_0x116d1b[_0x18c81f(0x13c)]['\x6e\x61\x6d\x65']);if(!_0x494422)return{'\x72\x6f\x6c\x65':_0x18c81f(0x105),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x116d1b['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x18c81f(0x11b)]({'\x65\x72\x72\x6f\x72':_0x18c81f(0x113)+_0x116d1b['\x66\x75\x6e\x63\x74\x69\x6f\x6e']['\x6e\x61\x6d\x65']})};let _0x64903c={};try{const _0x6a73f4=JSON[_0x18c81f(0x15c)](_0x116d1b['\x66\x75\x6e\x63\x74\x69\x6f\x6e'][_0x18c81f(0x153)]||'\x7b\x7d');if(_0x6a73f4&&_0x1d088c[_0x18c81f(0x194)](typeof _0x6a73f4,_0x1d088c['\x59\x79\x48\x48\x41']))_0x64903c=_0x6a73f4;}catch{}try{const _0x4d40ea=await _0x494422(_0x64903c);return{'\x72\x6f\x6c\x65':_0x1d088c[_0x18c81f(0x1a1)],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x116d1b['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':serializeToolResult(_0x4d40ea)};}catch(_0x2360fe){return{'\x72\x6f\x6c\x65':_0x1d088c[_0x18c81f(0x1a1)],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x116d1b['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x18c81f(0x11b)]({'\x65\x72\x72\x6f\x72':_0x2360fe instanceof Error?_0x2360fe[_0x18c81f(0x182)]:_0x1d088c[_0x18c81f(0x174)](String,_0x2360fe)})};}}};}async function vercelAiFleetTools(_0x21b390,_0x385e54={}){const _0x528128=a0_0x3abaa3,_0x40bb6c={'\x4d\x63\x4e\x70\x4a':function(_0x3e5a62,_0x2ff5f4){return _0x3e5a62(_0x2ff5f4);},'\x51\x6d\x6f\x65\x79':function(_0x38740c,_0x512ea9,_0x14d116){return _0x38740c(_0x512ea9,_0x14d116);}};let _0x17fd76;try{_0x17fd76=await import('\x61\x69');}catch{throw new Error(_0x528128(0x1ac));}const _0x1e142a=_0x40bb6c['\x4d\x63\x4e\x70\x4a'](selectFleetSpecs,_0x385e54['\x61\x6c\x6c\x6f\x77']),_0x171a19=_0x40bb6c[_0x528128(0x145)](buildFleetHandlers,_0x1e142a,{'\x63\x6c\x69\x65\x6e\x74':_0x21b390}),_0x2ed198={};for(const _0x319992 of _0x1e142a)_0x2ed198[_0x319992[_0x528128(0x155)]]=_0x17fd76['\x74\x6f\x6f\x6c']({'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x319992[_0x528128(0x100)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x17fd76[_0x528128(0x115)](_0x319992['\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61']),'\x65\x78\x65\x63\x75\x74\x65':async _0x1eba77=>{const _0x10994a=_0x528128,_0x425a41=_0x171a19['\x67\x65\x74'](_0x319992[_0x10994a(0x155)]);if(!_0x425a41)throw new Error(_0x10994a(0x113)+_0x319992[_0x10994a(0x155)]);return serializeToolResult(await _0x425a41(_0x1eba77));}});return _0x2ed198;}async function mastraFleetTools(_0x2e066e,_0xb5ffd6={}){const _0x38c68d=a0_0x3abaa3,_0x30aa07={'\x6f\x66\x4e\x6c\x73':function(_0x435446,_0x117d56){return _0x435446(_0x117d56);},'\x61\x47\x50\x69\x54':_0x38c68d(0x107)};let _0x52db8d;try{_0x52db8d=await import('\x40\x6d\x61\x73\x74\x72\x61\x2f\x63\x6f\x72\x65');}catch{throw new Error(_0x30aa07[_0x38c68d(0x161)]);}const _0x5d4655=_0x30aa07['\x6f\x66\x4e\x6c\x73'](selectFleetSpecs,_0xb5ffd6[_0x38c68d(0x14d)]),_0x18bd13=buildFleetHandlers(_0x5d4655,{'\x63\x6c\x69\x65\x6e\x74':_0x2e066e}),_0x5c7a63={};for(const _0x1f527f of _0x5d4655)_0x5c7a63[_0x1f527f['\x6e\x61\x6d\x65']]=_0x52db8d[_0x38c68d(0x18d)]({'\x69\x64':_0x1f527f[_0x38c68d(0x155)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x1f527f['\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e'],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x52db8d[_0x38c68d(0x115)]?_0x52db8d['\x6a\x73\x6f\x6e\x53\x63\x68\x65\x6d\x61'](_0x1f527f[_0x38c68d(0x1a0)]):_0x1f527f[_0x38c68d(0x1a0)],'\x65\x78\x65\x63\x75\x74\x65':async _0x279703=>{const _0x543070=_0x38c68d,_0x3572c2=_0x18bd13['\x67\x65\x74'](_0x1f527f[_0x543070(0x155)]);if(!_0x3572c2)throw new Error(_0x543070(0x113)+_0x1f527f[_0x543070(0x155)]);return{'\x72\x65\x73\x75\x6c\x74':_0x30aa07[_0x543070(0x129)](serializeToolResult,await _0x3572c2(_0x279703?.['\x63\x6f\x6e\x74\x65\x78\x74']??{}))};}});return _0x5c7a63;}function buildFleetHandlers(_0x191b91,_0x151df3){const _0x635a3f=a0_0x3abaa3,_0x288daf=new Map();for(const _0x423575 of _0x191b91)_0x288daf[_0x635a3f(0x132)](_0x423575['\x6e\x61\x6d\x65'],_0x423575[_0x635a3f(0x165)](_0x151df3));return _0x288daf;}const LIFECYCLE_TOOL_SPECS={'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x63\x72\x65\x61\x74\x65':{'\x6e\x61\x6d\x65':a0_0x3abaa3(0x154),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x43\x72\x65\x61\x74\x65\x20\x61\x6e\x20\x69\x73\x6f\x6c\x61\x74\x65\x64\x20\x73\x61\x6e\x64\x62\x6f\x78\x20\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x20\x69\x74\x73\x20\x69\x64\x20\x66\x6f\x72\x20\x75\x73\x65\x20\x77\x69\x74\x68\x20\x73\x61\x6e\x64\x62\x6f\x78\x5f\x72\x75\x6e\x5f\x63\x6f\x6d\x6d\x61\x6e\x64\x2e\x20\x55\x73\x65\x20\x74\x68\x69\x73\x20\x77\x68\x65\x6e\x20\x74\x68\x65\x20\x75\x73\x65\x72\x20\x6e\x65\x65\x64\x73\x20\x63\x6f\x64\x65\x20\x65\x78\x65\x63\x75\x74\x65\x64\x2c\x20\x66\x69\x6c\x65\x73\x20\x61\x6e\x61\x6c\x79\x7a\x65\x64\x2c\x20\x6f\x72\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x73\x20\x72\x75\x6e\x20\x69\x6e\x20\x61\x20\x73\x65\x63\x75\x72\x65\x20\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74\x2e\x20\x54\x68\x65\x20\x73\x61\x6e\x64\x62\x6f\x78\x20\x42\x49\x4c\x4c\x53\x20\x75\x6e\x74\x69\x6c\x20\x64\x65\x73\x74\x72\x6f\x79\x65\x64\x20\u2014\x20\x63\x61\x6c\x6c\x20\x73\x61\x6e\x64\x62\x6f\x78\x5f\x64\x65\x73\x74\x72\x6f\x79\x20\x77\x68\x65\x6e\x20\x74\x68\x65\x20\x77\x6f\x72\x6b\x20\x69\x73\x20\x64\x6f\x6e\x65\x2e','\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x3abaa3(0x11a),'\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_0x3abaa3(0x1a5),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3abaa3(0x1ad)},'\x6e\x61\x6d\x65':{'\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\x64\x69\x73\x70\x6c\x61\x79\x20\x6e\x61\x6d\x65\x20\x66\x6f\x72\x20\x74\x68\x65\x20\x73\x61\x6e\x64\x62\x6f\x78\x2e'}},'\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:_0x117a35})=>async _0x3b4dc6=>{const _0x299a73=a0_0x3abaa3,_0x3f9b02=await _0x117a35[_0x299a73(0x18f)]({'\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74':_0x3b4dc6[_0x299a73(0x19a)]??_0x299a73(0x125),'\x6e\x61\x6d\x65':_0x3b4dc6['\x6e\x61\x6d\x65']});return{'\x73\x61\x6e\x64\x62\x6f\x78\x49\x64':_0x3f9b02['\x69\x64'],'\x73\x74\x61\x74\x75\x73':_0x3f9b02[_0x299a73(0x15f)]};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x72\x75\x6e\x5f\x63\x6f\x6d\x6d\x61\x6e\x64':{'\x6e\x61\x6d\x65':a0_0x3abaa3(0xfe),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3abaa3(0x12d),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x3abaa3(0x11a),'\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_0x3abaa3(0x1a5),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3abaa3(0x180)},'\x63\x6f\x6d\x6d\x61\x6e\x64':{'\x74\x79\x70\x65':a0_0x3abaa3(0x1a5),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3abaa3(0x12c)},'\x63\x77\x64':{'\x74\x79\x70\x65':a0_0x3abaa3(0x1a5),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3abaa3(0xfc)},'\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73':{'\x74\x79\x70\x65':a0_0x3abaa3(0x195),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3abaa3(0x158)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x3abaa3(0x193),a0_0x3abaa3(0x148)],'\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:_0x39db3e})=>async _0x502de6=>{const _0x56ea7c=a0_0x3abaa3,_0x28f148=await _0x39db3e['\x67\x65\x74'](_0x502de6['\x73\x61\x6e\x64\x62\x6f\x78\x5f\x69\x64']);if(!_0x28f148)throw new Error(_0x56ea7c(0x1ab)+_0x502de6['\x73\x61\x6e\x64\x62\x6f\x78\x5f\x69\x64']+_0x56ea7c(0x140));const _0x164d18=await _0x28f148[_0x56ea7c(0x12a)](_0x502de6[_0x56ea7c(0x148)],{'\x63\x77\x64':_0x502de6[_0x56ea7c(0x19f)],'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x502de6['\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73']??0xea60});return{'\x73\x74\x64\x6f\x75\x74':_0x164d18['\x73\x74\x64\x6f\x75\x74'],'\x73\x74\x64\x65\x72\x72':_0x164d18[_0x56ea7c(0x14a)],'\x65\x78\x69\x74\x43\x6f\x64\x65':_0x164d18[_0x56ea7c(0x151)]};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x64\x65\x73\x74\x72\x6f\x79':{'\x6e\x61\x6d\x65':a0_0x3abaa3(0x103),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3abaa3(0x114),'\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_0x3abaa3(0x1a5),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3abaa3(0x180)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x3abaa3(0x193)],'\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:_0x3da512})=>async _0x3e6885=>{const _0x42e8f1=a0_0x3abaa3,_0x467c2a=await _0x3da512['\x67\x65\x74'](_0x3e6885['\x73\x61\x6e\x64\x62\x6f\x78\x5f\x69\x64']);if(!_0x467c2a)return{'\x73\x61\x6e\x64\x62\x6f\x78\x49\x64':_0x3e6885[_0x42e8f1(0x193)],'\x64\x65\x6c\x65\x74\x65\x64':!![]};return await _0x467c2a[_0x42e8f1(0x18a)](),{'\x73\x61\x6e\x64\x62\x6f\x78\x49\x64':_0x3e6885['\x73\x61\x6e\x64\x62\x6f\x78\x5f\x69\x64'],'\x64\x65\x6c\x65\x74\x65\x64':!![]};}}},ALL_LIFECYCLE_TOOL_SPECS=Object[a0_0x3abaa3(0x14f)](LIFECYCLE_TOOL_SPECS);function selectLifecycleSpecs(_0x354507){const _0x31e2db=a0_0x3abaa3;if(!_0x354507||_0x354507[_0x31e2db(0x18b)]===0x0)return ALL_LIFECYCLE_TOOL_SPECS;const _0x5c4d9f=new Set(_0x354507);return Object[_0x31e2db(0x156)](LIFECYCLE_TOOL_SPECS)[_0x31e2db(0x131)](_0x4bcf0f=>_0x5c4d9f[_0x31e2db(0x178)](_0x4bcf0f))[_0x31e2db(0x144)](_0x86e8f5=>LIFECYCLE_TOOL_SPECS[_0x86e8f5]);}function anthropicLifecycleTools(_0x48bccf,_0x29e6f9={}){const _0x4bf7b2=a0_0x3abaa3,_0x4ef702={'\x63\x66\x61\x70\x43':'\x74\x6f\x6f\x6c\x5f\x72\x65\x73\x75\x6c\x74'},_0x287335=selectLifecycleSpecs(_0x29e6f9[_0x4bf7b2(0x14d)]),_0x13b15b=buildLifecycleHandlers(_0x287335,{'\x63\x6c\x69\x65\x6e\x74':_0x48bccf});return{'\x74\x6f\x6f\x6c\x73':_0x287335['\x6d\x61\x70'](_0x467e8d=>({'\x6e\x61\x6d\x65':_0x467e8d[_0x4bf7b2(0x155)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x467e8d['\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e'],'\x69\x6e\x70\x75\x74\x5f\x73\x63\x68\x65\x6d\x61':_0x467e8d['\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'(_0x5c5756){const _0xd2e5f2=_0x4bf7b2,_0x337ba0=_0x13b15b[_0xd2e5f2(0x17e)](_0x5c5756[_0xd2e5f2(0x155)]);if(!_0x337ba0)return{'\x74\x79\x70\x65':_0x4ef702[_0xd2e5f2(0x177)],'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x5c5756['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0xd2e5f2(0x150)+_0x5c5756['\x6e\x61\x6d\x65'],'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};try{const _0x18b68b=await _0x337ba0(_0x5c5756['\x69\x6e\x70\x75\x74']);return{'\x74\x79\x70\x65':_0xd2e5f2(0x1a7),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x5c5756['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':serializeToolResult(_0x18b68b)};}catch(_0x20be65){return{'\x74\x79\x70\x65':_0xd2e5f2(0x1a7),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x5c5756['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x20be65 instanceof Error?_0x20be65['\x6d\x65\x73\x73\x61\x67\x65']:String(_0x20be65),'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};}}};}function openaiLifecycleTools(_0x2fdc6c,_0x337ef3={}){const _0x446e59=a0_0x3abaa3,_0x393662={'\x6e\x69\x47\x42\x69':_0x446e59(0x105),'\x54\x4a\x4e\x4f\x68':_0x446e59(0x11a),'\x4b\x4f\x42\x62\x50':function(_0x444e8f,_0x202c1e){return _0x444e8f(_0x202c1e);},'\x67\x66\x6d\x6d\x66':function(_0x150627,_0x262652){return _0x150627(_0x262652);}},_0x10d6fb=selectLifecycleSpecs(_0x337ef3[_0x446e59(0x14d)]),_0x2d5028=buildLifecycleHandlers(_0x10d6fb,{'\x63\x6c\x69\x65\x6e\x74':_0x2fdc6c});return{'\x74\x6f\x6f\x6c\x73':_0x10d6fb['\x6d\x61\x70'](_0x1810f0=>({'\x74\x79\x70\x65':_0x446e59(0x13c),'\x66\x75\x6e\x63\x74\x69\x6f\x6e':{'\x6e\x61\x6d\x65':_0x1810f0[_0x446e59(0x155)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x1810f0[_0x446e59(0x100)],'\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73':_0x1810f0['\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61']}})),async '\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x43\x61\x6c\x6c'(_0x50b9b1){const _0x4f90ca=_0x446e59,_0x2459c1=_0x2d5028['\x67\x65\x74'](_0x50b9b1[_0x4f90ca(0x13c)][_0x4f90ca(0x155)]);if(!_0x2459c1)return{'\x72\x6f\x6c\x65':_0x393662['\x6e\x69\x47\x42\x69'],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x50b9b1['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x4f90ca(0x11b)]({'\x65\x72\x72\x6f\x72':'\x55\x6e\x6b\x6e\x6f\x77\x6e\x20\x6c\x69\x66\x65\x63\x79\x63\x6c\x65\x20\x74\x6f\x6f\x6c\x3a\x20'+_0x50b9b1['\x66\x75\x6e\x63\x74\x69\x6f\x6e']['\x6e\x61\x6d\x65']})};let _0xe83959={};try{const _0x2d1354=JSON['\x70\x61\x72\x73\x65'](_0x50b9b1['\x66\x75\x6e\x63\x74\x69\x6f\x6e']['\x61\x72\x67\x75\x6d\x65\x6e\x74\x73']||'\x7b\x7d');if(_0x2d1354&&typeof _0x2d1354===_0x393662[_0x4f90ca(0x16d)])_0xe83959=_0x2d1354;}catch{}try{const _0x145bfc=await _0x393662[_0x4f90ca(0xfb)](_0x2459c1,_0xe83959);return{'\x72\x6f\x6c\x65':'\x74\x6f\x6f\x6c','\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x50b9b1['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x393662[_0x4f90ca(0x15a)](serializeToolResult,_0x145bfc)};}catch(_0x455584){return{'\x72\x6f\x6c\x65':_0x4f90ca(0x105),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x50b9b1['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x4f90ca(0x11b)]({'\x65\x72\x72\x6f\x72':_0x455584 instanceof Error?_0x455584[_0x4f90ca(0x182)]:String(_0x455584)})};}}};}function buildLifecycleHandlers(_0x4533a1,_0xb4174d){const _0x36bbfa=a0_0x3abaa3,_0x167252=new Map();for(const _0x442220 of _0x4533a1)_0x167252[_0x36bbfa(0x132)](_0x442220['\x6e\x61\x6d\x65'],_0x442220[_0x36bbfa(0x165)](_0xb4174d));return _0x167252;}async function mastraTools(_0x5c7561,_0x30d92c={}){const _0x496955=a0_0x3abaa3,_0x35ebb7={'\x79\x79\x42\x42\x78':_0x496955(0x181),'\x77\x78\x47\x54\x68':function(_0x3415ba,_0x139163){return _0x3415ba(_0x139163);}};let _0x1af35c;try{_0x1af35c=await import(_0x496955(0x11c));}catch{throw new Error(_0x35ebb7[_0x496955(0x19b)]);}const _0x141aab=_0x35ebb7[_0x496955(0x13d)](selectSpecs,_0x30d92c[_0x496955(0x14d)]),_0x2986bf={'\x62\x6f\x78':_0x5c7561,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x30d92c[_0x496955(0x157)]},_0x108d47={};for(const _0x4e24e1 of _0x141aab){const _0x27dba4=_0x4e24e1[_0x496955(0x165)](_0x2986bf);_0x108d47[_0x4e24e1[_0x496955(0x155)]]=_0x1af35c[_0x496955(0x18d)]({'\x69\x64':_0x4e24e1['\x6e\x61\x6d\x65'],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x4e24e1[_0x496955(0x100)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x1af35c[_0x496955(0x115)]?_0x1af35c[_0x496955(0x115)](_0x4e24e1['\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61']):_0x4e24e1['\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61'],'\x65\x78\x65\x63\x75\x74\x65':async _0x542feb=>{const _0x20356c=_0x496955;return{'\x72\x65\x73\x75\x6c\x74':serializeToolResult(await _0x27dba4(_0x542feb?.[_0x20356c(0x19e)]??{}))};}});}return _0x108d47;}function openaiTools(_0x8c6373,_0x59b603={}){const _0x43e476=a0_0x3abaa3,_0x3ed31a={'\x73\x4b\x77\x6f\x4a':'\x6f\x62\x6a\x65\x63\x74','\x4b\x75\x51\x6d\x58':function(_0x43f119,_0x559971){return _0x43f119(_0x559971);},'\x64\x49\x53\x4f\x65':_0x43e476(0x105)},_0x573582=selectSpecs(_0x59b603[_0x43e476(0x14d)]),_0x5654c1={'\x62\x6f\x78':_0x8c6373,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x59b603[_0x43e476(0x157)]},_0x5be379=new Map();for(const _0x5580c4 of _0x573582)_0x5be379[_0x43e476(0x132)](_0x5580c4[_0x43e476(0x155)],_0x5580c4[_0x43e476(0x165)](_0x5654c1));const _0x5f39c9=_0x573582[_0x43e476(0x144)](_0x20eacc=>({'\x74\x79\x70\x65':_0x43e476(0x13c),'\x66\x75\x6e\x63\x74\x69\x6f\x6e':{'\x6e\x61\x6d\x65':_0x20eacc[_0x43e476(0x155)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x20eacc[_0x43e476(0x100)],'\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73':_0x20eacc[_0x43e476(0x1a0)]}}));function _0x3a4359(_0xcde10c){const _0x2e9247=_0x43e476;if(!_0xcde10c)return{};try{const _0x2210b3=JSON[_0x2e9247(0x15c)](_0xcde10c);return typeof _0x2210b3===_0x3ed31a[_0x2e9247(0x1a9)]&&_0x2210b3!==null?_0x2210b3:{};}catch{return{};}}async function _0x5c3b3e(_0x53b161){const _0x3a1c48=_0x43e476,_0x469c3f=_0x5be379['\x67\x65\x74'](_0x53b161[_0x3a1c48(0x13c)][_0x3a1c48(0x155)]);if(!_0x469c3f)return{'\x72\x6f\x6c\x65':'\x74\x6f\x6f\x6c','\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x53b161['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON['\x73\x74\x72\x69\x6e\x67\x69\x66\x79']({'\x65\x72\x72\x6f\x72':_0x3a1c48(0x10e)+_0x53b161[_0x3a1c48(0x13c)][_0x3a1c48(0x155)]})};try{const _0x16a2be=await _0x469c3f(_0x3ed31a['\x4b\x75\x51\x6d\x58'](_0x3a4359,_0x53b161[_0x3a1c48(0x13c)][_0x3a1c48(0x153)]));return{'\x72\x6f\x6c\x65':_0x3ed31a[_0x3a1c48(0x199)],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x53b161['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x3ed31a[_0x3a1c48(0x19c)](serializeToolResult,_0x16a2be)};}catch(_0x3e600f){return{'\x72\x6f\x6c\x65':_0x3ed31a['\x64\x49\x53\x4f\x65'],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x53b161['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x3a1c48(0x11b)]({'\x65\x72\x72\x6f\x72':_0x3e600f instanceof Error?_0x3e600f['\x6d\x65\x73\x73\x61\x67\x65']:_0x3ed31a[_0x3a1c48(0x19c)](String,_0x3e600f)})};}}async function _0x2c411f(_0x415eaa){const _0x27d215=_0x43e476,_0x1c5715=_0x415eaa[_0x27d215(0x188)]??[];return Promise[_0x27d215(0x192)](_0x1c5715[_0x27d215(0x144)](_0x5c3b3e));}return{'\x74\x6f\x6f\x6c\x73':_0x5f39c9,'\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x43\x61\x6c\x6c':_0x5c3b3e,'\x68\x61\x6e\x64\x6c\x65\x41\x73\x73\x69\x73\x74\x61\x6e\x74\x4d\x65\x73\x73\x61\x67\x65':_0x2c411f};}async function vercelAiTools(_0x39baea,_0xf57055={}){const _0x4970ea=a0_0x3abaa3,_0x20b1f9={'\x72\x42\x6e\x6a\x67':function(_0x327e56,_0x27166b){return _0x327e56(_0x27166b);},'\x71\x4b\x46\x4f\x42':function(_0x33fa2a,_0x2e4a9a){return _0x33fa2a(_0x2e4a9a);}};let _0x4a6d57;try{_0x4a6d57=await import('\x61\x69');}catch{throw new Error('\x76\x65\x72\x63\x65\x6c\x41\x69\x54\x6f\x6f\x6c\x73\x28\x29\x3a\x20\x74\x68\x65\x20\x60\x61\x69\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\x61\x69\x60\x20\x28\x61\x6e\x64\x20\x70\x69\x63\x6b\x20\x61\x6e\x20\x60\x40\x61\x69\x2d\x73\x64\x6b\x2f\x2a\x60\x20\x6d\x6f\x64\x65\x6c\x20\x61\x64\x61\x70\x74\x65\x72\x29\x2e');}const _0x3a579a=selectSpecs(_0xf57055[_0x4970ea(0x14d)]),_0x595a19={'\x62\x6f\x78':_0x39baea,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0xf57055['\x73\x65\x73\x73\x69\x6f\x6e\x49\x64']},_0x3e013b={};for(const _0x31099f of _0x3a579a){const _0x237841=_0x31099f[_0x4970ea(0x165)](_0x595a19);_0x3e013b[_0x31099f['\x6e\x61\x6d\x65']]=_0x4a6d57[_0x4970ea(0x105)]({'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x31099f['\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e'],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x4a6d57['\x6a\x73\x6f\x6e\x53\x63\x68\x65\x6d\x61'](_0x31099f[_0x4970ea(0x1a0)]),'\x65\x78\x65\x63\x75\x74\x65':async _0x5f2d1f=>{const _0x238ea0=_0x4970ea;return _0x20b1f9[_0x238ea0(0x1ae)](serializeToolResult,await _0x20b1f9[_0x238ea0(0x124)](_0x237841,_0x5f2d1f));}});}return _0x3e013b;}export{anthropicFleetTools,anthropicLifecycleTools,anthropicTools,createMcpServer,mastraFleetTools,mastraTools,openaiFleetTools,openaiLifecycleTools,openaiTools,runCode,vercelAiFleetTools,vercelAiTools};
@@ -1 +1 @@
1
- const a0_0x412862=a0_0x5a0c;function a0_0x9192(){const _0x18d550=['\x7a\x4d\x58\x56\x42\x33\x69','\x43\x68\x6a\x56\x7a\x68\x76\x4a\x44\x65\x4c\x4b','\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','\x43\x4d\x76\x57\x42\x67\x66\x4a\x7a\x71','\x43\x32\x48\x48\x6d\x4a\x75\x32','\x42\x77\x48\x6a\x7a\x4d\x4b','\x42\x4e\x7a\x57\x73\x78\x71','\x7a\x78\x48\x57','\x7a\x4d\x6a\x76\x42\x76\x65','\x42\x67\x76\x55\x7a\x33\x72\x4f','\x75\x32\x44\x68\x41\x76\x6d','\x44\x67\x39\x74\x44\x68\x6a\x50\x42\x4d\x43','\x6d\x30\x39\x52\x45\x4d\x35\x4e\x72\x71','\x41\x78\x6e\x5a\x44\x77\x75','\x7a\x4e\x6a\x4c\x7a\x71','\x75\x75\x35\x34\x74\x32\x34','\x7a\x67\x39\x4a\x44\x77\x31\x4c\x42\x4e\x72\x6a\x7a\x61','\x42\x67\x4c\x55\x73\x4e\x71','\x79\x77\x6e\x4a\x7a\x78\x6e\x5a','\x76\x77\x48\x4b\x43\x77\x34','\x44\x30\x4c\x4d\x42\x68\x4b','\x6d\x74\x61\x58\x6d\x64\x6d\x5a\x6d\x76\x7a\x4e\x76\x32\x6e\x72\x73\x61','\x77\x4c\x48\x77\x41\x75\x75','\x6e\x74\x6d\x30\x6d\x74\x69\x33\x6e\x4c\x4c\x4b\x44\x33\x4c\x71\x7a\x57','\x79\x32\x39\x53\x42\x67\x66\x49\x42\x33\x6a\x48\x44\x67\x4c\x56\x42\x47','\x6e\x33\x48\x5a\x42\x33\x4c\x6b\x43\x47','\x71\x31\x6a\x52\x74\x66\x69','\x73\x67\x44\x51\x77\x76\x69','\x44\x4b\x54\x62\x7a\x68\x69','\x74\x31\x6a\x68\x73\x77\x79','\x43\x33\x62\x53\x41\x78\x71','\x43\x67\x66\x59\x43\x32\x75','\x72\x30\x50\x35\x74\x68\x69','\x43\x4d\x76\x57\x7a\x77\x66\x30','\x43\x4d\x76\x48\x7a\x61','\x42\x4e\x76\x54\x79\x4d\x76\x59','\x44\x68\x48\x55\x44\x4d\x47','\x7a\x4e\x6a\x56\x42\x71','\x44\x78\x62\x4b\x79\x78\x72\x4c','\x79\x4d\x66\x5a\x7a\x74\x79\x30','\x79\x32\x58\x56\x79\x32\x54\x74\x41\x32\x76\x33\x75\x32\x76\x4a\x42\x32\x35\x4b\x43\x57','\x43\x68\x6a\x56\x41\x4d\x76\x4a\x44\x65\x4c\x4b','\x71\x4d\x39\x30\x7a\x30\x53','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x65\x4c\x4b','\x44\x67\x4c\x4c\x43\x47','\x73\x66\x6d\x59\x6e\x74\x79','\x43\x68\x6a\x56','\x6e\x4a\x47\x57\x6d\x5a\x79\x30\x6e\x4b\x7a\x4e\x76\x77\x6a\x6c\x45\x71','\x42\x4d\x39\x33','\x42\x30\x48\x34\x44\x4d\x47','\x7a\x67\x4c\x4e\x7a\x78\x6e\x30','\x43\x33\x72\x59\x41\x77\x35\x4e','\x6d\x74\x69\x30\x6d\x74\x65\x33\x6d\x64\x72\x76\x79\x32\x4c\x54\x71\x4c\x71','\x44\x76\x72\x74\x75\x68\x6d','\x7a\x77\x35\x30\x7a\x78\x6a\x57\x43\x4d\x4c\x5a\x7a\x71','\x6e\x64\x71\x59\x6e\x5a\x47\x30\x6e\x76\x72\x72\x73\x4c\x66\x6f\x44\x61','\x6e\x4a\x6d\x57\x6d\x5a\x61\x59\x42\x68\x4c\x4a\x74\x75\x66\x48','\x73\x66\x50\x55\x77\x4c\x47','\x41\x4c\x44\x4e\x74\x77\x6d','\x43\x33\x72\x59\x41\x77\x35\x4e\x41\x77\x7a\x35','\x43\x32\x76\x5a\x43\x32\x4c\x56\x42\x4b\x4c\x4b','\x6f\x74\x6d\x33\x6e\x74\x65\x34\x41\x76\x44\x63\x71\x76\x7a\x65','\x6d\x74\x4b\x57\x43\x31\x66\x30\x7a\x4b\x76\x52','\x42\x77\x66\x34','\x73\x67\x31\x67\x72\x30\x47','\x79\x77\x58\x4e','\x44\x78\x6e\x4c\x43\x4b\x4c\x4b'];a0_0x9192=function(){return _0x18d550;};return a0_0x9192();}(function(_0x3c94fb,_0x3d20c7){const _0x40f1f7=a0_0x5a0c,_0x20fd6f=_0x3c94fb();while(!![]){try{const _0x41518b=-parseInt(_0x40f1f7(0x1d3))/0x1+-parseInt(_0x40f1f7(0x1ce))/0x2+-parseInt(_0x40f1f7(0x1e6))/0x3*(-parseInt(_0x40f1f7(0x1f1))/0x4)+-parseInt(_0x40f1f7(0x1cd))/0x5+parseInt(_0x40f1f7(0x1c5))/0x6*(parseInt(_0x40f1f7(0x1f3))/0x7)+-parseInt(_0x40f1f7(0x1ca))/0x8+parseInt(_0x40f1f7(0x1ef))/0x9*(parseInt(_0x40f1f7(0x1d4))/0xa);if(_0x41518b===_0x3d20c7)break;else _0x20fd6f['push'](_0x20fd6f['shift']());}catch(_0x3116f8){_0x20fd6f['push'](_0x20fd6f['shift']());}}}(a0_0x9192,0xdec60));import{createHmac,timingSafeEqual}from'\x6e\x6f\x64\x65\x3a\x63\x72\x79\x70\x74\x6f';function base64UrlEncode(_0x1e3475){const _0x121849=a0_0x5a0c,_0x261ec2={'\x47\x4a\x79\x4c\x72':_0x121849(0x1c9)};return(typeof _0x1e3475===_0x261ec2[_0x121849(0x1b6)]?Buffer[_0x121849(0x1bb)](_0x1e3475):_0x1e3475)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](_0x121849(0x1bd))[_0x121849(0x1dd)](/\+/g,'\x2d')[_0x121849(0x1dd)](/\//g,'\x5f')[_0x121849(0x1dd)](/=+$/,'');}function decodeBase64UrlToBuffer(_0x1500b7){const _0x37e7a2=a0_0x5a0c,_0x1f5900={'\x6f\x48\x78\x76\x68':function(_0x51cc8e,_0xef316a){return _0x51cc8e-_0xef316a;}};if(!/^[A-Za-z0-9_-]*$/['\x74\x65\x73\x74'](_0x1500b7))return null;const _0x52c34e=_0x1500b7+'\x3d'['\x72\x65\x70\x65\x61\x74'](_0x1f5900[_0x37e7a2(0x1c7)](0x4,_0x1500b7[_0x37e7a2(0x1e3)]%0x4)%0x4);return Buffer[_0x37e7a2(0x1bb)](_0x52c34e[_0x37e7a2(0x1dd)](/-/g,'\x2b')['\x72\x65\x70\x6c\x61\x63\x65'](/_/g,'\x2f'),_0x37e7a2(0x1bd));}function createSignature(_0x20e03d,_0x2cda11){const _0x41b0c1=a0_0x5a0c,_0x2cfd92={'\x4f\x52\x47\x49\x66':_0x41b0c1(0x1de)};return base64UrlEncode(createHmac(_0x2cfd92[_0x41b0c1(0x1f7)],_0x2cda11)[_0x41b0c1(0x1bc)](_0x20e03d)[_0x41b0c1(0x1c8)]());}const JWT_HEADER=base64UrlEncode(JSON[a0_0x412862(0x1d1)]({'\x61\x6c\x67':a0_0x412862(0x1c3),'\x74\x79\x70':'\x4a\x57\x54'}));function issueToken(_0x336786,_0x38d421,_0x1fa173){const _0x174556=a0_0x412862,_0x1aa8cc={'\x6e\x76\x70\x49\x74':function(_0x1a6a74,_0x3c05ac,_0x27a0dc){return _0x1a6a74(_0x3c05ac,_0x27a0dc);}},_0x74ae07=Math['\x66\x6c\x6f\x6f\x72'](Date[_0x174556(0x1c6)]()/0x3e8),_0x5bb77d={..._0x38d421,'\x69\x61\x74':_0x74ae07,'\x65\x78\x70':_0x74ae07+_0x1fa173*0x3c},_0x34fded=JWT_HEADER+'\x2e'+base64UrlEncode(JSON['\x73\x74\x72\x69\x6e\x67\x69\x66\x79'](_0x5bb77d));return _0x34fded+'\x2e'+_0x1aa8cc[_0x174556(0x1e0)](createSignature,_0x34fded,_0x336786);}function issueReadToken(_0x149c29,_0x53e032,_0x480eb0){const _0x34e5b0=a0_0x412862,_0x2eeab9={'\x48\x5a\x6e\x5a\x58':_0x34e5b0(0x1b8)};return issueToken(_0x149c29,{..._0x53e032,'\x74\x79\x70':_0x2eeab9[_0x34e5b0(0x1cf)]},_0x480eb0);}function issueSessionScopedToken(_0x25dc13,_0x2db3e1,_0x49a7a7){const _0xa5fa29=a0_0x412862,_0x438154={'\x77\x49\x66\x6c\x79':function(_0x3bb895,_0x41a7af,_0x5d9ef8,_0x13960f){return _0x3bb895(_0x41a7af,_0x5d9ef8,_0x13960f);}};return _0x438154[_0xa5fa29(0x1ee)](issueReadToken,_0x25dc13,_0x2db3e1,_0x49a7a7);}function issueProjectScopedToken(_0x1dd528,_0x3f3a46,_0x3f2b8a){return issueReadToken(_0x1dd528,_0x3f3a46,_0x3f2b8a);}function issueBatchScopedToken(_0x32bc1c,_0x1593e4,_0x99c7d3){return issueReadToken(_0x32bc1c,_0x1593e4,_0x99c7d3);}function issueCollaborationToken(_0x36efd0,_0x59675a,_0x37494b){const _0x2ec2d1=a0_0x412862;return issueToken(_0x36efd0,{'\x73\x75\x62':_0x59675a[_0x2ec2d1(0x1d8)],'\x73\x69\x64':_0x59675a[_0x2ec2d1(0x1d2)],'\x70\x69\x64':_0x59675a[_0x2ec2d1(0x1da)],'\x63\x69\x64':_0x59675a[_0x2ec2d1(0x1c1)],'\x74\x79\x70':_0x2ec2d1(0x1f2),'\x70\x72\x6f\x6a\x65\x63\x74\x49\x64':_0x59675a[_0x2ec2d1(0x1bf)],'\x64\x6f\x63\x75\x6d\x65\x6e\x74\x49\x64':_0x59675a[_0x2ec2d1(0x1ea)],'\x61\x63\x63\x65\x73\x73':_0x59675a['\x61\x63\x63\x65\x73\x73']},_0x37494b);}function unsafeDecodeToken(_0x15d55c){const _0x45c5cb=a0_0x412862,_0x161100={'\x48\x67\x6a\x59\x52':function(_0x2521be,_0x3cafca){return _0x2521be%_0x3cafca;},'\x43\x52\x6b\x4c\x52':function(_0x4d8148,_0x50a254){return _0x4d8148-_0x50a254;}};try{const _0xf1e1ce=_0x15d55c[_0x45c5cb(0x1b4)]('\x2e');if(_0xf1e1ce['\x6c\x65\x6e\x67\x74\x68']!==0x3)return null;const _0x32cb24=_0xf1e1ce[0x1]+'\x3d'['\x72\x65\x70\x65\x61\x74'](_0x161100[_0x45c5cb(0x1f5)](_0x161100[_0x45c5cb(0x1f4)](0x4,_0xf1e1ce[0x1][_0x45c5cb(0x1e3)]%0x4),0x4)),_0x10072a=Buffer[_0x45c5cb(0x1bb)](_0x32cb24[_0x45c5cb(0x1dd)](/-/g,'\x2b')[_0x45c5cb(0x1dd)](/_/g,'\x2f'),_0x45c5cb(0x1bd))[_0x45c5cb(0x1e5)]();return JSON[_0x45c5cb(0x1b5)](_0x10072a);}catch{return null;}}function verifyToken(_0x4f0791,_0x589e56,_0x99d224={}){const _0x2eaefe=a0_0x412862,_0xcdf593={'\x66\x62\x55\x6d\x51':function(_0x39c898,_0x3e3fef){return _0x39c898+_0x3e3fef;},'\x53\x67\x47\x69\x53':function(_0x13b012,_0xf7449d){return _0x13b012%_0xf7449d;},'\x42\x6f\x74\x67\x4b':function(_0x585040,_0x2fb227){return _0x585040-_0x2fb227;},'\x65\x66\x5a\x75\x4a':function(_0x3c9273,_0x540fba){return _0x3c9273(_0x540fba);},'\x74\x78\x6e\x76\x68':function(_0x476df5,_0x5f5573){return _0x476df5!==_0x5f5573;},'\x6d\x68\x49\x66\x69':function(_0xbc12ee,_0x1f6de3){return _0xbc12ee(_0x1f6de3);},'\x6c\x69\x6e\x4a\x74':function(_0x873e06,_0x253752){return _0x873e06<_0x253752;},'\x48\x6d\x46\x47\x48':function(_0x8b1488,_0x21b156){return _0x8b1488+_0x21b156;}};try{const _0x22fb75=_0x4f0791[_0x2eaefe(0x1b4)]('\x2e');if(_0x22fb75[_0x2eaefe(0x1e3)]!==0x3)return null;const [_0xb9a35,_0x405277,_0xab91ba]=_0x22fb75;if(!_0xb9a35||!_0x405277||!_0xab91ba)return null;let _0x59d18f;try{const _0x1fb804=_0xcdf593[_0x2eaefe(0x1e2)](_0xb9a35,'\x3d'[_0x2eaefe(0x1b7)](_0xcdf593[_0x2eaefe(0x1e4)](_0xcdf593[_0x2eaefe(0x1c0)](0x4,_0xb9a35[_0x2eaefe(0x1e3)]%0x4),0x4))),_0x28d2e2=Buffer[_0x2eaefe(0x1bb)](_0x1fb804['\x72\x65\x70\x6c\x61\x63\x65'](/-/g,'\x2b')[_0x2eaefe(0x1dd)](/_/g,'\x2f'),_0x2eaefe(0x1bd))[_0x2eaefe(0x1e5)]();_0x59d18f=JSON[_0x2eaefe(0x1b5)](_0x28d2e2);}catch{return null;}if(_0x59d18f[_0x2eaefe(0x1d7)]!==_0x2eaefe(0x1c3))return null;const _0x483c8e=createSignature(_0xb9a35+'\x2e'+_0x405277,_0x589e56),_0x5472d5=_0xcdf593['\x65\x66\x5a\x75\x4a'](decodeBase64UrlToBuffer,_0xab91ba),_0x25dfeb=decodeBase64UrlToBuffer(_0x483c8e);if(!_0x5472d5||!_0x25dfeb)return null;if(_0xcdf593[_0x2eaefe(0x1ba)](_0x5472d5[_0x2eaefe(0x1e3)],_0x25dfeb[_0x2eaefe(0x1e3)]))return null;if(!timingSafeEqual(_0x5472d5,_0x25dfeb))return null;const _0x2bf1d9=_0xcdf593[_0x2eaefe(0x1df)](unsafeDecodeToken,_0x4f0791);if(!_0x2bf1d9)return null;const _0x410e7f=Math[_0x2eaefe(0x1d9)](Date['\x6e\x6f\x77']()/0x3e8),_0x3a3f35=Math[_0x2eaefe(0x1d5)](0x0,_0x99d224[_0x2eaefe(0x1be)]??0x0);if(typeof _0x2bf1d9['\x65\x78\x70']!==_0x2eaefe(0x1b9)||_0xcdf593[_0x2eaefe(0x1eb)](_0xcdf593[_0x2eaefe(0x1d6)](_0x2bf1d9[_0x2eaefe(0x1e1)],_0x3a3f35),_0x410e7f))return null;return _0x2bf1d9;}catch{return null;}}function getTokenTTL(_0x1f01fd){const _0x3b2cc6=a0_0x412862,_0x4be975={'\x5a\x58\x56\x69\x45':function(_0x3ecc85,_0x1f9e4a){return _0x3ecc85-_0x1f9e4a;}},_0x216507=Math[_0x3b2cc6(0x1d9)](Date[_0x3b2cc6(0x1c6)]()/0x3e8);return _0x4be975[_0x3b2cc6(0x1f0)](_0x1f01fd[_0x3b2cc6(0x1e1)],_0x216507);}function isTokenExpiringSoon(_0x3a1024,_0x4146ca=0x3c){return getTokenTTL(_0x3a1024)<=_0x4146ca;}var ProductTokenIssuer=class{[a0_0x412862(0x1da)];[a0_0x412862(0x1dc)];['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73'];constructor(_0x3e335a){const _0x461ec7=a0_0x412862;this[_0x461ec7(0x1da)]=_0x3e335a[_0x461ec7(0x1da)],this['\x73\x69\x67\x6e\x69\x6e\x67\x53\x65\x63\x72\x65\x74']=_0x3e335a['\x73\x69\x67\x6e\x69\x6e\x67\x53\x65\x63\x72\x65\x74'],this[_0x461ec7(0x1db)]={'\x66\x72\x65\x65':_0x3e335a[_0x461ec7(0x1db)]?.[_0x461ec7(0x1e8)]??0xf,'\x70\x72\x6f':_0x3e335a[_0x461ec7(0x1db)]?.[_0x461ec7(0x1c4)]??0xf0,'\x65\x6e\x74\x65\x72\x70\x72\x69\x73\x65':_0x3e335a[_0x461ec7(0x1db)]?.[_0x461ec7(0x1cc)]??0x1e0};}[a0_0x412862(0x1e7)](_0x140ab1){const _0x24cc3b=a0_0x412862,_0x154e40={'\x75\x54\x53\x50\x73':_0x24cc3b(0x1e8),'\x76\x4b\x41\x64\x72':function(_0x2deb4d,_0x4c4d36){return _0x2deb4d+_0x4c4d36;},'\x55\x68\x64\x71\x6e':function(_0x2bef59,_0x55132b){return _0x2bef59/_0x55132b;}},_0x19044b=_0x140ab1[_0x24cc3b(0x1c2)]??_0x154e40[_0x24cc3b(0x1cb)],_0x41e108=this[_0x24cc3b(0x1db)][_0x19044b]??this[_0x24cc3b(0x1db)][_0x24cc3b(0x1e8)];return{'\x74\x6f\x6b\x65\x6e':issueReadToken(this[_0x24cc3b(0x1dc)],{'\x73\x75\x62':_0x140ab1[_0x24cc3b(0x1d8)],'\x73\x69\x64':_0x140ab1[_0x24cc3b(0x1d2)],'\x70\x69\x64':this['\x70\x72\x6f\x64\x75\x63\x74\x49\x64'],'\x63\x69\x64':_0x140ab1['\x73\x61\x6e\x64\x62\x6f\x78\x49\x64']},_0x41e108),'\x65\x78\x70\x69\x72\x65\x73\x41\x74':_0x154e40[_0x24cc3b(0x1f6)](Math[_0x24cc3b(0x1d9)](_0x154e40[_0x24cc3b(0x1ed)](Date[_0x24cc3b(0x1c6)](),0x3e8)),_0x41e108*0x3c)};}['\x69\x73\x73\x75\x65\x43\x6f\x6c\x6c\x61\x62\x6f\x72\x61\x74\x69\x6f\x6e'](_0xd0515b){const _0x13e0f4=a0_0x412862,_0x2491a3={'\x51\x4e\x78\x4f\x6e':function(_0x17f5a1,_0x40a485,_0xfb1354,_0x141266){return _0x17f5a1(_0x40a485,_0xfb1354,_0x141266);},'\x6b\x55\x46\x66\x72':function(_0x5415f6,_0x26d3fd){return _0x5415f6+_0x26d3fd;},'\x6a\x57\x67\x4d\x63':function(_0x539264,_0x4dd208){return _0x539264/_0x4dd208;}},_0x245e1b=_0xd0515b[_0x13e0f4(0x1c2)]??_0x13e0f4(0x1e8),_0x1d559b=this[_0x13e0f4(0x1db)][_0x245e1b]??this[_0x13e0f4(0x1db)]['\x66\x72\x65\x65'];return{'\x74\x6f\x6b\x65\x6e':_0x2491a3[_0x13e0f4(0x1e9)](issueCollaborationToken,this['\x73\x69\x67\x6e\x69\x6e\x67\x53\x65\x63\x72\x65\x74'],{'\x75\x73\x65\x72\x49\x64':_0xd0515b['\x75\x73\x65\x72\x49\x64'],'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0xd0515b[_0x13e0f4(0x1d2)],'\x70\x72\x6f\x64\x75\x63\x74\x49\x64':this[_0x13e0f4(0x1da)],'\x70\x72\x6f\x6a\x65\x63\x74\x49\x64':_0xd0515b[_0x13e0f4(0x1bf)],'\x64\x6f\x63\x75\x6d\x65\x6e\x74\x49\x64':_0xd0515b[_0x13e0f4(0x1ea)],'\x61\x63\x63\x65\x73\x73':_0xd0515b[_0x13e0f4(0x1ec)],'\x73\x61\x6e\x64\x62\x6f\x78\x49\x64':_0xd0515b['\x73\x61\x6e\x64\x62\x6f\x78\x49\x64']},_0x1d559b),'\x65\x78\x70\x69\x72\x65\x73\x41\x74':_0x2491a3['\x6b\x55\x46\x66\x72'](Math['\x66\x6c\x6f\x6f\x72'](_0x2491a3[_0x13e0f4(0x1d0)](Date[_0x13e0f4(0x1c6)](),0x3e8)),_0x1d559b*0x3c)};}['\x67\x65\x74\x54\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73'](_0x2fffc4=a0_0x412862(0x1e8)){const _0x32de80=a0_0x412862;return this[_0x32de80(0x1db)][_0x2fffc4]??this[_0x32de80(0x1db)][_0x32de80(0x1e8)];}};function a0_0x5a0c(_0x20713a,_0x2da142){_0x20713a=_0x20713a-0x1b4;const _0x919224=a0_0x9192();let _0x5a0c6e=_0x919224[_0x20713a];if(a0_0x5a0c['\x64\x4a\x75\x45\x44\x4b']===undefined){var _0xc67872=function(_0x523ba9){const _0x2c6ec3='\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 _0x4e5e52='',_0x42f73c='';for(let _0x8d83db=0x0,_0x1cb7c5,_0x14ac85,_0x56aff8=0x0;_0x14ac85=_0x523ba9['\x63\x68\x61\x72\x41\x74'](_0x56aff8++);~_0x14ac85&&(_0x1cb7c5=_0x8d83db%0x4?_0x1cb7c5*0x40+_0x14ac85:_0x14ac85,_0x8d83db++%0x4)?_0x4e5e52+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0xff&_0x1cb7c5>>(-0x2*_0x8d83db&0x6)):0x0){_0x14ac85=_0x2c6ec3['\x69\x6e\x64\x65\x78\x4f\x66'](_0x14ac85);}for(let _0x57be47=0x0,_0x3b8283=_0x4e5e52['\x6c\x65\x6e\x67\x74\x68'];_0x57be47<_0x3b8283;_0x57be47++){_0x42f73c+='\x25'+('\x30\x30'+_0x4e5e52['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x57be47)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x10))['\x73\x6c\x69\x63\x65'](-0x2);}return decodeURIComponent(_0x42f73c);};a0_0x5a0c['\x55\x49\x64\x57\x47\x56']=_0xc67872,a0_0x5a0c['\x6b\x68\x54\x6e\x4a\x65']={},a0_0x5a0c['\x64\x4a\x75\x45\x44\x4b']=!![];}const _0x47a3d1=_0x919224[0x0],_0x427981=_0x20713a+_0x47a3d1,_0x5cfdae=a0_0x5a0c['\x6b\x68\x54\x6e\x4a\x65'][_0x427981];return!_0x5cfdae?(_0x5a0c6e=a0_0x5a0c['\x55\x49\x64\x57\x47\x56'](_0x5a0c6e),a0_0x5a0c['\x6b\x68\x54\x6e\x4a\x65'][_0x427981]=_0x5a0c6e):_0x5a0c6e=_0x5cfdae,_0x5a0c6e;}export{ProductTokenIssuer,getTokenTTL,isTokenExpiringSoon,issueBatchScopedToken,issueCollaborationToken,issueProjectScopedToken,issueReadToken,issueSessionScopedToken,unsafeDecodeToken,verifyToken};
1
+ const a0_0xd9f117=a0_0xf23a;(function(_0xf13537,_0x1d4b49){const _0x167333=a0_0xf23a,_0x5ca9f4=_0xf13537();while(!![]){try{const _0x3693c6=parseInt(_0x167333(0x1d1))/0x1+parseInt(_0x167333(0x1da))/0x2*(-parseInt(_0x167333(0x1b9))/0x3)+parseInt(_0x167333(0x1cf))/0x4+-parseInt(_0x167333(0x1d2))/0x5+-parseInt(_0x167333(0x1ba))/0x6+-parseInt(_0x167333(0x1a9))/0x7+parseInt(_0x167333(0x1ad))/0x8;if(_0x3693c6===_0x1d4b49)break;else _0x5ca9f4['push'](_0x5ca9f4['shift']());}catch(_0x9555a7){_0x5ca9f4['push'](_0x5ca9f4['shift']());}}}(a0_0x573e,0xdfc1a));import{createHmac,timingSafeEqual}from'\x6e\x6f\x64\x65\x3a\x63\x72\x79\x70\x74\x6f';function a0_0xf23a(_0x53204a,_0x469eba){_0x53204a=_0x53204a-0x1a5;const _0x573eb9=a0_0x573e();let _0xf23a9f=_0x573eb9[_0x53204a];if(a0_0xf23a['\x68\x70\x49\x4d\x4b\x62']===undefined){var _0x74d011=function(_0x2e81d7){const _0x45af63='\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 _0x2cc44b='',_0x23c93b='';for(let _0x1f5684=0x0,_0x7f6d89,_0x1a61e5,_0x357bab=0x0;_0x1a61e5=_0x2e81d7['\x63\x68\x61\x72\x41\x74'](_0x357bab++);~_0x1a61e5&&(_0x7f6d89=_0x1f5684%0x4?_0x7f6d89*0x40+_0x1a61e5:_0x1a61e5,_0x1f5684++%0x4)?_0x2cc44b+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0xff&_0x7f6d89>>(-0x2*_0x1f5684&0x6)):0x0){_0x1a61e5=_0x45af63['\x69\x6e\x64\x65\x78\x4f\x66'](_0x1a61e5);}for(let _0x55b807=0x0,_0x5bcc42=_0x2cc44b['\x6c\x65\x6e\x67\x74\x68'];_0x55b807<_0x5bcc42;_0x55b807++){_0x23c93b+='\x25'+('\x30\x30'+_0x2cc44b['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x55b807)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x10))['\x73\x6c\x69\x63\x65'](-0x2);}return decodeURIComponent(_0x23c93b);};a0_0xf23a['\x50\x6f\x63\x58\x50\x71']=_0x74d011,a0_0xf23a['\x43\x51\x46\x78\x79\x54']={},a0_0xf23a['\x68\x70\x49\x4d\x4b\x62']=!![];}const _0x220c39=_0x573eb9[0x0],_0x567781=_0x53204a+_0x220c39,_0x1cc620=a0_0xf23a['\x43\x51\x46\x78\x79\x54'][_0x567781];return!_0x1cc620?(_0xf23a9f=a0_0xf23a['\x50\x6f\x63\x58\x50\x71'](_0xf23a9f),a0_0xf23a['\x43\x51\x46\x78\x79\x54'][_0x567781]=_0xf23a9f):_0xf23a9f=_0x1cc620,_0xf23a9f;}function base64UrlEncode(_0x1cde25){const _0x1c6650=a0_0xf23a;return(typeof _0x1cde25===_0x1c6650(0x1b0)?Buffer[_0x1c6650(0x1b1)](_0x1cde25):_0x1cde25)[_0x1c6650(0x1c4)](_0x1c6650(0x1d0))['\x72\x65\x70\x6c\x61\x63\x65'](/\+/g,'\x2d')[_0x1c6650(0x1b3)](/\//g,'\x5f')['\x72\x65\x70\x6c\x61\x63\x65'](/=+$/,'');}function decodeBase64UrlToBuffer(_0x3494b4){const _0x30d1ed=a0_0xf23a,_0xe26bc3={'\x75\x57\x4a\x66\x67':function(_0x454568,_0x174ed6){return _0x454568%_0x174ed6;}};if(!/^[A-Za-z0-9_-]*$/[_0x30d1ed(0x1e1)](_0x3494b4))return null;const _0x1de344=_0x3494b4+'\x3d'[_0x30d1ed(0x1a5)](_0xe26bc3['\x75\x57\x4a\x66\x67'](0x4-_0x3494b4[_0x30d1ed(0x1c9)]%0x4,0x4));return Buffer['\x66\x72\x6f\x6d'](_0x1de344['\x72\x65\x70\x6c\x61\x63\x65'](/-/g,'\x2b')['\x72\x65\x70\x6c\x61\x63\x65'](/_/g,'\x2f'),_0x30d1ed(0x1d0));}function createSignature(_0x3e38af,_0x4b9041){const _0x1a821f=a0_0xf23a,_0x45a178={'\x6f\x64\x6b\x56\x4d':function(_0x217729,_0x41be4d){return _0x217729(_0x41be4d);},'\x6c\x59\x65\x4a\x42':_0x1a821f(0x1c7)};return _0x45a178[_0x1a821f(0x1c3)](base64UrlEncode,createHmac(_0x45a178['\x6c\x59\x65\x4a\x42'],_0x4b9041)[_0x1a821f(0x1dc)](_0x3e38af)[_0x1a821f(0x1cb)]());}const JWT_HEADER=base64UrlEncode(JSON[a0_0xd9f117(0x1b6)]({'\x61\x6c\x67':a0_0xd9f117(0x1bb),'\x74\x79\x70':a0_0xd9f117(0x1aa)}));function issueToken(_0x23a263,_0x2e9da2,_0xf493d){const _0x50a317=a0_0xd9f117,_0x5aaccf={'\x59\x66\x6c\x51\x42':function(_0x400a56,_0x10379b){return _0x400a56/_0x10379b;},'\x47\x4c\x6a\x54\x54':function(_0x3f6038,_0x37798e){return _0x3f6038*_0x37798e;}},_0x6d2d9c=Math[_0x50a317(0x1c0)](_0x5aaccf[_0x50a317(0x1a6)](Date[_0x50a317(0x1ac)](),0x3e8)),_0x29f838={..._0x2e9da2,'\x69\x61\x74':_0x6d2d9c,'\x65\x78\x70':_0x6d2d9c+_0x5aaccf[_0x50a317(0x1ce)](_0xf493d,0x3c)},_0x427f4f=JWT_HEADER+'\x2e'+base64UrlEncode(JSON[_0x50a317(0x1b6)](_0x29f838));return _0x427f4f+'\x2e'+createSignature(_0x427f4f,_0x23a263);}function issueReadToken(_0x493f27,_0x158939,_0xa39033){const _0x5de341=a0_0xd9f117,_0x2a9a29={'\x4f\x42\x75\x6e\x4c':'\x72\x65\x61\x64'};return issueToken(_0x493f27,{..._0x158939,'\x74\x79\x70':_0x2a9a29[_0x5de341(0x1af)]},_0xa39033);}function issueSessionScopedToken(_0x17589b,_0x2b8019,_0x272f1c){const _0x477634=a0_0xd9f117,_0xee3c79={'\x54\x64\x71\x4b\x6c':function(_0x50c3e7,_0xb03d6d,_0x4885c7,_0x45f6b3){return _0x50c3e7(_0xb03d6d,_0x4885c7,_0x45f6b3);}};return _0xee3c79[_0x477634(0x1d9)](issueReadToken,_0x17589b,_0x2b8019,_0x272f1c);}function a0_0x573e(){const _0x335ada=['\x7a\x32\x76\x30\x76\x68\x72\x53\x74\x77\x4c\x55\x44\x78\x72\x4c\x43\x57','\x42\x4e\x76\x54\x79\x4d\x76\x59','\x43\x32\x48\x48\x6d\x4a\x75\x32','\x43\x68\x6a\x56\x41\x4d\x76\x4a\x44\x65\x4c\x4b','\x42\x67\x76\x55\x7a\x33\x72\x4f','\x42\x76\x66\x50\x73\x4d\x65','\x7a\x67\x4c\x4e\x7a\x78\x6e\x30','\x79\x33\x6a\x51\x74\x4b\x4b','\x44\x4d\x44\x79\x79\x75\x79','\x72\x30\x58\x51\x76\x66\x71','\x6e\x74\x6d\x33\x6e\x64\x6d\x30\x6e\x65\x35\x4a\x44\x4b\x31\x6f\x72\x71','\x79\x4d\x66\x5a\x7a\x74\x79\x30','\x6d\x74\x6d\x32\x6d\x64\x65\x33\x6e\x33\x7a\x55\x7a\x4d\x44\x34\x74\x57','\x6f\x64\x4b\x32\x6d\x4a\x61\x57\x6e\x76\x50\x77\x77\x4b\x54\x68\x71\x57','\x44\x67\x4c\x4c\x43\x47','\x43\x32\x4c\x4e\x42\x4d\x4c\x55\x7a\x31\x6e\x4c\x79\x33\x6a\x4c\x44\x61','\x7a\x4e\x6a\x4c\x7a\x71','\x43\x68\x6a\x56','\x74\x4e\x44\x6c\x74\x66\x79','\x7a\x77\x6a\x32\x73\x77\x71','\x76\x67\x72\x58\x73\x32\x57','\x6d\x74\x65\x34\x73\x4b\x54\x6f\x71\x4d\x76\x52','\x79\x32\x58\x56\x79\x32\x54\x74\x41\x32\x76\x33\x75\x32\x76\x4a\x42\x32\x35\x4b\x43\x57','\x44\x78\x62\x4b\x79\x78\x72\x4c','\x42\x77\x66\x34','\x44\x68\x72\x53\x74\x77\x4c\x55\x44\x78\x72\x4c\x43\x57','\x44\x31\x76\x48\x72\x32\x75','\x79\x32\x39\x53\x42\x67\x66\x49\x42\x33\x6a\x48\x44\x67\x4c\x56\x42\x47','\x44\x67\x76\x5a\x44\x61','\x43\x4d\x76\x57\x7a\x77\x66\x30','\x77\x77\x7a\x53\x75\x75\x69','\x44\x78\x6e\x4c\x43\x4b\x4c\x4b','\x41\x31\x72\x52\x41\x33\x4f','\x6e\x5a\x43\x35\x6d\x4a\x61\x57\x6f\x68\x50\x55\x42\x78\x48\x4f\x77\x71','\x73\x4c\x44\x75','\x7a\x78\x48\x57','\x42\x4d\x39\x33','\x6d\x74\x6d\x58\x6d\x4a\x71\x5a\x6d\x4a\x48\x5a\x72\x4c\x72\x49\x76\x32\x38','\x7a\x67\x39\x4a\x44\x77\x31\x4c\x42\x4e\x72\x6a\x7a\x61','\x74\x30\x6a\x31\x42\x4b\x57','\x43\x33\x72\x59\x41\x77\x35\x4e','\x7a\x4e\x6a\x56\x42\x71','\x7a\x77\x35\x30\x7a\x78\x6a\x57\x43\x4d\x4c\x5a\x7a\x71','\x43\x4d\x76\x57\x42\x67\x66\x4a\x7a\x71','\x7a\x4c\x66\x6e\x41\x66\x61','\x76\x4d\x66\x32\x75\x30\x71','\x43\x33\x72\x59\x41\x77\x35\x4e\x41\x77\x7a\x35','\x45\x77\x35\x52\x72\x31\x4b','\x79\x77\x6e\x4a\x7a\x78\x6e\x5a','\x6d\x74\x6d\x31\x6f\x64\x66\x4f\x76\x75\x50\x51\x76\x4c\x6d','\x6d\x74\x75\x5a\x6d\x64\x4b\x32\x6d\x66\x7a\x63\x75\x30\x6e\x6a\x45\x61','\x73\x66\x6d\x59\x6e\x74\x79','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x65\x4c\x4b','\x71\x4b\x76\x70\x72\x32\x6d','\x43\x33\x62\x53\x41\x78\x71','\x43\x32\x76\x5a\x43\x32\x4c\x56\x42\x4b\x4c\x4b','\x7a\x4d\x58\x56\x42\x33\x69','\x41\x78\x6e\x5a\x44\x77\x75','\x43\x68\x6a\x56\x7a\x68\x76\x4a\x44\x65\x4c\x4b','\x42\x32\x72\x52\x76\x4b\x30','\x44\x67\x39\x74\x44\x68\x6a\x50\x42\x4d\x43'];a0_0x573e=function(){return _0x335ada;};return a0_0x573e();}function issueProjectScopedToken(_0x45b97e,_0x260994,_0x49376e){return issueReadToken(_0x45b97e,_0x260994,_0x49376e);}function issueBatchScopedToken(_0xf95915,_0x40c08b,_0x506168){return issueReadToken(_0xf95915,_0x40c08b,_0x506168);}function issueCollaborationToken(_0x44dff3,_0x1460f0,_0x56114a){const _0x2b12de=a0_0xd9f117;return issueToken(_0x44dff3,{'\x73\x75\x62':_0x1460f0['\x75\x73\x65\x72\x49\x64'],'\x73\x69\x64':_0x1460f0[_0x2b12de(0x1bf)],'\x70\x69\x64':_0x1460f0[_0x2b12de(0x1c2)],'\x63\x69\x64':_0x1460f0[_0x2b12de(0x1bc)],'\x74\x79\x70':_0x2b12de(0x1e0),'\x70\x72\x6f\x6a\x65\x63\x74\x49\x64':_0x1460f0[_0x2b12de(0x1c8)],'\x64\x6f\x63\x75\x6d\x65\x6e\x74\x49\x64':_0x1460f0['\x64\x6f\x63\x75\x6d\x65\x6e\x74\x49\x64'],'\x61\x63\x63\x65\x73\x73':_0x1460f0[_0x2b12de(0x1b8)]},_0x56114a);}function unsafeDecodeToken(_0x1c0811){const _0x3ba86c=a0_0xd9f117,_0x117650={'\x66\x51\x4d\x68\x50':_0x3ba86c(0x1d0)};try{const _0x22f542=_0x1c0811[_0x3ba86c(0x1be)]('\x2e');if(_0x22f542[_0x3ba86c(0x1c9)]!==0x3)return null;const _0x5ab5f3=_0x22f542[0x1]+'\x3d'[_0x3ba86c(0x1a5)]((0x4-_0x22f542[0x1][_0x3ba86c(0x1c9)]%0x4)%0x4),_0x539d1b=Buffer[_0x3ba86c(0x1b1)](_0x5ab5f3[_0x3ba86c(0x1b3)](/-/g,'\x2b')[_0x3ba86c(0x1b3)](/_/g,'\x2f'),_0x117650[_0x3ba86c(0x1b4)])[_0x3ba86c(0x1c4)]();return JSON['\x70\x61\x72\x73\x65'](_0x539d1b);}catch{return null;}}function verifyToken(_0x1e67e3,_0x362419,_0x22c9dc={}){const _0x475595=a0_0xd9f117,_0x460ad0={'\x42\x45\x4f\x47\x63':function(_0x3a1a70,_0x1090bd){return _0x3a1a70!==_0x1090bd;},'\x63\x72\x6a\x4e\x49':function(_0x13eef9,_0x5456b9){return _0x13eef9%_0x5456b9;},'\x56\x61\x76\x53\x44':_0x475595(0x1d0),'\x77\x55\x61\x47\x65':function(_0x18b4c2,_0x1f4c91){return _0x18b4c2(_0x1f4c91);},'\x6d\x51\x69\x4a\x61':function(_0x30d5c0,_0x3704ed){return _0x30d5c0!==_0x3704ed;}};try{const _0x1ab3b7=_0x1e67e3[_0x475595(0x1be)]('\x2e');if(_0x460ad0[_0x475595(0x1bd)](_0x1ab3b7['\x6c\x65\x6e\x67\x74\x68'],0x3))return null;const [_0x1998df,_0x4b7283,_0x45f0b3]=_0x1ab3b7;if(!_0x1998df||!_0x4b7283||!_0x45f0b3)return null;let _0x2e715c;try{const _0x1b46a6=_0x1998df+'\x3d'[_0x475595(0x1a5)]((0x4-_0x460ad0[_0x475595(0x1cc)](_0x1998df[_0x475595(0x1c9)],0x4))%0x4),_0x406fb6=Buffer[_0x475595(0x1b1)](_0x1b46a6[_0x475595(0x1b3)](/-/g,'\x2b')[_0x475595(0x1b3)](/_/g,'\x2f'),_0x460ad0[_0x475595(0x1b5)])[_0x475595(0x1c4)]();_0x2e715c=JSON['\x70\x61\x72\x73\x65'](_0x406fb6);}catch{return null;}if(_0x2e715c['\x61\x6c\x67']!==_0x475595(0x1bb))return null;const _0x602d6b=createSignature(_0x1998df+'\x2e'+_0x4b7283,_0x362419),_0x3d2d71=_0x460ad0[_0x475595(0x1df)](decodeBase64UrlToBuffer,_0x45f0b3),_0x2bc874=_0x460ad0['\x77\x55\x61\x47\x65'](decodeBase64UrlToBuffer,_0x602d6b);if(!_0x3d2d71||!_0x2bc874)return null;if(_0x460ad0[_0x475595(0x1ca)](_0x3d2d71[_0x475595(0x1c9)],_0x2bc874[_0x475595(0x1c9)]))return null;if(!timingSafeEqual(_0x3d2d71,_0x2bc874))return null;const _0x36b9d9=unsafeDecodeToken(_0x1e67e3);if(!_0x36b9d9)return null;const _0x32e0d3=Math[_0x475595(0x1c0)](Date['\x6e\x6f\x77']()/0x3e8),_0x2943ad=Math[_0x475595(0x1dd)](0x0,_0x22c9dc[_0x475595(0x1db)]??0x0);if(typeof _0x36b9d9[_0x475595(0x1ab)]!==_0x475595(0x1c6)||_0x36b9d9['\x65\x78\x70']+_0x2943ad<_0x32e0d3)return null;return _0x36b9d9;}catch{return null;}}function getTokenTTL(_0x241038){const _0x11f612=a0_0xd9f117,_0x1a81dc={'\x4e\x77\x4b\x4c\x56':function(_0x4e6830,_0x40cb49){return _0x4e6830-_0x40cb49;}},_0x4a3e70=Math['\x66\x6c\x6f\x6f\x72'](Date[_0x11f612(0x1ac)]()/0x3e8);return _0x1a81dc[_0x11f612(0x1d7)](_0x241038[_0x11f612(0x1ab)],_0x4a3e70);}function isTokenExpiringSoon(_0x1366bb,_0x4e8983=0x3c){return getTokenTTL(_0x1366bb)<=_0x4e8983;}var ProductTokenIssuer=class{[a0_0xd9f117(0x1c2)];[a0_0xd9f117(0x1d4)];[a0_0xd9f117(0x1de)];constructor(_0x32b353){const _0x64754b=a0_0xd9f117;this[_0x64754b(0x1c2)]=_0x32b353[_0x64754b(0x1c2)],this[_0x64754b(0x1d4)]=_0x32b353['\x73\x69\x67\x6e\x69\x6e\x67\x53\x65\x63\x72\x65\x74'],this[_0x64754b(0x1de)]={'\x66\x72\x65\x65':_0x32b353['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73']?.[_0x64754b(0x1d5)]??0xf,'\x70\x72\x6f':_0x32b353[_0x64754b(0x1de)]?.[_0x64754b(0x1d6)]??0xf0,'\x65\x6e\x74\x65\x72\x70\x72\x69\x73\x65':_0x32b353['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73']?.[_0x64754b(0x1b2)]??0x1e0};}[a0_0xd9f117(0x1c1)](_0x15263d){const _0x1553de=a0_0xd9f117,_0x31469e={'\x41\x48\x72\x67\x74':_0x1553de(0x1d5),'\x6a\x5a\x7a\x58\x73':function(_0x88263a,_0x296d1d){return _0x88263a+_0x296d1d;},'\x6b\x54\x6b\x6b\x7a':function(_0x2ad386,_0x5aa8f4){return _0x2ad386/_0x5aa8f4;}},_0x964c67=_0x15263d[_0x1553de(0x1d3)]??_0x31469e['\x41\x48\x72\x67\x74'],_0x434752=this[_0x1553de(0x1de)][_0x964c67]??this[_0x1553de(0x1de)][_0x1553de(0x1d5)];return{'\x74\x6f\x6b\x65\x6e':issueReadToken(this[_0x1553de(0x1d4)],{'\x73\x75\x62':_0x15263d[_0x1553de(0x1a7)],'\x73\x69\x64':_0x15263d['\x73\x65\x73\x73\x69\x6f\x6e\x49\x64'],'\x70\x69\x64':this['\x70\x72\x6f\x64\x75\x63\x74\x49\x64'],'\x63\x69\x64':_0x15263d[_0x1553de(0x1bc)]},_0x434752),'\x65\x78\x70\x69\x72\x65\x73\x41\x74':_0x31469e['\x6a\x5a\x7a\x58\x73'](Math[_0x1553de(0x1c0)](_0x31469e[_0x1553de(0x1a8)](Date[_0x1553de(0x1ac)](),0x3e8)),_0x434752*0x3c)};}['\x69\x73\x73\x75\x65\x43\x6f\x6c\x6c\x61\x62\x6f\x72\x61\x74\x69\x6f\x6e'](_0xf27a88){const _0xc60b20=a0_0xd9f117,_0x29fabe={'\x4e\x44\x74\x6c\x4a':_0xc60b20(0x1d5),'\x65\x62\x76\x49\x64':function(_0x549439,_0x36cea4,_0xe421dc,_0xcc8c43){return _0x549439(_0x36cea4,_0xe421dc,_0xcc8c43);},'\x76\x67\x58\x61\x46':function(_0xf5c396,_0x54c872){return _0xf5c396+_0x54c872;},'\x79\x6e\x6b\x47\x59':function(_0x14f2a7,_0x1d4999){return _0x14f2a7/_0x1d4999;},'\x4e\x65\x63\x47\x47':function(_0x3eb220,_0x80a4f5){return _0x3eb220*_0x80a4f5;}},_0x4e0388=_0xf27a88[_0xc60b20(0x1d3)]??_0x29fabe['\x4e\x44\x74\x6c\x4a'],_0x31d5df=this[_0xc60b20(0x1de)][_0x4e0388]??this[_0xc60b20(0x1de)][_0xc60b20(0x1d5)];return{'\x74\x6f\x6b\x65\x6e':_0x29fabe[_0xc60b20(0x1d8)](issueCollaborationToken,this[_0xc60b20(0x1d4)],{'\x75\x73\x65\x72\x49\x64':_0xf27a88['\x75\x73\x65\x72\x49\x64'],'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0xf27a88[_0xc60b20(0x1bf)],'\x70\x72\x6f\x64\x75\x63\x74\x49\x64':this['\x70\x72\x6f\x64\x75\x63\x74\x49\x64'],'\x70\x72\x6f\x6a\x65\x63\x74\x49\x64':_0xf27a88[_0xc60b20(0x1c8)],'\x64\x6f\x63\x75\x6d\x65\x6e\x74\x49\x64':_0xf27a88[_0xc60b20(0x1ae)],'\x61\x63\x63\x65\x73\x73':_0xf27a88['\x61\x63\x63\x65\x73\x73'],'\x73\x61\x6e\x64\x62\x6f\x78\x49\x64':_0xf27a88[_0xc60b20(0x1bc)]},_0x31d5df),'\x65\x78\x70\x69\x72\x65\x73\x41\x74':_0x29fabe[_0xc60b20(0x1cd)](Math[_0xc60b20(0x1c0)](_0x29fabe[_0xc60b20(0x1b7)](Date[_0xc60b20(0x1ac)](),0x3e8)),_0x29fabe['\x4e\x65\x63\x47\x47'](_0x31d5df,0x3c))};}[a0_0xd9f117(0x1c5)](_0x3f2d10=a0_0xd9f117(0x1d5)){const _0x20cf99=a0_0xd9f117;return this[_0x20cf99(0x1de)][_0x3f2d10]??this[_0x20cf99(0x1de)][_0x20cf99(0x1d5)];}};export{ProductTokenIssuer,getTokenTTL,isTokenExpiringSoon,issueBatchScopedToken,issueCollaborationToken,issueProjectScopedToken,issueReadToken,issueSessionScopedToken,unsafeDecodeToken,verifyToken};