@tangle-network/sandbox 0.4.4 → 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.
@@ -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_0x500b58=a0_0x9341;(function(_0x1bc4b6,_0x17523f){const _0x147bfb=a0_0x9341,_0x19189a=_0x1bc4b6();while(!![]){try{const _0x1b4405=parseInt(_0x147bfb(0x21a))/0x1+-parseInt(_0x147bfb(0x22a))/0x2*(-parseInt(_0x147bfb(0x266))/0x3)+parseInt(_0x147bfb(0x261))/0x4+parseInt(_0x147bfb(0x244))/0x5*(parseInt(_0x147bfb(0x232))/0x6)+parseInt(_0x147bfb(0x21b))/0x7*(-parseInt(_0x147bfb(0x204))/0x8)+-parseInt(_0x147bfb(0x239))/0x9+-parseInt(_0x147bfb(0x24d))/0xa;if(_0x1b4405===_0x17523f)break;else _0x19189a['push'](_0x19189a['shift']());}catch(_0x53f198){_0x19189a['push'](_0x19189a['shift']());}}}(a0_0x4878,0x241e8));import{createRequire}from'\x6e\x6f\x64\x65\x3a\x6d\x6f\x64\x75\x6c\x65';const TOOL_SPECS={'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x72\x75\x6e\x5f\x63\x6f\x64\x65':{'\x6e\x61\x6d\x65':a0_0x500b58(0x200),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x237),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x500b58(0x1ec),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x6c\x61\x6e\x67\x75\x61\x67\x65':{'\x74\x79\x70\x65':a0_0x500b58(0x1da),'\x65\x6e\x75\x6d':[a0_0x500b58(0x1e2),a0_0x500b58(0x207),a0_0x500b58(0x21e),a0_0x500b58(0x24f)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x1db)},'\x73\x6f\x75\x72\x63\x65':{'\x74\x79\x70\x65':'\x73\x74\x72\x69\x6e\x67','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x1e6)},'\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_0x500b58(0x26c)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x500b58(0x1f6),a0_0x500b58(0x249)],'\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:_0x20c6a9,sessionId:_0x58f1b5})=>async _0x211884=>{const _0x1a680e=a0_0x500b58;return await _0x20c6a9['\x72\x75\x6e\x43\x6f\x64\x65'](_0x211884[_0x1a680e(0x1f6)],_0x211884[_0x1a680e(0x249)],{'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x58f1b5,'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x211884[_0x1a680e(0x25b)]});}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x65\x78\x65\x63':{'\x6e\x61\x6d\x65':a0_0x500b58(0x1f5),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x201),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':'\x6f\x62\x6a\x65\x63\x74','\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x63\x6f\x6d\x6d\x61\x6e\x64':{'\x74\x79\x70\x65':a0_0x500b58(0x1da),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x248)},'\x63\x77\x64':{'\x74\x79\x70\x65':a0_0x500b58(0x1da),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x1ee)},'\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73':{'\x74\x79\x70\x65':a0_0x500b58(0x25d),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x223)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x500b58(0x252)],'\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:_0x409e91,sessionId:_0x51cd56})=>async _0x47e0c1=>{const _0x341bd2=a0_0x500b58;return await _0x409e91[_0x341bd2(0x264)](_0x47e0c1[_0x341bd2(0x252)],{'\x63\x77\x64':_0x47e0c1[_0x341bd2(0x268)],'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x47e0c1['\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73'],'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x51cd56});}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x72\x65\x61\x64':{'\x6e\x61\x6d\x65':a0_0x500b58(0x1f8),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x24a),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x500b58(0x1ec),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x68':{'\x74\x79\x70\x65':a0_0x500b58(0x1da)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x500b58(0x1e7)],'\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:_0x2b49c7,sessionId:_0x38a393})=>async _0x5c0332=>{const _0x634751=a0_0x500b58;return{'\x63\x6f\x6e\x74\x65\x6e\x74':await _0x2b49c7[_0x634751(0x214)](_0x5c0332[_0x634751(0x1e7)],{'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x38a393})};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x77\x72\x69\x74\x65':{'\x6e\x61\x6d\x65':a0_0x500b58(0x1fc),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x1f7),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x500b58(0x1ec),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x68':{'\x74\x79\x70\x65':a0_0x500b58(0x1da)},'\x63\x6f\x6e\x74\x65\x6e\x74':{'\x74\x79\x70\x65':a0_0x500b58(0x1da),'\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':[a0_0x500b58(0x1e7),'\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:_0x52a1dd})=>async _0x7184b0=>{const _0x556f40=a0_0x500b58;return await _0x52a1dd[_0x556f40(0x20c)](_0x7184b0[_0x556f40(0x1e7)],_0x7184b0[_0x556f40(0x240)]),{'\x6f\x6b':!![]};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x6c\x69\x73\x74':{'\x6e\x61\x6d\x65':'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x6c\x69\x73\x74','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x1dd),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x500b58(0x1ec),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x68':{'\x74\x79\x70\x65':a0_0x500b58(0x1da)}},'\x72\x65\x71\x75\x69\x72\x65\x64':['\x70\x61\x74\x68'],'\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:_0x54c555})=>async _0x49e1e0=>{return{'\x65\x6e\x74\x72\x69\x65\x73':await _0x54c555['\x66\x73']['\x6c\x69\x73\x74'](_0x49e1e0['\x70\x61\x74\x68'])};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x73\x65\x61\x72\x63\x68':{'\x6e\x61\x6d\x65':a0_0x500b58(0x21d),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x26f),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x500b58(0x1ec),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x74\x65\x72\x6e':{'\x74\x79\x70\x65':a0_0x500b58(0x1da),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x241)},'\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_0x500b58(0x25d),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x211)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x500b58(0x253)],'\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:_0x4530c4})=>async _0x41b5a3=>{const _0x49a7fa=a0_0x500b58,_0x96f8cb={'\x6b\x51\x55\x6c\x65':function(_0x1649d8,_0x1a3cbd){return _0x1649d8>=_0x1a3cbd;}},_0x4f0694=[],_0x34c9ce=_0x41b5a3[_0x49a7fa(0x226)]??0x64;for await(const _0x44d0c5 of _0x4530c4[_0x49a7fa(0x1fe)](_0x41b5a3['\x70\x61\x74\x74\x65\x72\x6e'],{'\x63\x77\x64':_0x41b5a3[_0x49a7fa(0x1e7)],'\x6d\x61\x78\x52\x65\x73\x75\x6c\x74\x73':_0x34c9ce})){_0x4f0694[_0x49a7fa(0x229)](_0x44d0c5);if(_0x96f8cb[_0x49a7fa(0x258)](_0x4f0694[_0x49a7fa(0x1f2)],_0x34c9ce))break;}return{'\x6d\x61\x74\x63\x68\x65\x73':_0x4f0694};}}},ALL_TOOL_SPECS=Object[a0_0x500b58(0x265)](TOOL_SPECS);function selectSpecs(_0xf2d321){const _0x4e0b88=a0_0x500b58;if(!_0xf2d321||_0xf2d321['\x6c\x65\x6e\x67\x74\x68']===0x0)return ALL_TOOL_SPECS;const _0x3c9ade=new Set(_0xf2d321);return Object[_0x4e0b88(0x236)](TOOL_SPECS)['\x66\x69\x6c\x74\x65\x72'](_0x4b8d28=>_0x3c9ade[_0x4e0b88(0x22e)](_0x4b8d28))[_0x4e0b88(0x20a)](_0x11dc41=>TOOL_SPECS[_0x11dc41]);}function serializeToolResult(_0xda4fd5){const _0x25da85=a0_0x500b58;if(typeof _0xda4fd5==='\x73\x74\x72\x69\x6e\x67')return _0xda4fd5;try{return JSON[_0x25da85(0x245)](_0xda4fd5,null,0x2);}catch{return String(_0xda4fd5);}}const SDK_VERSION=((()=>{const _0x5a1687=a0_0x500b58,_0x4eed11={'\x54\x78\x51\x75\x7a':_0x5a1687(0x23c)};try{return createRequire(import.meta.url)(_0x4eed11['\x54\x78\x51\x75\x7a'])['\x76\x65\x72\x73\x69\x6f\x6e']??_0x5a1687(0x220);}catch{return'\x30\x2e\x30\x2e\x30';}})());async function createMcpServer(_0x23d484,_0x52966a={}){const _0x1ca65d=a0_0x500b58,_0xa8b559={'\x53\x47\x42\x6d\x58':_0x1ca65d(0x227),'\x59\x67\x48\x61\x64':function(_0x354a41,_0x3d3ae7){return _0x354a41 instanceof _0x3d3ae7;},'\x44\x54\x79\x75\x54':_0x1ca65d(0x242),'\x4c\x45\x66\x6b\x54':'\x63\x72\x65\x61\x74\x65\x4d\x63\x70\x53\x65\x72\x76\x65\x72\x28\x29\x3a\x20\x74\x68\x65\x20\x60\x40\x6d\x6f\x64\x65\x6c\x63\x6f\x6e\x74\x65\x78\x74\x70\x72\x6f\x74\x6f\x63\x6f\x6c\x2f\x73\x64\x6b\x60\x20\x70\x61\x63\x6b\x61\x67\x65\x20\x69\x73\x20\x6e\x6f\x74\x20\x69\x6e\x73\x74\x61\x6c\x6c\x65\x64\x2e\x20\x49\x6e\x73\x74\x61\x6c\x6c\x20\x69\x74\x20\x76\x69\x61\x20\x60\x70\x6e\x70\x6d\x20\x61\x64\x64\x20\x40\x6d\x6f\x64\x65\x6c\x63\x6f\x6e\x74\x65\x78\x74\x70\x72\x6f\x74\x6f\x63\x6f\x6c\x2f\x73\x64\x6b\x60\x2e'};let _0x173a75,_0x311f40;try{[_0x173a75,_0x311f40]=await Promise['\x61\x6c\x6c']([import(_0xa8b559[_0x1ca65d(0x250)]),import(_0x1ca65d(0x263))]);}catch{throw new Error(_0xa8b559['\x4c\x45\x66\x6b\x54']);}const _0x489add=selectSpecs(_0x52966a['\x61\x6c\x6c\x6f\x77']),_0x301bd8={'\x62\x6f\x78':_0x23d484,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x52966a[_0x1ca65d(0x259)]},_0x4a55f0=new Map();for(const _0x43346a of _0x489add)_0x4a55f0[_0x1ca65d(0x254)](_0x43346a[_0x1ca65d(0x24e)],_0x43346a[_0x1ca65d(0x1de)](_0x301bd8));const _0x541ef4=new _0x173a75[(_0x1ca65d(0x1e9))]({'\x6e\x61\x6d\x65':_0x52966a[_0x1ca65d(0x24e)]??_0x1ca65d(0x209),'\x76\x65\x72\x73\x69\x6f\x6e':_0x52966a['\x76\x65\x72\x73\x69\x6f\x6e']??SDK_VERSION},{'\x63\x61\x70\x61\x62\x69\x6c\x69\x74\x69\x65\x73':{'\x74\x6f\x6f\x6c\x73':{}}});return _0x541ef4[_0x1ca65d(0x203)](_0x311f40[_0x1ca65d(0x1f0)],async()=>({'\x74\x6f\x6f\x6c\x73':_0x489add[_0x1ca65d(0x20a)](_0x2933fc=>({'\x6e\x61\x6d\x65':_0x2933fc[_0x1ca65d(0x24e)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x2933fc[_0x1ca65d(0x20e)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x2933fc[_0x1ca65d(0x1ea)]}))})),_0x541ef4[_0x1ca65d(0x203)](_0x311f40['\x43\x61\x6c\x6c\x54\x6f\x6f\x6c\x52\x65\x71\x75\x65\x73\x74\x53\x63\x68\x65\x6d\x61'],async _0x1177e3=>{const _0x28e6b2=_0x1ca65d,_0x136671=_0x1177e3,_0x481d62=_0x4a55f0[_0x28e6b2(0x218)](_0x136671[_0x28e6b2(0x1d4)][_0x28e6b2(0x24e)]);if(!_0x481d62)return{'\x69\x73\x45\x72\x72\x6f\x72':!![],'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':_0x28e6b2(0x227),'\x74\x65\x78\x74':_0x28e6b2(0x219)+_0x136671[_0x28e6b2(0x1d4)][_0x28e6b2(0x24e)]}]};try{return{'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':_0xa8b559[_0x28e6b2(0x1e4)],'\x74\x65\x78\x74':serializeToolResult(await _0x481d62(_0x136671['\x70\x61\x72\x61\x6d\x73'][_0x28e6b2(0x23e)]??{}))}]};}catch(_0x34c1f4){return{'\x69\x73\x45\x72\x72\x6f\x72':!![],'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':_0x28e6b2(0x227),'\x74\x65\x78\x74':_0xa8b559[_0x28e6b2(0x1d9)](_0x34c1f4,Error)?_0x34c1f4[_0x28e6b2(0x1eb)]:String(_0x34c1f4)}]};}}),{'\x73\x65\x72\x76\x65\x72':_0x541ef4,'\x63\x6f\x6e\x6e\x65\x63\x74':_0x303da6=>_0x541ef4[_0x1ca65d(0x247)](_0x303da6),'\x63\x6c\x6f\x73\x65':()=>_0x541ef4[_0x1ca65d(0x1f1)]()};}function runCode(_0x372613,_0x25fbab,_0x576e87,_0x308e59){const _0x3c2a3c=a0_0x500b58;return _0x372613[_0x3c2a3c(0x20d)](_0x25fbab,_0x576e87,_0x308e59);}function anthropicTools(_0x4f6e40,_0x41885a={}){const _0x48db5d=a0_0x500b58,_0x28b254={'\x6e\x65\x4a\x6c\x45':function(_0x1d2115,_0x791314){return _0x1d2115(_0x791314);}},_0x2d41a1=selectSpecs(_0x41885a[_0x48db5d(0x22b)]),_0x318e67={'\x62\x6f\x78':_0x4f6e40,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x41885a['\x73\x65\x73\x73\x69\x6f\x6e\x49\x64']},_0x17059d=new Map();for(const _0x3b5865 of _0x2d41a1)_0x17059d[_0x48db5d(0x254)](_0x3b5865[_0x48db5d(0x24e)],_0x3b5865[_0x48db5d(0x1de)](_0x318e67));const _0x1dad2c=_0x2d41a1[_0x48db5d(0x20a)](_0x363109=>({'\x6e\x61\x6d\x65':_0x363109[_0x48db5d(0x24e)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x363109[_0x48db5d(0x20e)],'\x69\x6e\x70\x75\x74\x5f\x73\x63\x68\x65\x6d\x61':_0x363109[_0x48db5d(0x1ea)]}));async function _0x5172d0(_0x3b4912){const _0x3361df=_0x48db5d,_0xce5e6f=_0x17059d['\x67\x65\x74'](_0x3b4912[_0x3361df(0x24e)]);if(!_0xce5e6f)return{'\x74\x79\x70\x65':'\x74\x6f\x6f\x6c\x5f\x72\x65\x73\x75\x6c\x74','\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x3b4912['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x3361df(0x219)+_0x3b4912[_0x3361df(0x24e)],'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};try{const _0x31bf3f=await _0xce5e6f(_0x3b4912[_0x3361df(0x1fa)]);return{'\x74\x79\x70\x65':'\x74\x6f\x6f\x6c\x5f\x72\x65\x73\x75\x6c\x74','\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x3b4912['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':toAnthropicContent(_0x31bf3f)};}catch(_0x234e58){return{'\x74\x79\x70\x65':_0x3361df(0x228),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x3b4912['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x234e58 instanceof Error?_0x234e58[_0x3361df(0x1eb)]:_0x28b254['\x6e\x65\x4a\x6c\x45'](String,_0x234e58),'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};}}async function _0x1068c6(_0x4f4aaa){const _0x43c60d=_0x48db5d,_0xa0d5b7=_0x4f4aaa[_0x43c60d(0x1e3)](_0x2d9f55=>typeof _0x2d9f55==='\x6f\x62\x6a\x65\x63\x74'&&_0x2d9f55!==null&&_0x2d9f55[_0x43c60d(0x233)]==='\x74\x6f\x6f\x6c\x5f\x75\x73\x65');return Promise[_0x43c60d(0x1dc)](_0xa0d5b7[_0x43c60d(0x20a)](_0x5172d0));}return{'\x74\x6f\x6f\x6c\x73':_0x1dad2c,'\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x55\x73\x65':_0x5172d0,'\x68\x61\x6e\x64\x6c\x65\x41\x73\x73\x69\x73\x74\x61\x6e\x74\x4d\x65\x73\x73\x61\x67\x65':_0x1068c6};}function toAnthropicContent(_0x2c6663){const _0x111645=a0_0x500b58,_0x4f1ba7={'\x4f\x71\x48\x48\x78':function(_0x55199f,_0x1d61d3){return _0x55199f(_0x1d61d3);},'\x70\x42\x43\x68\x7a':function(_0x3ee164,_0x3b6b98){return _0x3ee164(_0x3b6b98);},'\x4a\x75\x69\x46\x75':_0x111645(0x227)};if(!_0x4f1ba7[_0x111645(0x21c)](isCodeExecutionResultWithImages,_0x2c6663))return _0x4f1ba7['\x70\x42\x43\x68\x7a'](serializeToolResult,_0x2c6663);const _0x293f88=[],_0x6ee0e6={..._0x2c6663,'\x72\x65\x73\x75\x6c\x74\x73':_0x2c6663[_0x111645(0x20b)]['\x66\x69\x6c\x74\x65\x72'](_0x26f1c7=>_0x26f1c7['\x74\x79\x70\x65']!==_0x111645(0x1d6))};_0x293f88[_0x111645(0x229)]({'\x74\x79\x70\x65':_0x4f1ba7[_0x111645(0x206)],'\x74\x65\x78\x74':serializeToolResult(_0x6ee0e6)});for(const _0x5c9a8e of _0x2c6663[_0x111645(0x20b)])if(isImagePart(_0x5c9a8e))_0x293f88[_0x111645(0x229)]({'\x74\x79\x70\x65':_0x111645(0x1d6),'\x73\x6f\x75\x72\x63\x65':{'\x74\x79\x70\x65':_0x111645(0x1d8),'\x6d\x65\x64\x69\x61\x5f\x74\x79\x70\x65':imageMediaType(_0x5c9a8e['\x66\x6f\x72\x6d\x61\x74']),'\x64\x61\x74\x61':_0x5c9a8e[_0x111645(0x22c)]}});return _0x293f88;}function isImagePart(_0x5493a9){const _0x6d9acb=a0_0x500b58,_0x1fdd6b={'\x57\x50\x68\x52\x42':function(_0x5ba0c2,_0x3efeaf){return _0x5ba0c2===_0x3efeaf;},'\x52\x55\x53\x51\x46':_0x6d9acb(0x1d6)};return _0x1fdd6b['\x57\x50\x68\x52\x42'](_0x5493a9[_0x6d9acb(0x233)],_0x1fdd6b[_0x6d9acb(0x262)]);}function isCodeExecutionResultWithImages(_0x1842bf){const _0x563b9f=a0_0x500b58,_0x107442={'\x51\x42\x4a\x75\x6c':function(_0x9ad54a,_0x3e15d3){return _0x9ad54a!==_0x3e15d3;},'\x68\x55\x56\x76\x6a':_0x563b9f(0x1ec)};if(!_0x1842bf||_0x107442[_0x563b9f(0x238)](typeof _0x1842bf,_0x107442[_0x563b9f(0x1e0)]))return![];const _0x477e72=_0x1842bf[_0x563b9f(0x20b)];if(!Array[_0x563b9f(0x23f)](_0x477e72))return![];return _0x477e72[_0x563b9f(0x222)](_0x382d0a=>_0x382d0a&&typeof _0x382d0a==='\x6f\x62\x6a\x65\x63\x74'&&_0x382d0a[_0x563b9f(0x233)]===_0x563b9f(0x1d6));}function imageMediaType(_0x1cdaa8){const _0xaebf8c=a0_0x500b58,_0x436023={'\x6e\x72\x41\x4e\x59':_0xaebf8c(0x217),'\x58\x44\x43\x50\x57':'\x6a\x70\x65\x67','\x49\x75\x4d\x61\x57':_0xaebf8c(0x1ed)};switch(_0x1cdaa8){case'\x70\x6e\x67':return _0x436023['\x6e\x72\x41\x4e\x59'];case _0x436023[_0xaebf8c(0x1f9)]:return _0x436023[_0xaebf8c(0x235)];case _0xaebf8c(0x269):return _0xaebf8c(0x217);}}function a0_0x4878(){const _0x94c803=['\x6d\x4d\x44\x4b\x79\x4e\x76\x63\x76\x47','\x79\x77\x58\x53\x42\x33\x43','\x7a\x67\x66\x30\x79\x71','\x79\x32\x39\x55\x44\x67\x76\x34\x44\x61','\x41\x67\x66\x5a','\x7a\x67\x76\x53\x7a\x78\x72\x4c','\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','\x77\x68\x72\x6e\x44\x4c\x4f','\x6d\x74\x6a\x66\x71\x4d\x54\x65\x71\x78\x61','\x44\x68\x4c\x57\x7a\x71','\x44\x32\x39\x59\x41\x32\x76\x59\x43\x57','\x73\x78\x76\x6e\x79\x76\x43','\x41\x32\x76\x35\x43\x57','\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','\x75\x75\x6a\x6b\x44\x77\x57','\x6d\x74\x61\x57\x6d\x64\x65\x33\x74\x4d\x7a\x59\x77\x4c\x44\x6f','\x7a\x4d\x58\x4c\x7a\x78\x72\x5a','\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','\x6c\x49\x34\x56\x6c\x49\x34\x56\x43\x67\x66\x4a\x41\x32\x66\x4e\x7a\x73\x35\x51\x43\x32\x39\x55','\x71\x67\x31\x48\x43\x33\x72\x59\x79\x73\x39\x4a\x42\x33\x6a\x4c','\x79\x78\x6a\x4e\x44\x77\x31\x4c\x42\x4e\x72\x5a','\x41\x78\x6e\x62\x43\x4e\x6a\x48\x45\x71','\x79\x32\x39\x55\x44\x67\x76\x55\x44\x61','\x75\x4d\x76\x4e\x7a\x78\x47\x47\x43\x67\x66\x30\x44\x67\x76\x59\x42\x49\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','\x43\x33\x72\x48\x44\x68\x76\x5a','\x6f\x74\x65\x30\x6d\x5a\x76\x58\x71\x4d\x44\x35\x45\x4c\x4b','\x43\x33\x72\x59\x41\x77\x35\x4e\x41\x77\x7a\x35','\x7a\x4d\x48\x49\x72\x65\x30','\x79\x32\x39\x55\x42\x4d\x76\x4a\x44\x61','\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\x32\x39\x31\x43\x4d\x6e\x4c','\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','\x79\x4d\x39\x56\x42\x67\x76\x48\x42\x47','\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','\x6d\x5a\x75\x35\x6e\x4a\x43\x31\x6d\x65\x4c\x67\x7a\x75\x6a\x72\x44\x47','\x42\x4d\x66\x54\x7a\x71','\x79\x4d\x66\x5a\x41\x61','\x72\x66\x72\x35\x44\x76\x71','\x42\x78\x50\x78\x79\x77\x65','\x79\x32\x39\x54\x42\x77\x66\x55\x7a\x61','\x43\x67\x66\x30\x44\x67\x76\x59\x42\x47','\x43\x32\x76\x30','\x42\x77\x66\x4a\x41\x67\x4c\x55\x7a\x78\x6d','\x73\x78\x66\x49\x44\x31\x4f','\x42\x67\x4c\x5a\x44\x61','\x41\x31\x66\x76\x42\x67\x75','\x43\x32\x76\x5a\x43\x32\x4c\x56\x42\x4b\x4c\x4b','\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','\x44\x67\x4c\x54\x7a\x77\x39\x31\x44\x66\x39\x54\x43\x57','\x44\x32\x39\x59\x41\x32\x76\x59\x6c\x71','\x42\x4e\x76\x54\x79\x4d\x76\x59','\x44\x4b\x72\x76\x72\x30\x75','\x79\x78\x6a\x59\x79\x78\x4b','\x7a\x4e\x76\x55\x79\x33\x72\x50\x42\x32\x34','\x6f\x74\x75\x32\x6e\x64\x43\x32\x44\x4e\x6e\x48\x77\x76\x76\x6e','\x75\x4c\x76\x74\x75\x75\x79','\x71\x67\x31\x56\x7a\x67\x76\x53\x79\x32\x39\x55\x44\x67\x76\x34\x44\x68\x62\x59\x42\x33\x72\x56\x79\x32\x39\x53\x6c\x33\x6e\x4b\x41\x59\x39\x30\x45\x78\x62\x4c\x43\x59\x35\x51\x43\x57','\x7a\x78\x48\x4c\x79\x57','\x44\x4d\x66\x53\x44\x77\x76\x5a','\x6e\x4a\x6d\x57\x6f\x74\x75\x30\x43\x32\x54\x4d\x72\x67\x54\x78','\x42\x31\x72\x65\x75\x76\x6d','\x79\x33\x44\x4b','\x43\x33\x7a\x4e','\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','\x76\x77\x35\x52\x42\x4d\x39\x33\x42\x49\x62\x4d\x42\x67\x76\x4c\x44\x63\x62\x30\x42\x32\x39\x53\x6f\x49\x61','\x75\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','\x43\x67\x66\x59\x43\x32\x75','\x7a\x4d\x58\x4c\x7a\x78\x72\x6a\x7a\x61','\x75\x4d\x4c\x57\x7a\x33\x6a\x4c\x43\x63\x31\x5a\x44\x68\x4c\x53\x7a\x73\x62\x4a\x42\x32\x72\x4c\x69\x68\x6e\x4c\x79\x78\x6a\x4a\x41\x63\x34\x47\x75\x4d\x76\x30\x44\x78\x6a\x55\x43\x59\x62\x54\x79\x78\x72\x4a\x41\x67\x4c\x55\x7a\x59\x62\x53\x41\x77\x35\x4c\x43\x59\x62\x33\x41\x78\x72\x4f\x69\x68\x6e\x31\x43\x4e\x6a\x56\x44\x77\x35\x4b\x41\x77\x35\x4e\x69\x67\x6e\x56\x42\x4e\x72\x4c\x45\x68\x71\x55','\x43\x67\x66\x59\x79\x77\x31\x5a','\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','\x41\x77\x31\x48\x7a\x32\x75','\x44\x67\x76\x54\x43\x67\x58\x48\x44\x67\x76\x46\x41\x77\x71','\x79\x4d\x66\x5a\x7a\x74\x79\x30','\x77\x77\x44\x69\x79\x77\x71','\x43\x33\x72\x59\x41\x77\x35\x4e','\x73\x32\x76\x59\x42\x4d\x76\x53\x69\x67\x58\x48\x42\x4d\x44\x31\x79\x77\x44\x4c\x6c\x47','\x79\x77\x58\x53','\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\x77\x66\x52\x7a\x75\x48\x48\x42\x4d\x72\x53\x7a\x78\x69','\x7a\x4e\x7a\x41\x72\x67\x75','\x41\x66\x76\x77\x44\x4d\x4f','\x7a\x4d\x58\x4c\x7a\x78\x72\x46\x41\x77\x71','\x43\x68\x4c\x30\x41\x67\x39\x55','\x7a\x4d\x4c\x53\x44\x67\x76\x59','\x75\x30\x44\x63\x42\x76\x47','\x44\x76\x7a\x4c\x75\x30\x4b','\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\x66\x30\x41\x61','\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','\x75\x32\x76\x59\x44\x4d\x76\x59','\x41\x77\x35\x57\x44\x78\x72\x74\x79\x32\x48\x4c\x42\x77\x65','\x42\x77\x76\x5a\x43\x32\x66\x4e\x7a\x71','\x42\x32\x6a\x51\x7a\x77\x6e\x30','\x41\x77\x31\x48\x7a\x32\x75\x56\x41\x4e\x62\x4c\x7a\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\x33\x6e\x4e\x44\x77\x65','\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','\x79\x32\x58\x56\x43\x32\x75','\x42\x67\x76\x55\x7a\x33\x72\x4f','\x74\x76\x62\x51\x7a\x33\x69','\x44\x68\x66\x48\x41\x66\x75','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4c\x45\x67\x76\x4a','\x42\x67\x66\x55\x7a\x33\x76\x48\x7a\x32\x75','\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\x59\x7a\x77\x66\x4b','\x77\x65\x72\x64\x75\x66\x43','\x41\x77\x35\x57\x44\x78\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','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x33\x43\x4d\x4c\x30\x7a\x71','\x42\x77\x76\x30\x79\x77\x72\x48\x44\x67\x65','\x43\x32\x76\x48\x43\x4d\x6e\x4f','\x44\x67\x39\x56\x42\x61','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x59\x44\x77\x35\x46\x79\x32\x39\x4b\x7a\x71','\x75\x4e\x76\x55\x69\x67\x65\x47\x43\x32\x48\x4c\x42\x67\x57\x47\x79\x32\x39\x54\x42\x77\x66\x55\x7a\x63\x61\x4f\x42\x4d\x38\x47\x43\x67\x76\x59\x43\x32\x4c\x5a\x44\x67\x76\x55\x44\x63\x62\x5a\x44\x67\x66\x30\x7a\x73\x4b\x47\x41\x77\x34\x47\x44\x67\x48\x4c\x69\x68\x6e\x48\x42\x4d\x72\x49\x42\x33\x47\x55\x69\x66\x76\x5a\x7a\x73\x62\x4d\x42\x33\x69\x47\x42\x32\x35\x4c\x6c\x78\x6e\x4f\x42\x33\x71\x47\x44\x67\x66\x5a\x41\x33\x6d\x47\x42\x67\x4c\x52\x7a\x73\x61\x4e\x43\x67\x35\x57\x42\x73\x62\x50\x42\x4e\x6e\x30\x79\x77\x58\x53\x6a\x59\x62\x56\x43\x49\x61\x4e\x42\x68\x6d\x4e\x6c\x49\x62\x67\x42\x33\x69\x47\x79\x32\x39\x4b\x7a\x73\x62\x30\x41\x67\x66\x30\x69\x68\x6e\x4f\x42\x33\x76\x53\x7a\x63\x62\x5a\x41\x67\x66\x59\x7a\x73\x62\x5a\x44\x67\x66\x30\x7a\x73\x62\x48\x79\x33\x6a\x56\x43\x33\x6d\x47\x79\x32\x66\x53\x42\x68\x6d\x53\x69\x68\x62\x59\x7a\x77\x7a\x4c\x43\x49\x62\x5a\x79\x77\x35\x4b\x79\x4d\x39\x34\x78\x33\x6a\x31\x42\x4c\x39\x4a\x42\x32\x72\x4c\x69\x68\x44\x50\x44\x67\x47\x47\x79\x73\x62\x5a\x7a\x78\x6e\x5a\x41\x77\x39\x55\x73\x77\x71\x55','\x41\x77\x72\x5a','\x43\x32\x76\x30\x75\x4d\x76\x58\x44\x77\x76\x5a\x44\x65\x48\x48\x42\x4d\x72\x53\x7a\x78\x69','\x6d\x74\x61\x58\x6d\x64\x75\x59\x6f\x68\x44\x36\x71\x4b\x6e\x4d\x44\x57','\x41\x4e\x6e\x56\x42\x4c\x6e\x4a\x41\x67\x76\x54\x79\x71','\x73\x4e\x76\x50\x72\x4e\x75','\x42\x4d\x39\x4b\x7a\x71','\x41\x77\x58\x49\x76\x32\x4b','\x44\x67\x66\x55\x7a\x32\x58\x4c\x6c\x78\x6e\x48\x42\x4d\x72\x49\x42\x33\x47','\x42\x77\x66\x57','\x43\x4d\x76\x5a\x44\x77\x58\x30\x43\x57','\x44\x33\x6a\x50\x44\x67\x75','\x43\x4e\x76\x55\x71\x32\x39\x4b\x7a\x71','\x7a\x67\x76\x5a\x79\x33\x6a\x50\x43\x68\x72\x50\x42\x32\x34','\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','\x79\x33\x6a\x4c\x79\x78\x72\x4c\x76\x67\x39\x56\x42\x61','\x71\x32\x66\x57\x6c\x49\x62\x65\x7a\x77\x7a\x48\x44\x77\x58\x30\x69\x64\x65\x57\x6d\x63\x34','\x77\x65\x31\x5a\x76\x4c\x4b','\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','\x43\x4d\x76\x48\x7a\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','\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','\x41\x77\x31\x48\x7a\x32\x75\x56\x43\x67\x35\x4e','\x7a\x32\x76\x30','\x76\x77\x35\x52\x42\x4d\x39\x33\x42\x49\x62\x30\x42\x32\x39\x53\x6f\x49\x61','\x6d\x4a\x47\x31\x6d\x5a\x75\x5a\x74\x4b\x66\x62\x74\x65\x76\x67','\x6d\x74\x72\x56\x72\x32\x76\x34\x43\x75\x34','\x74\x33\x66\x69\x73\x68\x47','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x5a\x7a\x77\x66\x59\x79\x32\x47','\x44\x68\x4c\x57\x7a\x78\x6e\x4a\x43\x4d\x4c\x57\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','\x6d\x63\x34\x57\x6c\x4a\x61','\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','\x43\x32\x39\x54\x7a\x71','\x72\x67\x76\x4d\x79\x78\x76\x53\x44\x63\x61\x32\x6d\x64\x61\x57\x6d\x63\x34','\x43\x4b\x58\x6f\x7a\x4d\x34','\x42\x77\x6e\x73\x42\x66\x65','\x42\x77\x66\x34\x78\x33\x6a\x4c\x43\x33\x76\x53\x44\x68\x6d','\x44\x67\x76\x34\x44\x61','\x44\x67\x39\x56\x42\x66\x39\x59\x7a\x78\x6e\x31\x42\x68\x71','\x43\x68\x76\x5a\x41\x61'];a0_0x4878=function(){return _0x94c803;};return a0_0x4878();}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_0x500b58(0x25a),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x500b58(0x1ec),'\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_0x500b58(0x1da),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x1fb)},'\x77\x6f\x72\x6b\x65\x72\x73':{'\x74\x79\x70\x65':a0_0x500b58(0x25d),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x23b)},'\x6d\x65\x74\x61\x64\x61\x74\x61':{'\x74\x79\x70\x65':a0_0x500b58(0x1ec),'\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':[a0_0x500b58(0x1d7),'\x77\x6f\x72\x6b\x65\x72\x73'],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({client:_0x3d84e9})=>async _0x3bcccb=>{const _0x21c17c=a0_0x500b58,_0x2473c9=await _0x3d84e9[_0x21c17c(0x23a)]['\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':_0x3bcccb[_0x21c17c(0x1d7)]},'\x77\x6f\x72\x6b\x65\x72\x73':Array['\x66\x72\x6f\x6d']({'\x6c\x65\x6e\x67\x74\x68':_0x3bcccb[_0x21c17c(0x234)]},(_0x5877cb,_0x51e60c)=>({'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64':_0x21c17c(0x25c)+_0x51e60c})),'\x6d\x65\x74\x61\x64\x61\x74\x61':_0x3bcccb[_0x21c17c(0x1fd)]});return{'\x66\x6c\x65\x65\x74\x49\x64':_0x2473c9[_0x21c17c(0x26e)],'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64\x73':_0x2473c9[_0x21c17c(0x202)]};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x64\x69\x73\x70\x61\x74\x63\x68':{'\x6e\x61\x6d\x65':'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x64\x69\x73\x70\x61\x74\x63\x68','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x215),'\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_0x500b58(0x1da)},'\x63\x6f\x6d\x6d\x61\x6e\x64':{'\x74\x79\x70\x65':a0_0x500b58(0x1da),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x248)},'\x6d\x61\x63\x68\x69\x6e\x65\x73':{'\x74\x79\x70\x65':a0_0x500b58(0x25f),'\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_0x500b58(0x1e8)},'\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73':{'\x74\x79\x70\x65':a0_0x500b58(0x25d),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x216)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x500b58(0x1e1),'\x63\x6f\x6d\x6d\x61\x6e\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:_0xd216e6})=>async _0x3a01d8=>{const _0x429978=a0_0x500b58;return await(await _0xd216e6[_0x429978(0x23a)][_0x429978(0x257)]({'\x66\x6c\x65\x65\x74\x49\x64':_0x3a01d8[_0x429978(0x1e1)]}))['\x64\x69\x73\x70\x61\x74\x63\x68\x45\x78\x65\x63'](_0x3a01d8[_0x429978(0x252)],{'\x6d\x61\x63\x68\x69\x6e\x65\x73':_0x3a01d8[_0x429978(0x255)],'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x3a01d8[_0x429978(0x25b)]});}},'\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_0x500b58(0x221),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x20f),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x500b58(0x1ec),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x66\x6c\x65\x65\x74\x5f\x69\x64':{'\x74\x79\x70\x65':'\x73\x74\x72\x69\x6e\x67'}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x500b58(0x1e1)],'\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:_0x35e528})=>async _0x5c119c=>{const _0x64d8ae=a0_0x500b58,_0x12b9bd=await _0x35e528[_0x64d8ae(0x23a)][_0x64d8ae(0x257)]({'\x66\x6c\x65\x65\x74\x49\x64':_0x5c119c['\x66\x6c\x65\x65\x74\x5f\x69\x64']});return{'\x66\x6c\x65\x65\x74\x49\x64':_0x12b9bd[_0x64d8ae(0x26e)],'\x6d\x61\x63\x68\x69\x6e\x65\x73':_0x12b9bd[_0x64d8ae(0x202)][_0x64d8ae(0x20a)](_0x24d6a7=>({'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64':_0x24d6a7,'\x73\x74\x61\x74\x75\x73':_0x12b9bd[_0x64d8ae(0x218)](_0x24d6a7)[_0x64d8ae(0x243)]}))};}},'\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_0x500b58(0x21f),'\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':'\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_0x500b58(0x1da)},'\x63\x6f\x6e\x74\x69\x6e\x75\x65\x5f\x6f\x6e\x5f\x65\x72\x72\x6f\x72':{'\x74\x79\x70\x65':a0_0x500b58(0x24b),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x24c)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x500b58(0x1e1)],'\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:_0x103675})=>async _0x56bf7e=>{const _0x5f1adc=a0_0x500b58;return await(await _0x103675[_0x5f1adc(0x23a)][_0x5f1adc(0x257)]({'\x66\x6c\x65\x65\x74\x49\x64':_0x56bf7e[_0x5f1adc(0x1e1)]}))[_0x5f1adc(0x22f)]({'\x63\x6f\x6e\x74\x69\x6e\x75\x65\x4f\x6e\x45\x72\x72\x6f\x72':_0x56bf7e['\x63\x6f\x6e\x74\x69\x6e\x75\x65\x5f\x6f\x6e\x5f\x65\x72\x72\x6f\x72']}),{'\x66\x6c\x65\x65\x74\x49\x64':_0x56bf7e[_0x5f1adc(0x1e1)],'\x64\x65\x6c\x65\x74\x65\x64':!![]};}}},ALL_FLEET_TOOL_SPECS=Object['\x76\x61\x6c\x75\x65\x73'](FLEET_TOOL_SPECS);function selectFleetSpecs(_0xf80684){const _0x27775a=a0_0x500b58;if(!_0xf80684||_0xf80684[_0x27775a(0x1f2)]===0x0)return ALL_FLEET_TOOL_SPECS;const _0x33dbf9=new Set(_0xf80684);return Object[_0x27775a(0x236)](FLEET_TOOL_SPECS)['\x66\x69\x6c\x74\x65\x72'](_0xd3b9c1=>_0x33dbf9['\x68\x61\x73'](_0xd3b9c1))[_0x27775a(0x20a)](_0x56f160=>FLEET_TOOL_SPECS[_0x56f160]);}function anthropicFleetTools(_0x2e8cee,_0x210789={}){const _0x437f20=a0_0x500b58,_0x4889c6={'\x69\x6c\x62\x57\x69':_0x437f20(0x228),'\x49\x71\x62\x77\x5a':function(_0x428e64,_0x3d1c9c){return _0x428e64(_0x3d1c9c);},'\x76\x44\x55\x47\x45':function(_0x326ab9,_0x9da7d4){return _0x326ab9 instanceof _0x9da7d4;},'\x6d\x63\x52\x6c\x51':function(_0x595fd9,_0x5bf9da){return _0x595fd9(_0x5bf9da);},'\x74\x71\x61\x68\x55':function(_0x33fb5b,_0x393e6a,_0x487a31){return _0x33fb5b(_0x393e6a,_0x487a31);}},_0x1e80c7=_0x4889c6[_0x437f20(0x225)](selectFleetSpecs,_0x210789[_0x437f20(0x22b)]),_0x49397f=_0x4889c6[_0x437f20(0x1f4)](buildFleetHandlers,_0x1e80c7,{'\x63\x6c\x69\x65\x6e\x74':_0x2e8cee});return{'\x74\x6f\x6f\x6c\x73':_0x1e80c7['\x6d\x61\x70'](_0x2a2b3e=>({'\x6e\x61\x6d\x65':_0x2a2b3e[_0x437f20(0x24e)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x2a2b3e[_0x437f20(0x20e)],'\x69\x6e\x70\x75\x74\x5f\x73\x63\x68\x65\x6d\x61':_0x2a2b3e[_0x437f20(0x1ea)]})),async '\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x55\x73\x65'(_0x1288ee){const _0x584b2d=_0x437f20,_0x1af20c=_0x49397f[_0x584b2d(0x218)](_0x1288ee[_0x584b2d(0x24e)]);if(!_0x1af20c)return{'\x74\x79\x70\x65':_0x584b2d(0x228),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x1288ee['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x584b2d(0x26b)+_0x1288ee[_0x584b2d(0x24e)],'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};try{const _0x2844d8=await _0x1af20c(_0x1288ee[_0x584b2d(0x1fa)]);return{'\x74\x79\x70\x65':_0x4889c6[_0x584b2d(0x208)],'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x1288ee['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x4889c6[_0x584b2d(0x256)](serializeToolResult,_0x2844d8)};}catch(_0x4a8aa0){return{'\x74\x79\x70\x65':'\x74\x6f\x6f\x6c\x5f\x72\x65\x73\x75\x6c\x74','\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x1288ee['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x4889c6[_0x584b2d(0x25e)](_0x4a8aa0,Error)?_0x4a8aa0[_0x584b2d(0x1eb)]:_0x4889c6['\x49\x71\x62\x77\x5a'](String,_0x4a8aa0),'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};}}};}function openaiFleetTools(_0x18e9c0,_0x39d1b4={}){const _0x344216=a0_0x500b58,_0xa347cc={'\x58\x4d\x73\x56\x59':function(_0x4694cc,_0x1b1a35){return _0x4694cc(_0x1b1a35);},'\x67\x73\x67\x75\x61':_0x344216(0x1ff),'\x6d\x7a\x57\x61\x61':function(_0x1079fb,_0x47896e){return _0x1079fb instanceof _0x47896e;}},_0x136b82=selectFleetSpecs(_0x39d1b4['\x61\x6c\x6c\x6f\x77']),_0x3ffe1a=buildFleetHandlers(_0x136b82,{'\x63\x6c\x69\x65\x6e\x74':_0x18e9c0});return{'\x74\x6f\x6f\x6c\x73':_0x136b82[_0x344216(0x20a)](_0xab7b70=>({'\x74\x79\x70\x65':'\x66\x75\x6e\x63\x74\x69\x6f\x6e','\x66\x75\x6e\x63\x74\x69\x6f\x6e':{'\x6e\x61\x6d\x65':_0xab7b70[_0x344216(0x24e)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0xab7b70[_0x344216(0x20e)],'\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73':_0xab7b70[_0x344216(0x1ea)]}})),async '\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x43\x61\x6c\x6c'(_0x47ae57){const _0x2659f3=_0x344216,_0x59c88c=_0x3ffe1a['\x67\x65\x74'](_0x47ae57[_0x2659f3(0x260)][_0x2659f3(0x24e)]);if(!_0x59c88c)return{'\x72\x6f\x6c\x65':_0x2659f3(0x1ff),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x47ae57['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON['\x73\x74\x72\x69\x6e\x67\x69\x66\x79']({'\x65\x72\x72\x6f\x72':'\x55\x6e\x6b\x6e\x6f\x77\x6e\x20\x66\x6c\x65\x65\x74\x20\x74\x6f\x6f\x6c\x3a\x20'+_0x47ae57[_0x2659f3(0x260)][_0x2659f3(0x24e)]})};let _0x125049={};try{const _0x5c3000=JSON[_0x2659f3(0x26d)](_0x47ae57[_0x2659f3(0x260)][_0x2659f3(0x23e)]||'\x7b\x7d');if(_0x5c3000&&typeof _0x5c3000==='\x6f\x62\x6a\x65\x63\x74')_0x125049=_0x5c3000;}catch{}try{const _0x2843a2=await _0xa347cc[_0x2659f3(0x212)](_0x59c88c,_0x125049);return{'\x72\x6f\x6c\x65':_0xa347cc[_0x2659f3(0x1ef)],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x47ae57['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':serializeToolResult(_0x2843a2)};}catch(_0x1fbd87){return{'\x72\x6f\x6c\x65':_0xa347cc[_0x2659f3(0x1ef)],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x47ae57['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x2659f3(0x245)]({'\x65\x72\x72\x6f\x72':_0xa347cc[_0x2659f3(0x251)](_0x1fbd87,Error)?_0x1fbd87[_0x2659f3(0x1eb)]:_0xa347cc['\x58\x4d\x73\x56\x59'](String,_0x1fbd87)})};}}};}function a0_0x9341(_0x1d7603,_0x2a38ba){_0x1d7603=_0x1d7603-0x1d4;const _0x48784d=a0_0x4878();let _0x9341a7=_0x48784d[_0x1d7603];if(a0_0x9341['\x46\x72\x6a\x4c\x55\x53']===undefined){var _0x3c1753=function(_0x4a94bd){const _0x36eff0='\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 _0x1f4c97='',_0x4dab16='';for(let _0x3b0dc3=0x0,_0x5c1eb9,_0x516624,_0x5b30ea=0x0;_0x516624=_0x4a94bd['\x63\x68\x61\x72\x41\x74'](_0x5b30ea++);~_0x516624&&(_0x5c1eb9=_0x3b0dc3%0x4?_0x5c1eb9*0x40+_0x516624:_0x516624,_0x3b0dc3++%0x4)?_0x1f4c97+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0xff&_0x5c1eb9>>(-0x2*_0x3b0dc3&0x6)):0x0){_0x516624=_0x36eff0['\x69\x6e\x64\x65\x78\x4f\x66'](_0x516624);}for(let _0x400570=0x0,_0x1b578b=_0x1f4c97['\x6c\x65\x6e\x67\x74\x68'];_0x400570<_0x1b578b;_0x400570++){_0x4dab16+='\x25'+('\x30\x30'+_0x1f4c97['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x400570)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x10))['\x73\x6c\x69\x63\x65'](-0x2);}return decodeURIComponent(_0x4dab16);};a0_0x9341['\x66\x65\x74\x6f\x4f\x4e']=_0x3c1753,a0_0x9341['\x70\x4c\x41\x49\x69\x73']={},a0_0x9341['\x46\x72\x6a\x4c\x55\x53']=!![];}const _0x373f72=_0x48784d[0x0],_0x899dd7=_0x1d7603+_0x373f72,_0x3be88a=a0_0x9341['\x70\x4c\x41\x49\x69\x73'][_0x899dd7];return!_0x3be88a?(_0x9341a7=a0_0x9341['\x66\x65\x74\x6f\x4f\x4e'](_0x9341a7),a0_0x9341['\x70\x4c\x41\x49\x69\x73'][_0x899dd7]=_0x9341a7):_0x9341a7=_0x3be88a,_0x9341a7;}async function vercelAiFleetTools(_0x7ce100,_0x3b7f62={}){const _0x4ddc8f=a0_0x500b58,_0x46765c={'\x58\x74\x4d\x76\x5a':function(_0x32b79f,_0x6ac7fb){return _0x32b79f(_0x6ac7fb);},'\x6d\x46\x5a\x59\x71':_0x4ddc8f(0x213),'\x66\x68\x62\x44\x4d':function(_0x1abeec,_0x2f6a35,_0x249676){return _0x1abeec(_0x2f6a35,_0x249676);}};let _0x3f1213;try{_0x3f1213=await import('\x61\x69');}catch{throw new Error(_0x46765c['\x6d\x46\x5a\x59\x71']);}const _0x2f36bb=selectFleetSpecs(_0x3b7f62[_0x4ddc8f(0x22b)]),_0x466f73=_0x46765c[_0x4ddc8f(0x246)](buildFleetHandlers,_0x2f36bb,{'\x63\x6c\x69\x65\x6e\x74':_0x7ce100}),_0xe99737={};for(const _0x25395c of _0x2f36bb)_0xe99737[_0x25395c['\x6e\x61\x6d\x65']]=_0x3f1213[_0x4ddc8f(0x1ff)]({'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x25395c[_0x4ddc8f(0x20e)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x3f1213[_0x4ddc8f(0x205)](_0x25395c[_0x4ddc8f(0x1ea)]),'\x65\x78\x65\x63\x75\x74\x65':async _0x35c79a=>{const _0x211599=_0x4ddc8f,_0x7339d=_0x466f73[_0x211599(0x218)](_0x25395c[_0x211599(0x24e)]);if(!_0x7339d)throw new Error('\x55\x6e\x6b\x6e\x6f\x77\x6e\x20\x66\x6c\x65\x65\x74\x20\x74\x6f\x6f\x6c\x3a\x20'+_0x25395c[_0x211599(0x24e)]);return serializeToolResult(await _0x46765c[_0x211599(0x231)](_0x7339d,_0x35c79a));}});return _0xe99737;}async function mastraFleetTools(_0x3a070a,_0xe3085c={}){const _0x56151=a0_0x500b58;let _0x5a6bbe;try{_0x5a6bbe=await import(_0x56151(0x23d));}catch{throw new Error(_0x56151(0x26a));}const _0x4d4018=selectFleetSpecs(_0xe3085c['\x61\x6c\x6c\x6f\x77']),_0x6c8e7d=buildFleetHandlers(_0x4d4018,{'\x63\x6c\x69\x65\x6e\x74':_0x3a070a}),_0x2bc463={};for(const _0x2fa2ae of _0x4d4018)_0x2bc463[_0x2fa2ae[_0x56151(0x24e)]]=_0x5a6bbe[_0x56151(0x210)]({'\x69\x64':_0x2fa2ae[_0x56151(0x24e)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x2fa2ae['\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e'],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x5a6bbe[_0x56151(0x205)]?_0x5a6bbe[_0x56151(0x205)](_0x2fa2ae[_0x56151(0x1ea)]):_0x2fa2ae[_0x56151(0x1ea)],'\x65\x78\x65\x63\x75\x74\x65':async _0x4a150a=>{const _0x2d56cb=_0x56151,_0x46b318=_0x6c8e7d[_0x2d56cb(0x218)](_0x2fa2ae[_0x2d56cb(0x24e)]);if(!_0x46b318)throw new Error(_0x2d56cb(0x26b)+_0x2fa2ae[_0x2d56cb(0x24e)]);return{'\x72\x65\x73\x75\x6c\x74':serializeToolResult(await _0x46b318(_0x4a150a?.[_0x2d56cb(0x22d)]??{}))};}});return _0x2bc463;}function buildFleetHandlers(_0x41992c,_0x1e7f8c){const _0x437fed=a0_0x500b58,_0x21a8ef=new Map();for(const _0x384f83 of _0x41992c)_0x21a8ef[_0x437fed(0x254)](_0x384f83[_0x437fed(0x24e)],_0x384f83[_0x437fed(0x1de)](_0x1e7f8c));return _0x21a8ef;}async function mastraTools(_0x441c67,_0x59ba32={}){const _0x5bb735=a0_0x500b58,_0x58776c={'\x6f\x54\x44\x51\x53':_0x5bb735(0x23d),'\x72\x4c\x4e\x66\x6e':_0x5bb735(0x230),'\x6a\x4b\x4f\x64\x4e':function(_0x532f55,_0x8a0a7b){return _0x532f55(_0x8a0a7b);}};let _0x2b1aae;try{_0x2b1aae=await import(_0x58776c[_0x5bb735(0x267)]);}catch{throw new Error(_0x58776c[_0x5bb735(0x224)]);}const _0x233cda=_0x58776c['\x6a\x4b\x4f\x64\x4e'](selectSpecs,_0x59ba32[_0x5bb735(0x22b)]),_0x123838={'\x62\x6f\x78':_0x441c67,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x59ba32[_0x5bb735(0x259)]},_0x341ebe={};for(const _0x4f1a40 of _0x233cda){const _0x3ceaf0=_0x4f1a40['\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72'](_0x123838);_0x341ebe[_0x4f1a40[_0x5bb735(0x24e)]]=_0x2b1aae[_0x5bb735(0x210)]({'\x69\x64':_0x4f1a40['\x6e\x61\x6d\x65'],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x4f1a40[_0x5bb735(0x20e)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x2b1aae[_0x5bb735(0x205)]?_0x2b1aae[_0x5bb735(0x205)](_0x4f1a40[_0x5bb735(0x1ea)]):_0x4f1a40[_0x5bb735(0x1ea)],'\x65\x78\x65\x63\x75\x74\x65':async _0x213c13=>{const _0x6591c=_0x5bb735;return{'\x72\x65\x73\x75\x6c\x74':serializeToolResult(await _0x3ceaf0(_0x213c13?.[_0x6591c(0x22d)]??{}))};}});}return _0x341ebe;}function openaiTools(_0x4606f0,_0x5451eb={}){const _0x5827ce=a0_0x500b58,_0x1ceb63={'\x4d\x50\x6a\x67\x72':_0x5827ce(0x1ff),'\x69\x64\x44\x47\x4c':function(_0x2a53c0,_0x54a09b){return _0x2a53c0(_0x54a09b);},'\x41\x4b\x78\x47\x58':function(_0x2d63d2,_0x3de0f8){return _0x2d63d2(_0x3de0f8);},'\x66\x76\x5a\x44\x65':function(_0x5be97f,_0x40daab){return _0x5be97f instanceof _0x40daab;},'\x75\x56\x65\x53\x49':function(_0x26be44,_0x374dfa){return _0x26be44(_0x374dfa);}},_0x1b107d=_0x1ceb63[_0x5827ce(0x1e5)](selectSpecs,_0x5451eb[_0x5827ce(0x22b)]),_0x44d7f4={'\x62\x6f\x78':_0x4606f0,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x5451eb[_0x5827ce(0x259)]},_0x40e3d0=new Map();for(const _0x44bdc4 of _0x1b107d)_0x40e3d0['\x73\x65\x74'](_0x44bdc4[_0x5827ce(0x24e)],_0x44bdc4[_0x5827ce(0x1de)](_0x44d7f4));const _0xbe4c8e=_0x1b107d[_0x5827ce(0x20a)](_0x179c40=>({'\x74\x79\x70\x65':_0x5827ce(0x260),'\x66\x75\x6e\x63\x74\x69\x6f\x6e':{'\x6e\x61\x6d\x65':_0x179c40[_0x5827ce(0x24e)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x179c40[_0x5827ce(0x20e)],'\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73':_0x179c40[_0x5827ce(0x1ea)]}}));function _0x2f514a(_0x429c4d){const _0x1c5f93=_0x5827ce;if(!_0x429c4d)return{};try{const _0x17e99d=JSON[_0x1c5f93(0x26d)](_0x429c4d);return typeof _0x17e99d==='\x6f\x62\x6a\x65\x63\x74'&&_0x17e99d!==null?_0x17e99d:{};}catch{return{};}}async function _0x5e662c(_0x280dcd){const _0x4ab097=_0x5827ce,_0x529492=_0x40e3d0[_0x4ab097(0x218)](_0x280dcd[_0x4ab097(0x260)][_0x4ab097(0x24e)]);if(!_0x529492)return{'\x72\x6f\x6c\x65':_0x1ceb63[_0x4ab097(0x1f3)],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x280dcd['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x4ab097(0x245)]({'\x65\x72\x72\x6f\x72':'\x55\x6e\x6b\x6e\x6f\x77\x6e\x20\x74\x6f\x6f\x6c\x3a\x20'+_0x280dcd[_0x4ab097(0x260)][_0x4ab097(0x24e)]})};try{const _0x4af562=await _0x1ceb63['\x69\x64\x44\x47\x4c'](_0x529492,_0x1ceb63['\x69\x64\x44\x47\x4c'](_0x2f514a,_0x280dcd[_0x4ab097(0x260)][_0x4ab097(0x23e)]));return{'\x72\x6f\x6c\x65':_0x1ceb63[_0x4ab097(0x1f3)],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x280dcd['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x1ceb63['\x41\x4b\x78\x47\x58'](serializeToolResult,_0x4af562)};}catch(_0x4eb296){return{'\x72\x6f\x6c\x65':_0x4ab097(0x1ff),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x280dcd['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON['\x73\x74\x72\x69\x6e\x67\x69\x66\x79']({'\x65\x72\x72\x6f\x72':_0x1ceb63[_0x4ab097(0x1df)](_0x4eb296,Error)?_0x4eb296[_0x4ab097(0x1eb)]:String(_0x4eb296)})};}}async function _0x3e02fc(_0x45e287){const _0x50102b=_0x5827ce,_0x1ddd5e=_0x45e287['\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x73']??[];return Promise[_0x50102b(0x1dc)](_0x1ddd5e[_0x50102b(0x20a)](_0x5e662c));}return{'\x74\x6f\x6f\x6c\x73':_0xbe4c8e,'\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x43\x61\x6c\x6c':_0x5e662c,'\x68\x61\x6e\x64\x6c\x65\x41\x73\x73\x69\x73\x74\x61\x6e\x74\x4d\x65\x73\x73\x61\x67\x65':_0x3e02fc};}async function vercelAiTools(_0x389df2,_0x5d9cb3={}){const _0x97093b=a0_0x500b58,_0x192bce={'\x4b\x42\x69\x75\x76':function(_0x856fdb,_0x48d1f8){return _0x856fdb(_0x48d1f8);}};let _0x3fc684;try{_0x3fc684=await import('\x61\x69');}catch{throw new Error(_0x97093b(0x1d5));}const _0x511494=_0x192bce['\x4b\x42\x69\x75\x76'](selectSpecs,_0x5d9cb3[_0x97093b(0x22b)]),_0x54fb74={'\x62\x6f\x78':_0x389df2,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x5d9cb3[_0x97093b(0x259)]},_0x9a18a7={};for(const _0x4c175f of _0x511494){const _0x339b1f=_0x4c175f[_0x97093b(0x1de)](_0x54fb74);_0x9a18a7[_0x4c175f[_0x97093b(0x24e)]]=_0x3fc684['\x74\x6f\x6f\x6c']({'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x4c175f[_0x97093b(0x20e)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x3fc684[_0x97093b(0x205)](_0x4c175f['\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61']),'\x65\x78\x65\x63\x75\x74\x65':async _0x208f19=>{return serializeToolResult(await _0x339b1f(_0x208f19));}});}return _0x9a18a7;}export{anthropicFleetTools,anthropicTools,createMcpServer,mastraFleetTools,mastraTools,openaiFleetTools,openaiTools,runCode,vercelAiFleetTools,vercelAiTools};
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_0x5d0dfe=a0_0x3248;(function(_0x3c6d84,_0x4d947a){const _0x17d424=a0_0x3248,_0x511532=_0x3c6d84();while(!![]){try{const _0x458c13=parseInt(_0x17d424(0x185))/0x1*(parseInt(_0x17d424(0x16b))/0x2)+-parseInt(_0x17d424(0x186))/0x3+parseInt(_0x17d424(0x19e))/0x4*(parseInt(_0x17d424(0x182))/0x5)+parseInt(_0x17d424(0x19a))/0x6*(-parseInt(_0x17d424(0x193))/0x7)+-parseInt(_0x17d424(0x181))/0x8+-parseInt(_0x17d424(0x183))/0x9+-parseInt(_0x17d424(0x164))/0xa*(-parseInt(_0x17d424(0x160))/0xb);if(_0x458c13===_0x4d947a)break;else _0x511532['push'](_0x511532['shift']());}catch(_0x35df32){_0x511532['push'](_0x511532['shift']());}}}(a0_0x1480,0x53f19));import{createHmac,timingSafeEqual}from'\x6e\x6f\x64\x65\x3a\x63\x72\x79\x70\x74\x6f';function base64UrlEncode(_0x404a39){const _0x8f72fb=a0_0x3248,_0x5a72af={'\x59\x57\x52\x68\x49':'\x73\x74\x72\x69\x6e\x67'};return(typeof _0x404a39===_0x5a72af[_0x8f72fb(0x16a)]?Buffer['\x66\x72\x6f\x6d'](_0x404a39):_0x404a39)[_0x8f72fb(0x18f)]('\x62\x61\x73\x65\x36\x34')['\x72\x65\x70\x6c\x61\x63\x65'](/\+/g,'\x2d')[_0x8f72fb(0x167)](/\//g,'\x5f')[_0x8f72fb(0x167)](/=+$/,'');}function decodeBase64UrlToBuffer(_0x2ca587){const _0x1c4d91=a0_0x3248;if(!/^[A-Za-z0-9_-]*$/[_0x1c4d91(0x163)](_0x2ca587))return null;const _0x53a9cd=_0x2ca587+'\x3d'[_0x1c4d91(0x170)]((0x4-_0x2ca587[_0x1c4d91(0x19f)]%0x4)%0x4);return Buffer['\x66\x72\x6f\x6d'](_0x53a9cd[_0x1c4d91(0x167)](/-/g,'\x2b')[_0x1c4d91(0x167)](/_/g,'\x2f'),_0x1c4d91(0x19c));}function createSignature(_0x4dfbd6,_0xd7ea3){const _0x32d57c=a0_0x3248,_0x1a8c5c={'\x42\x77\x53\x58\x68':function(_0x11511f,_0x35a907){return _0x11511f(_0x35a907);}};return _0x1a8c5c['\x42\x77\x53\x58\x68'](base64UrlEncode,createHmac(_0x32d57c(0x17d),_0xd7ea3)[_0x32d57c(0x195)](_0x4dfbd6)['\x64\x69\x67\x65\x73\x74']());}const JWT_HEADER=base64UrlEncode(JSON[a0_0x5d0dfe(0x191)]({'\x61\x6c\x67':a0_0x5d0dfe(0x17f),'\x74\x79\x70':a0_0x5d0dfe(0x199)}));function issueToken(_0x36c0f1,_0x522661,_0x547ff2){const _0x4f19ef=a0_0x5d0dfe,_0x30d47c={'\x58\x62\x67\x69\x4d':function(_0x44d007,_0x1b03ef){return _0x44d007/_0x1b03ef;},'\x45\x55\x4d\x6b\x73':function(_0x5ba949,_0x471829){return _0x5ba949+_0x471829;},'\x71\x6e\x63\x50\x75':function(_0x122d3d,_0x27d05c){return _0x122d3d*_0x27d05c;}},_0x410a7a=Math[_0x4f19ef(0x180)](_0x30d47c[_0x4f19ef(0x194)](Date[_0x4f19ef(0x177)](),0x3e8)),_0x4aa5dd={..._0x522661,'\x69\x61\x74':_0x410a7a,'\x65\x78\x70':_0x30d47c[_0x4f19ef(0x198)](_0x410a7a,_0x30d47c[_0x4f19ef(0x18e)](_0x547ff2,0x3c))},_0x457b7b=JWT_HEADER+'\x2e'+base64UrlEncode(JSON[_0x4f19ef(0x191)](_0x4aa5dd));return _0x457b7b+'\x2e'+createSignature(_0x457b7b,_0x36c0f1);}function issueReadToken(_0x4107cd,_0x22a9f1,_0x4df090){const _0x19da2c=a0_0x5d0dfe,_0x4cac00={'\x64\x79\x77\x58\x4e':function(_0x5315d7,_0x5b82b2,_0x35bc22,_0x8f4285){return _0x5315d7(_0x5b82b2,_0x35bc22,_0x8f4285);},'\x68\x54\x68\x76\x79':_0x19da2c(0x165)};return _0x4cac00[_0x19da2c(0x16d)](issueToken,_0x4107cd,{..._0x22a9f1,'\x74\x79\x70':_0x4cac00['\x68\x54\x68\x76\x79']},_0x4df090);}function issueSessionScopedToken(_0x58c31d,_0x114d0b,_0x2bcc90){const _0x1fcffe={'\x70\x67\x66\x4d\x64':function(_0x299d41,_0x5db34a,_0x5bf20f,_0x2b2c40){return _0x299d41(_0x5db34a,_0x5bf20f,_0x2b2c40);}};return _0x1fcffe['\x70\x67\x66\x4d\x64'](issueReadToken,_0x58c31d,_0x114d0b,_0x2bcc90);}function a0_0x1480(){const _0x550aa2=['\x77\x67\x6a\x4e\x41\x75\x30','\x44\x78\x62\x4b\x79\x78\x72\x4c','\x43\x32\x4c\x4e\x42\x4d\x4c\x55\x7a\x31\x6e\x4c\x79\x33\x6a\x4c\x44\x61','\x7a\x4e\x6a\x4c\x7a\x71','\x72\x76\x76\x6e\x41\x33\x6d','\x73\x4c\x44\x75','\x6f\x64\x72\x65\x42\x4d\x7a\x41\x42\x66\x71','\x41\x30\x35\x53\x7a\x76\x69','\x79\x4d\x66\x5a\x7a\x74\x79\x30','\x42\x77\x66\x34','\x6d\x4a\x79\x30\x6e\x74\x7a\x6c\x77\x4c\x50\x59\x72\x68\x6d','\x42\x67\x76\x55\x7a\x33\x72\x4f','\x43\x4b\x7a\x35\x42\x68\x79','\x7a\x32\x76\x30\x76\x68\x72\x53\x74\x77\x4c\x55\x44\x78\x72\x4c\x43\x57','\x6d\x4a\x61\x57\x6f\x64\x69\x57\x6e\x5a\x6e\x58\x75\x65\x7a\x5a\x76\x66\x43','\x43\x77\x6a\x4b\x72\x33\x47','\x79\x33\x72\x58\x45\x4c\x71','\x44\x67\x76\x5a\x44\x61','\x6d\x74\x62\x4a\x42\x65\x35\x50\x45\x75\x38','\x43\x4d\x76\x48\x7a\x61','\x73\x33\x66\x30\x72\x75\x6d','\x43\x4d\x76\x57\x42\x67\x66\x4a\x7a\x71','\x72\x67\x44\x67\x75\x76\x75','\x43\x67\x66\x59\x43\x32\x75','\x77\x76\x44\x73\x41\x65\x4b','\x6d\x74\x79\x35\x6f\x64\x6a\x4c\x76\x4d\x66\x62\x76\x4c\x69','\x43\x32\x76\x5a\x43\x32\x4c\x56\x42\x4b\x4c\x4b','\x7a\x68\x4c\x33\x77\x65\x34','\x44\x67\x4c\x4c\x43\x47','\x79\x77\x6e\x4a\x7a\x78\x6e\x5a','\x43\x4d\x76\x57\x7a\x77\x66\x30','\x75\x4b\x35\x56\x73\x75\x43','\x7a\x78\x48\x57','\x44\x78\x6e\x4c\x43\x4b\x4c\x4b','\x45\x4b\x76\x55\x43\x77\x53','\x79\x4b\x58\x58\x74\x30\x4f','\x43\x30\x72\x76\x7a\x77\x69','\x42\x4d\x39\x33','\x45\x76\x4c\x4f\x73\x4d\x65','\x7a\x67\x39\x4a\x44\x77\x31\x4c\x42\x4e\x72\x6a\x7a\x61','\x7a\x77\x35\x30\x7a\x78\x6a\x57\x43\x4d\x4c\x5a\x7a\x71','\x43\x68\x6a\x56\x7a\x68\x76\x4a\x44\x65\x4c\x4b','\x74\x68\x48\x78\x41\x4e\x65','\x43\x32\x48\x48\x6d\x4a\x75\x32','\x42\x76\x6a\x59\x7a\x31\x79','\x73\x66\x6d\x59\x6e\x74\x79','\x7a\x4d\x58\x56\x42\x33\x69','\x6d\x4a\x47\x57\x6e\x5a\x61\x57\x6f\x65\x6e\x4b\x44\x78\x4c\x72\x43\x71','\x6d\x74\x71\x31\x74\x32\x54\x55\x42\x68\x62\x72','\x6e\x64\x47\x57\x6e\x64\x43\x31\x6f\x66\x50\x59\x73\x4e\x66\x65\x43\x47','\x79\x32\x66\x30\x7a\x4b\x79','\x6d\x74\x72\x75\x74\x66\x50\x49\x42\x65\x71','\x6d\x74\x61\x30\x6e\x64\x65\x5a\x6f\x66\x50\x4c\x75\x31\x44\x68\x44\x47','\x44\x68\x72\x53\x74\x77\x4c\x55\x44\x78\x72\x4c\x43\x57','\x79\x77\x58\x4e','\x43\x68\x6a\x56','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x65\x4c\x4b','\x43\x33\x62\x53\x41\x78\x71','\x79\x32\x58\x56\x79\x32\x54\x74\x41\x32\x76\x33\x75\x32\x76\x4a\x42\x32\x35\x4b\x43\x57','\x7a\x4e\x6a\x56\x42\x71','\x43\x77\x35\x4a\x75\x68\x75','\x44\x67\x39\x74\x44\x68\x6a\x50\x42\x4d\x43','\x43\x68\x6a\x56\x41\x4d\x76\x4a\x44\x65\x4c\x4b','\x43\x33\x72\x59\x41\x77\x35\x4e\x41\x77\x7a\x35','\x79\x32\x39\x53\x42\x67\x66\x49\x42\x33\x6a\x48\x44\x67\x4c\x56\x42\x47','\x6d\x4a\x43\x35\x6f\x64\x75\x5a\x74\x31\x7a\x54\x74\x76\x6a\x76'];a0_0x1480=function(){return _0x550aa2;};return a0_0x1480();}function issueProjectScopedToken(_0x416e95,_0x40ba4a,_0xd786e6){return issueReadToken(_0x416e95,_0x40ba4a,_0xd786e6);}function issueBatchScopedToken(_0x29917b,_0x567d12,_0x110cbf){const _0x1474a9=a0_0x5d0dfe,_0xdfb641={'\x72\x46\x79\x6c\x76':function(_0x59ca44,_0x34df4b,_0x54b44a,_0x17d8d4){return _0x59ca44(_0x34df4b,_0x54b44a,_0x17d8d4);}};return _0xdfb641[_0x1474a9(0x1a0)](issueReadToken,_0x29917b,_0x567d12,_0x110cbf);}function issueCollaborationToken(_0x379fba,_0x47e7ad,_0x187fae){const _0x354d6e=a0_0x5d0dfe,_0x33805b={'\x63\x61\x74\x66\x46':_0x354d6e(0x192)};return issueToken(_0x379fba,{'\x73\x75\x62':_0x47e7ad['\x75\x73\x65\x72\x49\x64'],'\x73\x69\x64':_0x47e7ad['\x73\x65\x73\x73\x69\x6f\x6e\x49\x64'],'\x70\x69\x64':_0x47e7ad['\x70\x72\x6f\x64\x75\x63\x74\x49\x64'],'\x63\x69\x64':_0x47e7ad[_0x354d6e(0x18a)],'\x74\x79\x70':_0x33805b[_0x354d6e(0x184)],'\x70\x72\x6f\x6a\x65\x63\x74\x49\x64':_0x47e7ad[_0x354d6e(0x190)],'\x64\x6f\x63\x75\x6d\x65\x6e\x74\x49\x64':_0x47e7ad[_0x354d6e(0x179)],'\x61\x63\x63\x65\x73\x73':_0x47e7ad[_0x354d6e(0x16f)]},_0x187fae);}function a0_0x3248(_0x4cb851,_0xca6fcd){_0x4cb851=_0x4cb851-0x160;const _0x148052=a0_0x1480();let _0x324847=_0x148052[_0x4cb851];if(a0_0x3248['\x67\x6a\x56\x4d\x57\x50']===undefined){var _0x261167=function(_0x1d8f32){const _0xe6f517='\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 _0x3a02f9='',_0x47b016='';for(let _0x18d744=0x0,_0x12d24f,_0x321940,_0x5a4fb5=0x0;_0x321940=_0x1d8f32['\x63\x68\x61\x72\x41\x74'](_0x5a4fb5++);~_0x321940&&(_0x12d24f=_0x18d744%0x4?_0x12d24f*0x40+_0x321940:_0x321940,_0x18d744++%0x4)?_0x3a02f9+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0xff&_0x12d24f>>(-0x2*_0x18d744&0x6)):0x0){_0x321940=_0xe6f517['\x69\x6e\x64\x65\x78\x4f\x66'](_0x321940);}for(let _0x5b4d05=0x0,_0xd89bbb=_0x3a02f9['\x6c\x65\x6e\x67\x74\x68'];_0x5b4d05<_0xd89bbb;_0x5b4d05++){_0x47b016+='\x25'+('\x30\x30'+_0x3a02f9['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x5b4d05)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x10))['\x73\x6c\x69\x63\x65'](-0x2);}return decodeURIComponent(_0x47b016);};a0_0x3248['\x63\x48\x75\x61\x53\x61']=_0x261167,a0_0x3248['\x53\x67\x47\x53\x66\x41']={},a0_0x3248['\x67\x6a\x56\x4d\x57\x50']=!![];}const _0x12d0ba=_0x148052[0x0],_0x116fca=_0x4cb851+_0x12d0ba,_0x5c1e34=a0_0x3248['\x53\x67\x47\x53\x66\x41'][_0x116fca];return!_0x5c1e34?(_0x324847=a0_0x3248['\x63\x48\x75\x61\x53\x61'](_0x324847),a0_0x3248['\x53\x67\x47\x53\x66\x41'][_0x116fca]=_0x324847):_0x324847=_0x5c1e34,_0x324847;}function unsafeDecodeToken(_0x3c472b){const _0x454dec=a0_0x5d0dfe,_0x2e73a3={'\x44\x67\x46\x51\x55':function(_0x550a8d,_0x506046){return _0x550a8d+_0x506046;},'\x52\x4e\x6f\x49\x47':function(_0x1363ac,_0xe59987){return _0x1363ac%_0xe59987;}};try{const _0x518659=_0x3c472b[_0x454dec(0x18b)]('\x2e');if(_0x518659[_0x454dec(0x19f)]!==0x3)return null;const _0x25c901=_0x2e73a3[_0x454dec(0x168)](_0x518659[0x1],'\x3d'['\x72\x65\x70\x65\x61\x74'](_0x2e73a3[_0x454dec(0x171)](0x4-_0x2e73a3[_0x454dec(0x171)](_0x518659[0x1][_0x454dec(0x19f)],0x4),0x4))),_0x3c338f=Buffer['\x66\x72\x6f\x6d'](_0x25c901[_0x454dec(0x167)](/-/g,'\x2b')[_0x454dec(0x167)](/_/g,'\x2f'),_0x454dec(0x19c))['\x74\x6f\x53\x74\x72\x69\x6e\x67']();return JSON['\x70\x61\x72\x73\x65'](_0x3c338f);}catch{return null;}}function verifyToken(_0x5adc1b,_0x5d5b90,_0x3e23ea={}){const _0x51f145=a0_0x5d0dfe,_0x5e7a35={'\x79\x59\x68\x4a\x61':function(_0x5ebb21,_0x494ad6){return _0x5ebb21||_0x494ad6;},'\x7a\x45\x6e\x71\x6b':function(_0x2a71b3,_0x38b8a2){return _0x2a71b3+_0x38b8a2;},'\x6d\x52\x72\x67\x56':function(_0x40921d,_0x27ee7b){return _0x40921d(_0x27ee7b);},'\x4b\x71\x74\x45\x43':function(_0x40ba82,_0x37e1a2,_0x350773){return _0x40ba82(_0x37e1a2,_0x350773);},'\x63\x74\x71\x7a\x54':'\x6e\x75\x6d\x62\x65\x72'};try{const _0x208a74=_0x5adc1b[_0x51f145(0x18b)]('\x2e');if(_0x208a74[_0x51f145(0x19f)]!==0x3)return null;const [_0x56e4df,_0x3cf6c3,_0x2d3d3f]=_0x208a74;if(_0x5e7a35[_0x51f145(0x178)](!_0x56e4df,!_0x3cf6c3)||!_0x2d3d3f)return null;let _0x19acac;try{const _0x3083a3=_0x5e7a35[_0x51f145(0x174)](_0x56e4df,'\x3d'[_0x51f145(0x170)]((0x4-_0x56e4df[_0x51f145(0x19f)]%0x4)%0x4)),_0x3ed2df=Buffer[_0x51f145(0x18d)](_0x3083a3[_0x51f145(0x167)](/-/g,'\x2b')[_0x51f145(0x167)](/_/g,'\x2f'),'\x62\x61\x73\x65\x36\x34')[_0x51f145(0x18f)]();_0x19acac=JSON[_0x51f145(0x169)](_0x3ed2df);}catch{return null;}if(_0x19acac[_0x51f145(0x188)]!=='\x48\x53\x32\x35\x36')return null;const _0x17c387=createSignature(_0x56e4df+'\x2e'+_0x3cf6c3,_0x5d5b90),_0x49db79=decodeBase64UrlToBuffer(_0x2d3d3f),_0x5cb7eb=_0x5e7a35[_0x51f145(0x17e)](decodeBase64UrlToBuffer,_0x17c387);if(!_0x49db79||!_0x5cb7eb)return null;if(_0x49db79[_0x51f145(0x19f)]!==_0x5cb7eb[_0x51f145(0x19f)])return null;if(!_0x5e7a35[_0x51f145(0x166)](timingSafeEqual,_0x49db79,_0x5cb7eb))return null;const _0x1bcce4=unsafeDecodeToken(_0x5adc1b);if(!_0x1bcce4)return null;const _0x3a6815=Math[_0x51f145(0x180)](Date[_0x51f145(0x177)]()/0x3e8),_0x37152c=Math[_0x51f145(0x19d)](0x0,_0x3e23ea[_0x51f145(0x18c)]??0x0);if(typeof _0x1bcce4[_0x51f145(0x172)]!==_0x5e7a35[_0x51f145(0x162)]||_0x1bcce4['\x65\x78\x70']+_0x37152c<_0x3a6815)return null;return _0x1bcce4;}catch{return null;}}function getTokenTTL(_0x3dfd75){const _0x58efea=a0_0x5d0dfe,_0x32351f={'\x44\x5a\x6e\x63\x67':function(_0x507282,_0x526bf6){return _0x507282/_0x526bf6;}},_0x339002=Math[_0x58efea(0x180)](_0x32351f['\x44\x5a\x6e\x63\x67'](Date['\x6e\x6f\x77'](),0x3e8));return _0x3dfd75[_0x58efea(0x172)]-_0x339002;}function isTokenExpiringSoon(_0xd883f7,_0x45a34b=0x3c){return getTokenTTL(_0xd883f7)<=_0x45a34b;}var ProductTokenIssuer=class{[a0_0x5d0dfe(0x17b)];[a0_0x5d0dfe(0x196)];[a0_0x5d0dfe(0x187)];constructor(_0x433e18){const _0x343914=a0_0x5d0dfe;this[_0x343914(0x17b)]=_0x433e18[_0x343914(0x17b)],this['\x73\x69\x67\x6e\x69\x6e\x67\x53\x65\x63\x72\x65\x74']=_0x433e18[_0x343914(0x196)],this[_0x343914(0x187)]={'\x66\x72\x65\x65':_0x433e18[_0x343914(0x187)]?.[_0x343914(0x197)]??0xf,'\x70\x72\x6f':_0x433e18[_0x343914(0x187)]?.[_0x343914(0x189)]??0xf0,'\x65\x6e\x74\x65\x72\x70\x72\x69\x73\x65':_0x433e18['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73']?.[_0x343914(0x17a)]??0x1e0};}['\x69\x73\x73\x75\x65'](_0x2c44d3){const _0x28dca2=a0_0x5d0dfe,_0x4a82b1={'\x71\x62\x64\x47\x78':function(_0x405408,_0x482b5e){return _0x405408+_0x482b5e;},'\x62\x4c\x71\x4f\x4a':function(_0x3a7945,_0x185515){return _0x3a7945/_0x185515;},'\x63\x4b\x77\x77\x65':function(_0x3adc6a,_0x3c88b4){return _0x3adc6a*_0x3c88b4;}},_0x10269c=_0x2c44d3['\x74\x69\x65\x72']??_0x28dca2(0x197),_0x2f6872=this['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73'][_0x10269c]??this[_0x28dca2(0x187)]['\x66\x72\x65\x65'];return{'\x74\x6f\x6b\x65\x6e':issueReadToken(this[_0x28dca2(0x196)],{'\x73\x75\x62':_0x2c44d3[_0x28dca2(0x173)],'\x73\x69\x64':_0x2c44d3[_0x28dca2(0x16c)],'\x70\x69\x64':this[_0x28dca2(0x17b)],'\x63\x69\x64':_0x2c44d3[_0x28dca2(0x18a)]},_0x2f6872),'\x65\x78\x70\x69\x72\x65\x73\x41\x74':_0x4a82b1[_0x28dca2(0x161)](Math[_0x28dca2(0x180)](_0x4a82b1[_0x28dca2(0x175)](Date[_0x28dca2(0x177)](),0x3e8)),_0x4a82b1['\x63\x4b\x77\x77\x65'](_0x2f6872,0x3c))};}['\x69\x73\x73\x75\x65\x43\x6f\x6c\x6c\x61\x62\x6f\x72\x61\x74\x69\x6f\x6e'](_0x4ac669){const _0x1330c5=a0_0x5d0dfe,_0x135409={'\x4c\x78\x57\x6a\x71':function(_0x3034ff,_0x1d7ec5,_0x404e3a,_0x11e286){return _0x3034ff(_0x1d7ec5,_0x404e3a,_0x11e286);},'\x73\x44\x55\x65\x62':function(_0x56d77b,_0x442efd){return _0x56d77b+_0x442efd;},'\x6b\x4e\x6c\x65\x52':function(_0x21a3e,_0x45d8e0){return _0x21a3e/_0x45d8e0;}},_0x743505=_0x4ac669[_0x1330c5(0x16e)]??'\x66\x72\x65\x65',_0x31357b=this[_0x1330c5(0x187)][_0x743505]??this['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73'][_0x1330c5(0x197)];return{'\x74\x6f\x6b\x65\x6e':_0x135409[_0x1330c5(0x17c)](issueCollaborationToken,this[_0x1330c5(0x196)],{'\x75\x73\x65\x72\x49\x64':_0x4ac669[_0x1330c5(0x173)],'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x4ac669[_0x1330c5(0x16c)],'\x70\x72\x6f\x64\x75\x63\x74\x49\x64':this[_0x1330c5(0x17b)],'\x70\x72\x6f\x6a\x65\x63\x74\x49\x64':_0x4ac669[_0x1330c5(0x190)],'\x64\x6f\x63\x75\x6d\x65\x6e\x74\x49\x64':_0x4ac669[_0x1330c5(0x179)],'\x61\x63\x63\x65\x73\x73':_0x4ac669[_0x1330c5(0x16f)],'\x73\x61\x6e\x64\x62\x6f\x78\x49\x64':_0x4ac669['\x73\x61\x6e\x64\x62\x6f\x78\x49\x64']},_0x31357b),'\x65\x78\x70\x69\x72\x65\x73\x41\x74':_0x135409[_0x1330c5(0x176)](Math['\x66\x6c\x6f\x6f\x72'](_0x135409[_0x1330c5(0x19b)](Date[_0x1330c5(0x177)](),0x3e8)),_0x31357b*0x3c)};}[a0_0x5d0dfe(0x1a1)](_0x355c57=a0_0x5d0dfe(0x197)){const _0x5b9893=a0_0x5d0dfe;return this[_0x5b9893(0x187)][_0x355c57]??this[_0x5b9893(0x187)]['\x66\x72\x65\x65'];}};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};