@tangle-network/sandbox 0.9.0 → 0.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -679,6 +679,45 @@ interface SandboxConnection {
679
679
  /** Web terminal URL if `webTerminalEnabled` was true during creation */
680
680
  webTerminalUrl?: string;
681
681
  }
682
+ /**
683
+ * One attributed step in a sandbox cold-start, as emitted by the
684
+ * platform startup pipeline. Mirrors the platform
685
+ * `StartupOperationTiming` shape one-to-one.
686
+ *
687
+ * - `operation` is by convention `<service>.<phase>`
688
+ * (e.g. `host-agent.container_create`).
689
+ * - `durationMs` is wall-clock time the step took. The platform
690
+ * marks it optional on `skipped` steps, so it is optional here too.
691
+ */
692
+ interface StartupOperation {
693
+ /** `<service>.<phase>` operation name. */
694
+ operation: string;
695
+ /** Service that performed the step, when attributed. */
696
+ service?: string;
697
+ /** Terminal status of the step (e.g. `completed`, `skipped`, `error`). */
698
+ status?: string;
699
+ /** Wall-clock duration of the step in milliseconds, when measured. */
700
+ durationMs?: number;
701
+ /** PII-scrubbed step detail (counts, ids, error codes). */
702
+ metadata?: Record<string, unknown>;
703
+ }
704
+ /**
705
+ * The startup breakdown for a sandbox cold-start. Returned by
706
+ * {@link SandboxInstance.startupDiagnostics} so a customer can read where
707
+ * provisioning time went (host selection, container create/start, health
708
+ * checks, runtime readiness, workspace setup, etc.).
709
+ *
710
+ * `operations` is the raw ordered list from the platform. `phases`
711
+ * is a derived convenience map of operation name → `durationMs` for the
712
+ * steps that reported a duration; steps without a measured duration are
713
+ * omitted from `phases` but still present in `operations`.
714
+ */
715
+ interface StartupDiagnostics {
716
+ /** Ordered startup steps exactly as the platform emitted them. */
717
+ operations: StartupOperation[];
718
+ /** Derived map of operation name → measured duration in milliseconds. */
719
+ phases: Record<string, number>;
720
+ }
682
721
  /**
683
722
  * Full sandbox information returned from the API.
684
723
  */
@@ -703,6 +742,13 @@ interface SandboxInfo {
703
742
  expiresAt?: Date;
704
743
  /** Error message if status is 'failed' */
705
744
  error?: string;
745
+ /**
746
+ * Startup phase breakdown, present only on the create response (the
747
+ * platform emits it once, at provision time). Use
748
+ * {@link SandboxInstance.startupDiagnostics} rather than reading this
749
+ * directly.
750
+ */
751
+ startupDiagnostics?: StartupDiagnostics;
706
752
  /** Resolved egress policy */
707
753
  egressPolicy?: EgressPolicy;
708
754
  /** Source of the egress policy */
@@ -937,13 +983,77 @@ interface InstalledTool {
937
983
  /**
938
984
  * Result of an agent prompt.
939
985
  */
986
+ /**
987
+ * Granular outcome of an agent run.
988
+ * - `success` — reached a terminal event with no run-level error and no failed
989
+ * tool. A tool-only turn (no text) succeeds.
990
+ * - `failed` — a run-level error event, or any failed (`isError`) tool, or the
991
+ * stream ended with no terminal event.
992
+ * - `blocked_on_approval` — a tool hit a hub approval gate; resolve it, then
993
+ * re-run. See {@link AgentApprovalRequirement}.
994
+ * - `awaiting_question` — the agent asked a question and the turn ended without
995
+ * an answer. See {@link AgentQuestionRequest}.
996
+ */
997
+ type AgentRunStatus = "success" | "failed" | "blocked_on_approval" | "awaiting_question";
998
+ /**
999
+ * A tool the agent invoked during a run. `isError` flags a failed call
1000
+ * (errored, timed out, or rejected — e.g. a hub approval gate). Failed tools
1001
+ * are recorded, not dropped, so callers can inspect what the agent attempted.
1002
+ */
1003
+ interface AgentToolInvocation {
1004
+ toolName: string;
1005
+ input?: unknown;
1006
+ result?: unknown;
1007
+ isError?: boolean;
1008
+ }
1009
+ /**
1010
+ * A hub approval gate the agent hit mid-run. Present on a result when
1011
+ * `status === "blocked_on_approval"`. Approve with the CLI
1012
+ * (`tangle hub approvals approve <approvalId>`) or the hub SDK, then re-run.
1013
+ */
1014
+ interface AgentApprovalRequirement {
1015
+ /**
1016
+ * Approval id to act on. `undefined` when the in-sandbox hub bridge did not
1017
+ * preserve the structured approval object — surfaced honestly rather than
1018
+ * invented; inspect `message` in that case.
1019
+ */
1020
+ approvalId?: string;
1021
+ /** Hub connection the gated tool belongs to, when known. */
1022
+ connectionId?: string;
1023
+ /** The tool error message that surfaced the gate. */
1024
+ message?: string;
1025
+ }
1026
+ /**
1027
+ * A question the agent asked mid-run. Present on a result when
1028
+ * `status === "awaiting_question"`. Answer via
1029
+ * `box.session(id).answer({ [questionId]: [...selected] })`, then re-run.
1030
+ */
1031
+ interface AgentQuestionRequest {
1032
+ /** Question id to pass to `session.answer`. */
1033
+ questionId: string;
1034
+ /** The questions payload the agent emitted (prompt + options per entry). */
1035
+ questions: unknown;
1036
+ }
940
1037
  interface PromptResult {
941
- /** Whether the prompt completed successfully */
1038
+ /**
1039
+ * Whether the run succeeded. Shorthand for `status === "success"`: true only
1040
+ * when the run reached a terminal event with no run-level error and no failed
1041
+ * tool. (Text presence is no longer part of this — a tool-only turn
1042
+ * succeeds.)
1043
+ */
942
1044
  success: boolean;
1045
+ /** Granular run outcome. */
1046
+ status: AgentRunStatus;
943
1047
  /** Agent's response text */
944
1048
  response?: string;
945
- /** Error message if failed */
1049
+ /** Error message when the run did not succeed */
946
1050
  error?: string;
1051
+ /** Tool calls the agent made this run, including failures (`isError`). */
1052
+ toolInvocations?: AgentToolInvocation[];
1053
+ /** Set when `status === "blocked_on_approval"`. */
1054
+ approval?: AgentApprovalRequirement;
1055
+ /** Set when `status === "awaiting_question"`. */
1056
+ question?: AgentQuestionRequest;
947
1057
  /** Trace ID for debugging */
948
1058
  traceId?: string;
949
1059
  /** Duration in milliseconds */
@@ -953,6 +1063,8 @@ interface PromptResult {
953
1063
  inputTokens: number;
954
1064
  outputTokens: number;
955
1065
  };
1066
+ /** Provider-reported model cost in USD, when the runtime emitted it. */
1067
+ costUsd?: number;
956
1068
  }
957
1069
  type PromptInputPart = {
958
1070
  type: "text";
@@ -1251,6 +1363,15 @@ interface WaitForOptions {
1251
1363
  */
1252
1364
  onProgress?: (event: ProvisionEvent) => void;
1253
1365
  }
1366
+ /**
1367
+ * Options for resuming a stopped sandbox.
1368
+ */
1369
+ interface ResumeOptions {
1370
+ /** Timeout in milliseconds for the resume request */
1371
+ timeoutMs?: number;
1372
+ /** AbortSignal for cancellation */
1373
+ signal?: AbortSignal;
1374
+ }
1254
1375
  /**
1255
1376
  * Usage information for the account.
1256
1377
  */
@@ -1385,6 +1506,27 @@ interface TaskResult extends PromptResult {
1385
1506
  /** Session ID for the task (can be used to continue) */
1386
1507
  sessionId: string;
1387
1508
  }
1509
+ /**
1510
+ * Live whole-sandbox resource usage, read from the container cgroup.
1511
+ *
1512
+ * Memory is point-in-time (`memoryCurrentMb`) plus a high-water mark
1513
+ * (`memoryPeakMb`). CPU is a cumulative counter in microseconds; compute
1514
+ * utilization from two samples: `cpu% = Δcpu_usec / (Δwall_ms * 10)`.
1515
+ */
1516
+ interface SandboxResourceUsage {
1517
+ /** Cgroup version (1 or 2). */
1518
+ cgroupVersion: number;
1519
+ /** Current resident memory, MB. */
1520
+ memoryCurrentMb: number;
1521
+ /** Peak resident memory since start, MB (null when unavailable). */
1522
+ memoryPeakMb: number | null;
1523
+ /** Memory limit, MB (null when unlimited). */
1524
+ memoryLimitMb: number | null;
1525
+ /** Cumulative CPU time consumed, microseconds. */
1526
+ cpuUsageUsec: number;
1527
+ /** Epoch ms when sampled. */
1528
+ sampledAtMs: number;
1529
+ }
1388
1530
  /**
1389
1531
  * Lifecycle state of an agent session inside a sandbox.
1390
1532
  */
@@ -4381,6 +4523,22 @@ declare class SandboxInstance {
4381
4523
  get error(): string | undefined;
4382
4524
  /** Web terminal URL for browser-based access */
4383
4525
  get url(): string | undefined;
4526
+ /**
4527
+ * The 12-phase startup breakdown (storage_provision, host_select, edge_bind,
4528
+ * edge_ready, egress_proxy, docker_pull/create/start, sidecar_boot,
4529
+ * health_check, …) the platform emitted when this sandbox was provisioned.
4530
+ *
4531
+ * Present only on a freshly-created box; `null` for a box resolved by id or
4532
+ * when the runtime did not report diagnostics. Use `.phases` for the
4533
+ * operation-name → durationMs map.
4534
+ *
4535
+ * @example
4536
+ * ```typescript
4537
+ * const d = box.startupDiagnostics();
4538
+ * if (d) console.log(`provision phases: ${JSON.stringify(d.phases)}`);
4539
+ * ```
4540
+ */
4541
+ startupDiagnostics(): StartupDiagnostics | null;
4384
4542
  /**
4385
4543
  * Serialize to the public sandbox shape for logs and structured
4386
4544
  * output. Secrets in `connection` (currently `authToken`) are
@@ -4577,12 +4735,26 @@ declare class SandboxInstance {
4577
4735
  * Stream events from an agent prompt.
4578
4736
  * Use this for real-time updates during agent execution.
4579
4737
  *
4738
+ * Guarantees a terminal event on every non-cancelled path: a clean run
4739
+ * ends with the runtime's `result`/`done`; a failure (pre-stream HTTP
4740
+ * error, mid-stream network drop, timeout, or reconnect exhaustion) is
4741
+ * surfaced as an in-band `error` event followed by a synthetic `done`,
4742
+ * never a thrown generator. Caller-initiated cancellation (aborting
4743
+ * `options.signal`) ends the stream silently with no synthetic terminal.
4744
+ *
4580
4745
  * Automatically reconnects via the runtime event replay endpoint if the
4581
- * SSE stream drops before a terminal event (`result` or `done`) is received.
4582
- * Reconnection is transparent — replayed events that were already yielded
4583
- * (based on event ID tracking) are deduplicated.
4746
+ * SSE stream drops before a terminal event (`result` or `done`) is
4747
+ * received. Reconnection is transparent — replayed events that were
4748
+ * already yielded (based on event ID tracking) are deduplicated.
4584
4749
  */
4585
4750
  streamPrompt(message: string | PromptInputPart[], options?: PromptOptions): AsyncGenerator<SandboxEvent>;
4751
+ /**
4752
+ * Inner prompt stream: opens the SSE connection and reconnects on silent
4753
+ * drops. May throw (pre-stream HTTP error, timeout, reconnect exhausted);
4754
+ * the public `streamPrompt` wrapper converts those throws into a terminal
4755
+ * `error` + `done` so callers never see a thrown generator.
4756
+ */
4757
+ private streamPromptInner;
4586
4758
  /**
4587
4759
  * Stream sandbox lifecycle and activity events.
4588
4760
  */
@@ -4681,6 +4853,21 @@ declare class SandboxInstance {
4681
4853
  * ```
4682
4854
  */
4683
4855
  search(pattern: string, options?: SearchOptions): AsyncGenerator<SearchMatch>;
4856
+ /**
4857
+ * Live whole-sandbox resource usage (memory + CPU) from the container cgroup.
4858
+ *
4859
+ * Returns `null` when cgroup stats are unavailable (non-Linux host). Memory is
4860
+ * in MB; `memoryPeakMb` is the high-water mark since the sandbox started. CPU
4861
+ * is a cumulative microsecond counter — sample twice and compute
4862
+ * `cpu% = ΔcpuUsageUsec / (ΔsampledAtMs * 10)` for utilization.
4863
+ *
4864
+ * @example
4865
+ * ```typescript
4866
+ * const r = await box.resourceUsage();
4867
+ * if (r) console.log(`peak ${r.memoryPeakMb} MB`);
4868
+ * ```
4869
+ */
4870
+ resourceUsage(): Promise<SandboxResourceUsage | null>;
4684
4871
  /**
4685
4872
  * Git capability object for repository operations.
4686
4873
  *
@@ -5133,7 +5320,7 @@ declare class SandboxInstance {
5133
5320
  /**
5134
5321
  * Resume a stopped sandbox.
5135
5322
  */
5136
- resume(): Promise<void>;
5323
+ resume(options?: ResumeOptions): Promise<void>;
5137
5324
  /**
5138
5325
  * Delete the sandbox permanently.
5139
5326
  */
@@ -5334,4 +5521,4 @@ declare class SandboxInstance {
5334
5521
  _answerQuestion(id: string, answers: Record<string, string[]>): Promise<void>;
5335
5522
  }
5336
5523
  //#endregion
5337
- export { CreateRequestOptions as $, SandboxFleetToken as $n, AgentProfile as $r, MkdirOptions as $t, AddUserOptions as A, SSHCommandDescriptor as An, SnapshotInfo as Ar, ForkOptions as At, BatchResult as B, SandboxFleetDispatchResponse as Bn, TeeAttestationResponse as Br, HostAgentRuntimeBackend as Bt, SandboxMcpConfig as C, PublishPublicTemplateOptions as Cn, SecretInfo as Cr, FleetDispatchResultBufferOptions as Ct, buildSandboxMcpConfig as D, ReconcileSandboxFleetsOptions as Dn, SessionListOptions as Dr, FleetMachineId as Dt, buildControlPlaneMcpConfig as E, ReapExpiredSandboxFleetsResult as En, SessionInfo as Er, FleetExecDispatchResult as Et, BackendManager as F, SandboxEvent as Fn, SubscriptionInfo as Fr, GitConfig as Ft, CheckpointResult as G, SandboxFleetMachine as Gn, TurnDriveResult as Gr, IntelligenceReportSubjectType as Gt, BatchTaskResult as H, SandboxFleetDriverTimings as Hn, TeePublicKeyResponse as Hr, IntelligenceReport as Ht, BackendStatus as I, SandboxFleetArtifact as In, TaskOptions as Ir, GitDiff as It, CodeLanguage as J, SandboxFleetMachineSpec as Jn, UploadProgress as Jr, ListOptions as Jt, CodeExecutionOptions as K, SandboxFleetMachineMeteredUsage as Kn, UpdateUserOptions as Kr, IntelligenceReportWindow as Kt, BackendType as L, SandboxFleetArtifactSpec as Ln, TaskResult as Lr, GitStatus as Lt, BackendCapabilities as M, SandboxClientConfig as Mn, SnapshotResult as Mr, GitAuth as Mt, BackendConfig as N, SandboxConnection as Nn, SshKeysManager as Nr, GitBranch as Nt, AcceleratorKind as O, ReconcileSandboxFleetsResult as On, SessionMessage as Or, FleetPromptDispatchOptions as Ot, BackendInfo as P, SandboxEnvironment as Pn, StorageConfig as Pr, GitCommit as Pt, CreateIntelligenceReportOptions as Q, SandboxFleetPolicy as Qn, WriteManyOptions as Qr, MintScopedTokenOptions as Qt, BatchEvent as R, SandboxFleetCostEstimate as Rn, TeeAttestationOptions as Rr, GpuType as Rt, SANDBOX_MCP_SERVER_NAME as S, PublicTemplateVersionInfo as Sn, SearchOptions as Sr, FleetDispatchResultBuffer as St, SandboxMcpServerEntry as T, ReapExpiredSandboxFleetsOptions as Tn, SessionEventStreamOptions as Tr, FleetExecDispatchOptions as Tt, CheckpointInfo as U, SandboxFleetInfo as Un, TokenRefreshHandler as Ur, IntelligenceReportBudget as Ut, BatchTask as V, SandboxFleetDriverCapability as Vn, TeePublicKey as Vr, InstalledTool as Vt, CheckpointOptions as W, SandboxFleetIntelligenceEnvelope as Wn, ToolsConfig as Wr, IntelligenceReportCompareTo as Wt, CodeResultPart as X, SandboxFleetManifestMachine as Xn, WaitForOptions as Xr, ListSandboxOptions as Xt, CodeResult as Y, SandboxFleetManifest as Yn, UsageInfo as Yr, ListSandboxFleetOptions as Yt, CompletedTurnResult as Z, SandboxFleetOperationsSummary as Zn, WriteManyFile as Zr, McpServerConfig as Zt, RespondToPermissionOptions as _, ProvisionEvent as _n, SandboxTraceOptions as _r, ExecOptions as _t, TraceExportSink as a, AgentProfileModelHints as ai, PreviewLinkInfo as an, SandboxFleetWorkspace as ar, DirectoryPermission as at, BuildSandboxMcpConfigOptions as b, ProvisionStep as bn, ScopedTokenScope as br, FileSystem as bt, otelTraceIdForTangleTrace as c, AgentProfileResourceRef as ci, ProcessInfo as cn, SandboxFleetWorkspaceSnapshotResult as cr, DownloadOptions as ct, InteractiveAuthFile as d, AgentProfileValidationResult as di, ProcessSignal as dn, SandboxPermissionsConfig as dr, DriverConfig as dt, AgentProfileCapabilities as ei, NetworkConfig as en, SandboxFleetTraceBundle as er, CreateSandboxFleetOptions as et, InteractiveSessionHandle as f, AgentSubagentProfile as fi, ProcessSpawnOptions as fn, SandboxResources as fr, DriverInfo as ft, PermissionResponseResult as g, mergeAgentProfiles as gi, PromptResult as gn, SandboxTraceExport as gr, EventStreamOptions as gt, InterruptResult as h, defineInlineResource as hi, PromptOptions as hn, SandboxTraceEvent as hr, EgressPolicy as ht, TraceExportResult as i, AgentProfileMcpServer as ii, PermissionsManager as in, SandboxFleetUsage as ir, DeleteOptions as it, AttachSandboxFleetMachineOptions as j, SSHCredentials as jn, SnapshotOptions as jr, ForkResult as jt, AccessPolicyRule as k, RunCodeOptions as kn, SessionStatus as kr, FleetPromptDispatchResult as kt, toOtelJson as l, AgentProfileResources as li, ProcessLogEntry as ln, SandboxInfo as lr, DownloadProgress as lt, InteractiveSessionInfo as m, defineGitHubResource as mi, PromptInputPart as mn, SandboxTraceBundle as mr, EgressManager as mt, SandboxInstance as n, AgentProfileConnection as ni, NonHostAgentDriverConfig as nn, SandboxFleetTraceExport as nr, CreateSandboxFleetWithCoordinatorOptions as nt, buildTraceExportPayload as o, AgentProfilePermissionValue as oi, PreviewLinkManager as on, SandboxFleetWorkspaceReconcileResult as or, DispatchPromptOptions as ot, InteractiveSessionHost as p, defineAgentProfile as pi, ProcessStatus as pn, SandboxStatus as pr, DriverType as pt, CodeExecutionResult as q, SandboxFleetMachineRecord as qn, UploadOptions as qr, ListMessagesOptions as qt, TraceExportFormat as r, AgentProfileFileMount as ri, PermissionLevel as rn, SandboxFleetTraceOptions as rr, CreateSandboxOptions as rt, exportTraceBundle as s, AgentProfilePrompt as si, Process as sn, SandboxFleetWorkspaceRestoreResult as sr, DispatchedSession as st, HttpClient as t, AgentProfileConfidential as ti, NetworkManager as tn, SandboxFleetTraceEvent as tr, CreateSandboxFleetTokenOptions as tt, SandboxSession as u, AgentProfileValidationIssue as ui, ProcessManager as un, SandboxIntelligenceEnvelope as ur, DriveTurnOptions as ut, StartInteractiveOptions as v, ProvisionResult as vn, SandboxUser as vr, ExecResult as vt, SandboxMcpEndpoint as w, PublishPublicTemplateVersionOptions as wn, SecretsManager as wr, FleetDispatchStreamOptions as wt, CONTROL_PLANE_MCP_SERVER_NAME as x, PublicTemplateInfo as xn, SearchMatch as xr, FleetDispatchCancelResult as xt, BuildControlPlaneMcpConfigOptions as y, ProvisionStatus as yn, ScopedToken as yr, FileInfo as yt, BatchOptions as z, SandboxFleetDispatchFailureClass as zn, TeeAttestationReport as zr, HostAgentDriverConfig as zt };
5524
+ export { CreateRequestOptions as $, SandboxFleetToken as $n, WaitForOptions as $r, MkdirOptions as $t, AddUserOptions as A, SSHCommandDescriptor as An, SessionStatus as Ar, ForkOptions as At, BatchResult as B, SandboxFleetDispatchResponse as Bn, TaskResult as Br, HostAgentRuntimeBackend as Bt, SandboxMcpConfig as C, PublishPublicTemplateOptions as Cn, SearchOptions as Cr, FleetDispatchResultBufferOptions as Ct, buildSandboxMcpConfig as D, ReconcileSandboxFleetsOptions as Dn, SessionInfo as Dr, FleetMachineId as Dt, buildControlPlaneMcpConfig as E, ReapExpiredSandboxFleetsResult as En, SessionEventStreamOptions as Er, FleetExecDispatchResult as Et, BackendManager as F, SandboxEvent as Fn, StartupDiagnostics as Fr, GitConfig as Ft, CheckpointResult as G, SandboxFleetMachine as Gn, TeePublicKeyResponse as Gr, IntelligenceReportSubjectType as Gt, BatchTaskResult as H, SandboxFleetDriverTimings as Hn, TeeAttestationReport as Hr, IntelligenceReport as Ht, BackendStatus as I, SandboxFleetArtifact as In, StartupOperation as Ir, GitDiff as It, CodeLanguage as J, SandboxFleetMachineSpec as Jn, TurnDriveResult as Jr, ListOptions as Jt, CodeExecutionOptions as K, SandboxFleetMachineMeteredUsage as Kn, TokenRefreshHandler as Kr, IntelligenceReportWindow as Kt, BackendType as L, SandboxFleetArtifactSpec as Ln, StorageConfig as Lr, GitStatus as Lt, BackendCapabilities as M, SandboxClientConfig as Mn, SnapshotOptions as Mr, GitAuth as Mt, BackendConfig as N, SandboxConnection as Nn, SnapshotResult as Nr, GitBranch as Nt, AcceleratorKind as O, ReconcileSandboxFleetsResult as On, SessionListOptions as Or, FleetPromptDispatchOptions as Ot, BackendInfo as P, SandboxEnvironment as Pn, SshKeysManager as Pr, GitCommit as Pt, CreateIntelligenceReportOptions as Q, SandboxFleetPolicy as Qn, UsageInfo as Qr, MintScopedTokenOptions as Qt, BatchEvent as R, SandboxFleetCostEstimate as Rn, SubscriptionInfo as Rr, GpuType as Rt, SANDBOX_MCP_SERVER_NAME as S, PublicTemplateVersionInfo as Sn, SearchMatch as Sr, FleetDispatchResultBuffer as St, SandboxMcpServerEntry as T, ReapExpiredSandboxFleetsOptions as Tn, SecretsManager as Tr, FleetExecDispatchOptions as Tt, CheckpointInfo as U, SandboxFleetInfo as Un, TeeAttestationResponse as Ur, IntelligenceReportBudget as Ut, BatchTask as V, SandboxFleetDriverCapability as Vn, TeeAttestationOptions as Vr, InstalledTool as Vt, CheckpointOptions as W, SandboxFleetIntelligenceEnvelope as Wn, TeePublicKey as Wr, IntelligenceReportCompareTo as Wt, CodeResultPart as X, SandboxFleetManifestMachine as Xn, UploadOptions as Xr, ListSandboxOptions as Xt, CodeResult as Y, SandboxFleetManifest as Yn, UpdateUserOptions as Yr, ListSandboxFleetOptions as Yt, CompletedTurnResult as Z, SandboxFleetOperationsSummary as Zn, UploadProgress as Zr, McpServerConfig as Zt, RespondToPermissionOptions as _, defineGitHubResource as _i, ProvisionEvent as _n, SandboxTraceExport as _r, ExecOptions as _t, TraceExportSink as a, AgentProfileConnection as ai, PreviewLinkInfo as an, SandboxFleetWorkspace as ar, DirectoryPermission as at, BuildSandboxMcpConfigOptions as b, ProvisionStep as bn, ScopedToken as br, FileSystem as bt, otelTraceIdForTangleTrace as c, AgentProfileModelHints as ci, ProcessInfo as cn, SandboxFleetWorkspaceSnapshotResult as cr, DownloadOptions as ct, InteractiveAuthFile as d, AgentProfileResourceRef as di, ProcessSignal as dn, SandboxPermissionsConfig as dr, DriverConfig as dt, WriteManyFile as ei, NetworkConfig as en, SandboxFleetTraceBundle as er, CreateSandboxFleetOptions as et, InteractiveSessionHandle as f, AgentProfileResources as fi, ProcessSpawnOptions as fn, SandboxResourceUsage as fr, DriverInfo as ft, PermissionResponseResult as g, defineAgentProfile as gi, PromptResult as gn, SandboxTraceEvent as gr, EventStreamOptions as gt, InterruptResult as h, AgentSubagentProfile as hi, PromptOptions as hn, SandboxTraceBundle as hr, EgressPolicy as ht, TraceExportResult as i, AgentProfileConfidential as ii, PermissionsManager as in, SandboxFleetUsage as ir, DeleteOptions as it, AttachSandboxFleetMachineOptions as j, SSHCredentials as jn, SnapshotInfo as jr, ForkResult as jt, AccessPolicyRule as k, RunCodeOptions as kn, SessionMessage as kr, FleetPromptDispatchResult as kt, toOtelJson as l, AgentProfilePermissionValue as li, ProcessLogEntry as ln, SandboxInfo as lr, DownloadProgress as lt, InteractiveSessionInfo as m, AgentProfileValidationResult as mi, PromptInputPart as mn, SandboxStatus as mr, EgressManager as mt, SandboxInstance as n, AgentProfile as ni, NonHostAgentDriverConfig as nn, SandboxFleetTraceExport as nr, CreateSandboxFleetWithCoordinatorOptions as nt, buildTraceExportPayload as o, AgentProfileFileMount as oi, PreviewLinkManager as on, SandboxFleetWorkspaceReconcileResult as or, DispatchPromptOptions as ot, InteractiveSessionHost as p, AgentProfileValidationIssue as pi, ProcessStatus as pn, SandboxResources as pr, DriverType as pt, CodeExecutionResult as q, SandboxFleetMachineRecord as qn, ToolsConfig as qr, ListMessagesOptions as qt, TraceExportFormat as r, AgentProfileCapabilities as ri, PermissionLevel as rn, SandboxFleetTraceOptions as rr, CreateSandboxOptions as rt, exportTraceBundle as s, AgentProfileMcpServer as si, Process as sn, SandboxFleetWorkspaceRestoreResult as sr, DispatchedSession as st, HttpClient as t, WriteManyOptions as ti, NetworkManager as tn, SandboxFleetTraceEvent as tr, CreateSandboxFleetTokenOptions as tt, SandboxSession as u, AgentProfilePrompt as ui, ProcessManager as un, SandboxIntelligenceEnvelope as ur, DriveTurnOptions as ut, StartInteractiveOptions as v, defineInlineResource as vi, ProvisionResult as vn, SandboxTraceOptions as vr, ExecResult as vt, SandboxMcpEndpoint as w, PublishPublicTemplateVersionOptions as wn, SecretInfo as wr, FleetDispatchStreamOptions as wt, CONTROL_PLANE_MCP_SERVER_NAME as x, PublicTemplateInfo as xn, ScopedTokenScope as xr, FleetDispatchCancelResult as xt, BuildControlPlaneMcpConfigOptions as y, mergeAgentProfiles as yi, ProvisionStatus as yn, SandboxUser as yr, FileInfo as yt, BatchOptions as z, SandboxFleetDispatchFailureClass as zn, TaskOptions as zr, HostAgentDriverConfig as zt };
@@ -1 +1 @@
1
- const a0_0x5a0755=a0_0x238b;(function(_0x219f97,_0x2c08e8){const _0x40d635=a0_0x238b,_0x1aa497=_0x219f97();while(!![]){try{const _0x4efc53=parseInt(_0x40d635(0x183))/0x1+parseInt(_0x40d635(0x15b))/0x2*(parseInt(_0x40d635(0x1a5))/0x3)+-parseInt(_0x40d635(0x1b5))/0x4*(parseInt(_0x40d635(0x150))/0x5)+-parseInt(_0x40d635(0x1ae))/0x6*(parseInt(_0x40d635(0x19e))/0x7)+parseInt(_0x40d635(0x1f5))/0x8*(-parseInt(_0x40d635(0x11f))/0x9)+-parseInt(_0x40d635(0x1fd))/0xa+parseInt(_0x40d635(0x185))/0xb;if(_0x4efc53===_0x2c08e8)break;else _0x1aa497['push'](_0x1aa497['shift']());}catch(_0x1e8271){_0x1aa497['push'](_0x1aa497['shift']());}}}(a0_0x509e,0x354b9));const INITIAL_METRICS={'\x6c\x61\x73\x74\x50\x69\x6e\x67\x4c\x61\x74\x65\x6e\x63\x79\x4d\x73':null,'\x61\x76\x67\x50\x69\x6e\x67\x4c\x61\x74\x65\x6e\x63\x79\x4d\x73':null,'\x6d\x69\x73\x73\x65\x64\x50\x6f\x6e\x67\x43\x6f\x75\x6e\x74':0x0,'\x72\x65\x63\x6f\x6e\x6e\x65\x63\x74\x43\x6f\x75\x6e\x74':0x0,'\x6c\x61\x73\x74\x50\x6f\x6e\x67\x41\x74':null,'\x6c\x61\x73\x74\x52\x65\x63\x6f\x6e\x6e\x65\x63\x74\x41\x74':null,'\x71\x75\x61\x6c\x69\x74\x79':a0_0x5a0755(0x1e2)};function a0_0x238b(_0x5645dc,_0x5794d2){_0x5645dc=_0x5645dc-0x118;const _0x509e25=a0_0x509e();let _0x238ba4=_0x509e25[_0x5645dc];if(a0_0x238b['\x67\x4f\x7a\x47\x6e\x4f']===undefined){var _0x41a422=function(_0x46eaf9){const _0x50bd02='\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 _0xca60d6='',_0x3277d3='';for(let _0x5c8585=0x0,_0x54deda,_0x28206e,_0x2e93b9=0x0;_0x28206e=_0x46eaf9['\x63\x68\x61\x72\x41\x74'](_0x2e93b9++);~_0x28206e&&(_0x54deda=_0x5c8585%0x4?_0x54deda*0x40+_0x28206e:_0x28206e,_0x5c8585++%0x4)?_0xca60d6+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0xff&_0x54deda>>(-0x2*_0x5c8585&0x6)):0x0){_0x28206e=_0x50bd02['\x69\x6e\x64\x65\x78\x4f\x66'](_0x28206e);}for(let _0x38d414=0x0,_0x326b14=_0xca60d6['\x6c\x65\x6e\x67\x74\x68'];_0x38d414<_0x326b14;_0x38d414++){_0x3277d3+='\x25'+('\x30\x30'+_0xca60d6['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x38d414)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x10))['\x73\x6c\x69\x63\x65'](-0x2);}return decodeURIComponent(_0x3277d3);};a0_0x238b['\x44\x49\x75\x51\x64\x59']=_0x41a422,a0_0x238b['\x6e\x51\x49\x75\x4e\x69']={},a0_0x238b['\x67\x4f\x7a\x47\x6e\x4f']=!![];}const _0x43c817=_0x509e25[0x0],_0x338ec6=_0x5645dc+_0x43c817,_0x174b96=a0_0x238b['\x6e\x51\x49\x75\x4e\x69'][_0x338ec6];return!_0x174b96?(_0x238ba4=a0_0x238b['\x44\x49\x75\x51\x64\x59'](_0x238ba4),a0_0x238b['\x6e\x51\x49\x75\x4e\x69'][_0x338ec6]=_0x238ba4):_0x238ba4=_0x174b96,_0x238ba4;}function calculateConnectionQuality(_0x308a29,_0x289fee){const _0x883116=a0_0x5a0755,_0x2f5948={'\x52\x5a\x46\x57\x68':function(_0x428fcc,_0x1e64e9){return _0x428fcc*_0x1e64e9;},'\x59\x6b\x50\x61\x64':function(_0x3e23c7,_0x574f2e){return _0x3e23c7!==_0x574f2e;},'\x44\x5a\x6e\x75\x43':_0x883116(0x18d)};if(!_0x289fee)return _0x883116(0x1e2);const {avgPingLatencyMs:_0xdbf03f,missedPongCount:_0x23df65,reconnectCount:_0x2b961e,lastReconnectAt:_0x39ab84}=_0x308a29,_0x177508=_0x39ab84&&Date[_0x883116(0x17a)]()-_0x39ab84<_0x2f5948[_0x883116(0x1ba)](0x12c,0x3e8);if(_0x23df65>=0x2||_0x177508&&_0x2b961e>0x1)return _0x883116(0x15d);if(_0x23df65>=0x1||_0x2f5948[_0x883116(0x1a4)](_0xdbf03f,null)&&_0xdbf03f>0x3e8||_0x177508)return _0x2f5948[_0x883116(0x140)];if(_0xdbf03f!==null&&_0xdbf03f<0x64&&_0x2b961e===0x0)return _0x883116(0x138);if(_0xdbf03f!==null&&_0xdbf03f<=0x12c)return _0x883116(0x14b);return _0x883116(0x14b);}const DEFAULT_CONFIG={'\x74\x72\x61\x6e\x73\x70\x6f\x72\x74':a0_0x5a0755(0x18e),'\x63\x68\x61\x6e\x6e\x65\x6c\x73':['\x2a'],'\x61\x75\x74\x6f\x52\x65\x63\x6f\x6e\x6e\x65\x63\x74':!![],'\x6d\x61\x78\x52\x65\x63\x6f\x6e\x6e\x65\x63\x74\x41\x74\x74\x65\x6d\x70\x74\x73':0xa,'\x69\x6e\x69\x74\x69\x61\x6c\x52\x65\x63\x6f\x6e\x6e\x65\x63\x74\x44\x65\x6c\x61\x79\x4d\x73':0x3e8,'\x6d\x61\x78\x52\x65\x63\x6f\x6e\x6e\x65\x63\x74\x44\x65\x6c\x61\x79\x4d\x73':0x7530,'\x70\x69\x6e\x67\x49\x6e\x74\x65\x72\x76\x61\x6c\x4d\x73':0x7530,'\x70\x6f\x6e\x67\x54\x69\x6d\x65\x6f\x75\x74\x4d\x73':0x2710,'\x6d\x61\x78\x4d\x69\x73\x73\x65\x64\x50\x6f\x6e\x67\x73':0x2,'\x65\x6e\x61\x62\x6c\x65\x44\x65\x64\x75\x70\x6c\x69\x63\x61\x74\x69\x6f\x6e':!![],'\x6d\x61\x78\x44\x65\x64\x75\x70\x6c\x69\x63\x61\x74\x69\x6f\x6e\x53\x69\x7a\x65':0x3e8,'\x65\x6e\x61\x62\x6c\x65\x52\x65\x70\x6c\x61\x79\x50\x65\x72\x73\x69\x73\x74\x65\x6e\x63\x65':![],'\x72\x65\x70\x6c\x61\x79\x53\x74\x6f\x72\x61\x67\x65\x4b\x65\x79\x50\x72\x65\x66\x69\x78':a0_0x5a0755(0x14a),'\x6c\x61\x74\x65\x6e\x63\x79\x48\x69\x73\x74\x6f\x72\x79\x53\x69\x7a\x65':0xa},STORAGE_KEYS={'\x6c\x61\x73\x74\x45\x76\x65\x6e\x74\x49\x64':a0_0x5a0755(0x189),'\x65\x78\x65\x63\x75\x74\x69\x6f\x6e\x49\x64':a0_0x5a0755(0x12f),'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':a0_0x5a0755(0x12b)},WIRE_TYPE_MAP={'\x73\x69\x64\x65\x63\x61\x72\x2e\x63\x6f\x6e\x6e\x65\x63\x74\x65\x64':a0_0x5a0755(0x156),'\x73\x69\x64\x65\x63\x61\x72\x2e\x64\x69\x73\x63\x6f\x6e\x6e\x65\x63\x74\x65\x64':'\x72\x75\x6e\x74\x69\x6d\x65\x2e\x64\x69\x73\x63\x6f\x6e\x6e\x65\x63\x74\x65\x64','\x73\x69\x64\x65\x63\x61\x72\x2e\x6e\x6f\x74\x5f\x66\x6f\x75\x6e\x64':a0_0x5a0755(0x118),'\x73\x69\x64\x65\x63\x61\x72\x2e\x72\x65\x61\x64\x79':'\x72\x75\x6e\x74\x69\x6d\x65\x2e\x72\x65\x61\x64\x79'};function a0_0x509e(){const _0x3e82eb=['\x72\x66\x50\x55\x44\x75\x6d','\x44\x67\x39\x52\x7a\x77\x34','\x7a\x67\x4c\x5a\x79\x32\x39\x55\x42\x4d\x76\x4a\x44\x61','\x44\x78\x62\x4b\x79\x78\x72\x4c\x71\x32\x39\x55\x42\x4d\x76\x4a\x44\x67\x4c\x56\x42\x4c\x66\x31\x79\x77\x58\x50\x44\x68\x4b','\x42\x77\x76\x5a\x43\x32\x66\x4e\x7a\x78\x6e\x73\x7a\x77\x6e\x4c\x41\x78\x7a\x4c\x7a\x61','\x44\x78\x62\x4b\x79\x78\x72\x4c\x71\x32\x39\x55\x42\x4d\x76\x4a\x44\x67\x4c\x56\x42\x4b\x31\x4c\x44\x68\x6a\x50\x79\x33\x6d','\x71\x32\x48\x49\x75\x4d\x6d','\x7a\x77\x35\x48\x79\x4d\x58\x4c\x72\x67\x76\x4b\x44\x78\x62\x53\x41\x77\x6e\x48\x44\x67\x4c\x56\x42\x47','\x79\x32\x58\x4c\x79\x77\x35\x31\x43\x61','\x44\x67\x39\x52\x7a\x77\x34\x55\x7a\x78\x48\x57\x41\x78\x6a\x50\x42\x4d\x43','\x43\x32\x76\x5a\x43\x32\x4c\x56\x42\x4c\x39\x4e\x79\x78\x72\x4c\x44\x32\x66\x35\x78\x57','\x7a\x32\x39\x56\x7a\x61','\x43\x32\x76\x4a\x42\x32\x35\x4b\x43\x31\x6a\x4c\x42\x77\x66\x50\x42\x4d\x4c\x55\x7a\x57','\x42\x32\x35\x6e\x7a\x78\x72\x59\x41\x77\x6e\x5a\x71\x32\x48\x48\x42\x4d\x44\x4c','\x76\x67\x39\x52\x7a\x77\x34\x47\x43\x4d\x76\x4d\x43\x4d\x76\x5a\x41\x67\x76\x4b','\x43\x32\x76\x58\x44\x77\x76\x55\x79\x32\x76\x6a\x7a\x61','\x6d\x74\x61\x33\x6d\x5a\x69\x32\x6d\x65\x35\x73\x45\x76\x62\x74\x76\x71','\x42\x77\x76\x5a\x43\x32\x66\x4e\x7a\x71','\x42\x33\x62\x50\x73\x32\x34','\x43\x68\x6a\x56\x79\x32\x76\x5a\x43\x30\x35\x48\x42\x77\x75','\x43\x4d\x76\x57\x42\x67\x66\x35','\x76\x65\x39\x6c\x72\x75\x35\x46\x75\x4b\x76\x67\x75\x4b\x76\x74\x73\x66\x39\x67\x71\x75\x4c\x6d\x72\x75\x71','\x43\x4e\x76\x55\x44\x67\x4c\x54\x7a\x73\x35\x4a\x42\x32\x35\x55\x7a\x77\x6e\x30\x7a\x77\x71','\x79\x32\x39\x55\x42\x4d\x76\x4a\x44\x61','\x44\x30\x35\x72\x72\x30\x43','\x43\x4d\x76\x4a\x42\x32\x35\x55\x7a\x77\x6e\x30\x41\x77\x35\x4e','\x42\x32\x35\x65\x41\x78\x6e\x4a\x42\x32\x35\x55\x7a\x77\x6e\x30','\x6e\x65\x72\x56\x42\x67\x58\x6c\x71\x47','\x41\x67\x66\x55\x7a\x67\x58\x4c\x74\x77\x76\x5a\x43\x32\x66\x4e\x7a\x71','\x43\x67\x39\x56\x43\x47','\x43\x4d\x76\x57\x42\x67\x66\x35\x75\x68\x6a\x56\x7a\x33\x6a\x4c\x43\x33\x6d','\x75\x76\x4c\x71\x44\x4b\x4f','\x43\x4b\x72\x72\x72\x4b\x57','\x7a\x78\x48\x4c\x79\x33\x76\x30\x41\x77\x39\x55\x73\x77\x71','\x7a\x78\x48\x4c\x79\x33\x76\x30\x41\x77\x39\x55\x6c\x4e\x6e\x30\x79\x78\x6a\x30\x7a\x77\x71','\x79\x32\x39\x55\x7a\x4d\x4c\x4e','\x43\x33\x72\x48\x44\x67\x75','\x42\x67\x66\x30\x7a\x77\x35\x4a\x45\x75\x48\x50\x43\x33\x72\x56\x43\x4e\x4c\x74\x41\x78\x50\x4c','\x43\x4d\x76\x57\x42\x67\x66\x35\x75\x33\x72\x56\x43\x4d\x66\x4e\x7a\x75\x54\x4c\x45\x76\x62\x59\x7a\x77\x7a\x50\x45\x61','\x41\x78\x6e\x73\x7a\x77\x7a\x59\x7a\x78\x6e\x4f\x41\x77\x35\x4e\x76\x67\x39\x52\x7a\x77\x34','\x7a\x32\x76\x30\x71\x32\x39\x55\x42\x4d\x76\x4a\x44\x67\x4c\x56\x42\x4c\x66\x31\x79\x77\x58\x50\x44\x68\x4b','\x43\x33\x72\x59\x41\x77\x35\x4e','\x43\x4d\x76\x4a\x42\x32\x35\x55\x7a\x77\x6e\x30\x71\x78\x72\x30\x7a\x77\x31\x57\x44\x68\x6d','\x44\x68\x76\x75\x72\x4e\x47','\x42\x77\x66\x34\x75\x4d\x76\x4a\x42\x32\x35\x55\x7a\x77\x6e\x30\x71\x78\x72\x30\x7a\x77\x31\x57\x44\x68\x6d','\x79\x77\x44\x4c\x42\x4e\x71\x55\x7a\x78\x7a\x4c\x42\x4e\x71','\x43\x67\x39\x59\x44\x61','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x65\x4c\x4b','\x79\x4d\x66\x5a\x7a\x76\x76\x59\x42\x61','\x43\x32\x66\x32\x7a\x76\x6a\x4c\x43\x67\x58\x48\x45\x76\x6e\x30\x79\x78\x72\x4c','\x79\x32\x39\x55\x42\x4d\x76\x4a\x44\x67\x4c\x55\x7a\x57','\x44\x66\x6a\x62\x44\x67\x69','\x79\x78\x76\x30\x42\x31\x6a\x4c\x79\x32\x39\x55\x42\x4d\x76\x4a\x44\x61','\x79\x32\x39\x55\x42\x4d\x76\x4a\x44\x67\x4c\x56\x42\x4b\x31\x4c\x44\x68\x6a\x50\x79\x33\x6d','\x79\x32\x39\x55\x44\x67\x66\x50\x42\x4d\x76\x59\x6c\x4e\x6a\x4c\x79\x77\x72\x35\x69\x67\x76\x32\x7a\x77\x35\x30\x69\x68\x6a\x4c\x79\x32\x76\x50\x44\x4d\x76\x4b\x69\x68\x44\x50\x44\x67\x48\x56\x44\x78\x71\x47\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x65\x4c\x4b','\x73\x68\x44\x30\x44\x4e\x79','\x42\x77\x76\x5a\x43\x32\x66\x4e\x7a\x76\x72\x35\x43\x67\x75','\x79\x75\x76\x4e\x79\x33\x71','\x42\x4d\x39\x33','\x79\x33\x76\x59\x43\x4d\x76\x55\x44\x66\x72\x56\x41\x32\x76\x55','\x43\x32\x76\x48\x43\x4d\x6e\x4f\x75\x67\x66\x59\x79\x77\x31\x5a','\x43\x77\x50\x70\x42\x65\x30','\x42\x32\x35\x54\x7a\x78\x6e\x5a\x79\x77\x44\x4c','\x43\x32\x6e\x4f\x7a\x77\x72\x31\x42\x67\x76\x73\x7a\x77\x6e\x56\x42\x4d\x35\x4c\x79\x33\x71','\x42\x32\x35\x71\x42\x33\x6a\x30\x71\x32\x58\x56\x43\x32\x76\x4b','\x41\x67\x66\x5a','\x42\x32\x35\x66\x43\x4e\x6a\x56\x43\x47','\x6d\x4a\x61\x33\x6d\x64\x76\x6b\x42\x4c\x62\x49\x44\x77\x38','\x79\x32\x58\x4c\x79\x78\x6a\x71\x42\x32\x35\x4e\x76\x67\x4c\x54\x7a\x77\x39\x31\x44\x61','\x6f\x64\x6d\x59\x6d\x64\x6d\x34\x6f\x77\x66\x77\x42\x33\x76\x59\x42\x71','\x7a\x78\x7a\x4c\x42\x4e\x72\x5a\x75\x4d\x76\x4a\x7a\x77\x4c\x32\x7a\x77\x71','\x7a\x78\x6a\x59\x42\x33\x69','\x74\x31\x62\x66\x74\x47','\x42\x67\x66\x5a\x44\x66\x39\x4c\x44\x4d\x76\x55\x44\x66\x39\x50\x7a\x61','\x43\x78\x76\x48\x42\x67\x4c\x30\x45\x71','\x79\x32\x39\x4b\x7a\x71','\x79\x33\x76\x59\x43\x4d\x76\x55\x44\x65\x76\x34\x7a\x77\x6e\x31\x44\x67\x4c\x56\x42\x4b\x4c\x4b','\x7a\x67\x76\x4e\x43\x4d\x66\x4b\x7a\x77\x71','\x44\x32\x76\x49\x43\x32\x39\x4a\x41\x32\x76\x30','\x7a\x68\x6a\x56\x43\x68\x62\x4c\x7a\x65\x6e\x56\x44\x77\x35\x30','\x44\x77\x35\x5a\x44\x77\x6a\x5a\x79\x33\x6a\x50\x79\x4d\x75','\x79\x32\x39\x55\x42\x4d\x76\x4a\x44\x66\x44\x4c\x79\x4c\x6e\x56\x79\x32\x54\x4c\x44\x61','\x44\x68\x4c\x57\x7a\x71','\x79\x32\x48\x48\x42\x4d\x35\x4c\x42\x68\x6d','\x43\x4d\x76\x57\x42\x67\x66\x35\x6c\x4e\x6e\x30\x79\x78\x6a\x30','\x41\x67\x66\x55\x7a\x67\x58\x4c\x75\x67\x39\x55\x7a\x57','\x43\x4d\x76\x4b\x44\x77\x6e\x4c','\x7a\x32\x76\x30\x73\x78\x72\x4c\x42\x71','\x43\x4d\x76\x4a\x42\x32\x35\x55\x7a\x77\x6e\x30\x76\x67\x4c\x54\x7a\x78\x69','\x75\x4d\x76\x58\x44\x77\x76\x5a\x44\x63\x62\x30\x41\x77\x31\x4c\x42\x33\x76\x30','\x44\x33\x72\x51\x74\x32\x79','\x43\x32\x76\x30\x73\x78\x72\x4c\x42\x71','\x43\x32\x76\x55\x7a\x66\x72\x4c\x43\x4d\x31\x50\x42\x4d\x66\x53\x73\x77\x35\x57\x44\x78\x71','\x7a\x32\x76\x30\x75\x4d\x76\x57\x42\x67\x66\x35\x75\x33\x72\x48\x44\x67\x75','\x6d\x4a\x43\x57\x6f\x74\x71\x35\x7a\x31\x72\x30\x72\x4d\x48\x73','\x44\x67\x39\x52\x7a\x77\x34\x55\x7a\x78\x48\x57\x41\x78\x6a\x4c\x7a\x61','\x75\x67\x39\x55\x7a\x59\x62\x30\x41\x77\x31\x4c\x42\x33\x76\x30\x69\x63\x30\x47\x79\x32\x39\x55\x42\x4d\x76\x4a\x44\x67\x4c\x56\x42\x49\x62\x31\x42\x4e\x6a\x4c\x43\x33\x62\x56\x42\x4e\x6e\x50\x44\x4d\x75','\x43\x4d\x76\x57\x42\x67\x66\x35\x75\x33\x72\x56\x43\x4d\x66\x4e\x7a\x71','\x42\x32\x35\x73\x44\x77\x35\x30\x41\x77\x31\x4c\x75\x4d\x76\x48\x7a\x68\x4b','\x41\x67\x66\x55\x7a\x67\x58\x4c\x74\x33\x62\x4c\x42\x47','\x77\x77\x54\x71\x79\x77\x71','\x6e\x74\x65\x33\x6e\x74\x79\x5a\x76\x76\x76\x6e\x43\x31\x44\x67','\x43\x4d\x76\x54\x42\x33\x7a\x4c\x73\x78\x72\x4c\x42\x71','\x42\x32\x35\x73\x7a\x78\x62\x53\x79\x78\x4c\x71\x43\x4d\x39\x4e\x43\x4d\x76\x5a\x43\x57','\x7a\x32\x76\x30','\x44\x77\x35\x4b\x7a\x77\x7a\x50\x42\x4d\x76\x4b','\x42\x77\x76\x5a\x43\x32\x66\x4e\x7a\x75\x4c\x4b\x71\x32\x39\x31\x42\x4e\x72\x4c\x43\x47','\x71\x33\x50\x73\x41\x65\x43','\x79\x32\x48\x48\x42\x4d\x35\x4c\x42\x61','\x42\x67\x66\x5a\x44\x65\x76\x32\x7a\x77\x35\x30\x73\x77\x71','\x6d\x74\x6a\x68\x79\x75\x4c\x53\x76\x31\x4f','\x43\x32\x4c\x36\x7a\x71','\x41\x78\x6e\x73\x7a\x78\x62\x53\x79\x78\x4c\x50\x42\x4d\x43','\x43\x32\x76\x30\x75\x33\x72\x48\x44\x67\x75','\x43\x4d\x76\x5a\x42\x32\x58\x32\x7a\x71','\x42\x32\x35\x63\x79\x77\x6e\x52\x43\x68\x6a\x4c\x43\x33\x6e\x31\x43\x4d\x76\x78\x79\x78\x6a\x55\x41\x77\x35\x4e','\x41\x67\x66\x55\x7a\x67\x58\x4c\x43\x4e\x6d','\x6f\x66\x50\x65\x7a\x65\x6a\x50\x42\x57','\x44\x78\x62\x4b\x79\x78\x72\x4c\x76\x67\x39\x52\x7a\x77\x34','\x42\x32\x35\x74\x44\x67\x66\x30\x7a\x75\x6e\x4f\x79\x77\x35\x4e\x7a\x71','\x44\x67\x39\x30\x79\x77\x57','\x43\x31\x62\x35\x72\x66\x4b','\x75\x4c\x50\x67\x76\x32\x47','\x76\x30\x31\x62\x72\x33\x69','\x79\x77\x72\x4b','\x7a\x67\x66\x30\x79\x71','\x42\x32\x6a\x51\x7a\x77\x6e\x30','\x79\x32\x39\x55\x42\x4d\x76\x4a\x44\x67\x76\x4b\x71\x78\x71','\x43\x32\x76\x55\x7a\x61','\x7a\x77\x35\x48\x79\x4d\x58\x4c\x75\x4d\x76\x57\x42\x67\x66\x35\x75\x67\x76\x59\x43\x32\x4c\x5a\x44\x67\x76\x55\x79\x32\x75','\x43\x67\x4c\x55\x7a\x57','\x77\x76\x7a\x75\x72\x75\x71','\x7a\x68\x76\x57\x42\x67\x4c\x4a\x79\x78\x72\x4c\x43\x31\x6e\x52\x41\x78\x62\x57\x7a\x77\x71','\x42\x32\x35\x73\x7a\x78\x62\x53\x79\x78\x4c\x74\x44\x67\x66\x59\x44\x61','\x7a\x67\x76\x53\x7a\x78\x72\x4c','\x43\x4d\x76\x48\x43\x32\x39\x55','\x43\x67\x76\x55\x7a\x67\x4c\x55\x7a\x30\x6e\x48\x42\x67\x58\x49\x79\x77\x6e\x52\x43\x57','\x44\x68\x6a\x48\x79\x32\x54\x73\x7a\x77\x6e\x56\x42\x4d\x35\x4c\x79\x33\x72\x50\x42\x32\x34','\x79\x4e\x72\x71\x74\x31\x61','\x41\x77\x35\x32\x79\x77\x58\x50\x7a\x66\x39\x57\x79\x78\x4c\x53\x42\x32\x66\x4b','\x42\x4e\x66\x32\x71\x30\x6d','\x43\x32\x76\x55\x7a\x66\x44\x50\x44\x67\x48\x73\x7a\x78\x6e\x57\x42\x32\x35\x5a\x7a\x71','\x79\x32\x58\x4c\x79\x78\x69','\x7a\x67\x4c\x5a\x43\x67\x66\x30\x79\x32\x48\x6e\x7a\x78\x6e\x5a\x79\x77\x44\x4c','\x42\x67\x66\x5a\x44\x66\x62\x50\x42\x4d\x44\x74\x7a\x77\x35\x30\x71\x78\x71','\x42\x32\x35\x75\x42\x32\x54\x4c\x42\x4c\x6a\x4c\x7a\x4e\x6a\x4c\x43\x32\x47','\x43\x4d\x66\x55\x7a\x67\x39\x54','\x43\x32\x76\x55\x7a\x66\x62\x50\x42\x4d\x43','\x79\x4b\x72\x6d\x41\x77\x4b','\x43\x32\x76\x30','\x71\x75\x48\x55\x76\x4c\x61','\x42\x77\x66\x34\x74\x77\x4c\x5a\x43\x32\x76\x4b\x75\x67\x39\x55\x7a\x33\x6d','\x43\x33\x44\x55\x43\x75\x4b','\x41\x75\x58\x6c\x74\x77\x75','\x43\x67\x39\x55\x7a\x31\x72\x50\x42\x77\x76\x56\x44\x78\x71','\x45\x4e\x7a\x4e\x7a\x65\x79','\x76\x4e\x50\x49\x76\x4c\x79','\x41\x67\x66\x5a\x71\x32\x39\x55\x42\x4d\x76\x4a\x44\x67\x76\x4b\x71\x4d\x76\x4d\x42\x33\x6a\x4c','\x43\x4d\x76\x51\x7a\x77\x6e\x30','\x42\x67\x66\x5a\x44\x66\x62\x56\x42\x4d\x44\x62\x44\x61','\x7a\x77\x58\x6c\x79\x4d\x71','\x79\x32\x39\x55\x44\x67\x66\x50\x42\x4d\x76\x59\x6c\x4e\x6a\x4c\x79\x77\x72\x35','\x7a\x67\x4c\x5a\x79\x32\x39\x55\x42\x4d\x76\x4a\x44\x67\x76\x4b','\x76\x32\x31\x6b\x76\x4b\x79','\x43\x4d\x76\x4a\x42\x32\x35\x55\x7a\x77\x6e\x30\x71\x32\x39\x31\x42\x4e\x71','\x75\x4b\x72\x6c\x42\x75\x71','\x42\x32\x35\x4c\x43\x4e\x6a\x56\x43\x47','\x7a\x32\x76\x30\x71\x32\x39\x55\x42\x4d\x76\x4a\x44\x67\x4c\x56\x42\x4b\x31\x4c\x44\x68\x6a\x50\x79\x33\x6d','\x41\x78\x6e\x64\x42\x32\x35\x55\x7a\x77\x6e\x30\x7a\x77\x71','\x42\x77\x4c\x5a\x43\x32\x76\x4b\x75\x67\x39\x55\x7a\x30\x6e\x56\x44\x77\x35\x30','\x42\x32\x35\x62\x7a\x32\x76\x55\x44\x65\x76\x32\x7a\x77\x35\x30','\x42\x77\x66\x34\x72\x67\x76\x4b\x44\x78\x62\x53\x41\x77\x6e\x48\x44\x67\x4c\x56\x42\x4c\x6e\x50\x45\x4d\x75','\x79\x32\x58\x56\x43\x32\x75','\x42\x32\x35\x75\x42\x32\x54\x4c\x42\x4b\x76\x34\x43\x67\x4c\x59\x7a\x77\x71','\x44\x67\x39\x74\x44\x68\x6a\x50\x42\x4d\x43','\x43\x67\x66\x59\x43\x32\x75','\x43\x4d\x76\x57\x42\x67\x66\x35\x6c\x4d\x6e\x56\x42\x78\x62\x53\x7a\x78\x72\x4c','\x43\x68\x6a\x56\x79\x32\x76\x5a\x43\x32\x76\x4b\x72\x78\x7a\x4c\x42\x4e\x72\x6a\x7a\x68\x6d','\x43\x68\x6a\x56\x44\x67\x39\x4a\x42\x32\x57','\x43\x67\x39\x55\x7a\x31\x72\x50\x42\x77\x76\x56\x44\x78\x72\x6e\x43\x57','\x79\x33\x76\x59\x43\x4d\x76\x55\x44\x66\x6e\x4c\x43\x33\x6e\x50\x42\x32\x35\x6a\x7a\x61','\x6d\x74\x4b\x5a\x6d\x4a\x61\x34\x79\x76\x50\x72\x77\x4e\x6a\x76','\x43\x32\x76\x5a\x43\x32\x4c\x56\x42\x4b\x4c\x4b','\x42\x77\x76\x5a\x43\x32\x66\x4e\x7a\x78\x6e\x74\x7a\x77\x35\x30','\x42\x32\x35\x71\x42\x33\x6a\x30\x74\x33\x62\x4c\x42\x4d\x76\x4b','\x43\x4d\x76\x57\x42\x67\x66\x35\x6c\x4e\x62\x59\x42\x32\x44\x59\x7a\x78\x6e\x5a','\x43\x33\x72\x48\x43\x4e\x72\x71\x41\x77\x35\x4e\x73\x77\x35\x30\x7a\x78\x6a\x32\x79\x77\x57','\x7a\x32\x76\x30\x75\x33\x72\x48\x44\x68\x6d','\x42\x67\x76\x55\x7a\x33\x72\x4f','\x6d\x5a\x61\x57\x6e\x74\x69\x33\x6d\x65\x50\x4d\x7a\x67\x4c\x79\x7a\x47','\x41\x33\x72\x32\x45\x68\x6d','\x43\x4e\x76\x55\x44\x67\x4c\x54\x7a\x73\x35\x55\x42\x33\x72\x46\x7a\x4d\x39\x31\x42\x4d\x71','\x74\x78\x7a\x74\x76\x78\x47','\x79\x30\x6e\x33\x45\x4e\x69','\x75\x68\x62\x6e\x73\x4b\x75','\x71\x32\x58\x50\x7a\x77\x35\x30\x69\x67\x72\x50\x43\x32\x6e\x56\x42\x4d\x35\x4c\x79\x33\x71','\x74\x78\x72\x77\x7a\x65\x30','\x43\x67\x4c\x55\x7a\x30\x4c\x55\x44\x67\x76\x59\x44\x4d\x66\x53','\x6d\x5a\x7a\x4d\x72\x67\x6a\x70\x43\x77\x75','\x43\x33\x76\x49\x43\x32\x6e\x59\x41\x77\x6a\x4c','\x44\x67\x4c\x54\x7a\x78\x6e\x30\x79\x77\x31\x57','\x41\x67\x66\x55\x7a\x67\x58\x4c\x71\x32\x58\x56\x43\x32\x75','\x79\x32\x58\x4c\x79\x78\x6a\x73\x7a\x78\x62\x53\x79\x78\x4c\x74\x44\x67\x66\x30\x7a\x71','\x72\x4c\x72\x56\x79\x77\x4f','\x44\x67\x39\x30\x79\x77\x58\x65\x43\x4d\x39\x57\x43\x67\x76\x4b','\x41\x77\x35\x50\x44\x67\x4c\x48\x42\x66\x6a\x4c\x79\x32\x39\x55\x42\x4d\x76\x4a\x44\x65\x72\x4c\x42\x67\x66\x35\x74\x78\x6d','\x43\x32\x48\x50\x7a\x4e\x71','\x43\x32\x4c\x4b\x7a\x77\x6e\x48\x43\x4b\x4c\x4b','\x44\x67\x76\x59\x42\x77\x4c\x55\x79\x77\x57\x55\x41\x77\x35\x57\x44\x78\x71','\x71\x32\x39\x55\x42\x4d\x76\x4a\x44\x67\x4c\x56\x42\x49\x62\x4a\x42\x67\x39\x5a\x7a\x77\x71','\x43\x32\x76\x5a\x43\x32\x4c\x56\x42\x4c\x39\x50\x7a\x61','\x43\x33\x72\x56\x43\x66\x62\x50\x42\x4d\x44\x6a\x42\x4e\x72\x4c\x43\x4e\x7a\x48\x42\x61','\x42\x32\x35\x4a\x42\x67\x39\x5a\x7a\x71','\x41\x67\x66\x55\x7a\x67\x58\x4c\x76\x67\x39\x52\x7a\x77\x35\x66\x45\x68\x62\x50\x43\x4d\x4c\x55\x7a\x57','\x7a\x78\x48\x4c\x79\x33\x76\x30\x41\x77\x39\x55\x78\x32\x4c\x4b','\x43\x67\x4c\x55\x7a\x30\x58\x48\x44\x67\x76\x55\x79\x33\x4c\x69\x41\x78\x6e\x30\x42\x33\x6a\x35','\x42\x67\x39\x48\x7a\x66\x6a\x4c\x43\x67\x58\x48\x45\x76\x6e\x30\x79\x78\x72\x4c','\x43\x67\x4c\x55\x7a\x30\x4c\x55\x44\x67\x76\x59\x44\x4d\x66\x53\x74\x78\x6d','\x79\x32\x39\x55\x42\x4d\x76\x4a\x44\x67\x76\x4b','\x42\x77\x66\x34\x75\x4d\x76\x4a\x42\x32\x35\x55\x7a\x77\x6e\x30\x72\x67\x76\x53\x79\x78\x4c\x6e\x43\x57','\x43\x32\x76\x30\x75\x32\x76\x5a\x43\x32\x4c\x56\x42\x4b\x6e\x56\x42\x4e\x72\x4c\x45\x68\x71','\x43\x33\x72\x56\x43\x4d\x75','\x42\x67\x66\x5a\x44\x66\x62\x50\x42\x4d\x44\x62\x44\x61','\x7a\x78\x48\x4a\x7a\x77\x58\x53\x7a\x77\x35\x30','\x44\x68\x6a\x48\x79\x32\x54\x66\x45\x67\x76\x4a\x44\x78\x72\x50\x42\x32\x35\x64\x42\x32\x35\x30\x7a\x78\x48\x30','\x43\x4d\x76\x4a\x7a\x77\x4c\x32\x7a\x77\x71','\x73\x76\x50\x67\x7a\x78\x75','\x42\x32\x35\x64\x42\x32\x35\x55\x7a\x77\x6e\x30','\x43\x77\x35\x54\x42\x4c\x4b','\x76\x4d\x72\x35\x44\x4e\x75','\x43\x67\x39\x59\x44\x63\x35\x56\x43\x67\x76\x55\x7a\x77\x71'];a0_0x509e=function(){return _0x3e82eb;};return a0_0x509e();}var MemoryStorage=class{[a0_0x5a0755(0x136)]=new Map();['\x67\x65\x74\x49\x74\x65\x6d'](_0x409263){const _0x1e9301=a0_0x5a0755;return this[_0x1e9301(0x136)][_0x1e9301(0x1a8)](_0x409263)??null;}['\x73\x65\x74\x49\x74\x65\x6d'](_0x196eea,_0x11a9c7){const _0x1ba449=a0_0x5a0755;this[_0x1ba449(0x136)]['\x73\x65\x74'](_0x196eea,_0x11a9c7);}[a0_0x5a0755(0x1a6)](_0x23206c){const _0xd6df09=a0_0x5a0755;this['\x73\x74\x6f\x72\x65'][_0xd6df09(0x1c6)](_0x23206c);}},SessionGatewayClient=class{['\x77\x73']=null;['\x63\x6f\x6e\x66\x69\x67'];[a0_0x5a0755(0x1b4)];['\x63\x75\x72\x72\x65\x6e\x74\x54\x6f\x6b\x65\x6e'];[a0_0x5a0755(0x167)]=![];[a0_0x5a0755(0x164)]=a0_0x5a0755(0x1e2);[a0_0x5a0755(0x1bf)]=null;[a0_0x5a0755(0x1dd)]=![];[a0_0x5a0755(0x137)]=null;['\x6c\x61\x73\x74\x50\x6f\x6e\x67\x41\x74']=null;[a0_0x5a0755(0x1d0)]=null;['\x6d\x69\x73\x73\x65\x64\x50\x6f\x6e\x67\x43\x6f\x75\x6e\x74']=0x0;['\x72\x65\x63\x6f\x6e\x6e\x65\x63\x74\x41\x74\x74\x65\x6d\x70\x74\x73']=0x0;[a0_0x5a0755(0x144)]=0x0;[a0_0x5a0755(0x1f7)]=0x0;[a0_0x5a0755(0x186)]=0x0;['\x64\x75\x70\x6c\x69\x63\x61\x74\x65\x73\x53\x6b\x69\x70\x70\x65\x64']=0x0;['\x72\x65\x63\x6f\x6e\x6e\x65\x63\x74\x54\x69\x6d\x65\x72']=null;['\x70\x69\x6e\x67\x49\x6e\x74\x65\x72\x76\x61\x6c']=null;[a0_0x5a0755(0x1da)]=null;['\x70\x65\x6e\x64\x69\x6e\x67\x43\x61\x6c\x6c\x62\x61\x63\x6b\x73']=new Map();[a0_0x5a0755(0x1aa)]=0x0;[a0_0x5a0755(0x1f1)]=new Set();[a0_0x5a0755(0x130)]=[];[a0_0x5a0755(0x175)]={...INITIAL_METRICS};[a0_0x5a0755(0x1ad)]=null;[a0_0x5a0755(0x18c)]=null;[a0_0x5a0755(0x1f4)]=null;[a0_0x5a0755(0x1b0)]=![];[a0_0x5a0755(0x15e)]={'\x74\x6f\x74\x61\x6c':0x0,'\x72\x65\x63\x65\x69\x76\x65\x64':0x0};constructor(_0x1f633b){const _0x216cfe=a0_0x5a0755,_0x1d68df={'\x69\x4c\x4b\x4d\x65':function(_0x1104df,_0x45e891){return _0x1104df in _0x45e891;},'\x71\x6e\x6d\x6e\x59':'\x5f\x5f\x74\x65\x73\x74\x5f\x5f'};let _0x77487d;if(_0x1f633b[_0x216cfe(0x1a1)])_0x77487d=_0x1f633b[_0x216cfe(0x1a1)];else{if(typeof globalThis!==_0x216cfe(0x1a9)&&_0x1d68df[_0x216cfe(0x1d9)]('\x6c\x6f\x63\x61\x6c\x53\x74\x6f\x72\x61\x67\x65',globalThis))try{const _0xe705cb=_0x1d68df[_0x216cfe(0x13d)];localStorage['\x73\x65\x74\x49\x74\x65\x6d'](_0xe705cb,_0xe705cb),localStorage['\x72\x65\x6d\x6f\x76\x65\x49\x74\x65\x6d'](_0xe705cb),_0x77487d=localStorage;}catch{_0x77487d=new MemoryStorage();}else _0x77487d=new MemoryStorage();}this['\x63\x6f\x6e\x66\x69\x67']={'\x75\x72\x6c':_0x1f633b['\x75\x72\x6c'],'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x1f633b['\x73\x65\x73\x73\x69\x6f\x6e\x49\x64'],'\x74\x6f\x6b\x65\x6e':_0x1f633b[_0x216cfe(0x141)],'\x6f\x6e\x54\x6f\x6b\x65\x6e\x52\x65\x66\x72\x65\x73\x68':_0x1f633b[_0x216cfe(0x1d1)],'\x74\x72\x61\x6e\x73\x70\x6f\x72\x74':_0x1f633b['\x74\x72\x61\x6e\x73\x70\x6f\x72\x74']??DEFAULT_CONFIG['\x74\x72\x61\x6e\x73\x70\x6f\x72\x74'],'\x63\x68\x61\x6e\x6e\x65\x6c\x73':_0x1f633b[_0x216cfe(0x193)]??DEFAULT_CONFIG[_0x216cfe(0x193)],'\x61\x75\x74\x6f\x52\x65\x63\x6f\x6e\x6e\x65\x63\x74':_0x1f633b[_0x216cfe(0x174)]??DEFAULT_CONFIG['\x61\x75\x74\x6f\x52\x65\x63\x6f\x6e\x6e\x65\x63\x74'],'\x6d\x61\x78\x52\x65\x63\x6f\x6e\x6e\x65\x63\x74\x41\x74\x74\x65\x6d\x70\x74\x73':_0x1f633b[_0x216cfe(0x16c)]??DEFAULT_CONFIG[_0x216cfe(0x16c)],'\x69\x6e\x69\x74\x69\x61\x6c\x52\x65\x63\x6f\x6e\x6e\x65\x63\x74\x44\x65\x6c\x61\x79\x4d\x73':_0x1f633b[_0x216cfe(0x126)]??DEFAULT_CONFIG['\x69\x6e\x69\x74\x69\x61\x6c\x52\x65\x63\x6f\x6e\x6e\x65\x63\x74\x44\x65\x6c\x61\x79\x4d\x73'],'\x6d\x61\x78\x52\x65\x63\x6f\x6e\x6e\x65\x63\x74\x44\x65\x6c\x61\x79\x4d\x73':_0x1f633b[_0x216cfe(0x134)]??DEFAULT_CONFIG[_0x216cfe(0x134)],'\x70\x69\x6e\x67\x49\x6e\x74\x65\x72\x76\x61\x6c\x4d\x73':_0x1f633b['\x70\x69\x6e\x67\x49\x6e\x74\x65\x72\x76\x61\x6c\x4d\x73']??DEFAULT_CONFIG['\x70\x69\x6e\x67\x49\x6e\x74\x65\x72\x76\x61\x6c\x4d\x73'],'\x70\x6f\x6e\x67\x54\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x1f633b['\x70\x6f\x6e\x67\x54\x69\x6d\x65\x6f\x75\x74\x4d\x73']??DEFAULT_CONFIG['\x70\x6f\x6e\x67\x54\x69\x6d\x65\x6f\x75\x74\x4d\x73'],'\x6d\x61\x78\x4d\x69\x73\x73\x65\x64\x50\x6f\x6e\x67\x73':_0x1f633b['\x6d\x61\x78\x4d\x69\x73\x73\x65\x64\x50\x6f\x6e\x67\x73']??DEFAULT_CONFIG['\x6d\x61\x78\x4d\x69\x73\x73\x65\x64\x50\x6f\x6e\x67\x73'],'\x65\x6e\x61\x62\x6c\x65\x44\x65\x64\x75\x70\x6c\x69\x63\x61\x74\x69\x6f\x6e':_0x1f633b['\x65\x6e\x61\x62\x6c\x65\x44\x65\x64\x75\x70\x6c\x69\x63\x61\x74\x69\x6f\x6e']??DEFAULT_CONFIG['\x65\x6e\x61\x62\x6c\x65\x44\x65\x64\x75\x70\x6c\x69\x63\x61\x74\x69\x6f\x6e'],'\x6d\x61\x78\x44\x65\x64\x75\x70\x6c\x69\x63\x61\x74\x69\x6f\x6e\x53\x69\x7a\x65':_0x1f633b['\x6d\x61\x78\x44\x65\x64\x75\x70\x6c\x69\x63\x61\x74\x69\x6f\x6e\x53\x69\x7a\x65']??DEFAULT_CONFIG[_0x216cfe(0x1eb)],'\x65\x6e\x61\x62\x6c\x65\x52\x65\x70\x6c\x61\x79\x50\x65\x72\x73\x69\x73\x74\x65\x6e\x63\x65':_0x1f633b[_0x216cfe(0x1c1)]??DEFAULT_CONFIG[_0x216cfe(0x1c1)],'\x72\x65\x70\x6c\x61\x79\x53\x74\x6f\x72\x61\x67\x65':_0x77487d,'\x72\x65\x70\x6c\x61\x79\x53\x74\x6f\x72\x61\x67\x65\x4b\x65\x79\x50\x72\x65\x66\x69\x78':_0x1f633b[_0x216cfe(0x166)]??DEFAULT_CONFIG['\x72\x65\x70\x6c\x61\x79\x53\x74\x6f\x72\x61\x67\x65\x4b\x65\x79\x50\x72\x65\x66\x69\x78'],'\x6c\x61\x74\x65\x6e\x63\x79\x48\x69\x73\x74\x6f\x72\x79\x53\x69\x7a\x65':_0x1f633b[_0x216cfe(0x165)]??DEFAULT_CONFIG[_0x216cfe(0x165)]},this[_0x216cfe(0x1b4)]=_0x1f633b[_0x216cfe(0x1b4)]??{},this['\x63\x75\x72\x72\x65\x6e\x74\x54\x6f\x6b\x65\x6e']=_0x1f633b[_0x216cfe(0x141)];if(this[_0x216cfe(0x163)][_0x216cfe(0x1c1)])this[_0x216cfe(0x131)]();}[a0_0x5a0755(0x157)](){const _0x4a6dc7=a0_0x5a0755,_0x32702f={'\x7a\x76\x67\x64\x46':function(_0x4d5a46,_0x153456){return _0x4d5a46===_0x153456;},'\x48\x77\x74\x76\x76':_0x4a6dc7(0x172),'\x62\x64\x67\x4a\x74':_0x4a6dc7(0x159)};if(this['\x73\x74\x61\x74\x65']===_0x4a6dc7(0x133)||_0x32702f[_0x4a6dc7(0x1db)](this['\x73\x74\x61\x74\x65'],_0x32702f[_0x4a6dc7(0x177)]))return;const _0x511144=this['\x68\x61\x73\x43\x6f\x6e\x6e\x65\x63\x74\x65\x64\x42\x65\x66\x6f\x72\x65'];this[_0x4a6dc7(0x1b1)](_0x511144?_0x32702f['\x62\x64\x67\x4a\x74']:_0x4a6dc7(0x172)),this[_0x4a6dc7(0x191)]();}[a0_0x5a0755(0x191)](){const _0x45a3bf=a0_0x5a0755,_0x3096ad=new URL(this[_0x45a3bf(0x163)]['\x75\x72\x6c']);_0x3096ad[_0x45a3bf(0x17c)][_0x45a3bf(0x1d5)](_0x45a3bf(0x141),this[_0x45a3bf(0x17b)]),this['\x77\x73']=new WebSocket(_0x3096ad[_0x45a3bf(0x1ee)]()),this['\x77\x73']['\x6f\x6e\x6f\x70\x65\x6e']=()=>this[_0x45a3bf(0x1a3)](),this['\x77\x73'][_0x45a3bf(0x12d)]=_0x11c9b2=>this[_0x45a3bf(0x122)](_0x11c9b2[_0x45a3bf(0x18b)],_0x11c9b2[_0x45a3bf(0x1c7)]),this['\x77\x73'][_0x45a3bf(0x1e6)]=_0x788166=>{},this['\x77\x73'][_0x45a3bf(0x17e)]=_0x34323e=>this[_0x45a3bf(0x15c)](_0x34323e['\x64\x61\x74\x61']);}[a0_0x5a0755(0x142)](){const _0x48a8c3=a0_0x5a0755,_0x59f348={'\x4d\x74\x56\x64\x4d':_0x48a8c3(0x11c),'\x56\x64\x79\x76\x75':'\x64\x69\x73\x63\x6f\x6e\x6e\x65\x63\x74\x65\x64'};this[_0x48a8c3(0x148)](),this['\x77\x73']&&(this['\x77\x73']['\x63\x6c\x6f\x73\x65'](0x3e8,_0x59f348[_0x48a8c3(0x11d)]),this['\x77\x73']=null),this[_0x48a8c3(0x1b1)](_0x59f348[_0x48a8c3(0x13e)]);}async['\x73\x75\x62\x73\x63\x72\x69\x62\x65'](_0x359adc){const _0x3d947f=a0_0x5a0755;return(await this[_0x3d947f(0x1cd)]({'\x74\x79\x70\x65':_0x3d947f(0x120),'\x63\x68\x61\x6e\x6e\x65\x6c\x73':_0x359adc}))[_0x3d947f(0x193)];}async['\x75\x6e\x73\x75\x62\x73\x63\x72\x69\x62\x65'](_0x531031){const _0x5c085b=a0_0x5a0755,_0xae27={'\x62\x44\x4c\x69\x69':_0x5c085b(0x190)};return(await this[_0x5c085b(0x1cd)]({'\x74\x79\x70\x65':_0xae27[_0x5c085b(0x1d4)],'\x63\x68\x61\x6e\x6e\x65\x6c\x73':_0x531031}))[_0x5c085b(0x193)];}async[a0_0x5a0755(0x1c2)](){const _0x5c077b=a0_0x5a0755,_0x3794c4={'\x65\x47\x63\x5a\x43':_0x5c077b(0x1c2)},_0x4df394=Date[_0x5c077b(0x17a)]();return await this[_0x5c077b(0x1cd)]({'\x74\x79\x70\x65':_0x3794c4['\x65\x47\x63\x5a\x43']}),Date[_0x5c077b(0x17a)]()-_0x4df394;}['\x72\x65\x70\x6c\x61\x79'](_0x5e4666){const _0x3acebf=a0_0x5a0755;this[_0x3acebf(0x1c0)]({'\x74\x79\x70\x65':_0x3acebf(0x154),'\x73\x69\x6e\x63\x65':_0x5e4666});}[a0_0x5a0755(0x19c)](_0x5e8c5d,_0x4aa379){const _0xd4b46c=a0_0x5a0755,_0x531652={'\x71\x6a\x4f\x6c\x4d':_0xd4b46c(0x129)};if(!this[_0xd4b46c(0x1e8)]())return![];return this[_0xd4b46c(0x1c0)]({'\x74\x79\x70\x65':_0x531652[_0xd4b46c(0x17d)],'\x64\x61\x74\x61':{'\x74\x65\x72\x6d\x69\x6e\x61\x6c\x49\x64':_0x5e8c5d,'\x69\x6e\x70\x75\x74':_0x4aa379}}),!![];}[a0_0x5a0755(0x135)](_0x5c1286,_0x2bba33){const _0x10b79a=a0_0x5a0755;this['\x63\x75\x72\x72\x65\x6e\x74\x53\x65\x73\x73\x69\x6f\x6e\x49\x64']=_0x5c1286;if(_0x2bba33)this[_0x10b79a(0x18c)]=_0x2bba33;this[_0x10b79a(0x171)]();}[a0_0x5a0755(0x123)](){const _0x457485=a0_0x5a0755;this[_0x457485(0x1ad)]=null,this['\x63\x75\x72\x72\x65\x6e\x74\x45\x78\x65\x63\x75\x74\x69\x6f\x6e\x49\x64']=null,this[_0x457485(0x1f4)]=null,this['\x69\x73\x52\x65\x70\x6c\x61\x79\x69\x6e\x67']=![],this[_0x457485(0x15e)]={'\x74\x6f\x74\x61\x6c':0x0,'\x72\x65\x63\x65\x69\x76\x65\x64':0x0},this['\x70\x72\x6f\x63\x65\x73\x73\x65\x64\x45\x76\x65\x6e\x74\x49\x64\x73'][_0x457485(0x1ce)](),this[_0x457485(0x1c4)]=0x0;if(this[_0x457485(0x163)][_0x457485(0x1c1)]){const _0x361657=this[_0x457485(0x163)][_0x457485(0x166)];try{this[_0x457485(0x163)][_0x457485(0x1a1)]['\x72\x65\x6d\x6f\x76\x65\x49\x74\x65\x6d'](_0x361657+STORAGE_KEYS[_0x457485(0x1ad)]),this['\x63\x6f\x6e\x66\x69\x67']['\x72\x65\x70\x6c\x61\x79\x53\x74\x6f\x72\x61\x67\x65'][_0x457485(0x1a6)](_0x361657+STORAGE_KEYS[_0x457485(0x161)]),this[_0x457485(0x163)][_0x457485(0x1a1)]['\x72\x65\x6d\x6f\x76\x65\x49\x74\x65\x6d'](_0x361657+STORAGE_KEYS[_0x457485(0x1f6)]);}catch{}}}[a0_0x5a0755(0x19d)](){const _0x3eefea=a0_0x5a0755;return{'\x69\x73\x52\x65\x70\x6c\x61\x79\x69\x6e\x67':this['\x69\x73\x52\x65\x70\x6c\x61\x79\x69\x6e\x67'],'\x70\x72\x6f\x67\x72\x65\x73\x73':{...this[_0x3eefea(0x15e)]}};}[a0_0x5a0755(0x1fb)](){const _0x1a7e29=a0_0x5a0755;return{'\x73\x74\x61\x74\x65':this['\x73\x74\x61\x74\x65'],'\x63\x6f\x6e\x6e\x65\x63\x74\x65\x64\x41\x74':this[_0x1a7e29(0x1bf)],'\x6c\x61\x73\x74\x50\x69\x6e\x67\x41\x74':this[_0x1a7e29(0x137)],'\x6c\x61\x73\x74\x50\x6f\x6e\x67\x41\x74':this[_0x1a7e29(0x1df)],'\x72\x65\x63\x6f\x6e\x6e\x65\x63\x74\x41\x74\x74\x65\x6d\x70\x74\x73':this['\x72\x65\x63\x6f\x6e\x6e\x65\x63\x74\x41\x74\x74\x65\x6d\x70\x74\x73'],'\x6d\x65\x73\x73\x61\x67\x65\x73\x52\x65\x63\x65\x69\x76\x65\x64':this[_0x1a7e29(0x144)],'\x6d\x65\x73\x73\x61\x67\x65\x73\x53\x65\x6e\x74':this[_0x1a7e29(0x1f7)],'\x65\x76\x65\x6e\x74\x73\x52\x65\x63\x65\x69\x76\x65\x64':this[_0x1a7e29(0x186)],'\x64\x75\x70\x6c\x69\x63\x61\x74\x65\x73\x53\x6b\x69\x70\x70\x65\x64':this[_0x1a7e29(0x1c4)],'\x6d\x65\x74\x72\x69\x63\x73':{...this['\x63\x6f\x6e\x6e\x65\x63\x74\x69\x6f\x6e\x4d\x65\x74\x72\x69\x63\x73']},'\x72\x65\x70\x6c\x61\x79':this[_0x1a7e29(0x19d)]()};}['\x67\x65\x74\x53\x74\x61\x74\x65'](){const _0x2e1c20=a0_0x5a0755;return this[_0x2e1c20(0x164)];}[a0_0x5a0755(0x1e8)](){const _0x176ed0=a0_0x5a0755,_0x3d3714={'\x74\x52\x41\x74\x62':function(_0x1dedfe,_0x5699b6){return _0x1dedfe===_0x5699b6;},'\x48\x41\x55\x54\x59':'\x63\x6f\x6e\x6e\x65\x63\x74\x65\x64'};return _0x3d3714[_0x176ed0(0x173)](this[_0x176ed0(0x164)],_0x3d3714['\x48\x41\x55\x54\x59']);}[a0_0x5a0755(0x168)](){const _0x5188c1=a0_0x5a0755;return this[_0x5188c1(0x175)]['\x71\x75\x61\x6c\x69\x74\x79'];}[a0_0x5a0755(0x1e7)](){const _0x291e9a=a0_0x5a0755;return{...this[_0x291e9a(0x175)]};}['\x72\x65\x73\x65\x74\x4d\x65\x74\x72\x69\x63\x73'](){const _0x3a5b99=a0_0x5a0755;this[_0x3a5b99(0x130)]=[],this[_0x3a5b99(0x175)]={...INITIAL_METRICS},this[_0x3a5b99(0x1b4)][_0x3a5b99(0x14d)]?.(this['\x63\x6f\x6e\x6e\x65\x63\x74\x69\x6f\x6e\x4d\x65\x74\x72\x69\x63\x73']);}['\x75\x70\x64\x61\x74\x65\x54\x6f\x6b\x65\x6e'](_0x1f3f5f){const _0x539f4c=a0_0x5a0755,_0x3b2b1f={'\x52\x44\x4b\x6d\x44':function(_0x25ddd7,_0x389973){return _0x25ddd7===_0x389973;},'\x4c\x5a\x69\x77\x61':_0x539f4c(0x14e)};this[_0x539f4c(0x17b)]=_0x1f3f5f;if(_0x3b2b1f[_0x539f4c(0x1e5)](this[_0x539f4c(0x164)],_0x539f4c(0x133))&&this['\x77\x73'])this['\x77\x73'][_0x539f4c(0x1ec)](0x3e8,_0x3b2b1f['\x4c\x5a\x69\x77\x61']);}['\x67\x65\x74\x54\x6f\x6b\x65\x6e'](){return this['\x63\x75\x72\x72\x65\x6e\x74\x54\x6f\x6b\x65\x6e'];}[a0_0x5a0755(0x1b1)](_0xde5e21){const _0x5e909b=a0_0x5a0755;this[_0x5e909b(0x164)]!==_0xde5e21&&(this[_0x5e909b(0x164)]=_0xde5e21,this[_0x5e909b(0x143)](),this[_0x5e909b(0x1b4)][_0x5e909b(0x1b7)]?.(_0xde5e21));}[a0_0x5a0755(0x1a3)](){const _0x1a7502=a0_0x5a0755,_0x5a7c2c=this[_0x1a7502(0x1dd)];this[_0x1a7502(0x1dd)]=!![],this[_0x1a7502(0x1b1)](_0x1a7502(0x133)),this[_0x1a7502(0x1bf)]=Date[_0x1a7502(0x17a)](),this[_0x1a7502(0x16a)]=0x0,this['\x6d\x69\x73\x73\x65\x64\x50\x6f\x6e\x67\x43\x6f\x75\x6e\x74']=0x0,this[_0x1a7502(0x1fa)](),this['\x72\x65\x73\x74\x6f\x72\x65\x53\x75\x62\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x73'](),_0x5a7c2c&&(this[_0x1a7502(0x1c9)](),this['\x68\x61\x6e\x64\x6c\x65\x72\x73']['\x6f\x6e\x52\x65\x63\x6f\x6e\x6e\x65\x63\x74']?.());}[a0_0x5a0755(0x122)](_0x255f5e,_0x4978b3){const _0x114e37=a0_0x5a0755;this[_0x114e37(0x148)](),this['\x68\x61\x6e\x64\x6c\x65\x72\x73'][_0x114e37(0x15a)]?.(_0x255f5e,_0x4978b3);if(this[_0x114e37(0x163)][_0x114e37(0x174)]&&this['\x72\x65\x63\x6f\x6e\x6e\x65\x63\x74\x41\x74\x74\x65\x6d\x70\x74\x73']<this[_0x114e37(0x163)][_0x114e37(0x16c)])this[_0x114e37(0x1b1)](_0x114e37(0x159)),this[_0x114e37(0x17f)]();else this[_0x114e37(0x1b1)](_0x114e37(0x1e2));}['\x68\x61\x6e\x64\x6c\x65\x4d\x65\x73\x73\x61\x67\x65'](_0x1a332e){const _0x3187f6=a0_0x5a0755,_0x39afe9={'\x43\x68\x62\x52\x63':_0x3187f6(0x169),'\x57\x6d\x4a\x56\x46':_0x3187f6(0x1be),'\x49\x5a\x46\x65\x75':function(_0x34dc40,_0xa52686){return _0x34dc40!==_0xa52686;},'\x74\x75\x54\x46\x78':function(_0x4387a2,_0x2d84a2){return _0x4387a2===_0x2d84a2;},'\x73\x50\x79\x44\x59':'\x70\x6f\x6e\x67','\x57\x4d\x41\x47\x72':function(_0x1ce8e5,_0x35bf99){return _0x1ce8e5*_0x35bf99;}};this['\x6d\x65\x73\x73\x61\x67\x65\x73\x52\x65\x63\x65\x69\x76\x65\x64']++;try{const _0x4a33d0=JSON[_0x3187f6(0x1ef)](_0x1a332e);if(!_0x4a33d0[_0x3187f6(0x192)]&&_0x4a33d0[_0x3187f6(0x178)])_0x4a33d0['\x74\x79\x70\x65']=_0x4a33d0[_0x3187f6(0x178)];if(typeof _0x4a33d0[_0x3187f6(0x192)]===_0x39afe9[_0x3187f6(0x146)]&&WIRE_TYPE_MAP[_0x4a33d0[_0x3187f6(0x192)]]!==void 0x0)_0x4a33d0['\x74\x79\x70\x65']=WIRE_TYPE_MAP[_0x4a33d0[_0x3187f6(0x192)]];if(_0x4a33d0[_0x3187f6(0x1bd)]&&typeof _0x4a33d0['\x64\x61\x74\x61']===_0x39afe9[_0x3187f6(0x1e3)]){const _0x44bd00=_0x4a33d0[_0x3187f6(0x1bd)];if(_0x39afe9[_0x3187f6(0x13b)](_0x44bd00[_0x3187f6(0x128)],void 0x0)&&_0x44bd00[_0x3187f6(0x16f)]===void 0x0)_0x44bd00[_0x3187f6(0x16f)]=_0x44bd00[_0x3187f6(0x128)];}if(_0x39afe9[_0x3187f6(0x16b)](_0x4a33d0[_0x3187f6(0x192)],'\x61\x67\x65\x6e\x74\x2e\x65\x76\x65\x6e\x74')&&!_0x4a33d0[_0x3187f6(0x1bd)]&&_0x4a33d0[_0x3187f6(0x1ac)]){const {type:_0x22b8bd,messageType:_0x4232cf,channel:_0x35b097,id:_0x2f1a32,sequenceId:_0x3709cf,timestamp:_0x9ef6ef,..._0xa3de0}=_0x4a33d0;_0x4a33d0[_0x3187f6(0x1bd)]=_0xa3de0;}const _0x10ce26=_0x4a33d0;if(_0x10ce26[_0x3187f6(0x192)]===_0x39afe9[_0x3187f6(0x1b9)]){this[_0x3187f6(0x195)](_0x10ce26[_0x3187f6(0x121)]),this[_0x3187f6(0x1cf)](_0x10ce26);return;}if('\x69\x64'in _0x10ce26&&_0x10ce26['\x69\x64']&&this['\x63\x6f\x6e\x66\x69\x67'][_0x3187f6(0x147)]){const _0x1e1f4a=_0x10ce26['\x69\x64'];if(this['\x70\x72\x6f\x63\x65\x73\x73\x65\x64\x45\x76\x65\x6e\x74\x49\x64\x73'][_0x3187f6(0x181)](_0x1e1f4a)){this['\x64\x75\x70\x6c\x69\x63\x61\x74\x65\x73\x53\x6b\x69\x70\x70\x65\x64']++;return;}this[_0x3187f6(0x1f1)][_0x3187f6(0x1bc)](_0x1e1f4a);if(this[_0x3187f6(0x1f1)][_0x3187f6(0x1af)]>this['\x63\x6f\x6e\x66\x69\x67']['\x6d\x61\x78\x44\x65\x64\x75\x70\x6c\x69\x63\x61\x74\x69\x6f\x6e\x53\x69\x7a\x65']){const _0x20fa0e=Math['\x66\x6c\x6f\x6f\x72'](_0x39afe9[_0x3187f6(0x1bb)](this[_0x3187f6(0x163)][_0x3187f6(0x1eb)],0.1));let _0x2bed4b=0x0;for(const _0x26861e of this['\x70\x72\x6f\x63\x65\x73\x73\x65\x64\x45\x76\x65\x6e\x74\x49\x64\x73']){if(_0x2bed4b>=_0x20fa0e)break;this[_0x3187f6(0x1f1)][_0x3187f6(0x1c6)](_0x26861e),_0x2bed4b++;}}this['\x6c\x61\x73\x74\x45\x76\x65\x6e\x74\x49\x64']=_0x1e1f4a,this[_0x3187f6(0x171)]();}this[_0x3187f6(0x1cf)](_0x10ce26);}catch{}}['\x68\x61\x6e\x64\x6c\x65\x50\x6f\x6e\x67'](_0x2bf5b0){const _0x3e5032=a0_0x5a0755,_0x315841=Date[_0x3e5032(0x17a)]();this[_0x3e5032(0x1df)]=_0x2bf5b0,this[_0x3e5032(0x1e9)]=0x0,this[_0x3e5032(0x184)]();if(this[_0x3e5032(0x1d0)]){const _0x31e1d4=_0x315841-this[_0x3e5032(0x1d0)];this[_0x3e5032(0x130)]['\x70\x75\x73\x68'](_0x31e1d4);if(this[_0x3e5032(0x130)][_0x3e5032(0x1fc)]>this[_0x3e5032(0x163)][_0x3e5032(0x165)])this[_0x3e5032(0x130)][_0x3e5032(0x127)]();this['\x75\x70\x64\x61\x74\x65\x43\x6f\x6e\x6e\x65\x63\x74\x69\x6f\x6e\x4d\x65\x74\x72\x69\x63\x73'](_0x31e1d4,_0x315841);}}['\x64\x69\x73\x70\x61\x74\x63\x68\x4d\x65\x73\x73\x61\x67\x65'](_0x1b5510){const _0x43da83=a0_0x5a0755,_0x14eddf={'\x54\x4e\x46\x61\x4c':'\x63\x6f\x6e\x6e\x65\x63\x74\x69\x6f\x6e\x2e\x65\x73\x74\x61\x62\x6c\x69\x73\x68\x65\x64','\x6f\x70\x69\x4b\x6e':_0x43da83(0x156),'\x41\x48\x6e\x56\x50':'\x72\x75\x6e\x74\x69\x6d\x65\x2e\x64\x69\x73\x63\x6f\x6e\x6e\x65\x63\x74\x65\x64','\x50\x70\x4d\x4a\x45':_0x43da83(0x176),'\x77\x4e\x51\x47\x47':'\x72\x75\x6e\x74\x69\x6d\x65\x2e\x72\x65\x61\x64\x79','\x66\x42\x52\x61\x58':_0x43da83(0x13f),'\x4a\x4f\x74\x75\x6e':_0x43da83(0x187)};if('\x69\x64'in _0x1b5510&&_0x1b5510['\x69\x64']){const _0x3a4516=this[_0x43da83(0x1c8)][_0x43da83(0x1a8)](_0x1b5510['\x69\x64']);if(_0x3a4516){this['\x70\x65\x6e\x64\x69\x6e\x67\x43\x61\x6c\x6c\x62\x61\x63\x6b\x73'][_0x43da83(0x1c6)](_0x1b5510['\x69\x64']);if(_0x1b5510[_0x43da83(0x192)]===_0x43da83(0x187))_0x3a4516[_0x43da83(0x1de)](new Error(_0x1b5510[_0x43da83(0x151)]));else _0x3a4516[_0x43da83(0x1b2)]('\x64\x61\x74\x61'in _0x1b5510?_0x1b5510[_0x43da83(0x1bd)]:void 0x0);return;}}switch(_0x1b5510[_0x43da83(0x192)]){case _0x14eddf['\x54\x4e\x46\x61\x4c']:this['\x68\x61\x6e\x64\x6c\x65\x72\x73'][_0x43da83(0x13c)]?.(_0x1b5510[_0x43da83(0x1bd)]['\x73\x65\x73\x73\x69\x6f\x6e\x49\x64']);break;case _0x14eddf[_0x43da83(0x152)]:this['\x68\x61\x6e\x64\x6c\x65\x72\x73']['\x6f\x6e\x52\x75\x6e\x74\x69\x6d\x65\x43\x6f\x6e\x6e\x65\x63\x74\x65\x64']?.(_0x1b5510['\x64\x61\x74\x61'][_0x43da83(0x16f)],_0x1b5510[_0x43da83(0x1bd)][_0x43da83(0x170)]);break;case _0x14eddf[_0x43da83(0x1d6)]:this[_0x43da83(0x1b4)]['\x6f\x6e\x52\x75\x6e\x74\x69\x6d\x65\x44\x69\x73\x63\x6f\x6e\x6e\x65\x63\x74\x65\x64']?.(_0x1b5510[_0x43da83(0x1bd)]['\x73\x61\x6e\x64\x62\x6f\x78\x49\x64'],_0x1b5510[_0x43da83(0x1bd)]['\x65\x72\x72\x6f\x72']);break;case _0x43da83(0x118):this[_0x43da83(0x1b4)]['\x6f\x6e\x52\x75\x6e\x74\x69\x6d\x65\x4e\x6f\x74\x46\x6f\x75\x6e\x64']?.(_0x1b5510['\x64\x61\x74\x61'][_0x43da83(0x1f6)],_0x1b5510[_0x43da83(0x1bd)]['\x63\x6f\x6e\x74\x61\x69\x6e\x65\x72\x49\x64'],_0x1b5510['\x64\x61\x74\x61'][_0x43da83(0x1c7)]);break;case _0x43da83(0x1e1):{const _0x3e597c=_0x1b5510[_0x43da83(0x1bd)],_0x4c5398=_0x3e597c['\x73\x61\x6e\x64\x62\x6f\x78\x49\x64']??_0x3e597c[_0x43da83(0x128)];if(_0x4c5398)this[_0x43da83(0x1b4)]['\x6f\x6e\x43\x6f\x6e\x74\x61\x69\x6e\x65\x72\x52\x65\x61\x64\x79']?.(_0x4c5398);else this['\x68\x61\x6e\x64\x6c\x65\x72\x73'][_0x43da83(0x182)]?.(_0x14eddf[_0x43da83(0x11b)],_0x43da83(0x1cb));break;}case _0x14eddf[_0x43da83(0x158)]:this['\x68\x61\x6e\x64\x6c\x65\x72\x73'][_0x43da83(0x1a2)]?.(_0x1b5510['\x64\x61\x74\x61']);break;case _0x14eddf['\x66\x42\x52\x61\x58']:this[_0x43da83(0x1b4)][_0x43da83(0x1f8)]?.(_0x1b5510[_0x43da83(0x1bd)][_0x43da83(0x16e)],_0x1b5510[_0x43da83(0x1bd)][_0x43da83(0x1f2)],_0x1b5510[_0x43da83(0x1bd)][_0x43da83(0x153)]);break;case'\x70\x6f\x72\x74\x2e\x63\x6c\x6f\x73\x65\x64':this[_0x43da83(0x1b4)][_0x43da83(0x180)]?.(_0x1b5510[_0x43da83(0x1bd)][_0x43da83(0x16e)]);break;case _0x43da83(0x16d):this[_0x43da83(0x186)]++,this[_0x43da83(0x139)](_0x1b5510[_0x43da83(0x1bd)]),this['\x68\x61\x6e\x64\x6c\x65\x72\x73'][_0x43da83(0x1ea)]?.(_0x1b5510[_0x43da83(0x1ac)],_0x1b5510['\x64\x61\x74\x61'],_0x1b5510[_0x43da83(0x14f)]);break;case _0x43da83(0x194):this[_0x43da83(0x1b0)]=!![],this[_0x43da83(0x15e)]={'\x74\x6f\x74\x61\x6c':_0x1b5510['\x74\x6f\x74\x61\x6c'],'\x72\x65\x63\x65\x69\x76\x65\x64':0x0},this[_0x43da83(0x1b4)][_0x43da83(0x1c5)]?.(_0x1b5510[_0x43da83(0x1b8)]);break;case _0x43da83(0x1f9):this[_0x43da83(0x15e)][_0x43da83(0x13a)]=_0x1b5510[_0x43da83(0x13a)],this[_0x43da83(0x1b4)][_0x43da83(0x1a7)]?.(_0x1b5510[_0x43da83(0x13a)],this[_0x43da83(0x15e)][_0x43da83(0x1b8)]);break;case _0x43da83(0x1f0):this[_0x43da83(0x1b0)]=![],this[_0x43da83(0x1b4)]['\x6f\x6e\x52\x65\x70\x6c\x61\x79\x43\x6f\x6d\x70\x6c\x65\x74\x65']?.(_0x1b5510['\x74\x6f\x74\x61\x6c']);break;case _0x14eddf['\x4a\x4f\x74\x75\x6e']:this[_0x43da83(0x1b4)][_0x43da83(0x182)]?.(_0x1b5510[_0x43da83(0x151)],_0x1b5510['\x63\x6f\x64\x65']);break;case _0x43da83(0x149):this[_0x43da83(0x1b4)]['\x6f\x6e\x54\x6f\x6b\x65\x6e\x45\x78\x70\x69\x72\x69\x6e\x67']?.(_0x1b5510['\x64\x61\x74\x61'][_0x43da83(0x14c)]),this[_0x43da83(0x12e)]();break;case _0x43da83(0x19f):this[_0x43da83(0x1b4)][_0x43da83(0x1ed)]?.();break;case'\x62\x61\x63\x6b\x70\x72\x65\x73\x73\x75\x72\x65\x2e\x77\x61\x72\x6e\x69\x6e\x67':this['\x68\x61\x6e\x64\x6c\x65\x72\x73'][_0x43da83(0x1b3)]?.(_0x1b5510[_0x43da83(0x1bd)][_0x43da83(0x18f)],_0x1b5510[_0x43da83(0x1bd)]['\x73\x69\x6e\x63\x65'],_0x1b5510[_0x43da83(0x1bd)][_0x43da83(0x125)]);break;}}[a0_0x5a0755(0x139)](_0xd7fd09){const _0x535b2a=a0_0x5a0755,_0x18e8ae={'\x56\x48\x56\x46\x59':function(_0x54df9d,_0x5093d5){return _0x54df9d!==_0x5093d5;},'\x4d\x76\x53\x55\x78':_0x535b2a(0x1be),'\x61\x45\x67\x63\x74':_0x535b2a(0x162)};if(_0x18e8ae['\x56\x48\x56\x46\x59'](typeof _0xd7fd09,_0x18e8ae[_0x535b2a(0x119)])||_0xd7fd09===null)return;const _0x3374f3=_0xd7fd09;_0x3374f3[_0x535b2a(0x161)]&&(this[_0x535b2a(0x18c)]=_0x3374f3['\x65\x78\x65\x63\x75\x74\x69\x6f\x6e\x49\x64'],this[_0x535b2a(0x171)]()),_0x3374f3[_0x535b2a(0x192)]===_0x18e8ae[_0x535b2a(0x179)]&&_0x3374f3[_0x535b2a(0x1f6)]&&(this[_0x535b2a(0x1f4)]=_0x3374f3[_0x535b2a(0x1f6)],this[_0x535b2a(0x171)]());}async['\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6b\x65\x6e\x45\x78\x70\x69\x72\x69\x6e\x67'](){const _0x4ea882=a0_0x5a0755,_0x408514={'\x42\x6e\x6d\x62\x73':function(_0x48faec,_0x10f9fe){return _0x48faec instanceof _0x10f9fe;},'\x63\x43\x77\x7a\x72':_0x4ea882(0x155)};if(!this[_0x4ea882(0x163)][_0x4ea882(0x1d1)]||this['\x69\x73\x52\x65\x66\x72\x65\x73\x68\x69\x6e\x67\x54\x6f\x6b\x65\x6e'])return;this[_0x4ea882(0x167)]=!![];try{const _0x4a42b5=await this['\x63\x6f\x6e\x66\x69\x67'][_0x4ea882(0x1d1)]();this[_0x4ea882(0x1b6)](_0x4a42b5[_0x4ea882(0x141)]);}catch(_0x28e00f){this['\x68\x61\x6e\x64\x6c\x65\x72\x73']['\x6f\x6e\x45\x72\x72\x6f\x72']?.('\x54\x6f\x6b\x65\x6e\x20\x72\x65\x66\x72\x65\x73\x68\x20\x66\x61\x69\x6c\x65\x64\x3a\x20'+(_0x408514['\x42\x6e\x6d\x62\x73'](_0x28e00f,Error)?_0x28e00f['\x6d\x65\x73\x73\x61\x67\x65']:String(_0x28e00f)),_0x408514[_0x4ea882(0x11a)]);}finally{this[_0x4ea882(0x167)]=![];}}[a0_0x5a0755(0x1c0)](_0x4b4a4d){const _0x2fc718=a0_0x5a0755;this['\x77\x73']?.['\x72\x65\x61\x64\x79\x53\x74\x61\x74\x65']===WebSocket[_0x2fc718(0x188)]&&(this['\x77\x73'][_0x2fc718(0x1c0)](JSON['\x73\x74\x72\x69\x6e\x67\x69\x66\x79'](_0x4b4a4d)),this[_0x2fc718(0x1f7)]++);}['\x73\x65\x6e\x64\x57\x69\x74\x68\x52\x65\x73\x70\x6f\x6e\x73\x65'](_0x1eddf8){const _0x5d3a0b={'\x46\x54\x6f\x61\x6a':function(_0x5b25a5,_0x36db97,_0x7024de){return _0x5b25a5(_0x36db97,_0x7024de);}};return new Promise((_0x48a91a,_0x5a1cf4)=>{const _0x566f92=a0_0x238b,_0x504427='\x6d\x73\x67\x5f'+ ++this[_0x566f92(0x1aa)];this[_0x566f92(0x1c8)]['\x73\x65\x74'](_0x504427,{'\x72\x65\x73\x6f\x6c\x76\x65':_0x48a91a,'\x72\x65\x6a\x65\x63\x74':_0x5a1cf4}),_0x5d3a0b[_0x566f92(0x124)](setTimeout,()=>{const _0x21552f=_0x566f92;this[_0x21552f(0x1c8)][_0x21552f(0x181)](_0x504427)&&(this[_0x21552f(0x1c8)][_0x21552f(0x1c6)](_0x504427),_0x5a1cf4(new Error(_0x21552f(0x199))));},0x2710),this['\x73\x65\x6e\x64']({..._0x1eddf8,'\x69\x64':_0x504427});});}['\x72\x65\x73\x74\x6f\x72\x65\x53\x75\x62\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x73'](){const _0x7cb045=a0_0x5a0755,_0x5e176b=this[_0x7cb045(0x163)][_0x7cb045(0x193)],_0x2a34ac={};if(this[_0x7cb045(0x1ad)])_0x2a34ac[_0x7cb045(0x1ad)]=this[_0x7cb045(0x1ad)];if(this[_0x7cb045(0x18c)])_0x2a34ac[_0x7cb045(0x161)]=this['\x63\x75\x72\x72\x65\x6e\x74\x45\x78\x65\x63\x75\x74\x69\x6f\x6e\x49\x64'];if(this[_0x7cb045(0x1f4)])_0x2a34ac[_0x7cb045(0x1f6)]=this[_0x7cb045(0x1f4)];const _0x8dbe87=Object['\x6b\x65\x79\x73'](_0x2a34ac)['\x6c\x65\x6e\x67\x74\x68']>0x0;_0x8dbe87&&(this['\x69\x73\x52\x65\x70\x6c\x61\x79\x69\x6e\x67']=!![],this[_0x7cb045(0x15e)]={'\x74\x6f\x74\x61\x6c':0x0,'\x72\x65\x63\x65\x69\x76\x65\x64':0x0}),this[_0x7cb045(0x1c0)]({'\x74\x79\x70\x65':_0x7cb045(0x120),'\x63\x68\x61\x6e\x6e\x65\x6c\x73':_0x5e176b,..._0x8dbe87?{'\x72\x65\x70\x6c\x61\x79\x4f\x70\x74\x69\x6f\x6e\x73':_0x2a34ac}:{}});}['\x73\x74\x61\x72\x74\x50\x69\x6e\x67\x49\x6e\x74\x65\x72\x76\x61\x6c'](){const _0x29994e=a0_0x5a0755;this[_0x29994e(0x12c)](),this['\x70\x69\x6e\x67\x49\x6e\x74\x65\x72\x76\x61\x6c']=setInterval(()=>{const _0x39aacf=_0x29994e;this[_0x39aacf(0x1d3)]();},this[_0x29994e(0x163)][_0x29994e(0x132)]);}[a0_0x5a0755(0x12c)](){const _0x4732c1=a0_0x5a0755;this['\x70\x69\x6e\x67\x49\x6e\x74\x65\x72\x76\x61\x6c']&&(clearInterval(this[_0x4732c1(0x11e)]),this[_0x4732c1(0x11e)]=null);}[a0_0x5a0755(0x1d3)](){const _0x37ad0f=a0_0x5a0755,_0x271afc={'\x6e\x71\x76\x43\x43':function(_0x5e6d9d,_0x27effe){return _0x5e6d9d!==_0x27effe;},'\x56\x7a\x62\x56\x56':function(_0x3eff85,_0x14c66d){return _0x3eff85>=_0x14c66d;},'\x62\x74\x50\x4f\x50':_0x37ad0f(0x1a0)};if(_0x271afc[_0x37ad0f(0x1cc)](this['\x77\x73']?.['\x72\x65\x61\x64\x79\x53\x74\x61\x74\x65'],WebSocket['\x4f\x50\x45\x4e']))return;const _0x7f7da=this[_0x37ad0f(0x1df)]?Date['\x6e\x6f\x77']()-this[_0x37ad0f(0x1df)]:0x0;if(this[_0x37ad0f(0x1df)]&&_0x7f7da>this['\x63\x6f\x6e\x66\x69\x67'][_0x37ad0f(0x1f3)]){this['\x6d\x69\x73\x73\x65\x64\x50\x6f\x6e\x67\x43\x6f\x75\x6e\x74']++,this['\x63\x6f\x6e\x6e\x65\x63\x74\x69\x6f\x6e\x4d\x65\x74\x72\x69\x63\x73']={...this[_0x37ad0f(0x175)],'\x6d\x69\x73\x73\x65\x64\x50\x6f\x6e\x67\x43\x6f\x75\x6e\x74':this[_0x37ad0f(0x1e9)]},this[_0x37ad0f(0x143)]();if(_0x271afc[_0x37ad0f(0x1dc)](this[_0x37ad0f(0x1e9)],this[_0x37ad0f(0x163)][_0x37ad0f(0x1d7)])){this['\x77\x73']?.['\x63\x6c\x6f\x73\x65'](0xfa0,_0x271afc[_0x37ad0f(0x1ca)]);return;}}this[_0x37ad0f(0x137)]=Date[_0x37ad0f(0x17a)](),this[_0x37ad0f(0x1d0)]=Date['\x6e\x6f\x77'](),this['\x73\x65\x6e\x64']({'\x74\x79\x70\x65':_0x37ad0f(0x1c2)}),this[_0x37ad0f(0x1da)]=setTimeout(()=>{const _0xc50394=_0x37ad0f;this[_0xc50394(0x1e9)]++,this[_0xc50394(0x175)]={...this[_0xc50394(0x175)],'\x6d\x69\x73\x73\x65\x64\x50\x6f\x6e\x67\x43\x6f\x75\x6e\x74':this[_0xc50394(0x1e9)]},this[_0xc50394(0x143)]();if(this[_0xc50394(0x1e9)]>=this[_0xc50394(0x163)][_0xc50394(0x1d7)])this['\x77\x73']?.['\x63\x6c\x6f\x73\x65'](0xfa0,_0xc50394(0x1a0));},this[_0x37ad0f(0x163)][_0x37ad0f(0x1f3)]);}[a0_0x5a0755(0x184)](){const _0x2b0528=a0_0x5a0755;this['\x70\x6f\x6e\x67\x54\x69\x6d\x65\x6f\x75\x74']&&(clearTimeout(this[_0x2b0528(0x1da)]),this[_0x2b0528(0x1da)]=null);}[a0_0x5a0755(0x17f)](){const _0x1d7226=a0_0x5a0755,_0x1c24e9={'\x43\x7a\x52\x68\x47':function(_0x40b70c,_0x25c5ed){return _0x40b70c-_0x25c5ed;},'\x77\x74\x6a\x4f\x66':function(_0x590322,_0x1a8945){return _0x590322*_0x1a8945;},'\x72\x44\x51\x46\x4c':function(_0x48637b,_0x4532a,_0x4f1fbf){return _0x48637b(_0x4532a,_0x4f1fbf);}};if(this['\x72\x65\x63\x6f\x6e\x6e\x65\x63\x74\x54\x69\x6d\x65\x72'])return;this['\x72\x65\x63\x6f\x6e\x6e\x65\x63\x74\x41\x74\x74\x65\x6d\x70\x74\x73']++;const _0x39cedd=Math['\x6d\x69\x6e'](this[_0x1d7226(0x163)][_0x1d7226(0x126)]*0x2**_0x1c24e9[_0x1d7226(0x1ab)](this['\x72\x65\x63\x6f\x6e\x6e\x65\x63\x74\x41\x74\x74\x65\x6d\x70\x74\x73'],0x1),this[_0x1d7226(0x163)][_0x1d7226(0x134)]),_0x471ba6=_0x1c24e9[_0x1d7226(0x19a)](_0x1c24e9[_0x1d7226(0x19a)](_0x39cedd,0.3),Math[_0x1d7226(0x1d2)]()*0x2-0x1);this[_0x1d7226(0x198)]=_0x1c24e9[_0x1d7226(0x160)](setTimeout,()=>{const _0xdf4bdf=_0x1d7226;this['\x72\x65\x63\x6f\x6e\x6e\x65\x63\x74\x54\x69\x6d\x65\x72']=null,this[_0xdf4bdf(0x157)]();},_0x39cedd+_0x471ba6);}[a0_0x5a0755(0x148)](){const _0xbe193b=a0_0x5a0755,_0x1e2b40={'\x73\x77\x6e\x71\x49':function(_0x5eb2ae,_0x2fcd1e){return _0x5eb2ae(_0x2fcd1e);}};this['\x73\x74\x6f\x70\x50\x69\x6e\x67\x49\x6e\x74\x65\x72\x76\x61\x6c'](),this[_0xbe193b(0x184)]();this['\x72\x65\x63\x6f\x6e\x6e\x65\x63\x74\x54\x69\x6d\x65\x72']&&(_0x1e2b40[_0xbe193b(0x1d8)](clearTimeout,this[_0xbe193b(0x198)]),this[_0xbe193b(0x198)]=null);for(const [_0xc86d57,_0x1ed5a1]of this[_0xbe193b(0x1c8)]){_0x1ed5a1[_0xbe193b(0x1de)](new Error(_0xbe193b(0x12a))),this['\x70\x65\x6e\x64\x69\x6e\x67\x43\x61\x6c\x6c\x62\x61\x63\x6b\x73'][_0xbe193b(0x1c6)](_0xc86d57);}}[a0_0x5a0755(0x145)](_0x3e39a1,_0x2ef8a6){const _0x4e5480=a0_0x5a0755,_0xfe6ea=this[_0x4e5480(0x130)][_0x4e5480(0x1fc)]>0x0?this[_0x4e5480(0x130)][_0x4e5480(0x196)]((_0x3632a4,_0x41174e)=>_0x3632a4+_0x41174e,0x0)/this[_0x4e5480(0x130)][_0x4e5480(0x1fc)]:null;this[_0x4e5480(0x175)]={...this[_0x4e5480(0x175)],'\x6c\x61\x73\x74\x50\x69\x6e\x67\x4c\x61\x74\x65\x6e\x63\x79\x4d\x73':_0x3e39a1,'\x61\x76\x67\x50\x69\x6e\x67\x4c\x61\x74\x65\x6e\x63\x79\x4d\x73':_0xfe6ea,'\x6d\x69\x73\x73\x65\x64\x50\x6f\x6e\x67\x43\x6f\x75\x6e\x74':this[_0x4e5480(0x1e9)],'\x6c\x61\x73\x74\x50\x6f\x6e\x67\x41\x74':_0x2ef8a6},this[_0x4e5480(0x143)]();}[a0_0x5a0755(0x143)](){const _0x973877=a0_0x5a0755,_0x1c4ac8={'\x6b\x74\x76\x78\x73':function(_0x9fcf13,_0x1bfddd){return _0x9fcf13!==_0x1bfddd;}},_0x1cca6b=this[_0x973877(0x164)]===_0x973877(0x133),_0x4f7d2e=calculateConnectionQuality(this[_0x973877(0x175)],_0x1cca6b);_0x1c4ac8[_0x973877(0x1fe)](this['\x63\x6f\x6e\x6e\x65\x63\x74\x69\x6f\x6e\x4d\x65\x74\x72\x69\x63\x73'][_0x973877(0x18a)],_0x4f7d2e)&&(this[_0x973877(0x175)]={...this[_0x973877(0x175)],'\x71\x75\x61\x6c\x69\x74\x79':_0x4f7d2e},this[_0x973877(0x1b4)]['\x6f\x6e\x4d\x65\x74\x72\x69\x63\x73\x43\x68\x61\x6e\x67\x65']?.(this[_0x973877(0x175)]));}[a0_0x5a0755(0x1c9)](){const _0x980d6c=a0_0x5a0755,_0x128886={'\x59\x56\x54\x45\x44':function(_0x3cb2ab,_0x3612cb){return _0x3cb2ab+_0x3612cb;}},_0x2ad310=Date[_0x980d6c(0x17a)]();this[_0x980d6c(0x175)]={...this[_0x980d6c(0x175)],'\x72\x65\x63\x6f\x6e\x6e\x65\x63\x74\x43\x6f\x75\x6e\x74':_0x128886[_0x980d6c(0x1c3)](this[_0x980d6c(0x175)][_0x980d6c(0x1e4)],0x1),'\x6c\x61\x73\x74\x52\x65\x63\x6f\x6e\x6e\x65\x63\x74\x41\x74':_0x2ad310},this[_0x980d6c(0x130)]=[],this[_0x980d6c(0x143)]();}['\x6c\x6f\x61\x64\x52\x65\x70\x6c\x61\x79\x53\x74\x61\x74\x65'](){const _0x13d4b6=a0_0x5a0755;if(!this['\x63\x6f\x6e\x66\x69\x67'][_0x13d4b6(0x1c1)])return;const _0x531a73=this[_0x13d4b6(0x163)][_0x13d4b6(0x166)];try{this[_0x13d4b6(0x1ad)]=this['\x63\x6f\x6e\x66\x69\x67'][_0x13d4b6(0x1a1)][_0x13d4b6(0x197)](_0x531a73+STORAGE_KEYS[_0x13d4b6(0x1ad)]),this['\x63\x75\x72\x72\x65\x6e\x74\x45\x78\x65\x63\x75\x74\x69\x6f\x6e\x49\x64']=this[_0x13d4b6(0x163)][_0x13d4b6(0x1a1)][_0x13d4b6(0x197)](_0x531a73+STORAGE_KEYS[_0x13d4b6(0x161)]),this['\x63\x75\x72\x72\x65\x6e\x74\x53\x65\x73\x73\x69\x6f\x6e\x49\x64']=this[_0x13d4b6(0x163)][_0x13d4b6(0x1a1)][_0x13d4b6(0x197)](_0x531a73+STORAGE_KEYS[_0x13d4b6(0x1f6)]);}catch{}}['\x73\x61\x76\x65\x52\x65\x70\x6c\x61\x79\x53\x74\x61\x74\x65'](){const _0x5531f1=a0_0x5a0755,_0x5809b9={'\x51\x59\x50\x76\x4a':function(_0x201a4a,_0x25c608){return _0x201a4a+_0x25c608;},'\x65\x6c\x4b\x62\x64':function(_0x1b4113,_0x29a4fa){return _0x1b4113+_0x29a4fa;},'\x74\x64\x4a\x49\x56':function(_0x5b929c,_0xdf8a1d){return _0x5b929c+_0xdf8a1d;}};if(!this['\x63\x6f\x6e\x66\x69\x67'][_0x5531f1(0x1c1)])return;const _0x20d2e1=this['\x63\x6f\x6e\x66\x69\x67'][_0x5531f1(0x166)];try{if(this[_0x5531f1(0x1ad)])this['\x63\x6f\x6e\x66\x69\x67']['\x72\x65\x70\x6c\x61\x79\x53\x74\x6f\x72\x61\x67\x65'][_0x5531f1(0x19b)](_0x5809b9[_0x5531f1(0x15f)](_0x20d2e1,STORAGE_KEYS['\x6c\x61\x73\x74\x45\x76\x65\x6e\x74\x49\x64']),this[_0x5531f1(0x1ad)]);if(this['\x63\x75\x72\x72\x65\x6e\x74\x45\x78\x65\x63\x75\x74\x69\x6f\x6e\x49\x64'])this['\x63\x6f\x6e\x66\x69\x67'][_0x5531f1(0x1a1)][_0x5531f1(0x19b)](_0x5809b9[_0x5531f1(0x1e0)](_0x20d2e1,STORAGE_KEYS[_0x5531f1(0x161)]),this[_0x5531f1(0x18c)]);if(this['\x63\x75\x72\x72\x65\x6e\x74\x53\x65\x73\x73\x69\x6f\x6e\x49\x64'])this['\x63\x6f\x6e\x66\x69\x67']['\x72\x65\x70\x6c\x61\x79\x53\x74\x6f\x72\x61\x67\x65']['\x73\x65\x74\x49\x74\x65\x6d'](_0x5809b9['\x74\x64\x4a\x49\x56'](_0x20d2e1,STORAGE_KEYS[_0x5531f1(0x1f6)]),this[_0x5531f1(0x1f4)]);}catch{}}};export{INITIAL_METRICS,SessionGatewayClient,calculateConnectionQuality};
1
+ function a0_0xac02(_0x55aa89,_0x3f25bb){_0x55aa89=_0x55aa89-0x17f;const _0xd60c6d=a0_0xd60c();let _0xac02b7=_0xd60c6d[_0x55aa89];if(a0_0xac02['\x48\x65\x66\x53\x6e\x72']===undefined){var _0x145bbf=function(_0x1797d0){const _0x257691='\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 _0x24b0ac='',_0x36c8cc='';for(let _0x412add=0x0,_0x11b261,_0x33e85a,_0x57117e=0x0;_0x33e85a=_0x1797d0['\x63\x68\x61\x72\x41\x74'](_0x57117e++);~_0x33e85a&&(_0x11b261=_0x412add%0x4?_0x11b261*0x40+_0x33e85a:_0x33e85a,_0x412add++%0x4)?_0x24b0ac+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0xff&_0x11b261>>(-0x2*_0x412add&0x6)):0x0){_0x33e85a=_0x257691['\x69\x6e\x64\x65\x78\x4f\x66'](_0x33e85a);}for(let _0x48df18=0x0,_0x3d927d=_0x24b0ac['\x6c\x65\x6e\x67\x74\x68'];_0x48df18<_0x3d927d;_0x48df18++){_0x36c8cc+='\x25'+('\x30\x30'+_0x24b0ac['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x48df18)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x10))['\x73\x6c\x69\x63\x65'](-0x2);}return decodeURIComponent(_0x36c8cc);};a0_0xac02['\x4f\x48\x61\x4e\x73\x48']=_0x145bbf,a0_0xac02['\x4f\x67\x72\x49\x66\x62']={},a0_0xac02['\x48\x65\x66\x53\x6e\x72']=!![];}const _0x3e22ce=_0xd60c6d[0x0],_0x4f4aa0=_0x55aa89+_0x3e22ce,_0x5869a9=a0_0xac02['\x4f\x67\x72\x49\x66\x62'][_0x4f4aa0];return!_0x5869a9?(_0xac02b7=a0_0xac02['\x4f\x48\x61\x4e\x73\x48'](_0xac02b7),a0_0xac02['\x4f\x67\x72\x49\x66\x62'][_0x4f4aa0]=_0xac02b7):_0xac02b7=_0x5869a9,_0xac02b7;}const a0_0x51a297=a0_0xac02;(function(_0x504437,_0x5321e7){const _0x56f011=a0_0xac02,_0x4deef6=_0x504437();while(!![]){try{const _0x22f6c0=parseInt(_0x56f011(0x249))/0x1*(-parseInt(_0x56f011(0x1ee))/0x2)+parseInt(_0x56f011(0x22d))/0x3+parseInt(_0x56f011(0x1a7))/0x4+parseInt(_0x56f011(0x1e4))/0x5+-parseInt(_0x56f011(0x1d8))/0x6*(parseInt(_0x56f011(0x24d))/0x7)+parseInt(_0x56f011(0x1fc))/0x8+parseInt(_0x56f011(0x1c0))/0x9*(-parseInt(_0x56f011(0x228))/0xa);if(_0x22f6c0===_0x5321e7)break;else _0x4deef6['push'](_0x4deef6['shift']());}catch(_0x4682ea){_0x4deef6['push'](_0x4deef6['shift']());}}}(a0_0xd60c,0x795f2));const INITIAL_METRICS={'\x6c\x61\x73\x74\x50\x69\x6e\x67\x4c\x61\x74\x65\x6e\x63\x79\x4d\x73':null,'\x61\x76\x67\x50\x69\x6e\x67\x4c\x61\x74\x65\x6e\x63\x79\x4d\x73':null,'\x6d\x69\x73\x73\x65\x64\x50\x6f\x6e\x67\x43\x6f\x75\x6e\x74':0x0,'\x72\x65\x63\x6f\x6e\x6e\x65\x63\x74\x43\x6f\x75\x6e\x74':0x0,'\x6c\x61\x73\x74\x50\x6f\x6e\x67\x41\x74':null,'\x6c\x61\x73\x74\x52\x65\x63\x6f\x6e\x6e\x65\x63\x74\x41\x74':null,'\x71\x75\x61\x6c\x69\x74\x79':a0_0x51a297(0x227)};function calculateConnectionQuality(_0x2febef,_0x5988e8){const _0x34cda2=a0_0x51a297,_0x52f924={'\x6c\x41\x73\x73\x6a':function(_0x59e7ec,_0x56ed6d){return _0x59e7ec-_0x56ed6d;},'\x58\x73\x73\x78\x51':function(_0x4fc0ff,_0x4ed60b){return _0x4fc0ff>_0x4ed60b;},'\x6d\x59\x41\x6d\x73':function(_0x5afce2,_0x461f0f){return _0x5afce2!==_0x461f0f;},'\x61\x6e\x76\x6e\x68':function(_0x541b55,_0x4c80e1){return _0x541b55<_0x4c80e1;},'\x4c\x63\x72\x73\x6f':function(_0x902975,_0x9e19b1){return _0x902975===_0x9e19b1;},'\x4c\x42\x67\x64\x4a':_0x34cda2(0x1ab),'\x44\x48\x77\x57\x6f':function(_0x2dc4a4,_0x44c835){return _0x2dc4a4<=_0x44c835;},'\x52\x44\x4f\x78\x69':_0x34cda2(0x241)};if(!_0x5988e8)return _0x34cda2(0x227);const {avgPingLatencyMs:_0x56eb7d,missedPongCount:_0x15b51b,reconnectCount:_0x3f3d03,lastReconnectAt:_0x34be35}=_0x2febef,_0x37d527=_0x34be35&&_0x52f924['\x6c\x41\x73\x73\x6a'](Date[_0x34cda2(0x225)](),_0x34be35)<0x12c*0x3e8;if(_0x15b51b>=0x2||_0x37d527&&_0x52f924['\x58\x73\x73\x78\x51'](_0x3f3d03,0x1))return _0x34cda2(0x19b);if(_0x15b51b>=0x1||_0x52f924[_0x34cda2(0x222)](_0x56eb7d,null)&&_0x56eb7d>0x3e8||_0x37d527)return _0x34cda2(0x204);if(_0x52f924[_0x34cda2(0x222)](_0x56eb7d,null)&&_0x52f924[_0x34cda2(0x1d0)](_0x56eb7d,0x64)&&_0x52f924[_0x34cda2(0x244)](_0x3f3d03,0x0))return _0x52f924[_0x34cda2(0x1f2)];if(_0x56eb7d!==null&&_0x52f924[_0x34cda2(0x181)](_0x56eb7d,0x12c))return _0x52f924['\x52\x44\x4f\x78\x69'];return _0x34cda2(0x241);}function a0_0xd60c(){const _0x1f146a=['\x76\x67\x39\x52\x7a\x77\x34\x47\x43\x4d\x76\x4d\x43\x4d\x76\x5a\x41\x63\x62\x4d\x79\x77\x4c\x53\x7a\x77\x71\x36\x69\x61','\x79\x32\x39\x55\x42\x4d\x76\x4a\x44\x67\x76\x4b\x71\x78\x71','\x7a\x68\x76\x57\x42\x67\x4c\x4a\x79\x78\x72\x4c\x43\x31\x6e\x52\x41\x78\x62\x57\x7a\x77\x71','\x79\x32\x58\x4c\x79\x78\x69','\x43\x32\x76\x30\x75\x32\x76\x5a\x43\x32\x4c\x56\x42\x4b\x6e\x56\x42\x4e\x72\x4c\x45\x68\x71','\x79\x32\x39\x55\x42\x4d\x76\x4a\x44\x67\x76\x4b','\x6d\x4d\x58\x67\x77\x76\x72\x4f\x43\x61','\x43\x67\x66\x59\x43\x32\x75','\x43\x4e\x76\x55\x44\x67\x4c\x54\x7a\x73\x35\x4b\x41\x78\x6e\x4a\x42\x32\x35\x55\x7a\x77\x6e\x30\x7a\x77\x71','\x43\x32\x76\x30\x75\x33\x72\x48\x44\x67\x75','\x74\x65\x6a\x4e\x7a\x65\x4f','\x74\x31\x62\x66\x74\x47','\x43\x32\x6e\x4f\x7a\x77\x72\x31\x42\x67\x76\x73\x7a\x77\x6e\x56\x42\x4d\x35\x4c\x79\x33\x71','\x42\x77\x66\x34\x72\x67\x76\x4b\x44\x78\x62\x53\x41\x77\x6e\x48\x44\x67\x4c\x56\x42\x4c\x6e\x50\x45\x4d\x75','\x43\x68\x6a\x56\x79\x32\x76\x5a\x43\x30\x35\x48\x42\x77\x75','\x42\x77\x76\x5a\x43\x32\x66\x4e\x7a\x76\x72\x35\x43\x67\x75','\x79\x32\x48\x48\x42\x4d\x35\x4c\x42\x68\x6d','\x41\x75\x39\x65\x43\x76\x75','\x44\x77\x35\x4b\x7a\x77\x7a\x50\x42\x4d\x76\x4b','\x41\x77\x35\x50\x44\x67\x4c\x48\x42\x66\x6a\x4c\x79\x32\x39\x55\x42\x4d\x76\x4a\x44\x65\x72\x4c\x42\x67\x66\x35\x74\x78\x6d','\x6d\x4a\x47\x35\x6e\x74\x4b\x59\x75\x4b\x50\x78\x71\x76\x62\x50','\x43\x67\x4c\x55\x7a\x30\x58\x48\x44\x67\x76\x55\x79\x33\x4c\x69\x41\x78\x6e\x30\x42\x33\x6a\x35','\x7a\x4d\x58\x56\x42\x33\x69','\x79\x32\x58\x56\x43\x32\x75','\x42\x67\x66\x5a\x44\x66\x62\x50\x42\x4d\x44\x62\x44\x61','\x43\x4e\x76\x55\x44\x67\x4c\x54\x7a\x73\x35\x59\x7a\x77\x66\x4b\x45\x71','\x43\x32\x76\x48\x43\x4d\x6e\x4f\x75\x67\x66\x59\x79\x77\x31\x5a','\x43\x32\x76\x5a\x43\x32\x4c\x56\x42\x4c\x39\x4e\x79\x78\x72\x4c\x44\x32\x66\x35\x78\x57','\x7a\x67\x76\x4e\x43\x4d\x66\x4b\x7a\x77\x71','\x7a\x67\x54\x35\x43\x78\x43','\x7a\x67\x4c\x5a\x79\x32\x39\x55\x42\x4d\x76\x4a\x44\x61','\x43\x4d\x76\x57\x42\x67\x66\x35\x75\x33\x72\x56\x43\x4d\x66\x4e\x7a\x75\x54\x4c\x45\x76\x62\x59\x7a\x77\x7a\x50\x45\x61','\x43\x4d\x76\x57\x42\x67\x66\x35\x75\x33\x72\x56\x43\x4d\x66\x4e\x7a\x71','\x43\x4e\x76\x55\x44\x67\x4c\x54\x7a\x73\x35\x55\x42\x33\x72\x46\x7a\x4d\x39\x31\x42\x4d\x71','\x42\x32\x35\x73\x7a\x78\x62\x53\x79\x78\x4c\x71\x43\x4d\x39\x4e\x43\x4d\x76\x5a\x43\x57','\x43\x67\x39\x55\x7a\x31\x72\x50\x42\x77\x76\x56\x44\x78\x71','\x43\x32\x76\x55\x7a\x66\x72\x4c\x43\x4d\x31\x50\x42\x4d\x66\x53\x73\x77\x35\x57\x44\x78\x71','\x44\x67\x39\x30\x79\x77\x57','\x41\x78\x6e\x73\x7a\x78\x62\x53\x79\x78\x4c\x50\x42\x4d\x43','\x43\x4d\x76\x57\x42\x67\x66\x35\x6c\x4e\x62\x59\x42\x32\x44\x59\x7a\x78\x6e\x5a','\x7a\x32\x76\x30\x76\x67\x39\x52\x7a\x77\x34','\x78\x31\x39\x30\x7a\x78\x6e\x30\x78\x31\x38','\x7a\x32\x76\x30\x73\x78\x72\x4c\x42\x71','\x71\x32\x39\x55\x42\x4d\x76\x4a\x44\x67\x4c\x56\x42\x49\x62\x4a\x42\x67\x39\x5a\x7a\x77\x71','\x79\x33\x76\x59\x43\x4d\x76\x55\x44\x66\x6e\x4c\x43\x33\x6e\x50\x42\x32\x35\x6a\x7a\x61','\x44\x77\x35\x5a\x44\x77\x6a\x5a\x79\x33\x6a\x50\x79\x4d\x75','\x43\x4d\x76\x5a\x7a\x78\x72\x6e\x7a\x78\x72\x59\x41\x77\x6e\x5a','\x43\x32\x76\x5a\x43\x32\x4c\x56\x42\x4b\x4c\x4b','\x43\x32\x76\x55\x7a\x66\x44\x50\x44\x67\x48\x73\x7a\x78\x6e\x57\x42\x32\x35\x5a\x7a\x71','\x42\x32\x35\x64\x42\x32\x35\x55\x7a\x77\x6e\x30','\x43\x32\x76\x30\x73\x78\x72\x4c\x42\x71','\x41\x67\x66\x55\x7a\x67\x58\x4c\x74\x33\x62\x4c\x42\x47','\x79\x32\x39\x55\x44\x67\x66\x50\x42\x4d\x76\x59\x73\x77\x71','\x42\x32\x35\x4a\x42\x67\x39\x5a\x7a\x71','\x44\x68\x6a\x48\x79\x32\x54\x73\x7a\x77\x6e\x56\x42\x4d\x35\x4c\x79\x33\x72\x50\x42\x32\x34','\x43\x67\x39\x59\x44\x63\x35\x4a\x42\x67\x39\x5a\x7a\x77\x71','\x42\x67\x66\x5a\x44\x65\x76\x32\x7a\x77\x35\x30\x73\x77\x71','\x79\x77\x44\x4c\x42\x4e\x71\x55\x7a\x78\x7a\x4c\x42\x4e\x71','\x42\x76\x4c\x62\x42\x78\x6d','\x41\x67\x66\x55\x7a\x67\x58\x4c\x75\x67\x39\x55\x7a\x57','\x7a\x67\x76\x53\x7a\x78\x72\x4c','\x42\x4d\x39\x33','\x42\x32\x35\x4c\x43\x4e\x6a\x56\x43\x47','\x7a\x67\x4c\x5a\x79\x32\x39\x55\x42\x4d\x76\x4a\x44\x67\x76\x4b','\x6e\x4a\x69\x30\x6d\x74\x62\x41\x71\x77\x35\x62\x74\x30\x57','\x7a\x77\x35\x48\x79\x4d\x58\x4c\x72\x67\x76\x4b\x44\x78\x62\x53\x41\x77\x6e\x48\x44\x67\x4c\x56\x42\x47','\x43\x32\x76\x58\x44\x77\x76\x55\x79\x32\x76\x6a\x7a\x61','\x42\x32\x35\x66\x43\x4e\x6a\x56\x43\x47','\x41\x78\x6e\x73\x7a\x77\x7a\x59\x7a\x78\x6e\x4f\x41\x77\x35\x4e\x76\x67\x39\x52\x7a\x77\x34','\x6d\x4a\x6d\x59\x6e\x4a\x65\x5a\x6e\x30\x50\x4c\x7a\x76\x44\x78\x71\x71','\x42\x67\x66\x5a\x44\x66\x62\x50\x42\x4d\x44\x74\x7a\x77\x35\x30\x71\x78\x71','\x43\x4d\x76\x5a\x42\x32\x58\x32\x7a\x71','\x7a\x32\x76\x30\x75\x33\x72\x48\x44\x67\x75','\x79\x32\x58\x4c\x79\x77\x35\x31\x43\x61','\x7a\x78\x7a\x4c\x42\x4e\x72\x5a\x75\x4d\x76\x4a\x7a\x77\x4c\x32\x7a\x77\x71','\x42\x32\x35\x64\x42\x32\x35\x30\x79\x77\x4c\x55\x7a\x78\x6a\x73\x7a\x77\x66\x4b\x45\x71','\x79\x32\x39\x4b\x7a\x71','\x41\x78\x6e\x64\x42\x32\x35\x55\x7a\x77\x6e\x30\x7a\x77\x71','\x45\x66\x6e\x51\x44\x78\x65','\x41\x67\x66\x55\x7a\x67\x58\x4c\x71\x32\x58\x56\x43\x32\x75','\x43\x67\x4c\x55\x7a\x30\x4c\x55\x44\x67\x76\x59\x44\x4d\x66\x53','\x7a\x78\x48\x4c\x79\x33\x76\x30\x41\x77\x39\x55\x78\x32\x4c\x4b','\x43\x32\x76\x55\x7a\x66\x62\x50\x42\x4d\x43','\x42\x67\x66\x5a\x44\x66\x39\x4c\x44\x4d\x76\x55\x44\x66\x39\x50\x7a\x61','\x79\x4d\x66\x5a\x7a\x76\x76\x59\x42\x61','\x43\x33\x72\x56\x43\x66\x62\x50\x42\x4d\x44\x6a\x42\x4e\x72\x4c\x43\x4e\x7a\x48\x42\x61','\x41\x68\x4c\x57\x74\x75\x75','\x79\x4e\x6a\x72\x79\x32\x69','\x42\x77\x66\x34\x75\x4d\x76\x4a\x42\x32\x35\x55\x7a\x77\x6e\x30\x72\x67\x76\x53\x79\x78\x4c\x6e\x43\x57','\x7a\x32\x39\x56\x7a\x61','\x42\x78\x6e\x4e\x78\x57','\x43\x4d\x76\x57\x42\x67\x66\x35\x6c\x4e\x6e\x30\x79\x78\x6a\x30','\x74\x67\x6e\x59\x43\x32\x38','\x76\x67\x39\x52\x7a\x77\x34\x47\x43\x4d\x76\x4d\x43\x4d\x76\x5a\x41\x67\x76\x4b','\x43\x67\x39\x55\x7a\x57','\x41\x67\x31\x67\x72\x4d\x47','\x42\x77\x76\x5a\x43\x32\x66\x4e\x7a\x71','\x6d\x74\x79\x57\x6d\x64\x71\x30\x44\x76\x6a\x48\x42\x4e\x6e\x55','\x42\x77\x4c\x55','\x41\x67\x66\x5a\x71\x32\x39\x55\x42\x4d\x76\x4a\x44\x67\x76\x4b\x71\x4d\x76\x4d\x42\x33\x6a\x4c','\x43\x67\x4c\x55\x7a\x30\x4c\x55\x44\x67\x76\x59\x44\x4d\x66\x53\x74\x78\x6d','\x6e\x4a\x71\x31\x6f\x64\x69\x35\x6d\x75\x76\x72\x41\x4c\x44\x71\x41\x71','\x43\x67\x39\x59\x44\x61','\x7a\x78\x48\x4c\x79\x33\x76\x30\x41\x77\x39\x55\x73\x77\x71','\x7a\x32\x76\x30\x75\x33\x72\x48\x44\x68\x6d','\x79\x32\x39\x55\x42\x4d\x76\x4a\x44\x67\x4c\x55\x7a\x57','\x43\x32\x76\x5a\x43\x32\x4c\x56\x42\x4c\x39\x50\x7a\x61','\x79\x33\x76\x59\x43\x4d\x76\x55\x44\x65\x76\x34\x7a\x77\x6e\x31\x44\x67\x4c\x56\x42\x4b\x4c\x4b','\x7a\x67\x4c\x5a\x43\x67\x66\x30\x79\x32\x48\x6e\x7a\x78\x6e\x5a\x79\x77\x44\x4c','\x42\x32\x35\x75\x42\x32\x54\x4c\x42\x4b\x76\x34\x43\x67\x4c\x59\x7a\x77\x71','\x43\x4d\x76\x4a\x42\x32\x35\x55\x7a\x77\x6e\x30\x76\x67\x4c\x54\x7a\x78\x69','\x42\x32\x35\x73\x44\x77\x35\x30\x41\x77\x31\x4c\x75\x4d\x76\x48\x7a\x68\x4b','\x7a\x77\x35\x48\x79\x4d\x58\x4c\x75\x4d\x76\x57\x42\x67\x66\x35\x75\x67\x76\x59\x43\x32\x4c\x5a\x44\x67\x76\x55\x79\x32\x75','\x42\x67\x66\x5a\x44\x66\x62\x56\x42\x4d\x44\x62\x44\x61','\x42\x77\x66\x34\x74\x77\x4c\x5a\x43\x32\x76\x4b\x75\x67\x39\x55\x7a\x33\x6d','\x79\x4b\x72\x33\x77\x67\x53','\x7a\x32\x76\x30\x71\x32\x39\x55\x42\x4d\x76\x4a\x44\x67\x4c\x56\x42\x4c\x66\x31\x79\x77\x58\x50\x44\x68\x4b','\x42\x77\x4c\x5a\x43\x32\x76\x4b\x75\x67\x39\x55\x7a\x30\x6e\x56\x44\x77\x35\x30','\x42\x32\x35\x75\x42\x32\x54\x4c\x42\x4c\x6a\x4c\x7a\x4e\x6a\x4c\x43\x32\x47','\x7a\x32\x76\x30\x75\x4d\x76\x57\x42\x67\x66\x35\x75\x33\x72\x48\x44\x67\x75','\x73\x78\x6a\x4b\x42\x30\x43','\x42\x77\x76\x5a\x43\x32\x66\x4e\x7a\x78\x6e\x74\x7a\x77\x35\x30','\x74\x65\x6e\x41\x42\x75\x47','\x42\x32\x35\x73\x44\x77\x35\x30\x41\x77\x31\x4c\x74\x4d\x39\x30\x72\x4d\x39\x31\x42\x4d\x71','\x73\x4b\x58\x48\x42\x4c\x6d','\x79\x32\x48\x48\x42\x4d\x35\x4c\x42\x61','\x7a\x32\x76\x30','\x79\x32\x58\x4c\x79\x78\x6a\x73\x7a\x78\x62\x53\x79\x78\x4c\x74\x44\x67\x66\x30\x7a\x71','\x43\x4d\x76\x4a\x42\x32\x35\x55\x7a\x77\x6e\x30\x71\x32\x39\x31\x42\x4e\x71','\x44\x32\x66\x36\x77\x78\x43','\x43\x32\x4c\x4b\x7a\x77\x6e\x48\x43\x4b\x4c\x4b','\x44\x78\x62\x4b\x79\x78\x72\x4c\x71\x32\x39\x55\x42\x4d\x76\x4a\x44\x67\x4c\x56\x42\x4c\x66\x31\x79\x77\x58\x50\x44\x68\x4b','\x43\x4d\x76\x57\x42\x67\x66\x35\x6c\x4d\x6e\x56\x42\x78\x62\x53\x7a\x78\x72\x4c','\x43\x32\x48\x50\x7a\x4e\x71','\x42\x32\x35\x73\x7a\x77\x6e\x56\x42\x4d\x35\x4c\x79\x33\x71','\x79\x78\x76\x30\x42\x31\x6a\x4c\x79\x32\x39\x55\x42\x4d\x76\x4a\x44\x61','\x42\x32\x6a\x51\x7a\x77\x6e\x30','\x72\x65\x48\x33\x76\x32\x38','\x41\x32\x76\x35\x43\x57','\x43\x32\x76\x55\x7a\x61','\x79\x76\x6e\x32\x41\x68\x47','\x43\x4e\x76\x55\x44\x67\x4c\x54\x7a\x73\x35\x4a\x42\x32\x35\x55\x7a\x77\x6e\x30\x7a\x77\x71','\x43\x4d\x76\x4a\x7a\x77\x4c\x32\x7a\x77\x71','\x43\x4d\x76\x48\x7a\x68\x4c\x74\x44\x67\x66\x30\x7a\x71','\x42\x32\x35\x56\x43\x67\x76\x55','\x42\x32\x35\x63\x79\x77\x6e\x52\x43\x68\x6a\x4c\x43\x33\x6e\x31\x43\x4d\x76\x78\x79\x78\x6a\x55\x41\x77\x35\x4e','\x42\x77\x66\x34\x75\x4d\x76\x4a\x42\x32\x35\x55\x7a\x77\x6e\x30\x71\x78\x72\x30\x7a\x77\x31\x57\x44\x68\x6d','\x75\x67\x39\x55\x7a\x59\x62\x30\x41\x77\x31\x4c\x42\x33\x76\x30\x69\x63\x30\x47\x79\x32\x39\x55\x42\x4d\x76\x4a\x44\x67\x4c\x56\x42\x49\x62\x31\x42\x4e\x6a\x4c\x43\x33\x62\x56\x42\x4e\x6e\x50\x44\x4d\x75','\x79\x4d\x66\x4a\x41\x33\x62\x59\x7a\x78\x6e\x5a\x44\x78\x6a\x4c\x6c\x4e\x44\x48\x43\x4d\x35\x50\x42\x4d\x43','\x42\x32\x35\x6e\x7a\x78\x72\x59\x41\x77\x6e\x5a\x71\x32\x48\x48\x42\x4d\x44\x4c','\x72\x4c\x76\x52\x71\x77\x30','\x44\x78\x62\x4b\x79\x78\x72\x4c\x76\x67\x39\x52\x7a\x77\x34','\x44\x78\x6a\x53','\x76\x65\x39\x6c\x72\x75\x35\x46\x75\x4b\x76\x67\x75\x4b\x76\x74\x73\x66\x39\x67\x71\x75\x4c\x6d\x72\x75\x71','\x41\x67\x66\x5a','\x44\x67\x39\x52\x7a\x77\x34\x55\x7a\x78\x48\x57\x41\x78\x6a\x4c\x7a\x61','\x43\x4d\x66\x55\x7a\x67\x39\x54','\x79\x32\x39\x55\x44\x67\x66\x50\x42\x4d\x76\x59\x6c\x4e\x6a\x4c\x79\x77\x72\x35\x69\x67\x76\x32\x7a\x77\x35\x30\x69\x68\x6a\x4c\x79\x32\x76\x50\x44\x4d\x76\x4b\x69\x68\x44\x50\x44\x67\x48\x56\x44\x78\x71\x47\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x65\x4c\x4b','\x72\x4d\x6e\x63\x44\x4d\x65','\x43\x4d\x76\x57\x42\x67\x66\x35\x75\x68\x6a\x56\x7a\x33\x6a\x4c\x43\x33\x6d','\x43\x68\x6a\x56\x44\x67\x39\x4a\x42\x32\x57','\x43\x4d\x76\x5a\x44\x67\x39\x59\x7a\x76\x6e\x31\x79\x4e\x6e\x4a\x43\x4d\x4c\x57\x44\x67\x4c\x56\x42\x4e\x6d','\x74\x76\x50\x58\x76\x4b\x65','\x43\x67\x39\x56\x43\x47','\x79\x32\x39\x55\x44\x67\x66\x50\x42\x4d\x76\x59\x6c\x4e\x6a\x4c\x79\x77\x72\x35','\x79\x33\x76\x59\x43\x4d\x76\x55\x44\x66\x72\x56\x41\x32\x76\x55','\x43\x4d\x76\x51\x7a\x77\x6e\x30','\x44\x66\x66\x4c\x41\x65\x47','\x44\x67\x39\x74\x44\x68\x6a\x50\x42\x4d\x43','\x44\x68\x6a\x48\x42\x4e\x6e\x57\x42\x33\x6a\x30','\x43\x32\x76\x4a\x42\x32\x35\x4b\x43\x31\x6a\x4c\x42\x77\x66\x50\x42\x4d\x4c\x55\x7a\x57','\x43\x68\x76\x5a\x41\x61','\x75\x4d\x44\x4b\x7a\x68\x47','\x43\x4d\x76\x54\x42\x33\x7a\x4c\x73\x78\x72\x4c\x42\x71','\x73\x68\x76\x6b\x71\x77\x43','\x6d\x74\x69\x31\x6d\x64\x71\x5a\x6d\x4d\x66\x35\x42\x32\x6e\x6b\x74\x61','\x7a\x30\x31\x49\x71\x4d\x57','\x44\x78\x62\x4b\x79\x78\x72\x4c\x71\x32\x39\x55\x42\x4d\x76\x4a\x44\x67\x4c\x56\x42\x4b\x31\x4c\x44\x68\x6a\x50\x79\x33\x6d','\x44\x68\x4c\x57\x7a\x71','\x7a\x78\x48\x4a\x7a\x77\x58\x53\x7a\x77\x35\x30','\x43\x32\x4c\x55\x79\x32\x75','\x43\x33\x72\x48\x44\x67\x75','\x43\x68\x6a\x56\x79\x32\x76\x5a\x43\x32\x76\x4b\x72\x78\x7a\x4c\x42\x4e\x72\x6a\x7a\x68\x6d','\x44\x32\x54\x67\x41\x66\x79','\x41\x78\x50\x65\x74\x32\x69','\x43\x4d\x76\x4a\x42\x32\x35\x55\x7a\x77\x6e\x30\x71\x78\x72\x30\x7a\x77\x31\x57\x44\x68\x6d','\x43\x32\x66\x32\x7a\x76\x6a\x4c\x43\x67\x58\x48\x45\x76\x6e\x30\x79\x78\x72\x4c','\x7a\x67\x66\x30\x79\x71','\x43\x67\x4c\x55\x7a\x57','\x41\x4e\x66\x48\x42\x4c\x65','\x44\x31\x4c\x56\x79\x4c\x69','\x43\x32\x76\x30','\x41\x67\x66\x55\x7a\x67\x58\x4c\x74\x77\x76\x5a\x43\x32\x66\x4e\x7a\x71','\x43\x67\x76\x55\x7a\x67\x4c\x55\x7a\x30\x6e\x48\x42\x67\x58\x49\x79\x77\x6e\x52\x43\x57','\x44\x67\x39\x52\x7a\x77\x34','\x44\x67\x76\x59\x42\x77\x4c\x55\x79\x77\x57\x55\x41\x77\x35\x57\x44\x78\x71','\x42\x32\x35\x62\x7a\x32\x76\x55\x44\x65\x76\x32\x7a\x77\x35\x30','\x43\x78\x76\x48\x42\x67\x4c\x30\x45\x71','\x43\x4d\x76\x48\x43\x32\x39\x55','\x75\x31\x50\x6f\x7a\x65\x6d','\x6e\x4a\x61\x5a\x79\x75\x58\x57\x43\x67\x76\x6a','\x43\x33\x76\x49\x43\x32\x6e\x59\x41\x77\x6a\x4c','\x74\x78\x6a\x67\x76\x66\x65','\x41\x4d\x7a\x34\x79\x4c\x61','\x79\x32\x39\x55\x42\x4d\x76\x4a\x44\x67\x4c\x56\x42\x4b\x31\x4c\x44\x68\x6a\x50\x79\x33\x6d','\x45\x4b\x7a\x4f\x76\x76\x65','\x79\x32\x39\x55\x42\x4d\x76\x4a\x44\x61','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x65\x4c\x4b','\x71\x32\x58\x50\x7a\x77\x35\x30\x69\x67\x72\x50\x43\x32\x6e\x56\x42\x4d\x35\x4c\x79\x33\x71','\x76\x78\x4c\x6c\x44\x66\x79','\x42\x32\x35\x74\x44\x67\x66\x30\x7a\x75\x6e\x4f\x79\x77\x35\x4e\x7a\x71','\x75\x4d\x76\x58\x44\x77\x76\x5a\x44\x63\x62\x30\x41\x77\x31\x4c\x42\x33\x76\x30','\x45\x4b\x4c\x54\x42\x32\x4f','\x7a\x68\x6a\x56\x43\x68\x62\x4c\x7a\x65\x6e\x56\x44\x77\x35\x30','\x43\x32\x4c\x36\x7a\x71','\x42\x32\x35\x75\x42\x32\x54\x4c\x42\x4b\x76\x34\x43\x67\x4c\x59\x41\x77\x35\x4e','\x79\x77\x35\x32\x42\x4d\x47','\x43\x67\x39\x55\x7a\x31\x72\x50\x42\x77\x76\x56\x44\x78\x72\x6e\x43\x57','\x7a\x78\x6a\x59\x42\x33\x69','\x79\x32\x58\x4c\x79\x78\x6a\x71\x42\x32\x35\x4e\x76\x67\x4c\x54\x7a\x77\x39\x31\x44\x61','\x42\x67\x66\x30\x7a\x77\x35\x4a\x45\x75\x48\x50\x43\x33\x72\x56\x43\x4e\x4c\x74\x41\x78\x50\x4c','\x42\x77\x76\x5a\x43\x32\x66\x4e\x7a\x78\x6e\x73\x7a\x77\x6e\x4c\x41\x78\x7a\x4c\x7a\x61','\x41\x76\x76\x59\x72\x33\x69','\x79\x32\x39\x55\x42\x4d\x76\x4a\x44\x66\x44\x4c\x79\x4c\x6e\x56\x79\x32\x54\x4c\x44\x61','\x6e\x4d\x58\x6f\x73\x4b\x54\x79\x42\x71','\x44\x33\x6a\x34\x73\x67\x6d','\x43\x33\x72\x48\x43\x4e\x72\x71\x41\x77\x35\x4e\x73\x77\x35\x30\x7a\x78\x6a\x32\x79\x77\x57','\x43\x33\x72\x56\x43\x4d\x75','\x41\x77\x35\x32\x79\x77\x58\x50\x7a\x66\x39\x57\x79\x78\x4c\x53\x42\x32\x66\x4b','\x42\x67\x76\x55\x7a\x33\x72\x4f','\x41\x67\x66\x55\x7a\x67\x58\x4c\x43\x4e\x6d','\x79\x32\x39\x55\x7a\x4d\x4c\x4e','\x72\x68\x72\x64\x41\x33\x47','\x43\x33\x72\x59\x41\x77\x35\x4e\x41\x77\x7a\x35','\x42\x67\x39\x48\x7a\x66\x6a\x4c\x43\x67\x58\x48\x45\x76\x6e\x30\x79\x78\x72\x4c','\x71\x30\x76\x6c\x7a\x68\x71','\x6e\x64\x6d\x32\x6f\x64\x43\x34\x6d\x68\x6e\x30\x44\x33\x48\x73\x72\x61','\x7a\x32\x58\x30\x41\x32\x4b','\x79\x32\x39\x55\x42\x4d\x76\x4a\x44\x67\x4c\x56\x42\x49\x35\x4c\x43\x33\x72\x48\x79\x4d\x58\x50\x43\x32\x48\x4c\x7a\x61','\x75\x30\x72\x65\x75\x33\x4f'];a0_0xd60c=function(){return _0x1f146a;};return a0_0xd60c();}const DEFAULT_CONFIG={'\x74\x72\x61\x6e\x73\x70\x6f\x72\x74':'\x77\x65\x62\x73\x6f\x63\x6b\x65\x74','\x63\x68\x61\x6e\x6e\x65\x6c\x73':['\x2a'],'\x61\x75\x74\x6f\x52\x65\x63\x6f\x6e\x6e\x65\x63\x74':!![],'\x6d\x61\x78\x52\x65\x63\x6f\x6e\x6e\x65\x63\x74\x41\x74\x74\x65\x6d\x70\x74\x73':0xa,'\x69\x6e\x69\x74\x69\x61\x6c\x52\x65\x63\x6f\x6e\x6e\x65\x63\x74\x44\x65\x6c\x61\x79\x4d\x73':0x3e8,'\x6d\x61\x78\x52\x65\x63\x6f\x6e\x6e\x65\x63\x74\x44\x65\x6c\x61\x79\x4d\x73':0x7530,'\x70\x69\x6e\x67\x49\x6e\x74\x65\x72\x76\x61\x6c\x4d\x73':0x7530,'\x70\x6f\x6e\x67\x54\x69\x6d\x65\x6f\x75\x74\x4d\x73':0x2710,'\x6d\x61\x78\x4d\x69\x73\x73\x65\x64\x50\x6f\x6e\x67\x73':0x2,'\x65\x6e\x61\x62\x6c\x65\x44\x65\x64\x75\x70\x6c\x69\x63\x61\x74\x69\x6f\x6e':!![],'\x6d\x61\x78\x44\x65\x64\x75\x70\x6c\x69\x63\x61\x74\x69\x6f\x6e\x53\x69\x7a\x65':0x3e8,'\x65\x6e\x61\x62\x6c\x65\x52\x65\x70\x6c\x61\x79\x50\x65\x72\x73\x69\x73\x74\x65\x6e\x63\x65':![],'\x72\x65\x70\x6c\x61\x79\x53\x74\x6f\x72\x61\x67\x65\x4b\x65\x79\x50\x72\x65\x66\x69\x78':a0_0x51a297(0x203),'\x6c\x61\x74\x65\x6e\x63\x79\x48\x69\x73\x74\x6f\x72\x79\x53\x69\x7a\x65':0xa},STORAGE_KEYS={'\x6c\x61\x73\x74\x45\x76\x65\x6e\x74\x49\x64':a0_0x51a297(0x23b),'\x65\x78\x65\x63\x75\x74\x69\x6f\x6e\x49\x64':a0_0x51a297(0x239),'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':a0_0x51a297(0x252)},WIRE_TYPE_MAP={'\x73\x69\x64\x65\x63\x61\x72\x2e\x63\x6f\x6e\x6e\x65\x63\x74\x65\x64':a0_0x51a297(0x185),'\x73\x69\x64\x65\x63\x61\x72\x2e\x64\x69\x73\x63\x6f\x6e\x6e\x65\x63\x74\x65\x64':a0_0x51a297(0x1f0),'\x73\x69\x64\x65\x63\x61\x72\x2e\x6e\x6f\x74\x5f\x66\x6f\x75\x6e\x64':a0_0x51a297(0x209),'\x73\x69\x64\x65\x63\x61\x72\x2e\x72\x65\x61\x64\x79':a0_0x51a297(0x201)};var MemoryStorage=class{['\x73\x74\x6f\x72\x65']=new Map();[a0_0x51a297(0x212)](_0x4f9685){const _0x209711=a0_0x51a297;return this[_0x209711(0x1db)][_0x209711(0x266)](_0x4f9685)??null;}[a0_0x51a297(0x21a)](_0x45e5bd,_0x2bf439){const _0x4b51eb=a0_0x51a297;this[_0x4b51eb(0x1db)][_0x4b51eb(0x1b7)](_0x45e5bd,_0x2bf439);}[a0_0x51a297(0x1a5)](_0x329705){const _0x1071e3=a0_0x51a297;this[_0x1071e3(0x1db)][_0x1071e3(0x224)](_0x329705);}},SessionGatewayClient=class{['\x77\x73']=null;[a0_0x51a297(0x1df)];[a0_0x51a297(0x1de)];[a0_0x51a297(0x19d)];['\x69\x73\x52\x65\x66\x72\x65\x73\x68\x69\x6e\x67\x54\x6f\x6b\x65\x6e']=![];[a0_0x51a297(0x1ad)]=a0_0x51a297(0x227);['\x63\x6f\x6e\x6e\x65\x63\x74\x65\x64\x41\x74']=null;[a0_0x51a297(0x24b)]=![];[a0_0x51a297(0x200)]=null;[a0_0x51a297(0x259)]=null;['\x6c\x61\x73\x74\x50\x69\x6e\x67\x53\x65\x6e\x74\x41\x74']=null;[a0_0x51a297(0x25d)]=0x0;[a0_0x51a297(0x1b1)]=0x0;[a0_0x51a297(0x1d5)]=0x0;[a0_0x51a297(0x261)]=0x0;['\x65\x76\x65\x6e\x74\x73\x52\x65\x63\x65\x69\x76\x65\x64']=0x0;[a0_0x51a297(0x1ea)]=0x0;[a0_0x51a297(0x256)]=null;['\x70\x69\x6e\x67\x49\x6e\x74\x65\x72\x76\x61\x6c']=null;[a0_0x51a297(0x20b)]=null;[a0_0x51a297(0x1b9)]=new Map();['\x6d\x65\x73\x73\x61\x67\x65\x49\x64\x43\x6f\x75\x6e\x74\x65\x72']=0x0;[a0_0x51a297(0x1ae)]=new Set();[a0_0x51a297(0x1fd)]=[];[a0_0x51a297(0x1c4)]={...INITIAL_METRICS};[a0_0x51a297(0x220)]=null;[a0_0x51a297(0x253)]=null;['\x63\x75\x72\x72\x65\x6e\x74\x53\x65\x73\x73\x69\x6f\x6e\x49\x64']=null;[a0_0x51a297(0x20e)]=![];[a0_0x51a297(0x197)]={'\x74\x6f\x74\x61\x6c':0x0,'\x72\x65\x63\x65\x69\x76\x65\x64':0x0};constructor(_0x4c56f0){const _0xeb0135=a0_0x51a297,_0x50b617={'\x52\x67\x64\x64\x78':function(_0x40e62d,_0x184ae5){return _0x40e62d!==_0x184ae5;},'\x69\x4f\x44\x71\x55':'\x6c\x6f\x63\x61\x6c\x53\x74\x6f\x72\x61\x67\x65','\x77\x72\x78\x48\x63':_0xeb0135(0x211)};let _0x5cf6fe;if(_0x4c56f0[_0xeb0135(0x208)])_0x5cf6fe=_0x4c56f0[_0xeb0135(0x208)];else{if(_0x50b617[_0xeb0135(0x1a4)](typeof globalThis,_0xeb0135(0x1fa))&&_0x50b617[_0xeb0135(0x1f9)]in globalThis)try{const _0x25980=_0x50b617[_0xeb0135(0x1d9)];localStorage['\x73\x65\x74\x49\x74\x65\x6d'](_0x25980,_0x25980),localStorage[_0xeb0135(0x1a5)](_0x25980),_0x5cf6fe=localStorage;}catch{_0x5cf6fe=new MemoryStorage();}else _0x5cf6fe=new MemoryStorage();}this['\x63\x6f\x6e\x66\x69\x67']={'\x75\x72\x6c':_0x4c56f0[_0xeb0135(0x190)],'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x4c56f0['\x73\x65\x73\x73\x69\x6f\x6e\x49\x64'],'\x74\x6f\x6b\x65\x6e':_0x4c56f0[_0xeb0135(0x1ba)],'\x6f\x6e\x54\x6f\x6b\x65\x6e\x52\x65\x66\x72\x65\x73\x68':_0x4c56f0[_0xeb0135(0x25e)],'\x74\x72\x61\x6e\x73\x70\x6f\x72\x74':_0x4c56f0[_0xeb0135(0x1a1)]??DEFAULT_CONFIG[_0xeb0135(0x1a1)],'\x63\x68\x61\x6e\x6e\x65\x6c\x73':_0x4c56f0[_0xeb0135(0x1f8)]??DEFAULT_CONFIG['\x63\x68\x61\x6e\x6e\x65\x6c\x73'],'\x61\x75\x74\x6f\x52\x65\x63\x6f\x6e\x6e\x65\x63\x74':_0x4c56f0[_0xeb0135(0x17f)]??DEFAULT_CONFIG[_0xeb0135(0x17f)],'\x6d\x61\x78\x52\x65\x63\x6f\x6e\x6e\x65\x63\x74\x41\x74\x74\x65\x6d\x70\x74\x73':_0x4c56f0[_0xeb0135(0x18a)]??DEFAULT_CONFIG[_0xeb0135(0x18a)],'\x69\x6e\x69\x74\x69\x61\x6c\x52\x65\x63\x6f\x6e\x6e\x65\x63\x74\x44\x65\x6c\x61\x79\x4d\x73':_0x4c56f0[_0xeb0135(0x1fb)]??DEFAULT_CONFIG[_0xeb0135(0x1fb)],'\x6d\x61\x78\x52\x65\x63\x6f\x6e\x6e\x65\x63\x74\x44\x65\x6c\x61\x79\x4d\x73':_0x4c56f0[_0xeb0135(0x240)]??DEFAULT_CONFIG['\x6d\x61\x78\x52\x65\x63\x6f\x6e\x6e\x65\x63\x74\x44\x65\x6c\x61\x79\x4d\x73'],'\x70\x69\x6e\x67\x49\x6e\x74\x65\x72\x76\x61\x6c\x4d\x73':_0x4c56f0[_0xeb0135(0x24c)]??DEFAULT_CONFIG['\x70\x69\x6e\x67\x49\x6e\x74\x65\x72\x76\x61\x6c\x4d\x73'],'\x70\x6f\x6e\x67\x54\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x4c56f0[_0xeb0135(0x1d1)]??DEFAULT_CONFIG[_0xeb0135(0x1d1)],'\x6d\x61\x78\x4d\x69\x73\x73\x65\x64\x50\x6f\x6e\x67\x73':_0x4c56f0[_0xeb0135(0x25a)]??DEFAULT_CONFIG[_0xeb0135(0x25a)],'\x65\x6e\x61\x62\x6c\x65\x44\x65\x64\x75\x70\x6c\x69\x63\x61\x74\x69\x6f\x6e':_0x4c56f0[_0xeb0135(0x229)]??DEFAULT_CONFIG[_0xeb0135(0x229)],'\x6d\x61\x78\x44\x65\x64\x75\x70\x6c\x69\x63\x61\x74\x69\x6f\x6e\x53\x69\x7a\x65':_0x4c56f0[_0xeb0135(0x1f5)]??DEFAULT_CONFIG[_0xeb0135(0x1f5)],'\x65\x6e\x61\x62\x6c\x65\x52\x65\x70\x6c\x61\x79\x50\x65\x72\x73\x69\x73\x74\x65\x6e\x63\x65':_0x4c56f0['\x65\x6e\x61\x62\x6c\x65\x52\x65\x70\x6c\x61\x79\x50\x65\x72\x73\x69\x73\x74\x65\x6e\x63\x65']??DEFAULT_CONFIG['\x65\x6e\x61\x62\x6c\x65\x52\x65\x70\x6c\x61\x79\x50\x65\x72\x73\x69\x73\x74\x65\x6e\x63\x65'],'\x72\x65\x70\x6c\x61\x79\x53\x74\x6f\x72\x61\x67\x65':_0x5cf6fe,'\x72\x65\x70\x6c\x61\x79\x53\x74\x6f\x72\x61\x67\x65\x4b\x65\x79\x50\x72\x65\x66\x69\x78':_0x4c56f0['\x72\x65\x70\x6c\x61\x79\x53\x74\x6f\x72\x61\x67\x65\x4b\x65\x79\x50\x72\x65\x66\x69\x78']??DEFAULT_CONFIG[_0xeb0135(0x207)],'\x6c\x61\x74\x65\x6e\x63\x79\x48\x69\x73\x74\x6f\x72\x79\x53\x69\x7a\x65':_0x4c56f0[_0xeb0135(0x1d4)]??DEFAULT_CONFIG['\x6c\x61\x74\x65\x6e\x63\x79\x48\x69\x73\x74\x6f\x72\x79\x53\x69\x7a\x65']},this['\x68\x61\x6e\x64\x6c\x65\x72\x73']=_0x4c56f0[_0xeb0135(0x1de)]??{},this[_0xeb0135(0x19d)]=_0x4c56f0[_0xeb0135(0x1ba)];if(this[_0xeb0135(0x1df)][_0xeb0135(0x258)])this[_0xeb0135(0x1e2)]();}[a0_0x51a297(0x1c6)](){const _0x3f9b53=a0_0x51a297,_0x559379={'\x53\x5a\x4e\x64\x43':function(_0x2b74df,_0x2e3891){return _0x2b74df===_0x2e3891;},'\x64\x6b\x79\x71\x77':_0x3f9b53(0x251),'\x77\x6b\x46\x68\x56':'\x72\x65\x63\x6f\x6e\x6e\x65\x63\x74\x69\x6e\x67'};if(_0x559379[_0x3f9b53(0x1bf)](this[_0x3f9b53(0x1ad)],_0x3f9b53(0x1ed))||_0x559379['\x53\x5a\x4e\x64\x43'](this[_0x3f9b53(0x1ad)],_0x559379[_0x3f9b53(0x205)]))return;const _0x2a6777=this[_0x3f9b53(0x24b)];this[_0x3f9b53(0x1f1)](_0x2a6777?_0x559379[_0x3f9b53(0x1af)]:_0x559379[_0x3f9b53(0x205)]),this[_0x3f9b53(0x1d7)]();}[a0_0x51a297(0x1d7)](){const _0x3b5c6b=a0_0x51a297,_0xdd2245=new URL(this[_0x3b5c6b(0x1df)][_0x3b5c6b(0x190)]);_0xdd2245[_0x3b5c6b(0x202)][_0x3b5c6b(0x1b7)]('\x74\x6f\x6b\x65\x6e',this[_0x3b5c6b(0x19d)]),this['\x77\x73']=new WebSocket(_0xdd2245[_0x3b5c6b(0x1a0)]()),this['\x77\x73'][_0x3b5c6b(0x188)]=()=>this['\x68\x61\x6e\x64\x6c\x65\x4f\x70\x65\x6e'](),this['\x77\x73'][_0x3b5c6b(0x21d)]=_0x4525fd=>this[_0x3b5c6b(0x237)](_0x4525fd[_0x3b5c6b(0x234)],_0x4525fd[_0x3b5c6b(0x1be)]),this['\x77\x73'][_0x3b5c6b(0x226)]=_0x27f15d=>{},this['\x77\x73']['\x6f\x6e\x6d\x65\x73\x73\x61\x67\x65']=_0x4da630=>this[_0x3b5c6b(0x1b8)](_0x4da630[_0x3b5c6b(0x1b3)]);}[a0_0x51a297(0x206)](){const _0x2bacaf=a0_0x51a297,_0x3066d4={'\x6d\x46\x48\x55\x41':_0x2bacaf(0x1c8),'\x78\x4d\x49\x4d\x76':_0x2bacaf(0x227)};this[_0x2bacaf(0x231)](),this['\x77\x73']&&(this['\x77\x73'][_0x2bacaf(0x1ff)](0x3e8,_0x3066d4['\x6d\x46\x48\x55\x41']),this['\x77\x73']=null),this[_0x2bacaf(0x1f1)](_0x3066d4['\x78\x4d\x49\x4d\x76']);}async[a0_0x51a297(0x1c1)](_0x12287d){const _0xc1b3=a0_0x51a297,_0x3e0582={'\x53\x44\x44\x53\x7a':'\x73\x75\x62\x73\x63\x72\x69\x62\x65'};return(await this[_0xc1b3(0x218)]({'\x74\x79\x70\x65':_0x3e0582[_0xc1b3(0x1e7)],'\x63\x68\x61\x6e\x6e\x65\x6c\x73':_0x12287d}))[_0xc1b3(0x1f8)];}async[a0_0x51a297(0x215)](_0x5cb49f){const _0x51919d=a0_0x51a297;return(await this[_0x51919d(0x218)]({'\x74\x79\x70\x65':_0x51919d(0x215),'\x63\x68\x61\x6e\x6e\x65\x6c\x73':_0x5cb49f}))[_0x51919d(0x1f8)];}async['\x70\x69\x6e\x67'](){const _0x2c3bfe=a0_0x51a297,_0x427868={'\x41\x76\x74\x4a\x75':function(_0x4f637f,_0x4d7ec5){return _0x4f637f-_0x4d7ec5;}},_0x23054b=Date['\x6e\x6f\x77']();return await this[_0x2c3bfe(0x218)]({'\x74\x79\x70\x65':'\x70\x69\x6e\x67'}),_0x427868['\x41\x76\x74\x4a\x75'](Date['\x6e\x6f\x77'](),_0x23054b);}['\x72\x65\x70\x6c\x61\x79'](_0xb1f6cf){this['\x73\x65\x6e\x64']({'\x74\x79\x70\x65':'\x72\x65\x70\x6c\x61\x79','\x73\x69\x6e\x63\x65':_0xb1f6cf});}[a0_0x51a297(0x20c)](_0x3de50e,_0x18cfa2){const _0x454a7b=a0_0x51a297;if(!this['\x69\x73\x43\x6f\x6e\x6e\x65\x63\x74\x65\x64']())return![];return this[_0x454a7b(0x183)]({'\x74\x79\x70\x65':_0x454a7b(0x1bb),'\x64\x61\x74\x61':{'\x74\x65\x72\x6d\x69\x6e\x61\x6c\x49\x64':_0x3de50e,'\x69\x6e\x70\x75\x74':_0x18cfa2}}),!![];}[a0_0x51a297(0x1ec)](_0x4225da,_0x47d119){const _0x2585b1=a0_0x51a297;this[_0x2585b1(0x214)]=_0x4225da;if(_0x47d119)this[_0x2585b1(0x253)]=_0x47d119;this[_0x2585b1(0x1b2)]();}[a0_0x51a297(0x267)](){const _0x2ee9d1=a0_0x51a297,_0x1bff84={'\x48\x75\x4a\x41\x67':function(_0x3dffc6,_0x573450){return _0x3dffc6+_0x573450;}};this[_0x2ee9d1(0x220)]=null,this[_0x2ee9d1(0x253)]=null,this[_0x2ee9d1(0x214)]=null,this[_0x2ee9d1(0x20e)]=![],this['\x72\x65\x70\x6c\x61\x79\x50\x72\x6f\x67\x72\x65\x73\x73']={'\x74\x6f\x74\x61\x6c':0x0,'\x72\x65\x63\x65\x69\x76\x65\x64':0x0},this[_0x2ee9d1(0x1ae)][_0x2ee9d1(0x1eb)](),this[_0x2ee9d1(0x1ea)]=0x0;if(this[_0x2ee9d1(0x1df)][_0x2ee9d1(0x258)]){const _0x7d841f=this['\x63\x6f\x6e\x66\x69\x67'][_0x2ee9d1(0x207)];try{this['\x63\x6f\x6e\x66\x69\x67']['\x72\x65\x70\x6c\x61\x79\x53\x74\x6f\x72\x61\x67\x65']['\x72\x65\x6d\x6f\x76\x65\x49\x74\x65\x6d'](_0x7d841f+STORAGE_KEYS['\x6c\x61\x73\x74\x45\x76\x65\x6e\x74\x49\x64']),this[_0x2ee9d1(0x1df)][_0x2ee9d1(0x208)][_0x2ee9d1(0x1a5)](_0x1bff84[_0x2ee9d1(0x1a6)](_0x7d841f,STORAGE_KEYS[_0x2ee9d1(0x24f)])),this[_0x2ee9d1(0x1df)]['\x72\x65\x70\x6c\x61\x79\x53\x74\x6f\x72\x61\x67\x65'][_0x2ee9d1(0x1a5)](_0x7d841f+STORAGE_KEYS['\x73\x65\x73\x73\x69\x6f\x6e\x49\x64']);}catch{}}}[a0_0x51a297(0x25f)](){const _0x452a51=a0_0x51a297;return{'\x69\x73\x52\x65\x70\x6c\x61\x79\x69\x6e\x67':this[_0x452a51(0x20e)],'\x70\x72\x6f\x67\x72\x65\x73\x73':{...this[_0x452a51(0x197)]}};}[a0_0x51a297(0x250)](){const _0x39e4f0=a0_0x51a297;return{'\x73\x74\x61\x74\x65':this[_0x39e4f0(0x1ad)],'\x63\x6f\x6e\x6e\x65\x63\x74\x65\x64\x41\x74':this[_0x39e4f0(0x1e9)],'\x6c\x61\x73\x74\x50\x69\x6e\x67\x41\x74':this[_0x39e4f0(0x200)],'\x6c\x61\x73\x74\x50\x6f\x6e\x67\x41\x74':this[_0x39e4f0(0x259)],'\x72\x65\x63\x6f\x6e\x6e\x65\x63\x74\x41\x74\x74\x65\x6d\x70\x74\x73':this['\x72\x65\x63\x6f\x6e\x6e\x65\x63\x74\x41\x74\x74\x65\x6d\x70\x74\x73'],'\x6d\x65\x73\x73\x61\x67\x65\x73\x52\x65\x63\x65\x69\x76\x65\x64':this[_0x39e4f0(0x1d5)],'\x6d\x65\x73\x73\x61\x67\x65\x73\x53\x65\x6e\x74':this[_0x39e4f0(0x261)],'\x65\x76\x65\x6e\x74\x73\x52\x65\x63\x65\x69\x76\x65\x64':this['\x65\x76\x65\x6e\x74\x73\x52\x65\x63\x65\x69\x76\x65\x64'],'\x64\x75\x70\x6c\x69\x63\x61\x74\x65\x73\x53\x6b\x69\x70\x70\x65\x64':this[_0x39e4f0(0x1ea)],'\x6d\x65\x74\x72\x69\x63\x73':{...this[_0x39e4f0(0x1c4)]},'\x72\x65\x70\x6c\x61\x79':this['\x67\x65\x74\x52\x65\x70\x6c\x61\x79\x53\x74\x61\x74\x65']()};}[a0_0x51a297(0x230)](){const _0x2bc88b=a0_0x51a297;return this[_0x2bc88b(0x1ad)];}[a0_0x51a297(0x235)](){const _0x27c103=a0_0x51a297,_0xab945a={'\x4d\x5a\x71\x56\x41':function(_0x7b156b,_0x51f757){return _0x7b156b===_0x51f757;},'\x66\x6c\x74\x4f\x4a':'\x63\x6f\x6e\x6e\x65\x63\x74\x65\x64'};return _0xab945a[_0x27c103(0x19a)](this['\x73\x74\x61\x74\x65'],_0xab945a['\x66\x6c\x74\x4f\x4a']);}[a0_0x51a297(0x25c)](){const _0x58292f=a0_0x51a297;return this[_0x58292f(0x1c4)]['\x71\x75\x61\x6c\x69\x74\x79'];}['\x67\x65\x74\x43\x6f\x6e\x6e\x65\x63\x74\x69\x6f\x6e\x4d\x65\x74\x72\x69\x63\x73'](){const _0x2365f3=a0_0x51a297;return{...this[_0x2365f3(0x1c4)]};}[a0_0x51a297(0x216)](){const _0xbba657=a0_0x51a297;this[_0xbba657(0x1fd)]=[],this['\x63\x6f\x6e\x6e\x65\x63\x74\x69\x6f\x6e\x4d\x65\x74\x72\x69\x63\x73']={...INITIAL_METRICS},this[_0xbba657(0x1de)][_0xbba657(0x18d)]?.(this['\x63\x6f\x6e\x6e\x65\x63\x74\x69\x6f\x6e\x4d\x65\x74\x72\x69\x63\x73']);}[a0_0x51a297(0x18f)](_0x356af8){const _0x27b210=a0_0x51a297;this[_0x27b210(0x19d)]=_0x356af8;if(this[_0x27b210(0x1ad)]==='\x63\x6f\x6e\x6e\x65\x63\x74\x65\x64'&&this['\x77\x73'])this['\x77\x73'][_0x27b210(0x1ff)](0x3e8,_0x27b210(0x245));}[a0_0x51a297(0x210)](){const _0x3679e6=a0_0x51a297;return this[_0x3679e6(0x19d)];}[a0_0x51a297(0x1f1)](_0x340585){const _0x324d6c=a0_0x51a297;this[_0x324d6c(0x1ad)]!==_0x340585&&(this[_0x324d6c(0x1ad)]=_0x340585,this['\x75\x70\x64\x61\x74\x65\x43\x6f\x6e\x6e\x65\x63\x74\x69\x6f\x6e\x51\x75\x61\x6c\x69\x74\x79'](),this[_0x324d6c(0x1de)][_0x324d6c(0x1ca)]?.(_0x340585));}[a0_0x51a297(0x21b)](){const _0x28d088=a0_0x51a297,_0x73ad02={'\x46\x63\x42\x76\x61':_0x28d088(0x1ed)},_0x72324c=this['\x68\x61\x73\x43\x6f\x6e\x6e\x65\x63\x74\x65\x64\x42\x65\x66\x6f\x72\x65'];this['\x68\x61\x73\x43\x6f\x6e\x6e\x65\x63\x74\x65\x64\x42\x65\x66\x6f\x72\x65']=!![],this[_0x28d088(0x1f1)](_0x73ad02[_0x28d088(0x196)]),this[_0x28d088(0x1e9)]=Date[_0x28d088(0x225)](),this[_0x28d088(0x1b1)]=0x0,this[_0x28d088(0x25d)]=0x0,this[_0x28d088(0x1da)](),this[_0x28d088(0x199)](),_0x72324c&&(this[_0x28d088(0x21e)](),this[_0x28d088(0x1de)][_0x28d088(0x26e)]?.());}[a0_0x51a297(0x237)](_0x2ca303,_0x981d1d){const _0x43f2b3=a0_0x51a297,_0x5e1b84={'\x69\x72\x58\x6d\x6d':_0x43f2b3(0x227)};this[_0x43f2b3(0x231)](),this[_0x43f2b3(0x1de)]['\x6f\x6e\x44\x69\x73\x63\x6f\x6e\x6e\x65\x63\x74']?.(_0x2ca303,_0x981d1d);if(this[_0x43f2b3(0x1df)][_0x43f2b3(0x17f)]&&this[_0x43f2b3(0x1b1)]<this['\x63\x6f\x6e\x66\x69\x67']['\x6d\x61\x78\x52\x65\x63\x6f\x6e\x6e\x65\x63\x74\x41\x74\x74\x65\x6d\x70\x74\x73'])this[_0x43f2b3(0x1f1)]('\x72\x65\x63\x6f\x6e\x6e\x65\x63\x74\x69\x6e\x67'),this[_0x43f2b3(0x1f4)]();else this[_0x43f2b3(0x1f1)](_0x5e1b84['\x69\x72\x58\x6d\x6d']);}['\x68\x61\x6e\x64\x6c\x65\x4d\x65\x73\x73\x61\x67\x65'](_0xe275b3){const _0xfd1a77=a0_0x51a297,_0x2df4fd={'\x76\x48\x76\x55\x49':function(_0x1ff801,_0x5bb99c){return _0x1ff801===_0x5bb99c;},'\x49\x72\x64\x6f\x47':'\x73\x74\x72\x69\x6e\x67','\x68\x63\x4a\x51\x6e':function(_0x3d62f0,_0x2565e8){return _0x3d62f0!==_0x2565e8;},'\x4c\x43\x5a\x6d\x48':function(_0x4bed91,_0x19a0b4){return _0x4bed91===_0x19a0b4;},'\x61\x53\x76\x68\x78':'\x6f\x62\x6a\x65\x63\x74','\x62\x72\x51\x63\x62':function(_0x168ca3,_0x200cf5){return _0x168ca3!==_0x200cf5;},'\x41\x76\x51\x56\x41':_0xfd1a77(0x221),'\x67\x4d\x62\x42\x6c':_0xfd1a77(0x246),'\x68\x79\x70\x4d\x45':function(_0x4e3801,_0x3c3205){return _0x4e3801>_0x3c3205;},'\x77\x59\x6f\x62\x52':function(_0x3ad160,_0x47a9db){return _0x3ad160>=_0x47a9db;}};this['\x6d\x65\x73\x73\x61\x67\x65\x73\x52\x65\x63\x65\x69\x76\x65\x64']++;try{const _0x457786=JSON[_0xfd1a77(0x1ef)](_0xe275b3);if(!_0x457786[_0xfd1a77(0x1aa)]&&_0x457786[_0xfd1a77(0x1f7)])_0x457786['\x74\x79\x70\x65']=_0x457786[_0xfd1a77(0x1f7)];if(_0x2df4fd['\x76\x48\x76\x55\x49'](typeof _0x457786[_0xfd1a77(0x1aa)],_0x2df4fd[_0xfd1a77(0x260)])&&_0x2df4fd['\x68\x63\x4a\x51\x6e'](WIRE_TYPE_MAP[_0x457786['\x74\x79\x70\x65']],void 0x0))_0x457786[_0xfd1a77(0x1aa)]=WIRE_TYPE_MAP[_0x457786[_0xfd1a77(0x1aa)]];if(_0x457786[_0xfd1a77(0x1b3)]&&_0x2df4fd[_0xfd1a77(0x262)](typeof _0x457786['\x64\x61\x74\x61'],_0x2df4fd[_0xfd1a77(0x184)])){const _0x205f25=_0x457786[_0xfd1a77(0x1b3)];if(_0x2df4fd[_0xfd1a77(0x23f)](_0x205f25[_0xfd1a77(0x26a)],void 0x0)&&_0x205f25['\x73\x61\x6e\x64\x62\x6f\x78\x49\x64']===void 0x0)_0x205f25[_0xfd1a77(0x1c7)]=_0x205f25['\x73\x69\x64\x65\x63\x61\x72\x49\x64'];}if(_0x457786[_0xfd1a77(0x1aa)]===_0x2df4fd['\x41\x76\x51\x56\x41']&&!_0x457786[_0xfd1a77(0x1b3)]&&_0x457786[_0xfd1a77(0x265)]){const {type:_0x4f5b4b,messageType:_0x3acdee,channel:_0x27451f,id:_0x1e38c4,sequenceId:_0x4a438f,timestamp:_0x16d8b9,..._0x1808d7}=_0x457786;_0x457786[_0xfd1a77(0x1b3)]=_0x1808d7;}const _0x2c086b=_0x457786;if(_0x2c086b[_0xfd1a77(0x1aa)]===_0x2df4fd[_0xfd1a77(0x1a8)]){this[_0xfd1a77(0x223)](_0x2c086b['\x74\x69\x6d\x65\x73\x74\x61\x6d\x70']),this[_0xfd1a77(0x254)](_0x2c086b);return;}if('\x69\x64'in _0x2c086b&&_0x2c086b['\x69\x64']&&this[_0xfd1a77(0x1df)]['\x65\x6e\x61\x62\x6c\x65\x44\x65\x64\x75\x70\x6c\x69\x63\x61\x74\x69\x6f\x6e']){const _0x22212d=_0x2c086b['\x69\x64'];if(this[_0xfd1a77(0x1ae)][_0xfd1a77(0x192)](_0x22212d)){this[_0xfd1a77(0x1ea)]++;return;}this[_0xfd1a77(0x1ae)]['\x61\x64\x64'](_0x22212d);if(_0x2df4fd[_0xfd1a77(0x23e)](this[_0xfd1a77(0x1ae)][_0xfd1a77(0x1ce)],this[_0xfd1a77(0x1df)]['\x6d\x61\x78\x44\x65\x64\x75\x70\x6c\x69\x63\x61\x74\x69\x6f\x6e\x53\x69\x7a\x65'])){const _0x1cc873=Math[_0xfd1a77(0x1fe)](this[_0xfd1a77(0x1df)][_0xfd1a77(0x1f5)]*0.1);let _0x171dfa=0x0;for(const _0x4e1829 of this[_0xfd1a77(0x1ae)]){if(_0x2df4fd[_0xfd1a77(0x1b6)](_0x171dfa,_0x1cc873))break;this[_0xfd1a77(0x1ae)][_0xfd1a77(0x224)](_0x4e1829),_0x171dfa++;}}this[_0xfd1a77(0x220)]=_0x22212d,this[_0xfd1a77(0x1b2)]();}this[_0xfd1a77(0x254)](_0x2c086b);}catch{}}[a0_0x51a297(0x223)](_0xe6b7ce){const _0x3d44ae=a0_0x51a297,_0x50f9cc={'\x77\x61\x7a\x59\x77':function(_0x9b3ce4,_0x1e2fda){return _0x9b3ce4-_0x1e2fda;}},_0x3fc025=Date[_0x3d44ae(0x225)]();this[_0x3d44ae(0x259)]=_0xe6b7ce,this['\x6d\x69\x73\x73\x65\x64\x50\x6f\x6e\x67\x43\x6f\x75\x6e\x74']=0x0,this[_0x3d44ae(0x1d3)]();if(this['\x6c\x61\x73\x74\x50\x69\x6e\x67\x53\x65\x6e\x74\x41\x74']){const _0x50fcaf=_0x50f9cc[_0x3d44ae(0x269)](_0x3fc025,this[_0x3d44ae(0x22e)]);this[_0x3d44ae(0x1fd)][_0x3d44ae(0x1a3)](_0x50fcaf);if(this['\x70\x69\x6e\x67\x4c\x61\x74\x65\x6e\x63\x79\x48\x69\x73\x74\x6f\x72\x79'][_0x3d44ae(0x1dd)]>this[_0x3d44ae(0x1df)][_0x3d44ae(0x1d4)])this[_0x3d44ae(0x1fd)][_0x3d44ae(0x26d)]();this[_0x3d44ae(0x1a9)](_0x50fcaf,_0x3fc025);}}[a0_0x51a297(0x254)](_0x41f625){const _0x19aee1=a0_0x51a297,_0x13107e={'\x69\x7a\x44\x4f\x62':function(_0x367a17,_0x57b80d){return _0x367a17===_0x57b80d;},'\x69\x55\x72\x47\x72':function(_0x2de804,_0xd34719){return _0x2de804 in _0xd34719;},'\x68\x6d\x46\x46\x68':_0x19aee1(0x1f0),'\x78\x53\x6a\x75\x71':_0x19aee1(0x1dc),'\x67\x6c\x74\x6b\x69':'\x72\x75\x6e\x74\x69\x6d\x65\x2e\x72\x65\x61\x64\x79','\x4d\x72\x46\x54\x51':'\x70\x6f\x72\x74\x2e\x6f\x70\x65\x6e\x65\x64','\x55\x79\x4b\x74\x56':_0x19aee1(0x21f),'\x65\x45\x62\x6a\x4b':_0x19aee1(0x26c),'\x43\x48\x6e\x64\x77':_0x19aee1(0x193),'\x6a\x71\x61\x6e\x51':_0x19aee1(0x18c)};if('\x69\x64'in _0x41f625&&_0x41f625['\x69\x64']){const _0x5e0826=this[_0x19aee1(0x1b9)][_0x19aee1(0x266)](_0x41f625['\x69\x64']);if(_0x5e0826){this[_0x19aee1(0x1b9)][_0x19aee1(0x224)](_0x41f625['\x69\x64']);if(_0x13107e[_0x19aee1(0x1b0)](_0x41f625['\x74\x79\x70\x65'],_0x19aee1(0x1d2)))_0x5e0826[_0x19aee1(0x19e)](new Error(_0x41f625[_0x19aee1(0x248)]));else _0x5e0826[_0x19aee1(0x22f)](_0x13107e[_0x19aee1(0x1d6)](_0x19aee1(0x1b3),_0x41f625)?_0x41f625[_0x19aee1(0x1b3)]:void 0x0);return;}}switch(_0x41f625[_0x19aee1(0x1aa)]){case _0x19aee1(0x1e6):this['\x68\x61\x6e\x64\x6c\x65\x72\x73'][_0x19aee1(0x219)]?.(_0x41f625[_0x19aee1(0x1b3)][_0x19aee1(0x217)]);break;case'\x72\x75\x6e\x74\x69\x6d\x65\x2e\x63\x6f\x6e\x6e\x65\x63\x74\x65\x64':this[_0x19aee1(0x1de)]['\x6f\x6e\x52\x75\x6e\x74\x69\x6d\x65\x43\x6f\x6e\x6e\x65\x63\x74\x65\x64']?.(_0x41f625[_0x19aee1(0x1b3)][_0x19aee1(0x1c7)],_0x41f625[_0x19aee1(0x1b3)][_0x19aee1(0x23c)]);break;case _0x13107e[_0x19aee1(0x247)]:this[_0x19aee1(0x1de)]['\x6f\x6e\x52\x75\x6e\x74\x69\x6d\x65\x44\x69\x73\x63\x6f\x6e\x6e\x65\x63\x74\x65\x64']?.(_0x41f625['\x64\x61\x74\x61']['\x73\x61\x6e\x64\x62\x6f\x78\x49\x64'],_0x41f625[_0x19aee1(0x1b3)][_0x19aee1(0x1d2)]);break;case'\x72\x75\x6e\x74\x69\x6d\x65\x2e\x6e\x6f\x74\x5f\x66\x6f\x75\x6e\x64':this['\x68\x61\x6e\x64\x6c\x65\x72\x73'][_0x19aee1(0x263)]?.(_0x41f625[_0x19aee1(0x1b3)][_0x19aee1(0x217)],_0x41f625['\x64\x61\x74\x61'][_0x19aee1(0x21c)],_0x41f625[_0x19aee1(0x1b3)][_0x19aee1(0x1be)]);break;case _0x19aee1(0x19c):{const _0x11dbef=_0x41f625[_0x19aee1(0x1b3)],_0x41f06d=_0x11dbef[_0x19aee1(0x1c7)]??_0x11dbef[_0x19aee1(0x26a)];if(_0x41f06d)this[_0x19aee1(0x1de)][_0x19aee1(0x233)]?.(_0x41f06d);else this[_0x19aee1(0x1de)]['\x6f\x6e\x45\x72\x72\x6f\x72']?.(_0x19aee1(0x195),_0x13107e[_0x19aee1(0x236)]);break;}case _0x13107e[_0x19aee1(0x1e5)]:this[_0x19aee1(0x1de)][_0x19aee1(0x257)]?.(_0x41f625[_0x19aee1(0x1b3)]);break;case _0x13107e[_0x19aee1(0x1c2)]:this[_0x19aee1(0x1de)]['\x6f\x6e\x50\x6f\x72\x74\x4f\x70\x65\x6e\x65\x64']?.(_0x41f625['\x64\x61\x74\x61'][_0x19aee1(0x24e)],_0x41f625['\x64\x61\x74\x61'][_0x19aee1(0x198)],_0x41f625[_0x19aee1(0x1b3)][_0x19aee1(0x1f6)]);break;case _0x13107e[_0x19aee1(0x1c9)]:this[_0x19aee1(0x1de)]['\x6f\x6e\x50\x6f\x72\x74\x43\x6c\x6f\x73\x65\x64']?.(_0x41f625[_0x19aee1(0x1b3)][_0x19aee1(0x24e)]);break;case _0x19aee1(0x221):this[_0x19aee1(0x232)]++,this['\x74\x72\x61\x63\x6b\x45\x78\x65\x63\x75\x74\x69\x6f\x6e\x43\x6f\x6e\x74\x65\x78\x74'](_0x41f625[_0x19aee1(0x1b3)]),this[_0x19aee1(0x1de)][_0x19aee1(0x1bc)]?.(_0x41f625[_0x19aee1(0x265)],_0x41f625[_0x19aee1(0x1b3)],_0x41f625[_0x19aee1(0x22a)]);break;case _0x19aee1(0x243):this['\x69\x73\x52\x65\x70\x6c\x61\x79\x69\x6e\x67']=!![],this[_0x19aee1(0x197)]={'\x74\x6f\x74\x61\x6c':_0x41f625[_0x19aee1(0x20d)],'\x72\x65\x63\x65\x69\x76\x65\x64':0x0},this[_0x19aee1(0x1de)]['\x6f\x6e\x52\x65\x70\x6c\x61\x79\x53\x74\x61\x72\x74']?.(_0x41f625['\x74\x6f\x74\x61\x6c']);break;case _0x19aee1(0x20f):this[_0x19aee1(0x197)][_0x19aee1(0x186)]=_0x41f625[_0x19aee1(0x186)],this['\x68\x61\x6e\x64\x6c\x65\x72\x73'][_0x19aee1(0x20a)]?.(_0x41f625[_0x19aee1(0x186)],this['\x72\x65\x70\x6c\x61\x79\x50\x72\x6f\x67\x72\x65\x73\x73']['\x74\x6f\x74\x61\x6c']);break;case _0x13107e['\x65\x45\x62\x6a\x4b']:this[_0x19aee1(0x20e)]=![],this[_0x19aee1(0x1de)]['\x6f\x6e\x52\x65\x70\x6c\x61\x79\x43\x6f\x6d\x70\x6c\x65\x74\x65']?.(_0x41f625[_0x19aee1(0x20d)]);break;case _0x19aee1(0x1d2):this[_0x19aee1(0x1de)][_0x19aee1(0x22b)]?.(_0x41f625[_0x19aee1(0x248)],_0x41f625[_0x19aee1(0x234)]);break;case'\x74\x6f\x6b\x65\x6e\x2e\x65\x78\x70\x69\x72\x69\x6e\x67':this[_0x19aee1(0x1de)][_0x19aee1(0x1cf)]?.(_0x41f625[_0x19aee1(0x1b3)][_0x19aee1(0x1a2)]),this['\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6b\x65\x6e\x45\x78\x70\x69\x72\x69\x6e\x67']();break;case _0x13107e['\x43\x48\x6e\x64\x77']:this[_0x19aee1(0x1de)][_0x19aee1(0x255)]?.();break;case _0x13107e[_0x19aee1(0x1b5)]:this[_0x19aee1(0x1de)][_0x19aee1(0x189)]?.(_0x41f625[_0x19aee1(0x1b3)][_0x19aee1(0x1cd)],_0x41f625[_0x19aee1(0x1b3)][_0x19aee1(0x1ac)],_0x41f625[_0x19aee1(0x1b3)]['\x74\x6f\x74\x61\x6c\x44\x72\x6f\x70\x70\x65\x64']);break;}}['\x74\x72\x61\x63\x6b\x45\x78\x65\x63\x75\x74\x69\x6f\x6e\x43\x6f\x6e\x74\x65\x78\x74'](_0x41f787){const _0x4ff126=a0_0x51a297,_0x3059cb={'\x46\x55\x6b\x41\x6d':function(_0x522820,_0x56da66){return _0x522820!==_0x56da66;},'\x6c\x51\x4b\x44\x4c':_0x4ff126(0x180),'\x4a\x4c\x61\x6e\x53':function(_0xc1acdd,_0xb871c1){return _0xc1acdd===_0xb871c1;}};if(_0x3059cb[_0x4ff126(0x18e)](typeof _0x41f787,_0x3059cb['\x6c\x51\x4b\x44\x4c'])||_0x3059cb[_0x4ff126(0x264)](_0x41f787,null))return;const _0x2dbe0f=_0x41f787;_0x2dbe0f[_0x4ff126(0x24f)]&&(this['\x63\x75\x72\x72\x65\x6e\x74\x45\x78\x65\x63\x75\x74\x69\x6f\x6e\x49\x64']=_0x2dbe0f[_0x4ff126(0x24f)],this['\x73\x61\x76\x65\x52\x65\x70\x6c\x61\x79\x53\x74\x61\x74\x65']()),_0x2dbe0f['\x74\x79\x70\x65']==='\x65\x78\x65\x63\x75\x74\x69\x6f\x6e\x2e\x73\x74\x61\x72\x74\x65\x64'&&_0x2dbe0f[_0x4ff126(0x217)]&&(this['\x63\x75\x72\x72\x65\x6e\x74\x53\x65\x73\x73\x69\x6f\x6e\x49\x64']=_0x2dbe0f['\x73\x65\x73\x73\x69\x6f\x6e\x49\x64'],this[_0x4ff126(0x1b2)]());}async['\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6b\x65\x6e\x45\x78\x70\x69\x72\x69\x6e\x67'](){const _0xde9690=a0_0x51a297,_0x347967={'\x48\x48\x76\x78\x65':function(_0x39d67c,_0x161288){return _0x39d67c instanceof _0x161288;}};if(!this['\x63\x6f\x6e\x66\x69\x67'][_0xde9690(0x25e)]||this[_0xde9690(0x22c)])return;this[_0xde9690(0x22c)]=!![];try{const _0x29cc60=await this[_0xde9690(0x1df)][_0xde9690(0x25e)]();this[_0xde9690(0x18f)](_0x29cc60['\x74\x6f\x6b\x65\x6e']);}catch(_0x4c616a){this[_0xde9690(0x1de)][_0xde9690(0x22b)]?.(_0xde9690(0x1e8)+(_0x347967['\x48\x48\x76\x78\x65'](_0x4c616a,Error)?_0x4c616a['\x6d\x65\x73\x73\x61\x67\x65']:String(_0x4c616a)),_0xde9690(0x191));}finally{this['\x69\x73\x52\x65\x66\x72\x65\x73\x68\x69\x6e\x67\x54\x6f\x6b\x65\x6e']=![];}}[a0_0x51a297(0x183)](_0x4b7cf0){const _0x6fe12c=a0_0x51a297;this['\x77\x73']?.[_0x6fe12c(0x187)]===WebSocket['\x4f\x50\x45\x4e']&&(this['\x77\x73'][_0x6fe12c(0x183)](JSON[_0x6fe12c(0x1e1)](_0x4b7cf0)),this[_0x6fe12c(0x261)]++);}[a0_0x51a297(0x218)](_0x482052){const _0x30ed97=a0_0x51a297,_0xa6d86c={'\x62\x44\x77\x58\x6b':_0x30ed97(0x1cb)};return new Promise((_0x1951d9,_0x50fe9f)=>{const _0x53c1e0=_0x30ed97,_0x23d6b8={'\x7a\x49\x6d\x6f\x6a':_0xa6d86c[_0x53c1e0(0x25b)]},_0x158315=_0x53c1e0(0x242)+ ++this['\x6d\x65\x73\x73\x61\x67\x65\x49\x64\x43\x6f\x75\x6e\x74\x65\x72'];this[_0x53c1e0(0x1b9)][_0x53c1e0(0x1b7)](_0x158315,{'\x72\x65\x73\x6f\x6c\x76\x65':_0x1951d9,'\x72\x65\x6a\x65\x63\x74':_0x50fe9f}),setTimeout(()=>{const _0x44ed49=_0x53c1e0;this['\x70\x65\x6e\x64\x69\x6e\x67\x43\x61\x6c\x6c\x62\x61\x63\x6b\x73'][_0x44ed49(0x192)](_0x158315)&&(this[_0x44ed49(0x1b9)][_0x44ed49(0x224)](_0x158315),_0x50fe9f(new Error(_0x23d6b8[_0x44ed49(0x1cc)])));},0x2710),this[_0x53c1e0(0x183)]({..._0x482052,'\x69\x64':_0x158315});});}[a0_0x51a297(0x199)](){const _0x4650da=a0_0x51a297,_0x3789c4={'\x43\x45\x4b\x64\x74':function(_0x4d32dd,_0x1cf0c1){return _0x4d32dd>_0x1cf0c1;}},_0x251c31=this[_0x4650da(0x1df)][_0x4650da(0x1f8)],_0x4ba600={};if(this['\x6c\x61\x73\x74\x45\x76\x65\x6e\x74\x49\x64'])_0x4ba600[_0x4650da(0x220)]=this[_0x4650da(0x220)];if(this[_0x4650da(0x253)])_0x4ba600[_0x4650da(0x24f)]=this[_0x4650da(0x253)];if(this[_0x4650da(0x214)])_0x4ba600[_0x4650da(0x217)]=this[_0x4650da(0x214)];const _0x4bff76=_0x3789c4[_0x4650da(0x1e3)](Object[_0x4650da(0x182)](_0x4ba600)['\x6c\x65\x6e\x67\x74\x68'],0x0);_0x4bff76&&(this[_0x4650da(0x20e)]=!![],this[_0x4650da(0x197)]={'\x74\x6f\x74\x61\x6c':0x0,'\x72\x65\x63\x65\x69\x76\x65\x64':0x0}),this[_0x4650da(0x183)]({'\x74\x79\x70\x65':'\x73\x75\x62\x73\x63\x72\x69\x62\x65','\x63\x68\x61\x6e\x6e\x65\x6c\x73':_0x251c31,..._0x4bff76?{'\x72\x65\x70\x6c\x61\x79\x4f\x70\x74\x69\x6f\x6e\x73':_0x4ba600}:{}});}[a0_0x51a297(0x1da)](){const _0x327260=a0_0x51a297;this[_0x327260(0x23d)](),this[_0x327260(0x238)]=setInterval(()=>{const _0x2a1216=_0x327260;this[_0x2a1216(0x23a)]();},this[_0x327260(0x1df)][_0x327260(0x24c)]);}[a0_0x51a297(0x23d)](){const _0x4e9c12=a0_0x51a297;this[_0x4e9c12(0x238)]&&(clearInterval(this['\x70\x69\x6e\x67\x49\x6e\x74\x65\x72\x76\x61\x6c']),this[_0x4e9c12(0x238)]=null);}[a0_0x51a297(0x23a)](){const _0x1798b9=a0_0x51a297,_0x2bfcdf={'\x44\x74\x43\x6b\x78':function(_0xa08284,_0x508ac0){return _0xa08284>=_0x508ac0;},'\x6a\x66\x78\x62\x50':function(_0x1efa30,_0x46210e){return _0x1efa30>_0x46210e;},'\x7a\x46\x68\x55\x51':function(_0x253a1a,_0x5d85b7){return _0x253a1a>=_0x5d85b7;},'\x6b\x77\x76\x66\x76':_0x1798b9(0x1b4)};if(this['\x77\x73']?.[_0x1798b9(0x187)]!==WebSocket[_0x1798b9(0x1f3)])return;const _0x39a6b2=this[_0x1798b9(0x259)]?Date[_0x1798b9(0x225)]()-this[_0x1798b9(0x259)]:0x0;if(this[_0x1798b9(0x259)]&&_0x2bfcdf[_0x1798b9(0x1c3)](_0x39a6b2,this['\x63\x6f\x6e\x66\x69\x67'][_0x1798b9(0x1d1)])){this[_0x1798b9(0x25d)]++,this[_0x1798b9(0x1c4)]={...this[_0x1798b9(0x1c4)],'\x6d\x69\x73\x73\x65\x64\x50\x6f\x6e\x67\x43\x6f\x75\x6e\x74':this[_0x1798b9(0x25d)]},this[_0x1798b9(0x26b)]();if(_0x2bfcdf[_0x1798b9(0x1c5)](this[_0x1798b9(0x25d)],this[_0x1798b9(0x1df)][_0x1798b9(0x25a)])){this['\x77\x73']?.[_0x1798b9(0x1ff)](0xfa0,'\x50\x6f\x6e\x67\x20\x74\x69\x6d\x65\x6f\x75\x74\x20\x2d\x20\x63\x6f\x6e\x6e\x65\x63\x74\x69\x6f\x6e\x20\x75\x6e\x72\x65\x73\x70\x6f\x6e\x73\x69\x76\x65');return;}}this[_0x1798b9(0x200)]=Date['\x6e\x6f\x77'](),this['\x6c\x61\x73\x74\x50\x69\x6e\x67\x53\x65\x6e\x74\x41\x74']=Date['\x6e\x6f\x77'](),this[_0x1798b9(0x183)]({'\x74\x79\x70\x65':_0x2bfcdf['\x6b\x77\x76\x66\x76']}),this[_0x1798b9(0x20b)]=setTimeout(()=>{const _0x4603a5=_0x1798b9;this[_0x4603a5(0x25d)]++,this[_0x4603a5(0x1c4)]={...this[_0x4603a5(0x1c4)],'\x6d\x69\x73\x73\x65\x64\x50\x6f\x6e\x67\x43\x6f\x75\x6e\x74':this[_0x4603a5(0x25d)]},this['\x75\x70\x64\x61\x74\x65\x43\x6f\x6e\x6e\x65\x63\x74\x69\x6f\x6e\x51\x75\x61\x6c\x69\x74\x79']();if(_0x2bfcdf[_0x4603a5(0x1e0)](this[_0x4603a5(0x25d)],this[_0x4603a5(0x1df)]['\x6d\x61\x78\x4d\x69\x73\x73\x65\x64\x50\x6f\x6e\x67\x73']))this['\x77\x73']?.[_0x4603a5(0x1ff)](0xfa0,_0x4603a5(0x18b));},this['\x63\x6f\x6e\x66\x69\x67'][_0x1798b9(0x1d1)]);}[a0_0x51a297(0x1d3)](){const _0x213745=a0_0x51a297;this[_0x213745(0x20b)]&&(clearTimeout(this[_0x213745(0x20b)]),this[_0x213745(0x20b)]=null);}[a0_0x51a297(0x1f4)](){const _0x176380=a0_0x51a297,_0x11f5fc={'\x43\x4d\x6c\x47\x45':function(_0x30103d,_0x184cf2){return _0x30103d*_0x184cf2;},'\x4f\x4c\x6e\x76\x70':function(_0x3222c9,_0x592fda){return _0x3222c9-_0x592fda;},'\x6e\x61\x66\x65\x64':function(_0x198557,_0x19993f,_0x3a3877){return _0x198557(_0x19993f,_0x3a3877);}};if(this[_0x176380(0x256)])return;this[_0x176380(0x1b1)]++;const _0x3a4e55=Math[_0x176380(0x24a)](this[_0x176380(0x1df)][_0x176380(0x1fb)]*0x2**(this['\x72\x65\x63\x6f\x6e\x6e\x65\x63\x74\x41\x74\x74\x65\x6d\x70\x74\x73']-0x1),this[_0x176380(0x1df)][_0x176380(0x240)]),_0x2f13eb=_0x11f5fc['\x43\x4d\x6c\x47\x45'](_0x3a4e55*0.3,_0x11f5fc['\x4f\x4c\x6e\x76\x70'](Math[_0x176380(0x194)]()*0x2,0x1));this[_0x176380(0x256)]=_0x11f5fc['\x6e\x61\x66\x65\x64'](setTimeout,()=>{const _0x1e4546=_0x176380;this[_0x1e4546(0x256)]=null,this[_0x1e4546(0x1c6)]();},_0x3a4e55+_0x2f13eb);}[a0_0x51a297(0x231)](){const _0x2edafc=a0_0x51a297;this[_0x2edafc(0x23d)](),this[_0x2edafc(0x1d3)]();this[_0x2edafc(0x256)]&&(clearTimeout(this[_0x2edafc(0x256)]),this[_0x2edafc(0x256)]=null);for(const [_0x3a4d73,_0x76e909]of this[_0x2edafc(0x1b9)]){_0x76e909[_0x2edafc(0x19e)](new Error(_0x2edafc(0x213))),this[_0x2edafc(0x1b9)][_0x2edafc(0x224)](_0x3a4d73);}}[a0_0x51a297(0x1a9)](_0x1dd2a0,_0x52e90a){const _0x238007=a0_0x51a297,_0x5d3171=this['\x70\x69\x6e\x67\x4c\x61\x74\x65\x6e\x63\x79\x48\x69\x73\x74\x6f\x72\x79'][_0x238007(0x1dd)]>0x0?this[_0x238007(0x1fd)]['\x72\x65\x64\x75\x63\x65']((_0x186245,_0x1c2a1c)=>_0x186245+_0x1c2a1c,0x0)/this[_0x238007(0x1fd)]['\x6c\x65\x6e\x67\x74\x68']:null;this['\x63\x6f\x6e\x6e\x65\x63\x74\x69\x6f\x6e\x4d\x65\x74\x72\x69\x63\x73']={...this[_0x238007(0x1c4)],'\x6c\x61\x73\x74\x50\x69\x6e\x67\x4c\x61\x74\x65\x6e\x63\x79\x4d\x73':_0x1dd2a0,'\x61\x76\x67\x50\x69\x6e\x67\x4c\x61\x74\x65\x6e\x63\x79\x4d\x73':_0x5d3171,'\x6d\x69\x73\x73\x65\x64\x50\x6f\x6e\x67\x43\x6f\x75\x6e\x74':this[_0x238007(0x25d)],'\x6c\x61\x73\x74\x50\x6f\x6e\x67\x41\x74':_0x52e90a},this['\x75\x70\x64\x61\x74\x65\x43\x6f\x6e\x6e\x65\x63\x74\x69\x6f\x6e\x51\x75\x61\x6c\x69\x74\x79']();}[a0_0x51a297(0x26b)](){const _0x862429=a0_0x51a297,_0x34893c={'\x44\x45\x69\x43\x76':function(_0x396635,_0x10afc2){return _0x396635===_0x10afc2;},'\x53\x4b\x6a\x58\x43':function(_0x3a188a,_0x36d3b1){return _0x3a188a!==_0x36d3b1;}},_0x3241ba=_0x34893c['\x44\x45\x69\x43\x76'](this[_0x862429(0x1ad)],'\x63\x6f\x6e\x6e\x65\x63\x74\x65\x64'),_0x114c50=calculateConnectionQuality(this['\x63\x6f\x6e\x6e\x65\x63\x74\x69\x6f\x6e\x4d\x65\x74\x72\x69\x63\x73'],_0x3241ba);_0x34893c['\x53\x4b\x6a\x58\x43'](this['\x63\x6f\x6e\x6e\x65\x63\x74\x69\x6f\x6e\x4d\x65\x74\x72\x69\x63\x73'][_0x862429(0x1bd)],_0x114c50)&&(this['\x63\x6f\x6e\x6e\x65\x63\x74\x69\x6f\x6e\x4d\x65\x74\x72\x69\x63\x73']={...this[_0x862429(0x1c4)],'\x71\x75\x61\x6c\x69\x74\x79':_0x114c50},this[_0x862429(0x1de)][_0x862429(0x18d)]?.(this[_0x862429(0x1c4)]));}[a0_0x51a297(0x21e)](){const _0x52bc7b=a0_0x51a297,_0x3a185e=Date['\x6e\x6f\x77']();this[_0x52bc7b(0x1c4)]={...this['\x63\x6f\x6e\x6e\x65\x63\x74\x69\x6f\x6e\x4d\x65\x74\x72\x69\x63\x73'],'\x72\x65\x63\x6f\x6e\x6e\x65\x63\x74\x43\x6f\x75\x6e\x74':this[_0x52bc7b(0x1c4)][_0x52bc7b(0x268)]+0x1,'\x6c\x61\x73\x74\x52\x65\x63\x6f\x6e\x6e\x65\x63\x74\x41\x74':_0x3a185e},this['\x70\x69\x6e\x67\x4c\x61\x74\x65\x6e\x63\x79\x48\x69\x73\x74\x6f\x72\x79']=[],this[_0x52bc7b(0x26b)]();}[a0_0x51a297(0x1e2)](){const _0x38e263=a0_0x51a297,_0x19ad69={'\x74\x51\x65\x68\x48':function(_0x2ecc8d,_0x1c5b40){return _0x2ecc8d+_0x1c5b40;}};if(!this[_0x38e263(0x1df)][_0x38e263(0x258)])return;const _0x27e865=this[_0x38e263(0x1df)]['\x72\x65\x70\x6c\x61\x79\x53\x74\x6f\x72\x61\x67\x65\x4b\x65\x79\x50\x72\x65\x66\x69\x78'];try{this[_0x38e263(0x220)]=this[_0x38e263(0x1df)][_0x38e263(0x208)][_0x38e263(0x212)](_0x19ad69[_0x38e263(0x19f)](_0x27e865,STORAGE_KEYS['\x6c\x61\x73\x74\x45\x76\x65\x6e\x74\x49\x64'])),this[_0x38e263(0x253)]=this[_0x38e263(0x1df)][_0x38e263(0x208)][_0x38e263(0x212)](_0x27e865+STORAGE_KEYS[_0x38e263(0x24f)]),this['\x63\x75\x72\x72\x65\x6e\x74\x53\x65\x73\x73\x69\x6f\x6e\x49\x64']=this[_0x38e263(0x1df)][_0x38e263(0x208)][_0x38e263(0x212)](_0x19ad69[_0x38e263(0x19f)](_0x27e865,STORAGE_KEYS['\x73\x65\x73\x73\x69\x6f\x6e\x49\x64']));}catch{}}[a0_0x51a297(0x1b2)](){const _0x4eb479=a0_0x51a297;if(!this[_0x4eb479(0x1df)]['\x65\x6e\x61\x62\x6c\x65\x52\x65\x70\x6c\x61\x79\x50\x65\x72\x73\x69\x73\x74\x65\x6e\x63\x65'])return;const _0x9be809=this[_0x4eb479(0x1df)]['\x72\x65\x70\x6c\x61\x79\x53\x74\x6f\x72\x61\x67\x65\x4b\x65\x79\x50\x72\x65\x66\x69\x78'];try{if(this[_0x4eb479(0x220)])this[_0x4eb479(0x1df)][_0x4eb479(0x208)][_0x4eb479(0x21a)](_0x9be809+STORAGE_KEYS[_0x4eb479(0x220)],this[_0x4eb479(0x220)]);if(this['\x63\x75\x72\x72\x65\x6e\x74\x45\x78\x65\x63\x75\x74\x69\x6f\x6e\x49\x64'])this[_0x4eb479(0x1df)][_0x4eb479(0x208)][_0x4eb479(0x21a)](_0x9be809+STORAGE_KEYS[_0x4eb479(0x24f)],this['\x63\x75\x72\x72\x65\x6e\x74\x45\x78\x65\x63\x75\x74\x69\x6f\x6e\x49\x64']);if(this['\x63\x75\x72\x72\x65\x6e\x74\x53\x65\x73\x73\x69\x6f\x6e\x49\x64'])this[_0x4eb479(0x1df)][_0x4eb479(0x208)]['\x73\x65\x74\x49\x74\x65\x6d'](_0x9be809+STORAGE_KEYS[_0x4eb479(0x217)],this[_0x4eb479(0x214)]);}catch{}}};export{INITIAL_METRICS,SessionGatewayClient,calculateConnectionQuality};
@@ -1,2 +1,2 @@
1
- import { a as TANGLE_JOBS_CONTRACT, c as AgentSandboxBlueprintAbi, d as SandboxCreateParamTypes, f as SandboxCreateResponseParamTypes, i as TANGLE_CHAIN_ID, l as ITangleJobsAbi, n as JOB_SANDBOX_CREATE, o as TANGLE_MAINNET_RPC, p as SandboxIdParamTypes, r as JOB_SANDBOX_DELETE, s as TangleSandboxClientConfig, t as TangleSandboxClient, u as JsonResponseParamTypes } from "../index-D0W38yH0.js";
1
+ import { a as TANGLE_JOBS_CONTRACT, c as AgentSandboxBlueprintAbi, d as SandboxCreateParamTypes, f as SandboxCreateResponseParamTypes, i as TANGLE_CHAIN_ID, l as ITangleJobsAbi, n as JOB_SANDBOX_CREATE, o as TANGLE_MAINNET_RPC, p as SandboxIdParamTypes, r as JOB_SANDBOX_DELETE, s as TangleSandboxClientConfig, t as TangleSandboxClient, u as JsonResponseParamTypes } from "../index-Bm9jAzE2.js";
2
2
  export { AgentSandboxBlueprintAbi, ITangleJobsAbi, JOB_SANDBOX_CREATE, JOB_SANDBOX_DELETE, JsonResponseParamTypes, SandboxCreateParamTypes, SandboxCreateResponseParamTypes, SandboxIdParamTypes, TANGLE_CHAIN_ID, TANGLE_JOBS_CONTRACT, TANGLE_MAINNET_RPC, TangleSandboxClient, TangleSandboxClientConfig };
@@ -1 +1 @@
1
- function a0_0x45d1(_0x29f7bc,_0x47a927){_0x29f7bc=_0x29f7bc-0x12c;var _0x57a7be=a0_0x57a7();var _0x45d175=_0x57a7be[_0x29f7bc];if(a0_0x45d1['\x5a\x4d\x47\x64\x55\x73']===undefined){var _0x541e78=function(_0x5affdf){var _0xe40d2d='\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';var _0x4b5669='',_0x4cd657='';for(var _0x5d203b=0x0,_0x2c581b,_0x171cab,_0xd6d772=0x0;_0x171cab=_0x5affdf['\x63\x68\x61\x72\x41\x74'](_0xd6d772++);~_0x171cab&&(_0x2c581b=_0x5d203b%0x4?_0x2c581b*0x40+_0x171cab:_0x171cab,_0x5d203b++%0x4)?_0x4b5669+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0xff&_0x2c581b>>(-0x2*_0x5d203b&0x6)):0x0){_0x171cab=_0xe40d2d['\x69\x6e\x64\x65\x78\x4f\x66'](_0x171cab);}for(var _0x30ee8e=0x0,_0x4b10e9=_0x4b5669['\x6c\x65\x6e\x67\x74\x68'];_0x30ee8e<_0x4b10e9;_0x30ee8e++){_0x4cd657+='\x25'+('\x30\x30'+_0x4b5669['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x30ee8e)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x10))['\x73\x6c\x69\x63\x65'](-0x2);}return decodeURIComponent(_0x4cd657);};a0_0x45d1['\x42\x64\x4a\x76\x77\x6e']=_0x541e78,a0_0x45d1['\x58\x72\x5a\x5a\x4c\x6f']={},a0_0x45d1['\x5a\x4d\x47\x64\x55\x73']=!![];}var _0x316f2f=_0x57a7be[0x0],_0x569a57=_0x29f7bc+_0x316f2f,_0x1c5785=a0_0x45d1['\x58\x72\x5a\x5a\x4c\x6f'][_0x569a57];return!_0x1c5785?(_0x45d175=a0_0x45d1['\x42\x64\x4a\x76\x77\x6e'](_0x45d175),a0_0x45d1['\x58\x72\x5a\x5a\x4c\x6f'][_0x569a57]=_0x45d175):_0x45d175=_0x1c5785,_0x45d175;}(function(_0x23e070,_0xf05f4b){var _0x2b7665=a0_0x45d1,_0x19650a=_0x23e070();while(!![]){try{var _0x524276=parseInt(_0x2b7665(0x131))/0x1+-parseInt(_0x2b7665(0x12d))/0x2+-parseInt(_0x2b7665(0x132))/0x3*(parseInt(_0x2b7665(0x133))/0x4)+parseInt(_0x2b7665(0x12f))/0x5+-parseInt(_0x2b7665(0x12e))/0x6*(-parseInt(_0x2b7665(0x130))/0x7)+parseInt(_0x2b7665(0x12c))/0x8*(parseInt(_0x2b7665(0x134))/0x9)+-parseInt(_0x2b7665(0x135))/0xa;if(_0x524276===_0xf05f4b)break;else _0x19650a['push'](_0x19650a['shift']());}catch(_0x3a4ce8){_0x19650a['push'](_0x19650a['shift']());}}}(a0_0x57a7,0x8b393));function a0_0x57a7(){var _0x12b441=['\x6d\x74\x71\x32\x6e\x74\x6d\x5a\x6e\x78\x66\x4f\x7a\x4b\x6e\x73\x79\x71','\x6d\x74\x61\x57\x6d\x5a\x71\x32\x6d\x5a\x62\x65\x75\x67\x7a\x78\x72\x68\x47','\x6e\x74\x7a\x63\x45\x4b\x72\x6b\x74\x75\x4f','\x6d\x74\x75\x59\x6e\x74\x61\x33\x6e\x67\x4c\x50\x41\x75\x44\x72\x71\x47','\x6d\x5a\x79\x35\x6d\x5a\x79\x32\x76\x4d\x66\x67\x73\x77\x66\x66','\x6d\x74\x6d\x32\x6d\x64\x69\x31\x6d\x68\x72\x77\x42\x76\x4c\x64\x76\x57','\x6e\x5a\x44\x34\x42\x67\x58\x33\x76\x4d\x43','\x6e\x64\x79\x57\x6e\x4a\x79\x59\x75\x4e\x72\x5a\x71\x4d\x6e\x30','\x6d\x33\x6a\x54\x43\x66\x44\x41\x76\x61','\x6f\x64\x75\x5a\x6d\x5a\x65\x32\x79\x76\x50\x73\x72\x4b\x4c\x6a'];a0_0x57a7=function(){return _0x12b441;};return a0_0x57a7();}import{a as a0_0x4b5669,c as a0_0x4cd657,d as a0_0x5d203b,f as a0_0x2c581b,i as a0_0x171cab,l as a0_0xd6d772,n as a0_0x30ee8e,o as a0_0x4b10e9,r as a0_0x136a91,s as a0_0x4f18b4,t as a0_0x20eac3,u as a0_0xdb289d}from'\x2e\x2e\x2f\x74\x61\x6e\x67\x6c\x65\x2d\x42\x62\x61\x53\x47\x43\x69\x41\x2e\x6a\x73';export{a0_0x4f18b4 as AgentSandboxBlueprintAbi,a0_0x4cd657 as ITangleJobsAbi,a0_0x30ee8e as JOB_SANDBOX_CREATE,a0_0x136a91 as JOB_SANDBOX_DELETE,a0_0xd6d772 as JsonResponseParamTypes,a0_0xdb289d as SandboxCreateParamTypes,a0_0x5d203b as SandboxCreateResponseParamTypes,a0_0x2c581b as SandboxIdParamTypes,a0_0x171cab as TANGLE_CHAIN_ID,a0_0x4b5669 as TANGLE_JOBS_CONTRACT,a0_0x4b10e9 as TANGLE_MAINNET_RPC,a0_0x20eac3 as TangleSandboxClient};
1
+ (function(_0x5411c5,_0x517d54){var _0x2e4a29=a0_0x4626,_0x4f66aa=_0x5411c5();while(!![]){try{var _0x566f6a=-parseInt(_0x2e4a29(0x70))/0x1+parseInt(_0x2e4a29(0x75))/0x2*(parseInt(_0x2e4a29(0x6e))/0x3)+parseInt(_0x2e4a29(0x72))/0x4*(parseInt(_0x2e4a29(0x71))/0x5)+-parseInt(_0x2e4a29(0x6f))/0x6+-parseInt(_0x2e4a29(0x76))/0x7+parseInt(_0x2e4a29(0x73))/0x8+-parseInt(_0x2e4a29(0x74))/0x9;if(_0x566f6a===_0x517d54)break;else _0x4f66aa['push'](_0x4f66aa['shift']());}catch(_0x59d893){_0x4f66aa['push'](_0x4f66aa['shift']());}}}(a0_0xe4ea,0xe3271));import{a as a0_0x12d2fd,c as a0_0x59cff4,d as a0_0x329266,f as a0_0x4ad506,i as a0_0x3b3f6f,l as a0_0x3b0d47,n as a0_0x1d4195,o as a0_0x3abfa8,r as a0_0x1efd3b,s as a0_0x4b3991,t as a0_0x5e06dc,u as a0_0x1c6f2c}from'\x2e\x2e\x2f\x74\x61\x6e\x67\x6c\x65\x2d\x44\x62\x58\x33\x32\x72\x2d\x35\x2e\x6a\x73';function a0_0xe4ea(){var _0x2f7288=['\x6d\x5a\x6d\x31\x6f\x64\x71\x59\x6d\x4b\x50\x6e\x72\x76\x62\x4e\x71\x47','\x6d\x74\x65\x59\x6f\x64\x69\x32\x7a\x4e\x6e\x59\x42\x65\x58\x30','\x6e\x4a\x6d\x35\x6d\x64\x6d\x59\x6f\x67\x39\x66\x75\x4c\x66\x6b\x41\x57','\x6e\x4d\x31\x50\x45\x67\x44\x71\x44\x71','\x6d\x5a\x69\x57\x6d\x4a\x79\x5a\x6f\x68\x62\x71\x44\x78\x44\x75\x42\x61','\x6d\x74\x61\x59\x6d\x5a\x79\x32\x44\x32\x72\x72\x41\x66\x7a\x33','\x6d\x74\x75\x58\x6e\x74\x4b\x31\x72\x76\x76\x53\x76\x77\x48\x69','\x6d\x74\x43\x59\x79\x4d\x39\x58\x44\x68\x48\x62','\x6d\x74\x65\x30\x6f\x64\x47\x32\x6d\x64\x62\x51\x72\x68\x6a\x49\x77\x65\x75'];a0_0xe4ea=function(){return _0x2f7288;};return a0_0xe4ea();}function a0_0x4626(_0x553331,_0x473eeb){_0x553331=_0x553331-0x6e;var _0xe4eaaa=a0_0xe4ea();var _0x4626d5=_0xe4eaaa[_0x553331];if(a0_0x4626['\x4a\x41\x49\x71\x52\x58']===undefined){var _0x100390=function(_0x1b2fc8){var _0x520416='\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';var _0x12d2fd='',_0x59cff4='';for(var _0x329266=0x0,_0x4ad506,_0x3b3f6f,_0x3b0d47=0x0;_0x3b3f6f=_0x1b2fc8['\x63\x68\x61\x72\x41\x74'](_0x3b0d47++);~_0x3b3f6f&&(_0x4ad506=_0x329266%0x4?_0x4ad506*0x40+_0x3b3f6f:_0x3b3f6f,_0x329266++%0x4)?_0x12d2fd+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0xff&_0x4ad506>>(-0x2*_0x329266&0x6)):0x0){_0x3b3f6f=_0x520416['\x69\x6e\x64\x65\x78\x4f\x66'](_0x3b3f6f);}for(var _0x1d4195=0x0,_0x3abfa8=_0x12d2fd['\x6c\x65\x6e\x67\x74\x68'];_0x1d4195<_0x3abfa8;_0x1d4195++){_0x59cff4+='\x25'+('\x30\x30'+_0x12d2fd['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x1d4195)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x10))['\x73\x6c\x69\x63\x65'](-0x2);}return decodeURIComponent(_0x59cff4);};a0_0x4626['\x50\x6c\x4d\x4d\x54\x4a']=_0x100390,a0_0x4626['\x66\x42\x44\x56\x4f\x4e']={},a0_0x4626['\x4a\x41\x49\x71\x52\x58']=!![];}var _0x3f57a5=_0xe4eaaa[0x0],_0x542557=_0x553331+_0x3f57a5,_0x5512e5=a0_0x4626['\x66\x42\x44\x56\x4f\x4e'][_0x542557];return!_0x5512e5?(_0x4626d5=a0_0x4626['\x50\x6c\x4d\x4d\x54\x4a'](_0x4626d5),a0_0x4626['\x66\x42\x44\x56\x4f\x4e'][_0x542557]=_0x4626d5):_0x4626d5=_0x5512e5,_0x4626d5;}export{a0_0x4b3991 as AgentSandboxBlueprintAbi,a0_0x59cff4 as ITangleJobsAbi,a0_0x1d4195 as JOB_SANDBOX_CREATE,a0_0x1efd3b as JOB_SANDBOX_DELETE,a0_0x3b0d47 as JsonResponseParamTypes,a0_0x1c6f2c as SandboxCreateParamTypes,a0_0x329266 as SandboxCreateResponseParamTypes,a0_0x4ad506 as SandboxIdParamTypes,a0_0x3b3f6f as TANGLE_CHAIN_ID,a0_0x12d2fd as TANGLE_JOBS_CONTRACT,a0_0x3abfa8 as TANGLE_MAINNET_RPC,a0_0x5e06dc as TangleSandboxClient};