From 380da813c5c07cef8d3c575171ecf3f683d833d0 Mon Sep 17 00:00:00 2001 From: Logic Date: Sat, 21 Mar 2026 15:10:32 +0800 Subject: [PATCH] feat(cli): package project as installable command --- .gitignore | 3 + README.md | 25 +- pyproject.toml | 21 +- src/__init__.py | 2 + src/__main__.py | 5 + src/chatgpt_payment.py | 9 +- src/chatgpt_register_http_reverse.py | 34 +- src/codex_oauth_http_flow.py | 29 +- src/main.py | 25 +- src/nodatadog.js | 49618 +++++++++++++++++++++++++ uv.lock | 488 +- 11 files changed, 49974 insertions(+), 285 deletions(-) create mode 100644 src/__init__.py create mode 100644 src/__main__.py create mode 100644 src/nodatadog.js diff --git a/.gitignore b/.gitignore index fe0645c..2ac9aac 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,6 @@ .claude/ __pycache__/ *.py[cod] +build/ +dist/ +*.egg-info/ diff --git a/README.md b/README.md index 3b11b49..0a0455c 100644 --- a/README.md +++ b/README.md @@ -10,10 +10,25 @@ ChatGPT 账号自动注册工具,以及 Codex CLI OAuth 登录工具。 ## 安装 +### 方式 1:直接当命令行工具安装 + +```bash +uv tool install . +# 安装后即可直接执行 +gptplus-auto --help +``` + +如果想装到当前项目虚拟环境里: + +```bash +uv sync +uv run gptplus-auto --help +``` + +### 方式 2:源码方式运行 + ```bash uv sync -# 或 -pip install -r requirements.txt ``` ## 配置 @@ -40,6 +55,8 @@ CURRENCY=usd ### 仅注册账号 ```bash +gptplus-auto register +# 或源码方式 uv run python src/main.py register ``` @@ -57,6 +74,8 @@ access_token: eyJhbGci... ### 注册账号 + 获取 Plus 支付链接 ```bash +gptplus-auto checkout +# 或源码方式 uv run python src/main.py checkout ``` @@ -77,6 +96,8 @@ https://pay.openai.com/c/pay/cs_live_a1... ### Codex CLI OAuth 登录 ```bash +gptplus-auto codex-login --email user@example.com --password yourpassword +# 或源码方式 uv run python src/main.py codex-login --email user@example.com --password yourpassword ``` diff --git a/pyproject.toml b/pyproject.toml index 1b9d1e6..c26211f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,12 @@ +[build-system] +requires = ["setuptools>=68"] +build-backend = "setuptools.build_meta" + [project] name = "gptplus-auto" version = "0.1.0" +description = "ChatGPT account tools with a direct CLI entry point" +readme = "README.md" requires-python = ">=3.11" dependencies = [ "curl-cffi>=0.14.0", @@ -10,5 +16,16 @@ dependencies = [ "pydantic-settings>=2.0.0", ] -[tool.uv] -dev-dependencies = [] +[project.scripts] +gptplus-auto = "gptplus_auto.main:main" + +[tool.setuptools] +packages = ["gptplus_auto"] +package-dir = { gptplus_auto = "src" } +include-package-data = true + +[tool.setuptools.package-data] +gptplus_auto = ["nodatadog.js"] + +[dependency-groups] +dev = [] diff --git a/src/__init__.py b/src/__init__.py new file mode 100644 index 0000000..fe6eae9 --- /dev/null +++ b/src/__init__.py @@ -0,0 +1,2 @@ +"""gptplus_auto package.""" + diff --git a/src/__main__.py b/src/__main__.py new file mode 100644 index 0000000..2fb3861 --- /dev/null +++ b/src/__main__.py @@ -0,0 +1,5 @@ +from .main import main + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/src/chatgpt_payment.py b/src/chatgpt_payment.py index e76c4de..b5415aa 100644 --- a/src/chatgpt_payment.py +++ b/src/chatgpt_payment.py @@ -1,7 +1,12 @@ """ChatGPT Plus payment flow.""" import uuid -from http_client import HTTPClient -from captcha_solver import CaptchaSolver + +try: + from .http_client import HTTPClient + from .captcha_solver import CaptchaSolver +except ImportError: # pragma: no cover - allow direct script execution from source tree + from http_client import HTTPClient + from captcha_solver import CaptchaSolver class ChatGPTPayment: diff --git a/src/chatgpt_register_http_reverse.py b/src/chatgpt_register_http_reverse.py index 751679b..06a49f7 100644 --- a/src/chatgpt_register_http_reverse.py +++ b/src/chatgpt_register_http_reverse.py @@ -1,22 +1,28 @@ +from __future__ import annotations + """Pure HTTP registration experiment with detailed auth-state diagnostics.""" import os import re import uuid +from pathlib import Path from typing import Optional from urllib.parse import unquote, urlencode, urljoin, urlparse -from http_client import HTTPClient -from vmail_client import get_mail_client -from config import settings +try: + from .http_client import HTTPClient + from .vmail_client import BaseMailClient +except ImportError: # pragma: no cover - allow direct script execution from source tree + from http_client import HTTPClient + from vmail_client import BaseMailClient class ChatGPTRegisterHTTPReverse: - def __init__(self, http: HTTPClient, mail: MailClient): + def __init__(self, http: HTTPClient, mail: BaseMailClient): self.http = http self.mail = mail self.base = "https://chatgpt.com" self.auth_base = "https://auth.openai.com" - self.root_dir = os.path.dirname(os.path.dirname(__file__)) + self.module_dir = Path(__file__).resolve().parent def _cookie_rows(self) -> list[tuple[str, str, str]]: rows = [] @@ -74,11 +80,19 @@ class ChatGPTRegisterHTTPReverse: return None def _load_captured_sentinel(self, flow_name: str) -> str: - path = os.path.join(self.root_dir, "nodatadog.js") - try: - with open(path, "r", encoding="utf-8") as handle: - content = handle.read() - except FileNotFoundError: + candidates = [ + self.module_dir / "nodatadog.js", + self.module_dir.parent / "nodatadog.js", + Path.cwd() / "nodatadog.js", + ] + content = "" + for path in candidates: + try: + content = path.read_text(encoding="utf-8") + break + except FileNotFoundError: + continue + if not content: return "" pattern = re.compile(r'"openai-sentinel-token": "((?:[^"\\]|\\.)*flow\\"\\"%s(?:[^"\\]|\\.)*)"' % re.escape(flow_name)) match = pattern.search(content) diff --git a/src/codex_oauth_http_flow.py b/src/codex_oauth_http_flow.py index eee0e87..c07d3dd 100644 --- a/src/codex_oauth_http_flow.py +++ b/src/codex_oauth_http_flow.py @@ -9,7 +9,12 @@ from pathlib import Path from typing import Any from urllib.parse import urljoin, urlparse -from http_client import HTTPClient +try: + from .config import settings + from .http_client import HTTPClient +except ImportError: # pragma: no cover - allow direct script execution from source tree + from config import settings + from http_client import HTTPClient try: from playwright.sync_api import TimeoutError as PlaywrightTimeoutError @@ -170,23 +175,10 @@ class BrowserSentinelHelper: def load_proxy() -> str: - proxy = os.getenv("SOCKS5_PROXY", "").strip() + proxy = settings.socks5_proxy.strip() if proxy: return proxy - - env_path = Path(__file__).resolve().parent.parent / ".env" - if not env_path.exists(): - return "" - - for raw_line in env_path.read_text(encoding="utf-8").splitlines(): - line = raw_line.strip() - if not line or line.startswith("#") or "=" not in line: - continue - key, value = line.split("=", 1) - if key.strip() != "SOCKS5_PROXY": - continue - return value.strip().strip("\"'") - return "" + return os.getenv("SOCKS5_PROXY", "").strip() class CodexOAuthHTTPFlow: @@ -314,7 +306,10 @@ class CodexOAuthHTTPFlow: return "" mail = self.mail_client if not mail: - from vmail_client import get_mail_client + try: + from .vmail_client import get_mail_client + except ImportError: # pragma: no cover - allow direct script execution from source tree + from vmail_client import get_mail_client mail = get_mail_client() print("[otp] auto-fetching OTP from mailbox...") try: diff --git a/src/main.py b/src/main.py index 0e90d5d..7229d1d 100644 --- a/src/main.py +++ b/src/main.py @@ -5,13 +5,22 @@ import random import string import sys -from config import settings -from vmail_client import get_mail_client -from captcha_solver import CaptchaSolver -from http_client import HTTPClient -from chatgpt_register_http_reverse import ChatGPTRegisterHTTPReverse -from chatgpt_payment import ChatGPTPayment -from codex_oauth_http_flow import CodexOAuthHTTPFlow, DEFAULT_AUTHORIZE_URL +try: + from .config import settings + from .vmail_client import get_mail_client + from .captcha_solver import CaptchaSolver + from .http_client import HTTPClient + from .chatgpt_register_http_reverse import ChatGPTRegisterHTTPReverse + from .chatgpt_payment import ChatGPTPayment + from .codex_oauth_http_flow import CodexOAuthHTTPFlow, DEFAULT_AUTHORIZE_URL +except ImportError: # pragma: no cover - allow direct script execution from source tree + from config import settings + from vmail_client import get_mail_client + from captcha_solver import CaptchaSolver + from http_client import HTTPClient + from chatgpt_register_http_reverse import ChatGPTRegisterHTTPReverse + from chatgpt_payment import ChatGPTPayment + from codex_oauth_http_flow import CodexOAuthHTTPFlow, DEFAULT_AUTHORIZE_URL def generate_password(length=16): @@ -144,7 +153,7 @@ def cmd_codex_login(args): def build_parser(): parser = argparse.ArgumentParser( - prog="main.py", + prog="gptplus-auto", description="ChatGPT account tools", ) sub = parser.add_subparsers(dest="command") diff --git a/src/nodatadog.js b/src/nodatadog.js new file mode 100644 index 0000000..0c8d699 --- /dev/null +++ b/src/nodatadog.js @@ -0,0 +1,49618 @@ +// Run the following command to install the required dependencies +// npm install @xmldom/xmldom@0.8.8 acorn@8.11.3 +const DOMParser = require("@xmldom/xmldom").DOMParser +const acorn = require("acorn") +const xmlParser = new DOMParser({ + warning: () => {}, + error: () => {}, + fatalError: () => {} +}) +async function main() { + async function executeRequest0008({ + }) { + console.log("Executing request 0008") + const response = await fetch( + "https://ogads-pa.clients6.google.com/$rpc/google.internal.onegoogle.asyncdata.v1.AsyncDataService/GetAsyncData", + { + method: "OPTIONS", + headers: { + "host": "ogads-pa.clients6.google.com", + "connection": "keep-alive", + "accept": "*/*", + "access-control-request-method": "POST", + "access-control-request-headers": "content-type,x-goog-api-key,x-user-agent", + "origin": "chrome-untrusted//new-tab-page", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-fetch-mode": "cors", + "sec-fetch-site": "cross-site", + "sec-fetch-dest": "empty", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + } + } + ) + const body = await response.text() + return { + variable12: response.headers.get("content-length"), + variable4: response.headers.get("access-control-allow-credentials") + } + } + async function executeRequest0009({ + }) { + console.log("Executing request 0009") + const response = await fetch( + "https://android.clients.google.com/c2dm/register3", + { + method: "POST", + headers: { + "host": "android.clients.google.com", + "connection": "keep-alive", + "authorization": "AidLogin 48414557928291861127629698221106001664", + "content-type": "application/x-www-form-urlencoded", + "sec-fetch-site": "none", + "sec-fetch-mode": "no-cors", + "sec-fetch-dest": "empty", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: "app=com.google.android.gms&device=4841455792829186112&sender=745476177629" + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0015({ + }) { + console.log("Executing request 0015") + const response = await fetch( + "https://chatgpt.com/", + { + method: "GET", + headers: { + "host": "chatgpt.com", + "connection": "keep-alive", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"macOS\"", + "upgrade-insecure-requests": "1", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", + "sec-fetch-site": "none", + "sec-fetch-mode": "navigate", + "sec-fetch-user": "?1", + "sec-fetch-dest": "document", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": "oai-chat-web-route=web; oai-did=2b5a57b5-2e0d-4cd3-910c-e00d9bc2c517; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; oai-sc=0gAAAAABpuik2XK6cFTvZ7CW19DvGE-DO4lJGPKxN5z8Fvm_2Vqu9_xwZfQStLy5MJhF77-t9-t3xL-FAjkuunQPflLPSPz12_USII85B-q7fx0azlKRrIrF4zzvVNHowWDM2nhd-ggecSGoPaH6RM8b-NrnDyNQgG0PmZk0XxTHADDEGdQLT5hP_3zQur3ATast0BVXCVhfeLhYA8TZlkMNdkusMAYF5HoLFw-f3ghP993VFElCYX_w; g_state={\"i_l\"0,\"i_ll\"1773808148327,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773808148$j60$l0$h0; cf_clearance=Jjb_Uh42phctJCQ3G2m_u5c.bBBDkMon5Tt18f6Xrng-1773808148-1.2.1.1-1drIx0.VkHYs4zRG6GOT9MLs6R7yhtrglrfbE_0VOwnEpqmdXsZ4MsvfOdKdLKPhlzswhDU1iIXwjPHpQdoWec9.ytgSWv9.X2.hNLKLQBBrRUySo02lph2qcYBogixwbLz_B75qRCL4jelnW76y.SeYTujDoeE1.Z0.E_7bwui_ap9AqprFQ05oWkOGLuMICL2XGp4TUq_K_WA.RILeGlAYxS438T6YO3HegGyOBW4gMtDJfn4Hz2q8r9lX6IorysM0fEyLas697t._GQqQy251C3GVrhIR4jdYE8vgrEVqyYUitWu46yKbFjsV0aVdufuwtdPqoR321zluD0hHyw; __cf_bm=bKtew6IOJqCKjENQccCBNWr9FDWeb9HJbC5YlyrIX_U-1773808148.0358622-1.0.1.1-V9eVZn524AReGkL3KbQtCNRDgY6L.mtyIprvriH1RniiLQuATUkVXAzh6hjmKHygZVA7HrgiASAb.JKn5AicF0_hdha4pwH44rXHdOYRmiBe5XIC__6Ylx5TEXo3SW3H; _dd_s=aid=45ead1a9-904d-460d-ae4f-bd6045b8d46f&rum=0&expire=1773809049093&logs=1&id=c849f967-904c-4d56-b517-d53058f43cdf&created=1773807399303" + } + } + ) + const body = await response.text() + return { + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["dynamic_configs"]["216497991"]["value"]["max_pinned_room_count"], + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["dynamic_configs"]["216497991"]["value"]["sidebar_default_recent_room_row_count"], + statsigpayloadDynamicConfigs2179180337ValueMaxAttempts: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["dynamic_configs"]["2179180337"]["value"]["max_attempts"], + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["dynamic_configs"]["216497991"]["value"]["max_file_size_mb"], + statsigpayloadDynamicConfigs216497991ValueSidebarPaginationPageSize: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["dynamic_configs"]["216497991"]["value"]["sidebar_pagination_page_size"], + statsigpayloadDynamicConfigs349489989ValueOneCharacterAnimationDurationMs: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["dynamic_configs"]["349489989"]["value"]["one_character_animation_duration_ms"], + 7: JSON.parse(acorn.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[14].childNodes[0].childNodes[0].textContent,{ecmaVersion: 2020})["body"]["0"]["expression"]["arguments"]["0"])[6]["_7"], + statsigpayloadDynamicConfigs216497991ValueOutdatedRoomBootstrapMessagesCount: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["dynamic_configs"]["216497991"]["value"]["outdated_room_bootstrap_messages_count"], + statsigpayloadDynamicConfigs3165814200ValueMaxRetryCount: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["dynamic_configs"]["3165814200"]["value"]["MAX_RETRY_COUNT"], + statsigpayloadLayerConfigs1092897457ValueMaxCommitConversationStalenessDays: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["layer_configs"]["1092897457"]["value"]["max_commit_conversation_staleness_days"], + statsigpayloadDynamicConfigs3230069703ValueExpiryseconds: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["dynamic_configs"]["3230069703"]["value"]["expirySeconds"], + attributeWidth1: xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[3].childNodes[0].childNodes[0].childNodes[0].childNodes[1].childNodes[0].childNodes[0].childNodes[1].childNodes[0].childNodes[1].getAttribute("width"), + attributeWidth: xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[3].childNodes[0].childNodes[0].childNodes[0].childNodes[0].childNodes[0].childNodes[0].childNodes[0].childNodes[0].childNodes[0].childNodes[0].getAttribute("width"), + 20: JSON.parse(acorn.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[14].childNodes[0].childNodes[0].textContent,{ecmaVersion: 2020})["body"]["0"]["expression"]["arguments"]["0"])[4]["_20"], + 22: JSON.parse(acorn.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[14].childNodes[0].childNodes[0].textContent,{ecmaVersion: 2020})["body"]["0"]["expression"]["arguments"]["0"])[2]["_22"], + statsigpayloadDynamicConfigs1504865540ValueMaxFileSizeMb: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["dynamic_configs"]["1504865540"]["value"]["max_file_size_mb"], + statsigpayloadLayerConfigs3850010910ValuePlusGracePeriodDays: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["layer_configs"]["3850010910"]["value"]["plus_grace_period_days"], + statsigpayloadDynamicConfigs2943229081ValueVoiceUsedWithinPastDays: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["dynamic_configs"]["2943229081"]["value"]["voice-used-within-past-days"], + statsigpayloadLayerConfigs2128165686ValueProductsHeapWeight: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["layer_configs"]["2128165686"]["value"]["products_heap_weight"], + statsigpayloadDynamicConfigs916292397ValueMaxImpressions: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["dynamic_configs"]["916292397"]["value"]["max_impressions"], + statsigpayloadDynamicConfigs3689744552ValueLookbackDays: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["dynamic_configs"]["3689744552"]["value"]["lookback_days"], + statsigpayloadLayerConfigs1368081792ValueTatortotContextualUpsellFrequencyWindowLengthHours: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["layer_configs"]["1368081792"]["value"]["tatortot_contextual_upsell_frequency_window_length_hours"], + statsigpayloadLayerConfigs684023316ValueMemoryAlmostFullThreshold: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["layer_configs"]["684023316"]["value"]["memory_almost_full_threshold"], + statsigpayloadDynamicConfigs1967546325ValueGdrivepercentage: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["dynamic_configs"]["1967546325"]["value"]["gdrivePercentage"], + statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["dynamic_configs"]["3317473948"]["value"]["default_max_polling_duration"], + statsigpayloadDynamicConfigs3165814200ValueMinRetryInterval: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["dynamic_configs"]["3165814200"]["value"]["MIN_RETRY_INTERVAL"], + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["dynamic_configs"]["216497991"]["value"]["idle_room_navigation_timeout_s"], + statsigpayloadDynamicConfigs3317473948ValueModelSlugMaxPollingDurationsO1Pro: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["dynamic_configs"]["3317473948"]["value"]["model_slug_max_polling_durations"]["o1_pro"], + statsigpayloadLayerConfigs3850010910ValueBillingFailureBannerIntervalMins: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["layer_configs"]["3850010910"]["value"]["billing_failure_banner_interval_mins"], + attributeDataSeq: xmlParser.parseFromString(body,"text/xml").documentElement.getAttribute("data-seq"), + clientLocale: new URL(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[0].childNodes[19].getAttribute("content")).pathname, + attributeDataBuild: xmlParser.parseFromString(body,"text/xml").documentElement.getAttribute("data-build"), + hostNextAuthCsrfTokenCookie: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '__Host-next-auth.csrf-token').split("=")[1].split(";")[0].trim(), + secureNextAuthCallbackUrlCookie: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '__Secure-next-auth.callback-url').split("=")[1].split(";")[0].trim(), + cfuvidCookie: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '_cfuvid').split("=")[1].split(";")[0].trim(), + attributeType: xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].getAttribute("type"), + attributeAriaExpanded: xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[3].childNodes[0].childNodes[0].childNodes[0].childNodes[0].childNodes[0].childNodes[0].childNodes[0].childNodes[0].childNodes[0].getAttribute("aria-expanded"), + session: JSON.stringify(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["session"]), + graphParentorganizationUrl: new URL(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[0].childNodes[93].childNodes[0].textContent)["@graph"][0]["parentOrganization"]["url"]).hostname, + variable5: xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[0].childNodes[2].childNodes[0], + statsigpayloadDynamicConfigs217573384Value: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["dynamic_configs"]["217573384"]["value"], + attributeContent: new URL(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[0].childNodes[4].getAttribute("content")).pathname, + authstatus: JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["authStatus"], + userGroups: JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["user"]["groups"], + statsigpayloadDynamicConfigs3685705952ValueSms: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["dynamic_configs"]["3685705952"]["value"]["sms"][0], + graphSameas: new URL(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[0].childNodes[93].childNodes[0].textContent)["@graph"][0]["sameAs"][1]).pathname, + statsigpayloadDynamicConfigs489084288ValueOptions: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["dynamic_configs"]["489084288"]["value"]["options"][3], + statsigpayloadFeatureGates6102981RuleId: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["feature_gates"]["6102981"]["rule_id"], + variable14: acorn.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[23].childNodes[0].textContent,{ecmaVersion: 2020})["body"]["0"]["expression"]["callee"]["body"]["body"]["1"]["consequent"]["body"]["0"]["declarations"]["0"]["init"]["arguments"]["0"], + statsigpayloadLayerConfigs109457ValueOnboardingStyle: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["layer_configs"]["109457"]["value"]["onboarding_style"], + attributeRole: xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[6].getAttribute("role"), + statsigpayloadLayerConfigs4112645001ValueOutline: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["layer_configs"]["4112645001"]["value"]["outline"], + statsigpayloadDynamicConfigs2850107578ValueOnboardingCardImageUrl: new URL(JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["dynamic_configs"]["2850107578"]["value"]["onboarding"]["card_image_url"]).pathname, + statsigpayloadDynamicConfigs3685705952ValueWhatsapp: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["dynamic_configs"]["3685705952"]["value"]["whatsapp"][128], + cluster: JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["cluster"], + attributeId: xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[3].childNodes[0].childNodes[0].childNodes[0].childNodes[1].childNodes[0].childNodes[1].getAttribute("id"), + variable28: JSON.parse(acorn.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[14].childNodes[0].childNodes[0].textContent,{ecmaVersion: 2020})["body"]["0"]["expression"]["arguments"]["0"])[3], + secureNextAuthCallbackUrlCookie3: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '__Secure-next-auth.callback-url').split("=")[1].split(";")[0].trim(), + statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["layer_configs"]["16371226"]["value"]["pricing_modal_storage_upsell_summary"], + statsigpayloadLayerConfigs3680755560ValuePriorityArray: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["layer_configs"]["3680755560"]["value"]["priority_array"][2], + statsigpayloadLayerConfigs3680755560ValuePriorityArray1: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["layer_configs"]["3680755560"]["value"]["priority_array"][0], + statsigpayloadDynamicConfigs2281575548ValueSafetyUrl: new URL(JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["dynamic_configs"]["2281575548"]["value"]["safety_url"]).pathname, + statsigpayloadLayerConfigs1803944755ValueExpressServerDeliveryMechanism: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["layer_configs"]["1803944755"]["value"]["express_server_delivery_mechanism"], + statsigpayloadDynamicConfigs349697204ValueChangelogUrl: new URL(JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["dynamic_configs"]["349697204"]["value"]["changelog_url"]).pathname, + variable70: acorn.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[23].childNodes[0].textContent,{ecmaVersion: 2020})["body"]["0"]["expression"]["callee"]["body"]["body"]["0"]["body"]["body"]["1"]["consequent"]["body"]["0"]["declarations"]["0"]["init"]["arguments"]["0"], + statsigpayloadDynamicConfigs2850107578ValueAndroidLargeFontScaleThreshold: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["dynamic_configs"]["2850107578"]["value"]["android_large_font_scale_threshold"], + statsigpayloadDynamicConfigs2842273360ValueMinVisibleFraction: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["dynamic_configs"]["2842273360"]["value"]["min_visible_fraction"], + pageloadresourcehrefs: JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["pageLoadResourceHrefs"][1], + statsigpayloadDynamicConfigs3131667714ValueRegions: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["dynamic_configs"]["3131667714"]["value"]["regions"][8], + statsigpayloadLayerConfigs497415788ValueUpgradePillType: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["layer_configs"]["497415788"]["value"]["upgrade_pill_type"] + } + } + async function executeRequest0016({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + secureNextAuthCallbackUrlCookie, + cfuvidCookie + }) { + console.log("Executing request 0016") + const response = await fetch( + "https://chatgpt.com/backend-anon/system_hints?mode=basic", + { + method: "GET", + headers: { + "host": "chatgpt.com", + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-anon/system_hints", + "oai-device-id": "2b5a57b5-2e0d-4cd3-910c-e00d9bc2c517", + "x-openai-target-route": "/backend-anon/system_hints", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//chatgpt.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=2b5a57b5-2e0d-4cd3-910c-e00d9bc2c517; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; oai-sc=0gAAAAABpuik2XK6cFTvZ7CW19DvGE-DO4lJGPKxN5z8Fvm_2Vqu9_xwZfQStLy5MJhF77-t9-t3xL-FAjkuunQPflLPSPz12_USII85B-q7fx0azlKRrIrF4zzvVNHowWDM2nhd-ggecSGoPaH6RM8b-NrnDyNQgG0PmZk0XxTHADDEGdQLT5hP_3zQur3ATast0BVXCVhfeLhYA8TZlkMNdkusMAYF5HoLFw-f3ghP993VFElCYX_w; g_state={\"i_l\"0,\"i_ll\"1773808148327,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773808148$j60$l0$h0; cf_clearance=Jjb_Uh42phctJCQ3G2m_u5c.bBBDkMon5Tt18f6Xrng-1773808148-1.2.1.1-1drIx0.VkHYs4zRG6GOT9MLs6R7yhtrglrfbE_0VOwnEpqmdXsZ4MsvfOdKdLKPhlzswhDU1iIXwjPHpQdoWec9.ytgSWv9.X2.hNLKLQBBrRUySo02lph2qcYBogixwbLz_B75qRCL4jelnW76y.SeYTujDoeE1.Z0.E_7bwui_ap9AqprFQ05oWkOGLuMICL2XGp4TUq_K_WA.RILeGlAYxS438T6YO3HegGyOBW4gMtDJfn4Hz2q8r9lX6IorysM0fEyLas697t._GQqQy251C3GVrhIR4jdYE8vgrEVqyYUitWu46yKbFjsV0aVdufuwtdPqoR321zluD0hHyw; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie}; _cfuvid=${cfuvidCookie}; __cf_bm=s3oNDvRlKhaxj5GnU_3t7WJWRrrGW_JhJiMEIn7ZCHg-1773809532.6130853-1.0.1.1-JOoKDTiZNKwd0_g3hLNmvpCoIGMfXutF8nrRd9JrPYHEZUGVvzQuav_gd1IAK3eqeBy6BaLXajS7Xn6rj1vMygisC33z4slUuyyWQzu8SFeDG3ootwoAGAq0VfmXUWAX; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + systemHintsLogoAttributeWidth: xmlParser.parseFromString(JSON.parse(body)["system_hints"][0]["logo"],"text/xml").documentElement.getAttribute("width"), + systemHintsLogoAttributeFill: xmlParser.parseFromString(JSON.parse(body)["system_hints"][0]["logo"],"text/xml").documentElement.getAttribute("fill") + } + } + async function executeRequest0017({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + secureNextAuthCallbackUrlCookie, + cfuvidCookie + }) { + console.log("Executing request 0017") + const response = await fetch( + "https://chatgpt.com/backend-anon/accounts/check/v4-2023-04-27?timezone_offset_min=-480", + { + method: "GET", + headers: { + "host": "chatgpt.com", + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-anon/accounts/check/v4-2023-04-27", + "oai-device-id": "2b5a57b5-2e0d-4cd3-910c-e00d9bc2c517", + "x-openai-target-route": "/backend-anon/accounts/check/{version}", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//chatgpt.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=2b5a57b5-2e0d-4cd3-910c-e00d9bc2c517; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; oai-sc=0gAAAAABpuik2XK6cFTvZ7CW19DvGE-DO4lJGPKxN5z8Fvm_2Vqu9_xwZfQStLy5MJhF77-t9-t3xL-FAjkuunQPflLPSPz12_USII85B-q7fx0azlKRrIrF4zzvVNHowWDM2nhd-ggecSGoPaH6RM8b-NrnDyNQgG0PmZk0XxTHADDEGdQLT5hP_3zQur3ATast0BVXCVhfeLhYA8TZlkMNdkusMAYF5HoLFw-f3ghP993VFElCYX_w; g_state={\"i_l\"0,\"i_ll\"1773808148327,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773808148$j60$l0$h0; cf_clearance=Jjb_Uh42phctJCQ3G2m_u5c.bBBDkMon5Tt18f6Xrng-1773808148-1.2.1.1-1drIx0.VkHYs4zRG6GOT9MLs6R7yhtrglrfbE_0VOwnEpqmdXsZ4MsvfOdKdLKPhlzswhDU1iIXwjPHpQdoWec9.ytgSWv9.X2.hNLKLQBBrRUySo02lph2qcYBogixwbLz_B75qRCL4jelnW76y.SeYTujDoeE1.Z0.E_7bwui_ap9AqprFQ05oWkOGLuMICL2XGp4TUq_K_WA.RILeGlAYxS438T6YO3HegGyOBW4gMtDJfn4Hz2q8r9lX6IorysM0fEyLas697t._GQqQy251C3GVrhIR4jdYE8vgrEVqyYUitWu46yKbFjsV0aVdufuwtdPqoR321zluD0hHyw; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie}; _cfuvid=${cfuvidCookie}; __cf_bm=s3oNDvRlKhaxj5GnU_3t7WJWRrrGW_JhJiMEIn7ZCHg-1773809532.6130853-1.0.1.1-JOoKDTiZNKwd0_g3hLNmvpCoIGMfXutF8nrRd9JrPYHEZUGVvzQuav_gd1IAK3eqeBy6BaLXajS7Xn6rj1vMygisC33z4slUuyyWQzu8SFeDG3ootwoAGAq0VfmXUWAX; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + accountsDefaultAccountAccountResidencyRegion: JSON.parse(body)["accounts"]["default"]["account"]["account_residency_region"] + } + } + async function executeRequest0018({ + hostNextAuthCsrfTokenCookie, + secureNextAuthCallbackUrlCookie, + cfuvidCookie + }) { + console.log("Executing request 0018") + const response = await fetch( + "https://chatgpt.com/cdn-cgi/challenge-platform/h/b/jsd/oneshot/833f25fde7cb/0.7038850727994532:1773803411:ARXnmPIBnLtHrBDlKdcQyOQWgQPFReiwnR-YqmP6ZHI/9de1a05bca7fcba2", + { + method: "POST", + headers: { + "host": "chatgpt.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "text/plain;charset=UTF-8", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=2b5a57b5-2e0d-4cd3-910c-e00d9bc2c517; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; oai-sc=0gAAAAABpuik2XK6cFTvZ7CW19DvGE-DO4lJGPKxN5z8Fvm_2Vqu9_xwZfQStLy5MJhF77-t9-t3xL-FAjkuunQPflLPSPz12_USII85B-q7fx0azlKRrIrF4zzvVNHowWDM2nhd-ggecSGoPaH6RM8b-NrnDyNQgG0PmZk0XxTHADDEGdQLT5hP_3zQur3ATast0BVXCVhfeLhYA8TZlkMNdkusMAYF5HoLFw-f3ghP993VFElCYX_w; g_state={\"i_l\"0,\"i_ll\"1773808148327,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773808148$j60$l0$h0; cf_clearance=Jjb_Uh42phctJCQ3G2m_u5c.bBBDkMon5Tt18f6Xrng-1773808148-1.2.1.1-1drIx0.VkHYs4zRG6GOT9MLs6R7yhtrglrfbE_0VOwnEpqmdXsZ4MsvfOdKdLKPhlzswhDU1iIXwjPHpQdoWec9.ytgSWv9.X2.hNLKLQBBrRUySo02lph2qcYBogixwbLz_B75qRCL4jelnW76y.SeYTujDoeE1.Z0.E_7bwui_ap9AqprFQ05oWkOGLuMICL2XGp4TUq_K_WA.RILeGlAYxS438T6YO3HegGyOBW4gMtDJfn4Hz2q8r9lX6IorysM0fEyLas697t._GQqQy251C3GVrhIR4jdYE8vgrEVqyYUitWu46yKbFjsV0aVdufuwtdPqoR321zluD0hHyw; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie}; _cfuvid=${cfuvidCookie}; __cf_bm=s3oNDvRlKhaxj5GnU_3t7WJWRrrGW_JhJiMEIn7ZCHg-1773809532.6130853-1.0.1.1-JOoKDTiZNKwd0_g3hLNmvpCoIGMfXutF8nrRd9JrPYHEZUGVvzQuav_gd1IAK3eqeBy6BaLXajS7Xn6rj1vMygisC33z4slUuyyWQzu8SFeDG3ootwoAGAq0VfmXUWAX; _dd_s=aid` + }, + body: "tYM8Roc7zha66lOK7KlKbKJ8W8tzKt8cOcA0MKS8UOaQKFBggZ91TOa5MmEKa8gn1KX7P8aAK0Xdc217j+E9EKgCExEKznH1yyKlpzOV8ThdS3o+Y65OY8TJmeiQOq-oKz3lraSzTSl3oNj2YKcvBzInod1afK8RojockK0UKBBTiUWiL75MgKzIKI8zfKKvHKUIK89JvmzdK4KzQEKKmm-WWSz-0+BKoMKz$mtz$Mz0+E1ayKgy3S1cfm5nxrnQGklI+klytcBKKdb16zW6+KaR+cO6KkPtHKzM+fu-D0Z6KxiJ-m44VhDb3yRXeCD5sCMTXKFC1FD1nYKchIX0O8KsFLglMWFd5BgGAJflcmtHbv0GbVfqhKURP1xDcEjjKFJYZRYDjC3K+KDCVyU+0TXKao7gKzzHr0ydHk4pmdIKRlRrP4WnJFvhInX84ylWKB5rjqrZV+uIa81KLygbhEHlX31-z2coCY7VR-TBBon-ZO+AifIO8Kc6265Xvr3Xr6a+g-ysdyiLB899qFBE-mpgtIm+W+la0MElMe8KCbBLM75ggehHoKngMIXKNi5oh004qHoR-lZJd0J5JR$7rBZxQ0eAmbdOqyibS58LWLxhoGIv9lgkDxmLBu4cqgKrRx51eGoVL9PSotqXx-x9aeex8yNNFS4cU5mJb7Gx3pumtYTbLmrpj2JfOEPFeZR-gWeHk883YCFk8YuAflxgx0+dr9k-y3AhkX3yepXChyzakxmmSglMcoNMiuoiWdC37+AycsbI4c8tOComtYaC1K8IvboHcoSRYVUll7O8zcKlCdPHILh4O48AyOZFUBmcO5lINK+BOY2YKMfX0A59XTlOyoWKWHM6lOEOolKNzt+6ALCjpmzURdVBq9QMK6A1eylznNcB-8HikWdVcEBOkBph+vaftOMok7MU0eZY83Yc+aBglKcypzMGJY+n83nWKK2UA19fvJnqTfh5cVYMJLJoRnkigcE-iUxQnSozpXTUcEkKgJ5cSBloMophMKcxPcoK5Dzq8ii2YAtLX3zdKoq6pSykHvOaylMXnxRdEKgO1OSxR1QfHWKWCUhqLatl5fYE71B-h5IzERxVuoRVn386hoAgxj7Vylsvdo3+nH0HcvO8ozMvi8$QlHDWKb1cR6EV+WMSaVlM0DUatNa0ldYQdN5Ebigpih$-vmLOvMOKJBMoD0C3LAkRBJnxU3GhamtiD3OnEzpl5SKKMxplMI6e09Oo4gho2TM4pAvOOy2cZ8mHAeVKcWiLKBOH1UxOmzR5KjJYg0JBtAox5OdMQdpknPiL46n2CTlnSEa6QjzlOtSog1VH1X63c91yg3PgWqzLtOCdogXmKS$B8Wq2OLzGhLn2LDFDc+TAzjLEh9sM61MALfKGZ9LN4jHf-aHkM4LNX0O4sNgVNoJa3PKII+37HMbLVF-ECbNK5P6UQKC9tgCsO7ka4Hafjx7Vt+Xbh77pGMdpDaYR1S85yVa15C6RDiCjiokJOCZFsjfbZ5vvn8hiMSHzoN2hlElGchLttTn0qzC45$uNzOyR-y283EX5Ya1jhl83E6XQTq0137QcoU0gKuh37sFdQ8Oj-O9NfaD+HAoOk8rLaUUslMldFOi+b1eloTldNGKKlVilIyd1pM6WzXo$1YRj+9Lcy8HlAj7KikNnEl3OTPmIRidOKhhtd5837JKCdT8pzdDa6+T3QP6T8JcNovDlSMS6Sa9o53viDgfFzB8ejMghWlptR$ad9SsylvigT7zFAMOY-4nYij80D3yVKBYqlInMplGtd$Wz1-pnYKJkCj+YcjsOa0PTbV0v3OYr0r2jcIlItfyLaFxao7pzMx0JocfAo0kIBrq$CQoeIovJNl8JyWRds80WAXMoUz4hKOpgFj+OgpJ6+WmzsNfUpLy11RzlKfJJ7GK8LKnWFtpAetnboUVQKDclydN8szFKj+OKSmaUU6qh8Y3it2HjMh7LgmLrSbydW60BSgbYbAmgnRek4WgqtBsEREkfdOt-9M7x53XtBFa9ZhTAr3aB5J9m6mErHBKdF97y0pILnF0TU+8Ly0hI8vf04hHQcM2xIfAbKY1QdIntQTv1t1y4bCcAHlYx5HyNaVK+v0t1jGRY6KyUqJ6lMHKhhxRA+8o8Res5mzpHIkcoCZ5URE0+E2iHCyTv7d+Z8ITUICUfDnS4gbjlvejJdrSV-jKUz4018iJ5lq38Wpp+FgS59+zpyWWY-cBK4PhY8b1j0m5YTd+8VVfJevKREW8MV5dmUamVMMs2FyqtrJ1-BmKdpHxFcOAHzH0N-HQKWTNye8vvqft11dW6UnSxDB4-fLVsIBNa55J8BGVzkvF0QL1g8K2sdtP5XIFKnYr955I$qySLKq9624RcNeZVCUlFdW892tFGf6ilXk9O2aVFRtA2xM$6Qs9AANhKO0LDCI$9YplMsxQoNCm9DNe8BzX-HUAC$OtsDWAkxkklk$xDjIft63flCe0nlIjW2rS88pYNZ417xrs2v+-Cqmuqzxg$U8PJOs$xTFKclu7qzfPxlVxlUs$2trKoh6UCbtW4Ccilx1RKj-fWa+X9tWPHEcqcIAkH0K08qbTiHxKMkV-Njl2xCTWPLiHremj84DOpA8ByNgpnOagV9mLFzkx0EvmnXGNAfns+v8q$BLch5pfDOaxbrh$sOGnG1cnaxYVr1I+9rb-EAe0jx8q7sach4r-cx5eCUh6T7sisXitmKKzGtNgzWF$fR11az0ZUA5+ABpvFRh0lo1Mf3jJoz1Z+poctlY+IpDs1Fy8dKMOoXlCOG-dFo9oEVtNVlNVoQYjL24JVWNAdRWo1Mqc42V4r05jHc-$pQPWodmg80Y6aZbBtosu40C5Uffd0sFKE69jWSc8qIDC$6lSPDys5DstNqoF1+Ia$MBk6ht1hK0Nm25lhxppLDlh0Dn$+kSC3htQDeu3HS3DDAIfspu5uCNSRj9smENlqlg266ccdUUaYAC94qD-aV3D$Y4uxcE$QQZ1t9CxyucPXlCJ9FJhVa9XceWm3ZZn3GsvjZMRs8$nHt4jKvW4r3qdtm2ZMj10EXPs$QGfCPErXqa25ov7u8upobrsdpExz13LtIVFc9t$R$9-isJ7XAXnl85jTZ5EbHPNC2ZsSIHltu5ixh4ut5uSvSNxcsxzLKQs$22+8PPdDhHCYvSKNRQe8f924JOKc5dR3gFF0+J$RI3uhzd2NJijOZClk3N$IW2Soh1f4o152jSB0ECz5CbN6GNpFrfIMCm8-QMmOZMK5t2F-CjdLUU5426jYnJBZVCexurIP2tUT$oDa6kGoKTDEqXrsPyCK0lI0kVS85I7bN2419pucbDbLONWUyLE+19kpDWf-1JWPdRfpk9NS6FzjftgmroqiJVQ5KHNy7Up4SEuhbg8mR7jyzhG-flA9lZux+uQFQMaU-qXAS5cNfF+jBY+f0KhRHX-RcAa8MNfFK0U6VcJGiyVMbzLuNSfF+N56UB1KtZflSHSZpaWr-X-j+GVb-b3BiQBMy58qJYi+2C1dyOyzcORKMtHBDQaPXQTqWzUZfISm1C+lpUhq3$SE59HB18A5LBDt0Yyq0Otlp0hiyIBYMCKzl9NUAIMGSIUQXpg1y20XJdAht5oIRiAhjeXR3hhFJdjgXF3its57DMg7y0KC3IzGK7ygd7hT3GML-OtjieKb17Ab5A+IM-00z-Hmfg0OtbQOBDHmXzgj0j1hTi37yD-PiSbj-S0PJGXOtdRP-dTAX03ihKphzyRZ3fgu1U0$oxtu0pDOMxthDKR8MxjnDMtvW8fyMFUziOMrS1LxRoLa3ihpRpgdpfVdjdpMDMAMf1MnXMQUT6+dMONkN5A1Wn0v-MMOXcXpjNDMyUXYNBjQR3QUNfT0cARihiXLNdMhD5jMMhXHX9gppLDOMhpcDmgpfhpmAkMHXpMhXQRiMhL6NMo7R8M7NT-MRsJdRs-TXiMGfGDMgGpOhzd5MzLzLdjMgoDcyTQWlQcvXpMWdF+3i-UzTHaWfglOlXfgRfNlR8jUlfDSMntLlcJdgU+ypOyaJoLxyliI+xQLjxdAXpyeDFfgJdg6h$XpA$fD2$NGjMhlpgTjX8g5NnDQpgRitJR5dnp$BW0NgBfvDCi$RpAQdVd+dJ1NgJyANdjE2ADGjMy9NmfHdkfmNAh62SL4An2pRSdmArAKhktSAKycMSAKh7hayHNejayuHkRryHQmASAKRmjntngvBtRiMgXgDVRphtRgQVNLMG2JthB+RigXgNh5LvgRhRM4V9jMg+DCVEdVRtt+X3R8RFyRhqgkWsyVNF3hyR1JL3jHA8t8hP-HR1R3BN5KhY1oJpjQ5OyqHbhx-HUkdno-Rv8-yKyHfy2FLeD+MCUm1C2Uc$1RafzCAnQLATNTpyjjjLgTLYK1QnjiQ6T9+pV$pf5N0x2KKS5HlmK0TPd-yn-WpfiBab1sixMCz6K$BKxOlntblHclBUT+8CUWMATzRUi72Kc9LUU8KKTv6RmpdcnUdcJSFMvMG0RcSHEUXL01Df1KcOAVD7tKu1V8XLbMs+U6Wd6oj0fy5ckUsiqEpzxNO85adEMY0ES6lS3EGnLvm0xKIrnEZMXSD7BY56cK2XFKnyBc$WNz5ztyERXLLzEfva4R$WkKeO$OJfXyxL2RYJbgWLXYbvSHESHSScFKU85IKiGK8UXvyKFgLtTaSJqW5c31oIfaUOGXvSMGWLfJ8v4GdFT6FRbE28DIuNoK2nFcftXM0xGSYVahWhvKHpUnnGaVFIW0oJv8oiLcyH0EBSIhEifq9paVz3g2+n7Sa8gEyrQntIvWM8TGcfXf1KRazK4Irv1v3ty1Dgj2Q8j0D0d8-qBdIOWYq7U8YNihXKKcT0505MI4UakWEtHy6jr71KIHyFEJK$eKIW6cDUKy6aebM8ykbMyiySll$p5WfzyCORHMMlyueXUfxqf4LhRh1ye8WZUDxgy7e6lIMOlLM-MtypSRPll6mTyBhVfeaWfc$WfI$ZO+1ydhd0sRH5qm$dyOyQxjlBs3l5$ffMBu9UBpy9xXIhYMVh$TxY18dZc4y4OJy5$q6y7Y10pTEJy4ltW1+yKplH1eBySaW-DK6yMtN0p4O3UHrhXHMe5fOZrm5COz5E5pszBN$6Ka561l54KLIhBf80m3lHQnk-BuKKQIQEoHI4Y7IhYhdnZO$POHWrKrNHinfc1mxqQBny63YuQ6KaQVms5d$KmyMW80jOFUKmNh6likO-F7th$-GG10p32nePh71MQhdWijljrKmUlhW6ziKl5HIl8AqMH776Onlnfcl3lyn+Ieaz$FahdZS3Xh1sfnoJ9x$Y$Y1-96$ZU441m6deQedZk0mPKl53L+IymiKMkmmLQ$OmmfIW6g1UW9nh$4Y-IgKtmIxtfMQjmrmqfTmYYeKZpZmEq1Q7kfkik6dhk6KyzykdkYYnkkkPKyxddHkup50+kPAXdMQ-kukPKHkvKslYxg73Vak9AXArk8k6daAN1hKOcBc$9G8MGD5T8Kcdd-A$mIR1Q-0plsQmnt83AUSG8t8lLcMUIKM+Itfm5CxhR1yH9Emt6zSq8eQnOy5TAnmCSpuh1nmqxxetacMe6-Soitx34nUMHktzp6H2Jg7hdK5WlcCclJUclEfHSSsgdU1mO78gfPK55BiGxi9Tk-eOijK0sHQEQxLGBPMZOHmedAfvjKm0sOe$LsMYxUSf8cSJAMIm81yyAiSZYbQ-LNA+QWOj5mksUhdOMUIZ5zQFvAgSgidKIn9v2Zxkgu5Z9Fm+xh$OMMIhYlL+AnOGRKvIvNdazC8-5bMrY3mtjAgfv$vQvYEU$PMjhTxvv6YyvBCJvSM1v6YnGqgcMnAJA5WdQFLLIZc3vZKhKhnkIPKcnonY9kneniWZBAn9kZUE5EnXWNnCLvnfS-nVWjDgnICOAbLfORSKSiKhg80hYyuTl4x+kxABApnDQcErY7scv-BBikE6YUGDscv0p0oAr0BtHK+G93CTLSEBm$1gnXEYv89ed5Sx5nf0fZB$$Ki5+E+r1-nv+q5SgKVf8cEXl4aU99kKr-+GVd9W8zARmD+i5edtfK+QSiqUyD+qEqiL+pV6Y5BDQcViVSExV2xWEDVSEXmYJ6Yt9U+Hene-+kU5Vd8Id0JpnurZAT8edRGSlheMe0esBslcMjJ94yMY9T9YY4SPKheASO1gS+cJ1ZhK01XU3t65Et8GJiKMGI+f-0fMkeS6dsNpGkLsNbyVDeNkd1XUIJks$i5nOoJztEUe8KJdtft$81Y+1M9c1aU1tEODe3e7NDJ6ij8SleAJ94939liBLBLjh3IcgiyNylLNgXxKmlLSkVmi$qQc$4KE$H73U7iB60pHEJfRqL$M$Mkgnzip4bqLu+vhKtqPKUG64rBZdA4$4v$JdjMMvFqpoldO1W5L4YtbV3qdrY+VeKErnQnVzfNvyn5bNi1cvzrFqo+XNrI58cBEmtQaI18JrCrFr2FAxUrSmbyYmYvtQKrmvNFJr8rM+og0AGa2x5aq8UqkaL4BabZnaLzSmrao+Sa6Kn6lgf1Jye+F+NeWaIVea2x02b+qa6JIa$+iuTAM9ynPaL2d9jaucKHE2x61ECa2x32v2PaqQjeYzddsxO3i1t85SIigRH14Nimk2PeCnQr6$avf36QlgkVu9syoQOsm+P5afzMh$WO7ynv+A6dUXuiNA3Nil4E5XUAXr$mFxdQkXoXEXrVo$3e3A3l41yM+8ZKtf5XX58M3XL17SvX9lzMlXBjclUlzm$8cg9ZO8TJqXifW10aQR98sNWxIJY8Ja69FR2UyJYX89tW7IjlcMlLTTZxqoiiXeW4B6heaRZ9lXPPT3DUgW$mN4Nv4V8JlynRbAzXxN-+UPngJBI96Bm97ZHNA9U$n5fOUeK0MGD1Ss80hqVsLsCENAMkJyJskrDELX69LsusVezXYCNAsOas80e+YL0-WnyCBCbgB1fFYC8rcC8ryVrgnC6C$CfOc1e19flnJsG9f9xCfOnWjQCC$mLsIR9xyTIC80O9fnZRYT6xhTDMhTCF6KhTLsxCXllBjTbVSTuU-cZKK0MxjkRCdTVCiA1R0Sh1ZQg7lBZUteTCvnn14DyCrbxCKTSxtboT+TLsCIt-eTiAKi+qFbvC$bbCvAo9$d1-805-GXp-82fYryyC$gVA+N+-Pe2-PhySa-NgbrkTNsLWxdjh7br1UPyC6D9T$-p-YWMdUdc-LDYdsqJspLxRiDLsfDC8gfM2xCfDfbCTCD80nN$f-Mt61jxCF+2dh3CV8bpj25Xxlj8IjMz6mV8i2UJjCyfCvjQhyecXFdUjkDSTrpjCx5U$jhHWYPkCujY-YYlPCdJjCMmMJjCAO8jDLA1dH14P$dzMTJPPY8RDpPNsrp3D9DPbp-rpK0ZBnLJ8WiWqJjkArREZ85W1K0tZ66WiRZf1WInZV1A7JjkYURXJB2OuEmJ8MPEPujrJgq3jjO3AzuQM+9gPv0xnZjp6l0Ek3-CUJjYH2+KqbuEftHlkD4Wvup32UcZk7rZjIPXoL-7q8YzM$xTf9CYMuKxKiWzMz9YKa1cnvRmoPLe$Sr6eRWMDq8hAWXHgkt+Jsq3JhS-4xeYCjKWqKJCpaAxg4TCodjLYpG5ceRUg8XLUchGdKRjMiAdRJgT1VmGP1Cq1tU+xcLcLbHsodt4CArgcG8$1OIj4YxzE6HptyinLUleat8RKJGiXb6HWzrck41MjhoRIeaJIDGMd+yHhT5z39NpA8eMAXoUaHkJ8o2xTQ+WQ+HmkumTSsHUn1i1K+q1l6UDWF5c8y5gOMsr3zTproKPymklEczTSnOSuLZvBjWL23Hgix1E5v2ztsEp7il1fYP6fBOXttB88quRiRZdFtWSlXRvhvNoLaNxSg1b2IpTKSHcy1$1PKaEdMdqzNBC1XIn0yeT+aq83CsI7pAQa2JBM+CcIe4aTv-V8SJPe8axDfCVKTlWT3NB6g4oVYHKm1EthUM7OQgbUPitKJ2D$vsaT0tQmrieXTIAtf8Jd6pSoKjgapCStQlLcWN9TCcCSt3y5cYaWUAhblLK+LqfBBanG8A5ddU7zjCo8o$IVNmMmzMcli18HeksVgGgST-arS5dBU13JQ8tE9Sa21mv6Mg+d2jSsTM$ltz3OvqGH-IeHqu+uSU8xHcdL0hscUKO2az5drcPgf6aTYUHoIR4xeTec5cEA0--iZ7TETPaQANMuOyEJYKTMkYzh4ViY2UzOLDBqKIa9fpCv1Lj5CRKEThRdzr4sUifHeA2-ZOpV98DK1qqxAKReoqYWoUcBh+qTiJrHxEy6cn0kLQKsY$inpn234+FVNHScA7AoaDnKE+YVp+etRSpC2E1LaWe-z0DvWH2S6pOGhs4+beqMULv4gh4oN985Nz91tmg+lA6KL2sIz3-IABRhznosIlMTMZUhqeycG9+O$-t5jRl+2iLlMZH6NlpCE2ULROFh5QhGomciiaOQ$hQU9W9iSL3OZ-6QRalroLKbzMdlvXOcV2rHjOf6sAtGolKecPiKJi9RlKF2v7d4T7mARxoNovLHOCj6rpj+C2sIEOu5jz+Sa$25KR8+R8kMoaDqH7bFgkj4BFg+1lyGryMTYT5a0V5dXYiKyDfq1UNAY9diOvWffgDoXKOUx1Sch93d3b7C97LiWaJOIWsOeUkimBD23sK591TJMHhXhKFaa9AFeOU1f9I$qikfqUzZh+fK+SyUGF7hOb-CT4N5dCdWIA8NMb63GBPU26-$fjOzWcLu7ON+MVCYboGKCOpWena1+yViihiC9xnaYyJ8r8z1qNi3irny3KI6Fa9MvRYV6WAL8TloPILd1$qd9MKKgx-Vh2Yr5d5zef0UpIzGzXIQ7+9g$QQxTdkQrIXf0a3Ce$LsUGhsIMO-BF5Y3ghf0yZazEUfYjl+CgaSWhhXBq0I60xniSdt+1dFxy0NI0SQ4O9ckgmKRy56dQ+K4zvL0ga9SAIcgWKv9zAyHSQxVC1RQTixLcmdxb-hydsOds8JAeV3hyvGiodM+cKBVW3e-0BxsBt7z6cMxr0$LRByBVQ3GdfqaL6fLEFRdBv9zge-5hAYmtG9T2mm2qRRcqS5iHpJe-qcAWq37L8pxL+I80cpUrUHzegit19adGuBuJHBIIzO2ELnHOKa3obzpYPWVKCpvfygahzhNSkAH3CBKU0MVonirFlxR6KyzHLO$rF+Sg$XSIgnkYNO2Weu0$SIX3M3OBkvBSHBdE$KkzhSzLRhzRHhpghdS+4gp3p+rUEhr8A3MxIG3aO+JyxImSYay6OgxHgB5UBxFOtaOiJZcAITaO8cv8pd7IRHMlCZVaOupgEbOSOaz2dvz1eOjrTPsCVCUx6dOn3HJbuHnests5-F-gV$XI$dyMBK2zNbQ6h9L6fiMqck8QfSQthU4FRhvaIt8I11F5evj$EQK3KG+RmcsjkSmfFxYi65BOltHmKEILZJS92372SXzKi7roT8T7aY62iO7fEM1zJBmqtQH3cy41+pRnfX8DXt8RA+IXEfqQS7pAB-yyOsaYmc7Cy6sUIUXM$EAJy9OzdjHFNEiF7GmUQSCxNXfET3ZnxYfCi3tf9cOOmnv-TiZJK8iGi6RoljLrXxEUXy$5YybY8KzE6jJ9-rNOzsX7LBGpFgPMTgON0ycGbTgPyL$qfHONQH91iKRieoBhF7q+8ug4T-fdEE7kq6JKZVE8h8H0jDxDyoapKznzGxpypS71nqx9roK97ONI+KR2lEjA8tdauBBXUkvZWcn-yK-nLt8$zDMAKg1-VXJmF7E6KOMMJ5Mz+mO5$ouy3VYymKF76DBdcIJ4NYc1zLB9lbbBYyoBnd+miKIvbpc5EUu-S1yNsVJtv08oquT-XO0rhDG8obiUKI+s0t5EKoBHWqTi0F1lSM8hceYNZV+tkeJjJm1-jVxYSQOljMc10aV$ORL+F7YnxkWsbVXK0yMzL0zo4VHG8+8ymJcuDU-6NfKbtzL7M21-9RSU+oDLsIPRbxR0HVzIviSyd+KRdYl+-fyDMylrGIVVfzS5PjRB4a5E+0rg3LDW5zL5d$WIMzUvvRSGOivi5CoNLg+LLahLWDfy0P$v+y8Ou71Yjnj$bhH0I4WP9R0qx23ELvMzPZBn-fBVLAV$83NFjfbXxcIVJiKmzhx-LOgnk+8UzeHD1em6+VgLsHZFJgolN78bzMn0cN55AfUOutzfU6IJIraVecqZR8s01sXgj6a-tfAiLsOMpaLb35E6T3ebn7XKd41YKRzkWmqzH1Thi5I+XBDMcOeoZEHJyc5hfGKgfAlqN+Wo$Uz8ks3z-8T9zfLoIV6OHiLBKB4W1KguaMg$p60t12Yn8Z+-6Te$oXoJLdUBIO+-bixU8kzsOtDWpT6K85$dT8Zl5L5Y8VKMU83SjUfek1LSQyYHlKtWFQNG9$aMJnHgQcUFcJmKE5xGzyaqKiURK0JJUzycMG2KVi9J5x6hayxo8bKbI-EdzEUxJJbKbJndytJ+KYQ5zAJ1Ddxlk4uAsieNHabt-N6WUEx$KZxPqJ9xz15P7NmJHlHgMeW7xrgSocK-QM8NEWiKTdH7otczQKsjK+lPtom6UNNiUEtThWTAdavbpmt07aKahqeKifO9iWSCCAdez81mVzcjciB6svBpTk+nURenf8AvOMtyPTAVOFpJSIPVWLQX03LKcSUBoBNJ-iaxgvWe8xb9DxFyN6e8HU4WpBHBtF5O2fgGo7-4OCEAIk4AooMTMYrpEN2YDUTrDIy41yNe$si7Q+cbWfUO5oy6lKcx-QMMV-hfnlxX8bLF5KiUEqqOKT8Hy8kgmnQhk693Rf$O1pva6Ca2ccq46I9tV+y0osdJWBBV7mF68Lckf6Ai3sEBb-gUMJXN7ORsqp21NKeE8nvei9SqdQ8eeWi3HdOpK1pUsWtAKuq-lchCkvvI9d9s2SqSCieBtXbaER7poedrdtclQTvLQOclaDNtlPTK597C7eBtWzK6AHUYpWskMieB2HgxOD1+VH2lkt3H9h81eYdDluRvUXUQxsg8E-0PKHIG$9J+K9B93HS+C5B15tmB$r4HascBsMBqBiGII+A+jE1Ox0HX4+KUUTi7tz3zMKEF2zfrzzi8eXmnxzpvdrkhaWg8LgCnGePEHvTa5nhS2nqVtlBxgVO8zNHtPJQMy23hiosD31qk5u5znQlbBsCvCRO$RTWypBKlgaybaZ4AQxze6qg8j5tFXyD$L+IrycMtJIXbhKgYr5XvSOUfQPWMSSBSxhtx0a5c+k-z3RZefObESzq7Oll0r1ONvsVqq03R-$9BoseyxoQfOTKFOf3ghqxfSg8HAO2isJqclDnm66fQZyPp-lV3mnFPomy-KqQDfjBN6BjsMBBYd3W0zeC0VsgB1bljU94Sy8Dds+liVhtbUlKDmmei33EBR5ZpK8cOUSTkxFKKe$vWAqjhnzH1Cx$ppQf8g$dgpKhtx$8y5Wchvc+vPBjlMb05BtlJn+HFWMb0iFc57Jj$mOaX9DJdi0goKsKKoWcteBxMfnv6-z3tfASX4QOFeB5WKKxbv3IOH83NFRxuBtcRgW9XVoRI6OzC7gI4KdhFJ$iE+BVviR-HOLnifC7goy6DHOQy$PyAvp9ox7JDsIO0XIjQpVnNLVNJi5Kpsg1tr0JpmCZ48Jml-hV2IusQ$D0H1z18+DAW46XjcOn0KhMjEjKYb0QjTqBTX7Qh5L3+jj3PYOIeS9T0QzM+VoWc6rh7UI-bq8sMhR$rI9jH-BO827zGu74YZNDsxWcI7N8zjI6pqNU8cAiIXP-btvTAC94VzKo-b-+Y66aACmsr53UbQT1NYX67czd2bpXFT5e8zJeJ6e0UdWd5iLq-2KDDBfWN0VWnvlbTp$aYNjTnotbTlXUt3rvyOYRYBPDyvz168nCmC2A2CchNNKmNiWIMHtSF6eIBoV3guNrF28s7JP1gxuNig-cZkYYKnvOeCVQJnzAPnYoKhgc15S7+VluvPQj$$pG74AyTKE1GKArG7ZKY4tWvGv7aO7+WK498XLdxxDpy8$rg2MpT79EcogHsP2SaFPIa99AyTKYj$z9ARcktA6Uz2zCWYjcd1daqGoH3kpCcktg-8Wne2krKSrx6LzLcRSHnG7KKCb+aoeTAUsNh8rdZmaXNYY4fqr7MlSe9VYYpy8mSlP22ufdKh1n6ago2YQT1YxS2FVOzhA9l5iCSQ7ZrRfxoTD8$p9t1UsXJeTTepUGAtrzVRLd9niHfyBWRA8LTIgGSFKOIOht7fDa$SpAUWLlWgT62yRyK-AUmNELprppM$yzd5HUMW24lEEBIU0Fov5VI77dN$3R8TI$OBaKdrGprgTWYHdfpATCj6zc12aH0tUK5dhct$YYo8KMyPo0ezXq8CtO++41bEI$RnXhbS2DIb$Ks5nGhgaPVfHbR$XKkLxcKdZIz53smmOUK$f1UQtChvx6$Og7mQg5WC20MxKdizycDT9+sL2Yp3jdYzfb2IMy1GFtNSDlCavSKxWzOK5blu2CLpUh+Rmt5gtaMS2LvImWV5gC58gY$m1TqnTz+n0pCU$-ifo5WjlQgGjZs1mAIb7UrFJyavjCSI6mhLk9oOntsKhBuIgLHKXnRE-2lFxyHks5IKdhj$Crq4ykJuUE3pomGYd8T7uTnAc1s2LbyNcYIJvOgL9zvScj8paH-Jn3Pfx8mV0M1G$xUee6KL+Qi1hb2AY0c95uIko5hP5essP7FJXigT0QqFHShd8AtRtUmVI0DjaKxAZn0IO3tiHGpIakBxx9p05xnlcS4xCBP6Zpk8pGX+HC8slsOzpTEJkBXWHFmmbxmTNYc88E1AJnkgKgyczQ73gQvtIysVKK5qc6uy-JF0HNz1Z7J6jCcM3rdKSbxRbWOa8HNBkUl+TModQWpqBH4snQuHQmsh0+fLY0nnjeDEtivG4qsTAK677JENunMzsqMPQK1J7hEG$FkzbU62IS2tAhmBnu0-tFbtazEN7r48L8qSBMKI0iKYdDA4HVY$MUGG52jAOd6GO8yGQW+7NX6FxyEvGfOcZt-XDXm1Ah7FHutRbuXVE$GDlhM3ZFYxT+lrIph-p1gVraeuq52Tjtl6R4BSYLazfH5mcLBkKW7CZIHIpFlOEV3D7ujm5yKLKguyac4U9-NJleb0ggbhp1OypCeAdU5I6ssa2WI2kfqo$WnQKlpmRipPKRs1U9tcSR0vhWGs3QsscseUn$Wus3LVLpZiv9fV1z8708IdEx6CWu7cmALy8AF8J57me3VDlZ2mdblz2M+AsHzR5cGB4nsi$dMoRLkztH+383N4Y7ish$aW4sz7MVUdhXpLUabt-$1K0EtHl+nth5743lMj0utQoPig2BfMXLzuqMb-ORe9HTX2+cOKxbx3eJbMvlVn3XM6Fx0yMTicyzQ-c3z3hJT6KEWpvsUtY$xrKsUK$flFYQExDF0DJKBTL2JoIZdRCt2KVKa0WyrNel9EcZ7ZgFZ3HJnJMTkxpN2iXL0CSzTxNsiAeY+Tp6aLJFaWVUZDUxzR-BKUGr0O+SB9kHNFi$I$I47S2N$JgQNpfj5yAPX-GmZdE5vq7cpq-rH3lABhvnY+a1xd7pv0Y11HIVtYU7goXxXzAoL-2Ai63ITnRU$oYW8gKgg5EpoYE7MiqXtmAUio3a5f$P5nIzbTysjqKp1UCmvhKco8hWsV1AnxOmOSdpSKAshBEW+RKTgaKZHyqo3Z59mqD8gtiffKUE6CrPIuQcko375SzFBRz1-BX3Z55zDsnh0glRE+iXzQnJLKcgx2s+qzQnsgKA5EVKJPKqFKIqx5dWVp8eDndB0Adpy9J9Hgrs$q8Mhs7Z2pKHsihngP34t9yQrsWXWSB9tovC6AU-z4Y0xHVXnbS0Kf06YT4rL+LsBQnq4mSiyqsNuY5G9BfKlXAAtD8kzJvM1cObO6eWo4QxUJzRhvQ3K$4S$i57nTnbSRHnYNljcfy9QUCE179kCU68Q$UOQnXYdDeRjtD7LrIv9XGOs9mqACBec9QI6B6Xg6Xl6zThOisPVKHCP1AAkjsZY+cqXN8I6QuDnsSIoXOrI6uoa72nbOt64VRmPnU83p0Ly5b9k0zEB+B6XgrPzGrUOUVJXCAgFgVhKC-T6eyQn$mp5ZO9Vs6XsYPOgG4F9JQTsR+GkNuO58uTZCr4BemZO$jJQNyWqdMi5ejMDaXCKRjAQbsE1nDCCKRUse5eFJHUrOib+zXhivK1qjhHdt1yzDxvODzTUWOSDH3MZ1Qmlez4bJ1GC3ZHeTEEbmA25WW85NXCd4YavspQCyFVCHqan4vdpUzEg06Z25XVUZFrkYbENvMhBi7gNjqUlDhz1ORPgMDr0lavxatv0PilIv+NpmH7LvRRL374Zky1$mxhDjKBouV9OY0-oyQV1LkTVFRk6hXBMbB0iPrvCjEzEd5homBpLIxhNNk-1n-eVzzmzL120pN-BgoBVDDCUtgivJK-T1HtAfybJyYWaVTgMH9uVVG7xAIIaNNHGh7Tq1PrT32JL$OxLGxb29Soo19pW1jvNOK3CVLNpnfKFjtn3+Bb3oc5eVcyzn1Sx23iu5ha$m54BiIe2eGhrhEbaZM0zSQlOUPbxGX6ORTIQD5vl7o2Nh9RO4Gt3TsYXQtr$MekerpIMfr$JoR4vfm5J7dsbJnl$amRc-jvUlnqlE7C-oJcu075K29tn946dNYQtRNAGCbzZA2IeGAV48Fk4yBbbh-acsyjlS1zLFuX$m9zkHP0t1-+bjNanfS9UcRmMHUytj-HmOP7syj4+Xa7PpN4z-ja5lQ0xdLIPWM4apkAWrmh54p-hrt6dFKnZ0PzK3Rk5hEzNtKrl-66nVNf$KYJrZhTRiRc9xChWEYC1F$5TfGE7oKHIj1mAuKuQ+StFByqrhCC+JmHgiXvXK6yIFXA9UCBAFPJuWVZ2Sr-57b1mdhpBzK6E4JN0s+yYL7SJ7svq0mK$CLZJra9rFpVCWkgZQMP-sRIVkkM2-kPZh8sEKrD+fc3RvGUoOjgETMa50BYTot1g3qg2QMeU7$TXUDT0c7IqFjepHSMVEd7I7DuJzWxdzQ57vH3Dy0+F4K6mip3YFK3JV$HFS8QBY+KoYu$iM4xckpa1TxI1u+4PL$8jJhq2zrdHtd-xAHlUu7nsDN-nYYCffhWm13PDf3osDMzGkYz4P9D7GhQxbl4sX6WUT2JqfV5f75cgCJ8zqDaHfg0lgUVUMVh5rG81vFL6GOjlr8E1-PRMJcSHUpJZ4ZvRDbeeaKpa+RhHPDb0-ruKIhHOdIzRyjM7dKLzRHTeS21mMfi8rjHYjC1c4Ijc$FpC8pSJuanfbr1WghjjCrrDk$RmBoEggLcI+5TOm4HQ5Ji0kj8UiPypKjlge2$oduo$HK82TqI9Iz8fZi6JafJEEe5$jcpyiLiWrsn9zF51sJXdh3CiKf$WZl8pb26lQCeRII8S5fhu1Xf4NXvyGhbX3rrgpuhHE8idj3N7vRc8Cy8UAuxSvChGaxeytbIVaWP0PQZJ8BbS72mrCb0r2jvbo2icd7GrphB2rbXpnupQ1dfNfqZXQMKIV03JjBb9-0eA21OpyfFb6XrsA0keZI5MUfRfmJDsC6MPr1Ji8NK0ryZXdS-kfhJ$4048tlm3l9x0SLzWcmaXd4xybKiM6UBPR1cmhutr+mi$PzGW7VdBmKr0Zq+WTxo7blIHJcPHo$boMTlI1hIOW5fsf-de8XZ+KzD26ytkmYFmABS8tskmKQu3ZLxQDvR4Eu5kEKx9lo26Ms8A04jXdS9nErAGmtEgRiflI-yRojiTCVDTOmgUeffrtKLxHeTuat5NWI+ofr1sBbgDT3aFrzmV+OAarYtQX6+mXQT$Ra4e1uPInrGGTaCHu6LW2qHEY+2$LZZH1qfjVV94ubh4SdZnjplc3ZcMT0oFf6ovy8H8ks$Y09fnYTAYZdL4jPEYabu4C$EOq-imAUas$LPLsPHYcteTcM-lYG+qDQjaFuF0hv01a0W50+K5cJuYKJ0VKnTZR6hKpHROXd1DtgpFnKNGOu0WCE7iL2MSih8ApkKdujcE8rI5k50sK5lHLnO0Efn3X2WouGZoyUGO6zH76QokUoRQisDgYx$uZa7CPB1nz2o10+84KjFCfMay+4MiquKf5YbYyziCGKPDNoFJ+kkTGQKslJjfVFYO48zuslt+872epFcndQRAe+Ug5zcN3h0ZrbN2lnGqkrfZlOA2FxrIvMZemeTrbEuxctubigNTPuVrcgB1u1mUhGju3raf6RKvg0OKPGPQN8u1k2gfBmKDuz8c1mhhqKKKg+Ii8mItBTxzgJJMvKjptb+zfK3rInYcIhhiAaM8+P$upnlINjuaM-umKaKj0c1aCkKK+TFzWKP1cooUKKKtfTkk$j8aCk1KZPEl8ku6UaCkBYt7a1KlKt7zdKKKg3CkeCq6cShZ2lKaO05KRKaNKcUKKUhMc728aCk7pU82CkXFcU20K5Ks72MdO8tS31K6IauYIKPuFuCCkeqUMKvdSK18aUccUcuCkIG66XS-kvhlV1r1ruv020iaWaPEWdsKMvc$KCGU0nQdJuq1KDk11A1zUcDKOKlidMKm2K1c083Klid7KnhKMcWKW8KIceKn8TOcuxR8lkdkK1M+zcuIl1U0cJKsdKpc4K0IlhclqF6z6cCKJdl7cZuFdUAkR8W1TZ8y87DKiMP+Knck8I5M1KKKqj6zskp17dclKn9h9Kgcf1eiUYKo1eZYncXtiD2z8Wej1zhKl1HdKu8$To6zvMJoPAfWh5SjPnxWVuIdCM7Geaodu8dHRC1OyQ1eKLEKvIUi+n8-1smOHzqX+6o6dG1RTYUfp2jxSk8f+tS3mKpxlyKgUgyPEgk8k+MHWkkOIyvatKE+T$arK-13PF21dIz8KMKFK08aO0Uijzc9c2YgKKOKGMaKa71hUMo2Y78O872UIldZSROyOIaLdEMSn8vzLKAdW+So7P17yzpU36akzHUrcMIKOkydyt2OAhM1z+YKOIaL$TWbJTnfZMu1T$KKKLT0+GGjYRcHHmvtT$amKB+aSHY09OKHWqMPPqSHo8C6IMfWhKdKKzkXM0KK" + } + ) + const body = await response.text() + return { + cfClearanceCookie: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === 'cf_clearance').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0018({ + hostNextAuthCsrfTokenCookie, + secureNextAuthCallbackUrlCookie, + cfuvidCookie + }) { + console.log("Executing request 0018") + const response = await fetch( + "https://chatgpt.com/ces/v1/projects/oai/settings", + { + method: "GET", + headers: { + "host": "chatgpt.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//chatgpt.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=2b5a57b5-2e0d-4cd3-910c-e00d9bc2c517; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; oai-sc=0gAAAAABpuik2XK6cFTvZ7CW19DvGE-DO4lJGPKxN5z8Fvm_2Vqu9_xwZfQStLy5MJhF77-t9-t3xL-FAjkuunQPflLPSPz12_USII85B-q7fx0azlKRrIrF4zzvVNHowWDM2nhd-ggecSGoPaH6RM8b-NrnDyNQgG0PmZk0XxTHADDEGdQLT5hP_3zQur3ATast0BVXCVhfeLhYA8TZlkMNdkusMAYF5HoLFw-f3ghP993VFElCYX_w; g_state={\"i_l\"0,\"i_ll\"1773808148327,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773808148$j60$l0$h0; cf_clearance=Jjb_Uh42phctJCQ3G2m_u5c.bBBDkMon5Tt18f6Xrng-1773808148-1.2.1.1-1drIx0.VkHYs4zRG6GOT9MLs6R7yhtrglrfbE_0VOwnEpqmdXsZ4MsvfOdKdLKPhlzswhDU1iIXwjPHpQdoWec9.ytgSWv9.X2.hNLKLQBBrRUySo02lph2qcYBogixwbLz_B75qRCL4jelnW76y.SeYTujDoeE1.Z0.E_7bwui_ap9AqprFQ05oWkOGLuMICL2XGp4TUq_K_WA.RILeGlAYxS438T6YO3HegGyOBW4gMtDJfn4Hz2q8r9lX6IorysM0fEyLas697t._GQqQy251C3GVrhIR4jdYE8vgrEVqyYUitWu46yKbFjsV0aVdufuwtdPqoR321zluD0hHyw; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie}; _cfuvid=${cfuvidCookie}; __cf_bm=s3oNDvRlKhaxj5GnU_3t7WJWRrrGW_JhJiMEIn7ZCHg-1773809532.6130853-1.0.1.1-JOoKDTiZNKwd0_g3hLNmvpCoIGMfXutF8nrRd9JrPYHEZUGVvzQuav_gd1IAK3eqeBy6BaLXajS7Xn6rj1vMygisC33z4slUuyyWQzu8SFeDG3ootwoAGAq0VfmXUWAX; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + cfBmCookie: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '__cf_bm').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0018({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + secureNextAuthCallbackUrlCookie, + cfuvidCookie + }) { + console.log("Executing request 0018") + const response = await fetch( + "https://chatgpt.com/backend-anon/me", + { + method: "GET", + headers: { + "host": "chatgpt.com", + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-anon/me", + "oai-device-id": "2b5a57b5-2e0d-4cd3-910c-e00d9bc2c517", + "x-openai-target-route": "/backend-anon/me", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//chatgpt.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=2b5a57b5-2e0d-4cd3-910c-e00d9bc2c517; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; oai-sc=0gAAAAABpuik2XK6cFTvZ7CW19DvGE-DO4lJGPKxN5z8Fvm_2Vqu9_xwZfQStLy5MJhF77-t9-t3xL-FAjkuunQPflLPSPz12_USII85B-q7fx0azlKRrIrF4zzvVNHowWDM2nhd-ggecSGoPaH6RM8b-NrnDyNQgG0PmZk0XxTHADDEGdQLT5hP_3zQur3ATast0BVXCVhfeLhYA8TZlkMNdkusMAYF5HoLFw-f3ghP993VFElCYX_w; g_state={\"i_l\"0,\"i_ll\"1773808148327,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773808148$j60$l0$h0; cf_clearance=Jjb_Uh42phctJCQ3G2m_u5c.bBBDkMon5Tt18f6Xrng-1773808148-1.2.1.1-1drIx0.VkHYs4zRG6GOT9MLs6R7yhtrglrfbE_0VOwnEpqmdXsZ4MsvfOdKdLKPhlzswhDU1iIXwjPHpQdoWec9.ytgSWv9.X2.hNLKLQBBrRUySo02lph2qcYBogixwbLz_B75qRCL4jelnW76y.SeYTujDoeE1.Z0.E_7bwui_ap9AqprFQ05oWkOGLuMICL2XGp4TUq_K_WA.RILeGlAYxS438T6YO3HegGyOBW4gMtDJfn4Hz2q8r9lX6IorysM0fEyLas697t._GQqQy251C3GVrhIR4jdYE8vgrEVqyYUitWu46yKbFjsV0aVdufuwtdPqoR321zluD0hHyw; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie}; _cfuvid=${cfuvidCookie}; __cf_bm=s3oNDvRlKhaxj5GnU_3t7WJWRrrGW_JhJiMEIn7ZCHg-1773809532.6130853-1.0.1.1-JOoKDTiZNKwd0_g3hLNmvpCoIGMfXutF8nrRd9JrPYHEZUGVvzQuav_gd1IAK3eqeBy6BaLXajS7Xn6rj1vMygisC33z4slUuyyWQzu8SFeDG3ootwoAGAq0VfmXUWAX; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + emailDomainType: JSON.parse(body)["email_domain_type"] + } + } + async function executeRequest0019({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + secureNextAuthCallbackUrlCookie, + cfuvidCookie, + attributeType + }) { + console.log("Executing request 0019") + const response = await fetch( + "https://chatgpt.com/backend-anon/sentinel/chat-requirements/prepare", + { + method: "POST", + headers: { + "host": "chatgpt.com", + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-anon/sentinel/chat-requirements/prepare", + "oai-device-id": "2b5a57b5-2e0d-4cd3-910c-e00d9bc2c517", + "x-openai-target-route": "/backend-anon/sentinel/chat-requirements/prepare", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "content-type": attributeType, + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//chatgpt.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=2b5a57b5-2e0d-4cd3-910c-e00d9bc2c517; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; oai-sc=0gAAAAABpuik2XK6cFTvZ7CW19DvGE-DO4lJGPKxN5z8Fvm_2Vqu9_xwZfQStLy5MJhF77-t9-t3xL-FAjkuunQPflLPSPz12_USII85B-q7fx0azlKRrIrF4zzvVNHowWDM2nhd-ggecSGoPaH6RM8b-NrnDyNQgG0PmZk0XxTHADDEGdQLT5hP_3zQur3ATast0BVXCVhfeLhYA8TZlkMNdkusMAYF5HoLFw-f3ghP993VFElCYX_w; g_state={\"i_l\"0,\"i_ll\"1773808148327,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773808148$j60$l0$h0; cf_clearance=Jjb_Uh42phctJCQ3G2m_u5c.bBBDkMon5Tt18f6Xrng-1773808148-1.2.1.1-1drIx0.VkHYs4zRG6GOT9MLs6R7yhtrglrfbE_0VOwnEpqmdXsZ4MsvfOdKdLKPhlzswhDU1iIXwjPHpQdoWec9.ytgSWv9.X2.hNLKLQBBrRUySo02lph2qcYBogixwbLz_B75qRCL4jelnW76y.SeYTujDoeE1.Z0.E_7bwui_ap9AqprFQ05oWkOGLuMICL2XGp4TUq_K_WA.RILeGlAYxS438T6YO3HegGyOBW4gMtDJfn4Hz2q8r9lX6IorysM0fEyLas697t._GQqQy251C3GVrhIR4jdYE8vgrEVqyYUitWu46yKbFjsV0aVdufuwtdPqoR321zluD0hHyw; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie}; _cfuvid=${cfuvidCookie}; __cf_bm=s3oNDvRlKhaxj5GnU_3t7WJWRrrGW_JhJiMEIn7ZCHg-1773809532.6130853-1.0.1.1-JOoKDTiZNKwd0_g3hLNmvpCoIGMfXutF8nrRd9JrPYHEZUGVvzQuav_gd1IAK3eqeBy6BaLXajS7Xn6rj1vMygisC33z4slUuyyWQzu8SFeDG3ootwoAGAq0VfmXUWAX; _dd_s=aid` + }, + body: "{\"p\":\"gAAAAACWzQwMDAsIldlZCBNYXIgMTggMjAyNiAxMjo1MjoxNSBHTVQrMDgwMCAo5Lit5Zu95qCH5YeG5pe26Ze0KSIsNDI5NDk2NzI5NiwxLCJNb3ppbGxhLzUuMCAoTWFjaW50b3NoOyBJbnRlbCBNYWMgT1MgWCAxMF8xNV83KSBBcHBsZVdlYktpdC81MzcuMzYgKEtIVE1MLCBsaWtlIEdlY2tvKSBDaHJvbWUvMTQ1LjAuMC4wIFNhZmFyaS81MzcuMzYiLCJodHRwczovL2FjY291bnRzLmdvb2dsZS5jb20vZ3NpL2NsaWVudCIsInByb2QtNWIyYmJlMzc3MjhlMTMyYzNlOWMxZGU1MGNmOTYyMzA5YTAzNTk3NCIsInpoLUNOIiwiemgtQ04semgiLDAuNDAwMDAwMDA1OTYwNDY0NSwicGxhdGZvcm3iiJJNYWNJbnRlbCIsImxvY2F0aW9uIiwiY2FwdHVyZUV2ZW50cyIsNTkyOC44MDAwMDAwMDQ0NywiMWM1MGQyMWMtMWNhYy00MTVmLWJlZWItYTQzODRkNWNiYTQ4IiwiIiw4LDE3NzM4MDk1MjkxOTEuMywwLDAsMCwwLDAsMCwwXQ==\"}" + } + ) + const body = await response.text() + return { + oaiScCookie: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === 'oai-sc').split("=")[1].split(";")[0].trim(), + cfuvidCookie1: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '_cfuvid').split("=")[1].split(";")[0].trim(), + prepareToken: JSON.parse(body)["prepare_token"] + } + } + async function executeRequest0020({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + secureNextAuthCallbackUrlCookie, + cfuvidCookie + }) { + console.log("Executing request 0020") + const response = await fetch( + "https://chatgpt.com/backend-anon/system_hints?mode=connectors", + { + method: "GET", + headers: { + "host": "chatgpt.com", + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-anon/system_hints", + "oai-device-id": "2b5a57b5-2e0d-4cd3-910c-e00d9bc2c517", + "x-openai-target-route": "/backend-anon/system_hints", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//chatgpt.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=2b5a57b5-2e0d-4cd3-910c-e00d9bc2c517; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; oai-sc=0gAAAAABpuik2XK6cFTvZ7CW19DvGE-DO4lJGPKxN5z8Fvm_2Vqu9_xwZfQStLy5MJhF77-t9-t3xL-FAjkuunQPflLPSPz12_USII85B-q7fx0azlKRrIrF4zzvVNHowWDM2nhd-ggecSGoPaH6RM8b-NrnDyNQgG0PmZk0XxTHADDEGdQLT5hP_3zQur3ATast0BVXCVhfeLhYA8TZlkMNdkusMAYF5HoLFw-f3ghP993VFElCYX_w; g_state={\"i_l\"0,\"i_ll\"1773808148327,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773808148$j60$l0$h0; cf_clearance=Jjb_Uh42phctJCQ3G2m_u5c.bBBDkMon5Tt18f6Xrng-1773808148-1.2.1.1-1drIx0.VkHYs4zRG6GOT9MLs6R7yhtrglrfbE_0VOwnEpqmdXsZ4MsvfOdKdLKPhlzswhDU1iIXwjPHpQdoWec9.ytgSWv9.X2.hNLKLQBBrRUySo02lph2qcYBogixwbLz_B75qRCL4jelnW76y.SeYTujDoeE1.Z0.E_7bwui_ap9AqprFQ05oWkOGLuMICL2XGp4TUq_K_WA.RILeGlAYxS438T6YO3HegGyOBW4gMtDJfn4Hz2q8r9lX6IorysM0fEyLas697t._GQqQy251C3GVrhIR4jdYE8vgrEVqyYUitWu46yKbFjsV0aVdufuwtdPqoR321zluD0hHyw; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie}; _cfuvid=${cfuvidCookie}; __cf_bm=s3oNDvRlKhaxj5GnU_3t7WJWRrrGW_JhJiMEIn7ZCHg-1773809532.6130853-1.0.1.1-JOoKDTiZNKwd0_g3hLNmvpCoIGMfXutF8nrRd9JrPYHEZUGVvzQuav_gd1IAK3eqeBy6BaLXajS7Xn6rj1vMygisC33z4slUuyyWQzu8SFeDG3ootwoAGAq0VfmXUWAX; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + variable32: response.headers.get("content-length") + } + } + async function executeRequest0021({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + secureNextAuthCallbackUrlCookie, + cfuvidCookie + }) { + console.log("Executing request 0021") + const response = await fetch( + "https://chatgpt.com/backend-anon/settings/voices", + { + method: "GET", + headers: { + "host": "chatgpt.com", + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-anon/settings/voices", + "oai-device-id": "2b5a57b5-2e0d-4cd3-910c-e00d9bc2c517", + "x-openai-target-route": "/backend-anon/settings/voices", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//chatgpt.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=2b5a57b5-2e0d-4cd3-910c-e00d9bc2c517; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; oai-sc=0gAAAAABpuik2XK6cFTvZ7CW19DvGE-DO4lJGPKxN5z8Fvm_2Vqu9_xwZfQStLy5MJhF77-t9-t3xL-FAjkuunQPflLPSPz12_USII85B-q7fx0azlKRrIrF4zzvVNHowWDM2nhd-ggecSGoPaH6RM8b-NrnDyNQgG0PmZk0XxTHADDEGdQLT5hP_3zQur3ATast0BVXCVhfeLhYA8TZlkMNdkusMAYF5HoLFw-f3ghP993VFElCYX_w; g_state={\"i_l\"0,\"i_ll\"1773808148327,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773808148$j60$l0$h0; cf_clearance=Jjb_Uh42phctJCQ3G2m_u5c.bBBDkMon5Tt18f6Xrng-1773808148-1.2.1.1-1drIx0.VkHYs4zRG6GOT9MLs6R7yhtrglrfbE_0VOwnEpqmdXsZ4MsvfOdKdLKPhlzswhDU1iIXwjPHpQdoWec9.ytgSWv9.X2.hNLKLQBBrRUySo02lph2qcYBogixwbLz_B75qRCL4jelnW76y.SeYTujDoeE1.Z0.E_7bwui_ap9AqprFQ05oWkOGLuMICL2XGp4TUq_K_WA.RILeGlAYxS438T6YO3HegGyOBW4gMtDJfn4Hz2q8r9lX6IorysM0fEyLas697t._GQqQy251C3GVrhIR4jdYE8vgrEVqyYUitWu46yKbFjsV0aVdufuwtdPqoR321zluD0hHyw; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie}; _cfuvid=${cfuvidCookie}; __cf_bm=s3oNDvRlKhaxj5GnU_3t7WJWRrrGW_JhJiMEIn7ZCHg-1773809532.6130853-1.0.1.1-JOoKDTiZNKwd0_g3hLNmvpCoIGMfXutF8nrRd9JrPYHEZUGVvzQuav_gd1IAK3eqeBy6BaLXajS7Xn6rj1vMygisC33z4slUuyyWQzu8SFeDG3ootwoAGAq0VfmXUWAX; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + voicesVoice: JSON.parse(body)["voices"][4]["voice"] + } + } + async function executeRequest0021({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + secureNextAuthCallbackUrlCookie, + cfuvidCookie, + attributeAriaExpanded + }) { + console.log("Executing request 0021") + const response = await fetch( + `https://chatgpt.com/backend-anon/models?iim=${attributeAriaExpanded}&is_gizmo=${attributeAriaExpanded}`, + { + method: "GET", + headers: { + "host": "chatgpt.com", + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-anon/models", + "oai-device-id": "2b5a57b5-2e0d-4cd3-910c-e00d9bc2c517", + "x-openai-target-route": "/backend-anon/models", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//chatgpt.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=2b5a57b5-2e0d-4cd3-910c-e00d9bc2c517; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; oai-sc=0gAAAAABpuik2XK6cFTvZ7CW19DvGE-DO4lJGPKxN5z8Fvm_2Vqu9_xwZfQStLy5MJhF77-t9-t3xL-FAjkuunQPflLPSPz12_USII85B-q7fx0azlKRrIrF4zzvVNHowWDM2nhd-ggecSGoPaH6RM8b-NrnDyNQgG0PmZk0XxTHADDEGdQLT5hP_3zQur3ATast0BVXCVhfeLhYA8TZlkMNdkusMAYF5HoLFw-f3ghP993VFElCYX_w; g_state={\"i_l\"0,\"i_ll\"1773808148327,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773808148$j60$l0$h0; cf_clearance=Jjb_Uh42phctJCQ3G2m_u5c.bBBDkMon5Tt18f6Xrng-1773808148-1.2.1.1-1drIx0.VkHYs4zRG6GOT9MLs6R7yhtrglrfbE_0VOwnEpqmdXsZ4MsvfOdKdLKPhlzswhDU1iIXwjPHpQdoWec9.ytgSWv9.X2.hNLKLQBBrRUySo02lph2qcYBogixwbLz_B75qRCL4jelnW76y.SeYTujDoeE1.Z0.E_7bwui_ap9AqprFQ05oWkOGLuMICL2XGp4TUq_K_WA.RILeGlAYxS438T6YO3HegGyOBW4gMtDJfn4Hz2q8r9lX6IorysM0fEyLas697t._GQqQy251C3GVrhIR4jdYE8vgrEVqyYUitWu46yKbFjsV0aVdufuwtdPqoR321zluD0hHyw; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie}; _cfuvid=${cfuvidCookie}; __cf_bm=s3oNDvRlKhaxj5GnU_3t7WJWRrrGW_JhJiMEIn7ZCHg-1773809532.6130853-1.0.1.1-JOoKDTiZNKwd0_g3hLNmvpCoIGMfXutF8nrRd9JrPYHEZUGVvzQuav_gd1IAK3eqeBy6BaLXajS7Xn6rj1vMygisC33z4slUuyyWQzu8SFeDG3ootwoAGAq0VfmXUWAX; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + modelsProductFeaturesAttachmentsAcceptedMimeTypes: JSON.parse(body)["models"][0]["product_features"]["attachments"]["accepted_mime_types"][29], + categoriesSubscriptionLevel: JSON.parse(body)["categories"][0]["subscription_level"], + modelsSlug: JSON.parse(body)["models"][1]["slug"] + } + } + async function executeRequest0021({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + secureNextAuthCallbackUrlCookie, + cfuvidCookie, + attributeType, + session + }) { + console.log("Executing request 0021") + const response = await fetch( + "https://chatgpt.com/backend-anon/conversation/init", + { + method: "POST", + headers: { + "host": "chatgpt.com", + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-anon/conversation/init", + "oai-device-id": "2b5a57b5-2e0d-4cd3-910c-e00d9bc2c517", + "x-openai-target-route": "/backend-anon/conversation/init", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "content-type": attributeType, + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//chatgpt.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=2b5a57b5-2e0d-4cd3-910c-e00d9bc2c517; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; oai-sc=0gAAAAABpuik2XK6cFTvZ7CW19DvGE-DO4lJGPKxN5z8Fvm_2Vqu9_xwZfQStLy5MJhF77-t9-t3xL-FAjkuunQPflLPSPz12_USII85B-q7fx0azlKRrIrF4zzvVNHowWDM2nhd-ggecSGoPaH6RM8b-NrnDyNQgG0PmZk0XxTHADDEGdQLT5hP_3zQur3ATast0BVXCVhfeLhYA8TZlkMNdkusMAYF5HoLFw-f3ghP993VFElCYX_w; g_state={\"i_l\"0,\"i_ll\"1773808148327,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773808148$j60$l0$h0; cf_clearance=Jjb_Uh42phctJCQ3G2m_u5c.bBBDkMon5Tt18f6Xrng-1773808148-1.2.1.1-1drIx0.VkHYs4zRG6GOT9MLs6R7yhtrglrfbE_0VOwnEpqmdXsZ4MsvfOdKdLKPhlzswhDU1iIXwjPHpQdoWec9.ytgSWv9.X2.hNLKLQBBrRUySo02lph2qcYBogixwbLz_B75qRCL4jelnW76y.SeYTujDoeE1.Z0.E_7bwui_ap9AqprFQ05oWkOGLuMICL2XGp4TUq_K_WA.RILeGlAYxS438T6YO3HegGyOBW4gMtDJfn4Hz2q8r9lX6IorysM0fEyLas697t._GQqQy251C3GVrhIR4jdYE8vgrEVqyYUitWu46yKbFjsV0aVdufuwtdPqoR321zluD0hHyw; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie}; _cfuvid=${cfuvidCookie}; __cf_bm=s3oNDvRlKhaxj5GnU_3t7WJWRrrGW_JhJiMEIn7ZCHg-1773809532.6130853-1.0.1.1-JOoKDTiZNKwd0_g3hLNmvpCoIGMfXutF8nrRd9JrPYHEZUGVvzQuav_gd1IAK3eqeBy6BaLXajS7Xn6rj1vMygisC33z4slUuyyWQzu8SFeDG3ootwoAGAq0VfmXUWAX; _dd_s=aid` + }, + body: JSON.stringify( + { + "gizmo_id": null, + "requested_default_model": null, + "conversation_id": null, + "timezone_offset_min": "-480" + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0022({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + secureNextAuthCallbackUrlCookie, + cfuvidCookie + }) { + console.log("Executing request 0022") + const response = await fetch( + "https://chatgpt.com/backend-anon/settings/redeemed_free_trial_on_device", + { + method: "GET", + headers: { + "host": "chatgpt.com", + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-anon/settings/redeemed_free_trial_on_device", + "oai-device-id": "2b5a57b5-2e0d-4cd3-910c-e00d9bc2c517", + "x-openai-target-route": "/backend-anon/settings/redeemed_free_trial_on_device", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//chatgpt.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=2b5a57b5-2e0d-4cd3-910c-e00d9bc2c517; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; oai-sc=0gAAAAABpuik2XK6cFTvZ7CW19DvGE-DO4lJGPKxN5z8Fvm_2Vqu9_xwZfQStLy5MJhF77-t9-t3xL-FAjkuunQPflLPSPz12_USII85B-q7fx0azlKRrIrF4zzvVNHowWDM2nhd-ggecSGoPaH6RM8b-NrnDyNQgG0PmZk0XxTHADDEGdQLT5hP_3zQur3ATast0BVXCVhfeLhYA8TZlkMNdkusMAYF5HoLFw-f3ghP993VFElCYX_w; g_state={\"i_l\"0,\"i_ll\"1773808148327,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773808148$j60$l0$h0; cf_clearance=Jjb_Uh42phctJCQ3G2m_u5c.bBBDkMon5Tt18f6Xrng-1773808148-1.2.1.1-1drIx0.VkHYs4zRG6GOT9MLs6R7yhtrglrfbE_0VOwnEpqmdXsZ4MsvfOdKdLKPhlzswhDU1iIXwjPHpQdoWec9.ytgSWv9.X2.hNLKLQBBrRUySo02lph2qcYBogixwbLz_B75qRCL4jelnW76y.SeYTujDoeE1.Z0.E_7bwui_ap9AqprFQ05oWkOGLuMICL2XGp4TUq_K_WA.RILeGlAYxS438T6YO3HegGyOBW4gMtDJfn4Hz2q8r9lX6IorysM0fEyLas697t._GQqQy251C3GVrhIR4jdYE8vgrEVqyYUitWu46yKbFjsV0aVdufuwtdPqoR321zluD0hHyw; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie}; _cfuvid=${cfuvidCookie}; __cf_bm=s3oNDvRlKhaxj5GnU_3t7WJWRrrGW_JhJiMEIn7ZCHg-1773809532.6130853-1.0.1.1-JOoKDTiZNKwd0_g3hLNmvpCoIGMfXutF8nrRd9JrPYHEZUGVvzQuav_gd1IAK3eqeBy6BaLXajS7Xn6rj1vMygisC33z4slUuyyWQzu8SFeDG3ootwoAGAq0VfmXUWAX; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + variable48: response.headers.get("content-length"), + cfuvidCookie2: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '_cfuvid').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0024({ + hostNextAuthCsrfTokenCookie, + secureNextAuthCallbackUrlCookie, + cfuvidCookie + }) { + console.log("Executing request 0024") + const response = await fetch( + "https://chatgpt.com/ces/v1/projects/oai/settings", + { + method: "GET", + headers: { + "host": "chatgpt.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//chatgpt.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=2b5a57b5-2e0d-4cd3-910c-e00d9bc2c517; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; oai-sc=0gAAAAABpuik2XK6cFTvZ7CW19DvGE-DO4lJGPKxN5z8Fvm_2Vqu9_xwZfQStLy5MJhF77-t9-t3xL-FAjkuunQPflLPSPz12_USII85B-q7fx0azlKRrIrF4zzvVNHowWDM2nhd-ggecSGoPaH6RM8b-NrnDyNQgG0PmZk0XxTHADDEGdQLT5hP_3zQur3ATast0BVXCVhfeLhYA8TZlkMNdkusMAYF5HoLFw-f3ghP993VFElCYX_w; g_state={\"i_l\"0,\"i_ll\"1773808148327,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773808148$j60$l0$h0; cf_clearance=Jjb_Uh42phctJCQ3G2m_u5c.bBBDkMon5Tt18f6Xrng-1773808148-1.2.1.1-1drIx0.VkHYs4zRG6GOT9MLs6R7yhtrglrfbE_0VOwnEpqmdXsZ4MsvfOdKdLKPhlzswhDU1iIXwjPHpQdoWec9.ytgSWv9.X2.hNLKLQBBrRUySo02lph2qcYBogixwbLz_B75qRCL4jelnW76y.SeYTujDoeE1.Z0.E_7bwui_ap9AqprFQ05oWkOGLuMICL2XGp4TUq_K_WA.RILeGlAYxS438T6YO3HegGyOBW4gMtDJfn4Hz2q8r9lX6IorysM0fEyLas697t._GQqQy251C3GVrhIR4jdYE8vgrEVqyYUitWu46yKbFjsV0aVdufuwtdPqoR321zluD0hHyw; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie}; _cfuvid=${cfuvidCookie}; __cf_bm=s3oNDvRlKhaxj5GnU_3t7WJWRrrGW_JhJiMEIn7ZCHg-1773809532.6130853-1.0.1.1-JOoKDTiZNKwd0_g3hLNmvpCoIGMfXutF8nrRd9JrPYHEZUGVvzQuav_gd1IAK3eqeBy6BaLXajS7Xn6rj1vMygisC33z4slUuyyWQzu8SFeDG3ootwoAGAq0VfmXUWAX; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0026({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + secureNextAuthCallbackUrlCookie, + cfuvidCookie + }) { + console.log("Executing request 0026") + const response = await fetch( + "https://chatgpt.com/backend-anon/accounts/passkey/challenge", + { + method: "GET", + headers: { + "host": "chatgpt.com", + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-anon/accounts/passkey/challenge", + "oai-device-id": "2b5a57b5-2e0d-4cd3-910c-e00d9bc2c517", + "x-openai-target-route": "/backend-anon/accounts/passkey/challenge", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//chatgpt.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=2b5a57b5-2e0d-4cd3-910c-e00d9bc2c517; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; oai-sc=0gAAAAABpuik2XK6cFTvZ7CW19DvGE-DO4lJGPKxN5z8Fvm_2Vqu9_xwZfQStLy5MJhF77-t9-t3xL-FAjkuunQPflLPSPz12_USII85B-q7fx0azlKRrIrF4zzvVNHowWDM2nhd-ggecSGoPaH6RM8b-NrnDyNQgG0PmZk0XxTHADDEGdQLT5hP_3zQur3ATast0BVXCVhfeLhYA8TZlkMNdkusMAYF5HoLFw-f3ghP993VFElCYX_w; g_state={\"i_l\"0,\"i_ll\"1773808148327,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773808148$j60$l0$h0; cf_clearance=Jjb_Uh42phctJCQ3G2m_u5c.bBBDkMon5Tt18f6Xrng-1773808148-1.2.1.1-1drIx0.VkHYs4zRG6GOT9MLs6R7yhtrglrfbE_0VOwnEpqmdXsZ4MsvfOdKdLKPhlzswhDU1iIXwjPHpQdoWec9.ytgSWv9.X2.hNLKLQBBrRUySo02lph2qcYBogixwbLz_B75qRCL4jelnW76y.SeYTujDoeE1.Z0.E_7bwui_ap9AqprFQ05oWkOGLuMICL2XGp4TUq_K_WA.RILeGlAYxS438T6YO3HegGyOBW4gMtDJfn4Hz2q8r9lX6IorysM0fEyLas697t._GQqQy251C3GVrhIR4jdYE8vgrEVqyYUitWu46yKbFjsV0aVdufuwtdPqoR321zluD0hHyw; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie}; _cfuvid=${cfuvidCookie}; __cf_bm=s3oNDvRlKhaxj5GnU_3t7WJWRrrGW_JhJiMEIn7ZCHg-1773809532.6130853-1.0.1.1-JOoKDTiZNKwd0_g3hLNmvpCoIGMfXutF8nrRd9JrPYHEZUGVvzQuav_gd1IAK3eqeBy6BaLXajS7Xn6rj1vMygisC33z4slUuyyWQzu8SFeDG3ootwoAGAq0VfmXUWAX; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + cfuvidCookie3: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '_cfuvid').split("=")[1].split(";")[0].trim(), + variable26: response.headers.get("cache-control") + } + } + async function executeRequest0033({ + graphParentorganizationUrl, + systemHintsLogoAttributeFill + }) { + console.log("Executing request 0033") + const response = await fetch( + `https://${graphParentorganizationUrl}/.well-known/webauthn`, + { + method: "GET", + headers: { + "host": graphParentorganizationUrl, + "connection": "keep-alive", + "sec-fetch-site": systemHintsLogoAttributeFill, + "sec-fetch-mode": "no-cors", + "sec-fetch-dest": "empty", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + } + } + ) + const body = await response.text() + return { + origins: new URL(JSON.parse(body)["origins"][0]).hostname, + origins2: new URL(JSON.parse(body)["origins"][0]).pathname + } + } + async function executeRequest0034({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + secureNextAuthCallbackUrlCookie, + attributeType, + origins, + cfClearanceCookie, + cfBmCookie, + oaiScCookie, + cfuvidCookie1, + prepareToken + }) { + console.log("Executing request 0034") + const response = await fetch( + `https://${origins}/backend-anon/sentinel/chat-requirements/finalize`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-anon/sentinel/chat-requirements/finalize", + "oai-device-id": "2b5a57b5-2e0d-4cd3-910c-e00d9bc2c517", + "x-openai-target-route": "/backend-anon/sentinel/chat-requirements/finalize", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "content-type": attributeType, + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//chatgpt.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=2b5a57b5-2e0d-4cd3-910c-e00d9bc2c517; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773808148$j60$l0$h0; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie}; _dd_s=aid; cf_clearance=${cfClearanceCookie}; __cf_bm=${cfBmCookie}; oai-sc=${oaiScCookie}; _cfuvid=${cfuvidCookie1}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}` + }, + body: JSON.stringify( + { + "prepare_token": prepareToken, + "proofofwork": "gAAAAABWzQwMDAsIldlZCBNYXIgMTggMjAyNiAxMjo1MjoxNiBHTVQrMDgwMCAo5Lit5Zu95qCH5YeG5pe26Ze0KSIsNDI5NDk2NzI5Niw1MSwiTW96aWxsYS81LjAgKE1hY2ludG9zaDsgSW50ZWwgTWFjIE9TIFggMTBfMTVfNykgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzE0NS4wLjAuMCBTYWZhcmkvNTM3LjM2IiwiaHR0cHM6Ly9hY2NvdW50cy5nb29nbGUuY29tL2dzaS9jbGllbnQiLCJwcm9kLTViMmJiZTM3NzI4ZTEzMmMzZTljMWRlNTBjZjk2MjMwOWEwMzU5NzQiLCJ6aC1DTiIsInpoLUNOLHpoIiwyLCJwcm9kdWN04oiSR2Vja28iLCJjbG9zdXJlX2xtXzUyOTM5NiIsIm9uZGV2aWNlb3JpZW50YXRpb25hYnNvbHV0ZSIsNjkyNywiMWM1MGQyMWMtMWNhYy00MTVmLWJlZWItYTQzODRkNWNiYTQ4IiwiIiw4LDE3NzM4MDk1MjkxOTEuMywwLDAsMCwwLDAsMCwwXQ==~S", + "turnstile": "QxIXBRwKAwwNEHtiGlRwT3lndnAMeG9QVXl4SVRxe3FvVBAUEhYDHAkBDA0DCAcdAAYJCBwDAhQSGAMcDQkMDQIUEhwOHAgEDA0QdmRNQnxCZRMVHhoGFxkGCRIUFWhsen1UX2lKf2MCBRICFQoNHh4GEAISf094b3Z/UHtwcVZ4d3l5Z39FaVVpXFZwZR5tY31Yf3Fwamlvf1V5e21me1p3VnVjbmVKZmVTR31xc21xaFBne3Z7bWppcVl5cV9banZabnF7YVZ/YVZ2cXlYRW1zX1dmcVVhcWplRXVmeAZ/anVoVnd5eWd/Y3FTamVFdWcfU1dqcVl5c1NlExUeGgcdGQYMEhQVa0B6XmB0CVZ2ckFgVR9tZnlye1J1VgF+YXpMZ3xyRlp1bGZ7eVdKQRAUEhYAHAwHDA0QdVpjQnxSaRMVHhoHGBkCCRIUFXN5DRMVHhoCGBkCDhIUFXN5DRMVHhoJHhkEGgoMdnN5cW92c3lxb3ZzeXFvdnN5cW92c3lxb3YPBRICFQoMHhcVCAgeFgUEDgQZDgEOBBoDBwAFGBsQDwIAAAMaCgx6ZmlFY01ZBRICFQUOHh0EEAISf094aGF4eWBgeEJSZFNId3NzCHFqZmtdd1Z1aGpbF1JqVnJ4ZQN6UXp1e21ySW54eXFnYWcIBXxlA0wbdmFoWXZ/UHtwcVZgYH5cdGZfdlR9dXttcm9+Z31bH25qVFRtVl5yc3pxVXV0f3Z/cHFWUWQJdnZlWXVhb1B3WXFZfmd9XEJSZFNId3NzCHFqZmtdd1Z1e29mdGRqVkh4b1l2UWlQXVtxHg8PGhwMBgQWCQwNEH9dfG9gCVQXZl5AaX92e2lSeG1RblwXVnQIckpiZ1dof1xCXmhCfXNsdkJ7YHp6dmFVDXN2cUpuY2gCUWBmf3h6CHJKYmdIVXZxCmlzeGVnW2VsXmV+SEhgZEhzeFsCYHIfZWdbZWxeZX5ISGBkSHN4WwJrEgIVAwseGQMQAhJ7cmBZYh5ycXBHaGJlVFxrZGdcd2hbfHpnRgcPGhwMDgUWBBkVCExCW1IeGgkXGQYKEhRDQE1VAhUKAR4fFQgaVh8OcG12G1N3f1R0YmBhYWxZaHtjaE9+cFcTChAUEhwGHAAJDA0QXWgbR1cLU3dwdQF4f1tgbnFGU0hcXkpeUVB6H2FkSGd2X1pRYx9bZWBlZHtgaVd3VGQNeHZbAmlpWW5hWXVkdXVAelpvXgl4eAZGYmNoAmpgcmwDZ1NyYmBnfmppQA8FEgIVAQkeFg4QAhJ/YnR6YXtxcGlkHgoQFBIYDxwOBgwNEHtXEwoQFBIdDhwKCQwNEG4BaH91VGp8YXNyaXsGd15kHlNxa0gXeWRTehdkdA1Vf3EDfFIeeldrAHxnYwh2fGFFenV4B0Z8Yh9fUWIBQnx1aX1+dGBPcm9AVXF4f1RXbgFof3V+fmdmdAhpeVtefFZ4fWpuXht1VlNUY2B1XFF7BgtuY3h9UVxbeGB1CQF0YGN+Z39cWnxxeENmawB8HGRUZkpRd35neFlKamdCfldvAVZ/Z1RIY39nCWl/ckJuYUJtdWBmf3NgflRMZllMdGZbVmpiVl9ma3VsU3V+QHRmAEhVf2FkYmh7ZWpgeBd2ZG4BdGZZSFV2cQtSYh95am9caFRRVEhjZl5bUnZhXmJxeG1xa3VjdWR+AXlvWUxlfFtWe2ofW0puARtWZ1NAY21kDXV4BmBbUmhtUW5ceFRraX17ZgNIZ3xcRmJjfFtwbHZoemUJVEBgZ1dqb0AKcnhvcnZ7cUlTcEAFdmJnW2l7B1p5aHxfZWBmZFVnf3ZKZXRIVXZxC3xxQl9mbWIXZ2AIemJ/Awlze3JGbGhoAnFsdkJ1ZWBidGBncmN4WUJqYWhbamtYVnVkVEN2YmQNeH9lVn1kHnlqa1t8dWMLRHlUAn5qfFsDcWdDfXFrAXh0ZQtydG9ZemN/cAZ7cUVlam9lZHlqQEh0ZXRIdnkGQn5nQgJWbltjc2B+VGNld1xqeGJBW3dZbnl8dndvdl99Z3VwS39vQAZ7eFkKDxpN" + } + ) + } + ) + const body = await response.text() + return { + oaiScCookie1: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === 'oai-sc').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0036({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + secureNextAuthCallbackUrlCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + oaiScCookie, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + cfuvidCookie2, + variable4, + origins2, + variable5, + statsigpayloadDynamicConfigs217573384Value, + attributeContent, + authstatus, + userGroups + }) { + console.log("Executing request 0036") + const response = await fetch( + `https://${origins}/ces/v1/p`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "oai-device-id": "2b5a57b5-2e0d-4cd3-910c-e00d9bc2c517", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "content-type": modelsProductFeaturesAttachmentsAcceptedMimeTypes, + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//chatgpt.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=2b5a57b5-2e0d-4cd3-910c-e00d9bc2c517; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773808148$j60$l0$h0; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie}; cf_clearance=${cfClearanceCookie}; oai-sc=${oaiScCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; _dd_s=aid; oai-asli=a2109958-0f9f-4169-a59b-a51e809c3a8e; _cfuvid=${cfuvidCookie2}; __cf_bm=0_RFOKUacQM6ZiZg.sTrHncZuOjIQwmaYdRBd9Yt63k-1773809536.8472912-1.0.1.1-8rIykGVzFtf6t7FJgRc2Sxpyt0Hb.SmvSdMhDU9kpRezLzuHULnlq1arK2IkWvyqWpqhLwjn.JLP09xbPOttNq8zZ3YSbwkYJjuEv5qa5BE_MIzUMX_o.Ao9hZskK4Sn` + }, + body: JSON.stringify( + { + "timestamp": "2026-03-18T04:52:16.960Z", + "integrations": { + "Segment.io": variable4 + }, + "type": "page", + "properties": { + "path": origins2, + "referrer": "", + "search": origins2, + "title": variable5, + "url": `https://${origins}${origins2}`, + "hash": "" + }, + "context": { + "page": { + "path": origins2, + "referrer": "", + "search": origins2, + "title": variable5, + "url": `https://${origins}${origins2}`, + "hash": "" + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": "145" + }, + { + "brand": "Chromium", + "version": "145" + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locale": clientLocale, + "library": { + "name": "analytics.js", + "version": "npm:next-1.81.1" + }, + "campaign": statsigpayloadDynamicConfigs217573384Value, + "timezone": "Asia/Shanghai", + "app_name": attributeContent, + "app_version": "5b2bbe37728e132c3e9c1de50cf962309a035974", + "browser_locale": clientLocale, + "device_id": "2b5a57b5-2e0d-4cd3-910c-e00d9bc2c517", + "auth_status": authstatus, + "is_business_ip2": attributeAriaExpanded + }, + "messageId": "ajs-next-1773809536960-75a64a3e-2a7c-4ee0-a77f-88021045459e", + "anonymousId": "a0e62988-9eeb-4a71-b5a6-4a3e2a7caee0", + "writeKey": "oai", + "userId": null, + "sentAt": "2026-03-18T04:52:16.961Z", + "_metadata": { + "bundled": [ + "Segment.io" + ], + "unbundled": userGroups, + "bundledIds": userGroups + } + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0037({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + secureNextAuthCallbackUrlCookie, + origins, + cfClearanceCookie, + oaiScCookie, + cfuvidCookie2 + }) { + console.log("Executing request 0037") + const response = await fetch( + `https://${origins}/backend-anon/checkout_pricing_config/countries`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-anon/checkout_pricing_config/countries", + "oai-device-id": "2b5a57b5-2e0d-4cd3-910c-e00d9bc2c517", + "x-openai-target-route": "/backend-anon/checkout_pricing_config/countries", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//chatgpt.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=2b5a57b5-2e0d-4cd3-910c-e00d9bc2c517; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773808148$j60$l0$h0; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie}; cf_clearance=${cfClearanceCookie}; oai-sc=${oaiScCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; _dd_s=aid; oai-asli=a2109958-0f9f-4169-a59b-a51e809c3a8e; _cfuvid=${cfuvidCookie2}; __cf_bm=0_RFOKUacQM6ZiZg.sTrHncZuOjIQwmaYdRBd9Yt63k-1773809536.8472912-1.0.1.1-8rIykGVzFtf6t7FJgRc2Sxpyt0Hb.SmvSdMhDU9kpRezLzuHULnlq1arK2IkWvyqWpqhLwjn.JLP09xbPOttNq8zZ3YSbwkYJjuEv5qa5BE_MIzUMX_o.Ao9hZskK4Sn` + } + } + ) + const body = await response.text() + return { + cfBmCookie1: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '__cf_bm').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0038({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + secureNextAuthCallbackUrlCookie, + origins, + cfClearanceCookie, + statsigpayloadDynamicConfigs3685705952ValueSms, + cfuvidCookie3, + oaiScCookie1, + cfBmCookie1 + }) { + console.log("Executing request 0038") + const response = await fetch( + `https://${origins}/backend-anon/checkout_pricing_config/configs/${statsigpayloadDynamicConfigs3685705952ValueSms}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-anon/checkout_pricing_config/configs/US", + "oai-device-id": "2b5a57b5-2e0d-4cd3-910c-e00d9bc2c517", + "x-openai-target-route": "/backend-anon/checkout_pricing_config/configs/{country_code}", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//chatgpt.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=2b5a57b5-2e0d-4cd3-910c-e00d9bc2c517; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773808148$j60$l0$h0; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; _dd_s=aid; oai-asli=a2109958-0f9f-4169-a59b-a51e809c3a8e; _cfuvid=${cfuvidCookie3}; oai-sc=${oaiScCookie1}; __cf_bm=${cfBmCookie1}` + } + } + ) + const body = await response.text() + return { + currencyConfigPromosBusinessOneDollarAmount: JSON.parse(body)["currency_config"]["promos"]["business_one_dollar"]["amount"], + currencyConfigSymbolCode: JSON.parse(body)["currency_config"]["symbol_code"] + } + } + async function executeRequest0043({ + hostNextAuthCsrfTokenCookie, + secureNextAuthCallbackUrlCookie, + attributeType, + origins, + cfClearanceCookie, + cfuvidCookie3, + oaiScCookie1, + cfBmCookie1 + }) { + console.log("Executing request 0043") + const response = await fetch( + `https://${origins}/api/auth/csrf`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": attributeType, + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//chatgpt.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=2b5a57b5-2e0d-4cd3-910c-e00d9bc2c517; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; oai-asli=a2109958-0f9f-4169-a59b-a51e809c3a8e; _cfuvid=${cfuvidCookie3}; oai-sc=${oaiScCookie1}; __cf_bm=${cfBmCookie1}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809541$j58$l0$h0; _dd_s=aid`, + "if-none-match": "W/\"50-g0uqHy9KOMhlm7S7tGsa4VP69C8\"" + } + } + ) + const body = await response.text() + return { + secureNextAuthCallbackUrlCookie1: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '__Secure-next-auth.callback-url').split("=")[1].split(";")[0].trim(), + secureNextAuthCallbackUrlCookie2: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '__Secure-next-auth.callback-url').split("=")[1].split(";")[0].trim(), + csrftoken: JSON.parse(body)["csrfToken"] + } + } + async function executeRequest0044({ + hostNextAuthCsrfTokenCookie, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + graphSameas, + secureNextAuthCallbackUrlCookie1, + secureNextAuthCallbackUrlCookie2, + csrftoken + }) { + console.log("Executing request 0044") + const response = await fetch( + `https://${origins}/api/auth/signin/${graphSameas}??prompt=login&ext-oai-did=2b5a57b5-2e0d-4cd3-910c-e00d9bc2c517&auth_session_logging_id=af0081e1-4aea-498f-9a49-344ed42ee061&ext-passkey-client-capabilities=1111&screen_hint=login_or_signup&login_hint=jnathej%40inctart.com`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//chatgpt.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=2b5a57b5-2e0d-4cd3-910c-e00d9bc2c517; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; oai-asli=a2109958-0f9f-4169-a59b-a51e809c3a8e; _cfuvid=${cfuvidCookie3}; oai-sc=${oaiScCookie1}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809541$j58$l0$h0; _dd_s=aid; __cf_bm=lGqZAEautEEn8AFsiPHQTm.67teMJwMUuZv58wUTFwE-1773809541.8071985-1.0.1.1-4qBQq_6Jv4HAHwEJM947t9_adr7YNu.jpCUlraPVYaY5CZ7o2D1bjfYZQIsIUkZ7DqmKv1aaxJYnyNa.V9J9o9zNqXLxqu5jd19zxRsMFDMeqnm9o9bNMfuHwtijY7Jk; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}` + }, + body: `callbackUrl=${secureNextAuthCallbackUrlCookie2}&csrfToken=${csrftoken}&json=${variable4}` + } + ) + const body = await response.text() + return { + url: JSON.parse(body)["url"], + url1: new URL(JSON.parse(body)["url"]).hostname, + urlClientId: new URL(JSON.parse(body)["url"]).search, + urlAudience: new URL(new URL(JSON.parse(body)["url"]).search).pathname, + url4: new URL(JSON.parse(body)["url"]).pathname, + secureNextAuthStateCookie: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '__Secure-next-auth.state').split("=")[1].split(";")[0].trim(), + cfBmCookie4: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '__cf_bm').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0045({ + currencyConfigPromosBusinessOneDollarAmount, + attributeAriaExpanded, + statsigpayloadDynamicConfigs3685705952ValueSms, + url, + url1, + urlClientId, + statsigpayloadDynamicConfigs489084288ValueOptions + }) { + console.log("Executing request 0045") + const response = await fetch( + url, + { + method: "GET", + headers: { + "host": url1, + "connection": "keep-alive", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"macOS\"", + "upgrade-insecure-requests": currencyConfigPromosBusinessOneDollarAmount, + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "navigate", + "sec-fetch-user": "?1", + "sec-fetch-dest": "document", + "referer": "https//chatgpt.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-did=2b5a57b5-2e0d-4cd3-910c-e00d9bc2c517; oai-login-csrf_dev_3772291445=MTc3MzgwNzkyOXxXUVJnZE56YlpzZFpJdDZNX19QZm45S05fZkx3bHNfM1QtVmtEYXFsRnBqQWh1amhSc1NlQmI5SU1CM1NVQ2IybzZwRUlZMkFzRWxKUDNUUUxMeUU3LUw5ek93Qm40WFAxdGZ0anZRT2V1dWhnQ2Fld2U2RGJ1cFdxSU9hfC7aCRo4ZhSA7Y8l52fuK9tKyE068wpJ7pm4h5czXU1f; auth_provider=AADju/m4WIoxT20Sj1Tk+p22bAo5d1yR55Zyqo28HeiSAFZzLygvHLkhs36WQzz8C3R4Tap+xIDWiF03Da3jYLwkvAZxfzuJdxf4OrqHOSBcr7/oJMkeeaTCs5YfUC732y+NHmigWWOC1f2NuBwrW0kig7lJGZBz86VP30uml4Y7wUSDx2zJffDGHAGj6SZLQbykJoKYhUCDQqtMg198l04TGzdul0nYYlGHNh+2W6taNq0QNBLOd3qM66qWFTyf4p5k/JSCOoDozEfy32xJ4SL/APqii05IXIic3QVSUtwGaRkoJdhVV41iUFzHAM6kQXxjGxfDSkx42pUJ5ybQlYY4aOlptNJfGX8V7F0W5Nfhx+XNlzCVO7G5TNdmBYejXswmW+Qo9NEtIkQnELHn69hwRvib+PylkxTUJsG1Sd9jXc98Ifd1y1lwXuhwfBmlpWjyYpNi1pa4j9rdHZVdbowa04g3nOuMRlcSpp0r4+Lzhm2HdoJMRYdB+1MR2FiZPgU7qxHdfj23aenhRm6NsneS0vjUXCtlNeCFoU/XyE4qmrlKFtWo3vzKwJL7jzPpK5QdoZzmZdoSUOxI1RGZbrWzS9ketGwqvRtE5M4GIJmg/VuDGqhRPbrcp3QiXcQn4mIjRBufaKbtTaKofVU+O6TsG/ruFjp9CH2CVEfEXnNHMBWrx9v4O2HnGxGtXqKSNNPw7loZ52qDskPyyAjLiCkePojbm3xFZASJajhCQrDEcj0yTbwL0STOnNAAxnfcS3fYZO9lE7yAFMW4LoE998bVyrzAijtkvFJ0WiVeeqE3lxT07OG6i7RQeC00rYL0Mo6FSqlTyzzxgYfhYIW8N0Xw+g5bVjcIbax5KxA5Y/1Rn0xEVajOSgOOmX7uuxpbid8hdei5+JiK0SlN3Jg1avEp+y7kDAdRjj5fsKgFISE2IpzEJwKTJVX7mRyNHjrG12xPndmxuDyJ6+oqliMbbXDETYWE7TdHFa1BKyul9s8ww1B2SLYqBisC7JQ1geki8ULl7HWuH5srmy9yZjk3KMfMMP0rurWDTbg3eG6ApWDSer/OwxV3xRpyLXIKIhLUQjHPEOZxq4uomVciG+UOtcS5Mn+54520En1Xf0XL3MlZLeXafgQVyuS3Kw3+3MKOb5G3S/lNAkpVhYT0gcE0hKWS9glvshlxJlHmnFqjtezYQKC27H4q9bB36KsbkFwwibIgWtJZbAI6KNzqanrIUCWlaA4F+6EDNKaejr/jf9q2WKILTw7HQtvXOll8euAjJ9e/6DbPBV5Gx783KI8XH5lXtPRyJ+mps2g+F+s1qljEKdKHWp3l1PrwrZBjjE3IAbnojDolrOZXkhD1jP5X9F6R97WLxvD+hVZf87zX94WybrrUJdRlTgUF/Xh56M6tNNU1c0tRqK8mQXeSn/8r17Huy0h5J/TLNr9V2KVGIRlV/l/fzcR4Km/CGDPZPIad7oLYPUkA/ZlLgHzJkRYaAqwF6jigS5fTfOD5wSOotH1eBxwvzD/WQtr9P/y1N9U7BM0zzMSLcab16jygbtGohA; login_session=eyJsb2dpbl9jaGFsbGVuZ2UiOiJ0eGdPdVp1WW11YmhmSWRHMlY0QjVBQTVPOXpLX2ZXb0dIZ05FVjFqNk1BUVRxbkJFbVJnOTRDeDVGbXpQbE0tU3BOcklmT0NPc3hKdEdRNDE0S19ickdXWkQwdEhtR19xQk9uYjdqcGdfVW11TDAtWDB6YjgyYnExQlhQQ01USEhlTzhLeWtxMWh5akphcWg3VHMtWGd5Sl9TTmhyRnFFSVVTLUZhV0I0cGlwRk9kRFdzbU0yTHhBcERudFFielp0cHhJRHhzRnVVY051cVhEekxlWWxic2E4em9VdWxCWGY3WEQtUDVkbVJxZkU2ck9ENHpTZ3dBZnlJcTQxNm9XbkdnMURCZG1NaWk4NEZqc2hRV0Z1OEtFWmw5bklRaU9Lb1pCMDMxY25MMl9vNHdKTnlxN25vUk8wc1NJZ3lDV0tWaVFPQ2piY3Rsckk1QWNyR296b0x5b21sa2xnNkV1d1hJY2loSER1dzJhcTJ5cDl2R1lLTndxbmVhRlctcVVrSmVDWmRLbVFsWDlWRnZQdW83YUxNeDEtcHFBSGNJcTdyeEFTZV90LVMxTzVWTmVlQmZRcGYySmoyS0tZZjhBaVJJWTN6YmZsWjZINHItSEk0ekFQU1QyM1VsaVNGNFBvOTNCS2RlUWdGNTY4NW95eDVRQkNxWG5zYWVoWXJtb3RyeVFJWHZ1bXVBT2I2V1d1aDNLN0UyNGFUTFlmbXcyRjllUVdOMnpIcGdaN3RiUDk2eHBKc1hJZUJrbE9UQUJKR3Jab2M2WlpNVFJ2NlVrOTFFckNXSzhSdVV4eUxBRU5PblBnTzctYkxyRG9tOV9OUWNNeV9qR0xsQllRVUd2YS01THVXay1RSlYzMXVuM3Y5WEpQeFRDd3NRZG1IS1hEc0tOeUdlajJJZU14eFhjeUJGN0FzYzE2X3NMODhydU1QZ2U2ZHlVV0Y3QVpzZ3haaTJ6YkRhR21Lcm0yTXBhaVAxUGFULUd2TzBJQ1U4ZWJUeUl6UUc1bm9SbEItVHVtZ3E5S0FMUXZVRFlwYlBFS3ZMQ3JWV3dHTy1yX3Jka0xURWVQUWZUZWtlSWtERzdERlBuSXY4bWhoUFpJS1BEUEYzckRGMUlFSU1BRlI2S0hYRFdFeDhUNjQzYkZFSzhhYk9sdDh3VThuTDlsQ0ViSEhSd21nTVpDX1U4Wm9NMmJiVXF2dXZVUnphT2RzTUxINlpNYXphaWhvdzVZQjRQZEgwYWtibk5hSTNmamJpS0s3bnVRQ3ZnTENCS2hvQ0FBeFBWTTMweDNwSWdnREZDTmVVa2owcGZWenA2dFNLMjdKWTBLLVRoWEcyOG16cUxhdXRFQ1lOUUQtZjhQemExUEhHYjN4emp4aDBkay1PbG9lZENKTDNZU3lzMmZvX214OFJaQVdGLWtHOHJOdDZxYjZhekQ2TGdEZE04eHBDdFJWNlZuS3loSkY3UEJOelNPTks3aTktNm1NY3Z6emtOdXVpV01fMGVwMkg5ZnNFOXlSR1NDMHNCOFItVmxOV0xOZ1BCWW5uUVItUnYydDJmLUFrOFRJY2tIVlB0RDlCMS1JT2RKN2RxM090U0MzQkVsQnRyYURvd1hDcjNVQXNOOE1tYVgyWFRnWUoxbWdKbjZiSzMzOC1nRUVBd1MtWVFjSHU1TnBVZFZhSkpsOWFyclZ4SG1SZVRZOGZqdVlmTW5wWHdsYlplSEN5RzEzNW1DVHdSNjA2RTVGdDRqSUVjVHJ5SERkeFJ4S28zVGlKeU9EemVWR0d2eVlMVVM2T0RNQy1RUF93SjJXUjhVTzdpNWR0MENSSXNlY0Zta3VSNWhBVHk2WVR2cDdlVW1NczNCRzBDT3NhU19EUWdqUG9vclFTcEVUd0RXelpGNUdWeEtwUHlwVENOSjI1UUJPb1Q5b0xmS0lTV19DRzY2UFc3XzUxTmx2b3FjajZwdHJ4MDhEalBMMWZJcFdZRDJRN3VvRUFsZUl5ckxpcTdJYWFBU1ViQlpGbnVDV181Wkh1UG4xeS1Mamw2RlYyWXNUbGdjZDJFdDltcUp2dDlzZUJOQlRjdG12WEtHdTdmRm04UmRtVEJEZ2FUUUxWcEp2VV9pWHRZT01IVGtJejRWSXFtMnJMRkQ0MzdIeUdNcHVmTDM1MmZoMnFtYlZmMnR3RExPUnBBSjFqMWJWeXN3cjVwRElmYTZhOWNiUi1oRUtNVk5aNjBpS3Ntb1VVeHVwMW5qR1I2dUpHNEpLd0NxQlhrQWx3c2VHNTdBNmJoVmppcVJZMEZ0RzZWb3lnc2l6WjR0UTRqT2lrTE1LcFVmeC13cHZULXhVeHB1X2M1aFZpVDVyVDJTZS1Kbm1hYThJQkhIZTdjVWFYOHFKb3BhMHZiNjVjVzZJYnVkYmJQNjhldVRxRzdXOXp0ZDVMSjZKR0RlNFdYcW55Ym5XcVFSNFdRc0c4MGxqWGpneU9QQ3pWNm5aRV9SRWpldEhYY1o4NlFBTENwNEVzSndOUmJmLTJCN3dVeWowVWRqUjROcEM4NWtucTUycFZuS0QwRGhDZXZJd2dNVXhhekxsUzI3SG9VZlU3R0xqQUEzMWtmN2hCQ0tJUFNZVjJUdVNGUy1yZVFfMHpsMlNOTEZtTWNQNEZ6ZXJYSmZxUmdicy1uVVoyTUdhQVN2N1BKdUg4S2w3a3BiQUFYTEh4RDlxRWhoQzg1VVhZNG9hU0I2djNRT052akRtVXJhVlF2WUhBaTNGNS1GWEJtcjFuMDYxOGZXYnJYSng4UmVqQVQ2S0lmVzk2dnFINUdRTjV1NzF2Ty1kNElBREc4RVpCdlZlbHFGNEJBRHVic3oyMmM4ZVpfa2JoR3liMEJadURfbTkxTUNuVUhXTVJKNEFKaFJLRXdEM29qNXdUd29RZXB2YzBRTnhsQWt4Wk81WUdJTjRmNGFTWEtFbGxqZHZPZGtPZFFiN1JsWHU2anNuR09KcGwzMDY4cjdrQ1hXVzcxN25fbVhKVkpKQWx1dGt3UkJveTVDV1BIeDNobUR3SFBfUm9Pd2o1M2w5dGJ0REtOYzU0dEk4cDFhanNGdXNMV21JbXBqNng1WUNod0NUSWZCYldRZERTV3hjMDdDeXpZYUxBRGpGZ0wybVB2MmZWQ2xoYmVlZXNRcG1ObVhIRk9SZ3NPM2pfLWdDa3cifQ; hydra_redirect=eyJvYWktbG9naW4tY3NyZl9kZXZfMzc3MjI5MTQ0NSI6Ik1UYzNNemd3TnpreU9YeFhVVkpuWkU1NllscHpaRnBKZERaTlgxOVFabTQ1UzA1ZlpreDNiSE5mTTFRdFZtdEVZWEZzUm5CcVFXaDFhbWhTYzFObFFtSTVTVTFDTTFOVlEySXlielp3UlVsWk1rRnpSV3hLVUROVVVVeE1lVVUzTFV3NWVrOTNRbTQwV0ZBeGRHWjBhblpSVDJWMWRXaG5RMkZsZDJVMlJHSjFjRmR4U1U5aGZDN2FDUm80WmhTQTdZOGw1MmZ1Szl0S3lFMDY4d3BKN3BtNGg1Y3pYVTFmIn0; oai-client-auth-session=${btoa(JSON.stringify( + { + "session_id": "authsess_F7TqC5c5AHG38rynt37XWLJz", + "country_code_hint": statsigpayloadDynamicConfigs3685705952ValueSms, + "auth_session_logging_id": "79be5353-1674-4afe-bfd0-81eeb7cf27bb", + "promo": "", + "signup_source": "", + "openai_client_id": urlClientId, + "app_name_enum": "chat", + "aas_enabled": attributeAriaExpanded, + "original_screen_hint": "login_or_signup", + "username": { + "value": "onemlayz@inctart.com", + "kind": statsigpayloadDynamicConfigs489084288ValueOptions + }, + "passwordless_disabled": attributeAriaExpanded + } + ))}; oai-client-auth-info=eyJsYXN0X2xvZ2luX3N0cmF0ZWd5IjoiYXV0aDAifQ; unified_session_manifest=eyJhbGciOiJFUzI1NiIsInR5cCI6IkpXVCJ9.eyJuYW1lcyI6W119.9Fj-78uyTv4M1W6MLxsf9SQtPiW5Z25Z5RrrbILY_lMKmPX9556C55cWNWA41TZbr_0uLYMWMpZI3DlBhRlwVw; __cflb=0H28w2ZepuU3KZxNdeQ1aFPy7qqzg8Ygj1P14HLNKru; oai-sc=0gAAAAABpuimPEL2wn_kAYm8cbwKX5Iev-yf4kUIEaPcn8--KZsEKeEdpxv0jnVqdRs-h8nRPg_KgvpmJ3ZIRJ4GhI038-U7hbzJJiC0QGQCQiQ5MX3nOy-NDgAQ33W_i6os-Mls9MDH8ofSzkyqsBBcuJwyDiTHyUSF0phaCew3nYReTPYiDFHtHcwBE_IjfCqjkY9-j6y022GkoCah9cz_ebnjqT2cOUTQZNBtEsybt_FVBD9sfDBtuE0cIzF-05sdNOYewCqwi; __cf_bm=D4aw04B2yVZSQaA119nKTIqyqJUY55I9stLZVbEeY8Q-1773808042-1.0.1.1-1SgGx7qFJlt18jHC4UVmgdbMf6xkUPgcFWoUaI_JHc6TSPUktMAaNPhryF6Q.eWMh5ajKxFgSJR7lhiHacRtS3noW6Sn9m0os1llpsKd4MY; cf_clearance=1FMuuZQ7T0nhGGvAC5nLD1vOD5xBdtaknyTZ1yvmE78-1773808043-1.2.1.1-ZoH_uQuVL5xITquOtfZL5YDHiHeREad7Z_BGpPZ_F7ZNqoWz2WrC4pf5aqFHhEud8Vc8RzkE8dsLlo2mIUKmeOkYIpBweAidDmpdXAnUeIH7Optf6vzmDmD_TfrkqDEYOsnhRjBMpbS_aLok4Tqq_Zxka78UwJjXvJIq5T_fMBQtMhOwl.up7EcjHQPlbuWoRWVNicd1mubhbFIXSnO46K_vyqvezIzd3LvoOWoKfe4UkEaUX7fRo2FFWbpv8B1knuuI2ls_Cazhr.lhUOumr7TeLMgDHjRv35bl62F8pG3djlWPHemp9YxAdx7htMXLRKdz3kB2sBjsAtsPkUM9lw` + } + } + ) + const body = await response.text() + return { + variable8: response.headers.get("location"), + variable9: response.headers.get("location"), + oaiLoginCsrfDev3772291445Cookie: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === 'oai-login-csrf_dev_3772291445').split("=")[1].split(";")[0].trim(), + rgContextCookie: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === 'rg_context').split("=")[1].split(";")[0].trim(), + authProviderCookie: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === 'auth_provider').split("=")[1].split(";")[0].trim(), + loginSessionCookie: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === 'login_session').split("=")[1].split(";")[0].trim(), + hydraRedirectCookie: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === 'hydra_redirect').split("=")[1].split(";")[0].trim(), + oaiClientAuthSessionCookie: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === 'oai-client-auth-session').split("=")[1].split(";")[0].trim(), + unifiedSessionManifestCookie: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === 'unified_session_manifest').split("=")[1].split(";")[0].trim(), + authSessionMinimizedCookie: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === 'auth-session-minimized').split("=")[1].split(";")[0].trim(), + cfBmCookie2: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '__cf_bm').split("=")[1].split(";")[0].trim(), + cflbCookie: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '__cflb').split("=")[1].split(";")[0].trim(), + cfuvidCookie4: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '_cfuvid').split("=")[1].split(";")[0].trim(), + variable16: response.headers.get("location") + } + } + async function executeRequest0046({ + currencyConfigPromosBusinessOneDollarAmount, + url1, + variable8, + variable9, + oaiLoginCsrfDev3772291445Cookie, + rgContextCookie, + statsigpayloadFeatureGates6102981RuleId, + authProviderCookie, + loginSessionCookie, + hydraRedirectCookie, + oaiClientAuthSessionCookie, + unifiedSessionManifestCookie, + authSessionMinimizedCookie, + cfBmCookie2, + cflbCookie, + cfuvidCookie4 + }) { + console.log("Executing request 0046") + const response = await fetch( + `https://${url1}/${variable8}/${variable9}`, + { + method: "GET", + headers: { + "host": url1, + "connection": "keep-alive", + "upgrade-insecure-requests": currencyConfigPromosBusinessOneDollarAmount, + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "navigate", + "sec-fetch-user": "?1", + "sec-fetch-dest": "document", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"macOS\"", + "referer": "https//chatgpt.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-did=2b5a57b5-2e0d-4cd3-910c-e00d9bc2c517; oai-sc=0gAAAAABpuimPEL2wn_kAYm8cbwKX5Iev-yf4kUIEaPcn8--KZsEKeEdpxv0jnVqdRs-h8nRPg_KgvpmJ3ZIRJ4GhI038-U7hbzJJiC0QGQCQiQ5MX3nOy-NDgAQ33W_i6os-Mls9MDH8ofSzkyqsBBcuJwyDiTHyUSF0phaCew3nYReTPYiDFHtHcwBE_IjfCqjkY9-j6y022GkoCah9cz_ebnjqT2cOUTQZNBtEsybt_FVBD9sfDBtuE0cIzF-05sdNOYewCqwi; cf_clearance=1FMuuZQ7T0nhGGvAC5nLD1vOD5xBdtaknyTZ1yvmE78-1773808043-1.2.1.1-ZoH_uQuVL5xITquOtfZL5YDHiHeREad7Z_BGpPZ_F7ZNqoWz2WrC4pf5aqFHhEud8Vc8RzkE8dsLlo2mIUKmeOkYIpBweAidDmpdXAnUeIH7Optf6vzmDmD_TfrkqDEYOsnhRjBMpbS_aLok4Tqq_Zxka78UwJjXvJIq5T_fMBQtMhOwl.up7EcjHQPlbuWoRWVNicd1mubhbFIXSnO46K_vyqvezIzd3LvoOWoKfe4UkEaUX7fRo2FFWbpv8B1knuuI2ls_Cazhr.lhUOumr7TeLMgDHjRv35bl62F8pG3djlWPHemp9YxAdx7htMXLRKdz3kB2sBjsAtsPkUM9lw; oai-login-csrf_dev_3772291445=${oaiLoginCsrfDev3772291445Cookie}; rg_context=${rgContextCookie}; iss_context=${statsigpayloadFeatureGates6102981RuleId}; auth_provider=${authProviderCookie}; login_session=${loginSessionCookie}; hydra_redirect=${hydraRedirectCookie}; oai-client-auth-session=${oaiClientAuthSessionCookie}; oai-client-auth-info=eyJsYXN0X2xvZ2luX3N0cmF0ZWd5IjoiYXV0aDAifQ; unified_session_manifest=${unifiedSessionManifestCookie}; auth-session-minimized=${authSessionMinimizedCookie}; __cf_bm=${cfBmCookie2}; __cflb=${cflbCookie}; _cfuvid=${cfuvidCookie4}` + } + } + ) + const body = await response.text() + return { + variable22: acorn.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[0].childNodes[0].textContent,{ecmaVersion: 2020})["body"]["0"]["expression"]["callee"]["body"]["body"]["0"]["consequent"]["body"]["0"]["declarations"]["0"]["init"]["callee"]["object"]["arguments"]["0"], + immutableclientsessionmetadataAuthSessionLoggingId: JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[1].childNodes[0].textContent)["immutableClientSessionMetadata"]["auth_session_logging_id"], + immutableclientsessionmetadataAppNameEnum: JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[1].childNodes[0].textContent)["immutableClientSessionMetadata"]["app_name_enum"], + cflbCookie1: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '__cflb').split("=")[1].split(";")[0].trim(), + track: JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[1].childNodes[0].textContent)["track"], + attributeHref8: new URL(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[0].childNodes[4].getAttribute("href")).pathname, + variable122: acorn.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[2].childNodes[0].textContent,{ecmaVersion: 2020})["body"]["0"]["expression"]["right"]["properties"]["2"]["value"]["properties"]["0"]["value"] + } + } + async function executeRequest0050({ + currencyConfigPromosBusinessOneDollarAmount, + urlAudience + }) { + console.log("Executing request 0050") + const response = await fetch( + `https://featureassets.org/${urlAudience}/initialize?k=client-tN5GMyzpIPKXd3KNv7ANIfiqjRSvNNTTWbZdbdabF58&st=javascript-client&sv=3.16.1&t=1773809546090&sid=4c71157d-7261-4224-ae34-fc38643d4d6c&se=${currencyConfigPromosBusinessOneDollarAmount}`, + { + method: "POST", + headers: { + "host": "featureassets.org", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "text/plain;charset=UTF-8", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//auth.openai.com", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//auth.openai.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: "==Qf9xGb15mOiwmcVt2YhJGbsFmZiwiIjZDZ0Q2M0YDOzMmZtQzMlFWL0IjM00SM2IzNtQ2N1ETM3MGNiojIElkbvl2czV2ciwiI3ETNjJzYilDZwATZtMGMxkTLzQ2Y00CZwUmMtUjY3UTY1ImMiojIElUZsJWY0NnIsICduVWasNWL0BXayN2chZXYqJiOiUGc5R1akNnIsISMuYTMuMjI6Iibvl2cyVmVrR2cisnOiEGdhRWY0VWTnl2c0FGdzJCL2UDN5YTO3ADOzczNxojIl1WaUV2Yul2UoNGdh1kclNXVsFWa0JXYwJCL9tnOiMHZsVWaGRWZ2lmclR0c19Wa2VmcwJCLwojIl1WaUV2Yul2ciwiIxcDMxQjM3YzMiojItV3crNWZoN2XsxWdmJCLlVnc0pjIkVGdzVWdxVmUlNnbvB3clJ1chRHblRmIsIiMipGZiojIoNXYoJCL91nIu9Wa0NWdk9mcwJiOiIXZpRnI7pjI05WZt52bylmduV0ZpNHdhR3ciwSfiIWZ3JiOiUGc5R3X05WZpx2YiwiIxYDMlVmM0QWZ0QzMtkDNhlTLmhTO00SYlFGNtETZxgDMwYWYiojIkl0Zul2Zn9GTu9WazNXZThGd1FkIsIiI6IicvRXYul2ZpJ3biwiI0FGajJiOi0WduV2Xl1WYu9FcwFmIsICSnVDTqFzSudTRkNjU0lTUwJzV2ZTW6hDWfBHchJiOiQWafRnbllGbjJye6ISbvR3c1NmIs0nI3ETNjJzYilDZwATZtMGMxkTLzQ2Y00CZwUmMtUjY3UTY1ImMiojIElUZsJWY0NnIsIyNxUzYyMmY5QGMwUWLjBTM50yMkNGNtQGMlJTL1I2N1EWNiJjI6ICZJV2YpZXZEJCLicTM1MmMjJWOkBDMl1yYwETOtMDZjRTLkBTZy0SNidTNhVjYyIiOiQUSll2av92QzV3btlnbv5WQiV2VisnOiMHRJ12b0NXdjJCLiYzMuczM18SayFmZhNFIw4CMuAjL1QTMvUWbvJHaDBSKvt2YldEIltWasBCLM1EVItEKgYzMuczM18CdptkYldVZsBHcBBSK38VNx8FMxACWgM1TgMWYNBCblRnbJByOoN3b05WajFWToACMuUzLhxGbpp3bNJiOiQnbldWQyV2c1JCLiADOyIWY5YzYwAzMmBTNiBDO0EmN5IjZzEDMhFzY4MTY5ATN4YmZ4gjI6Iibvl2cyVmVwBXYiwiIONULopnI6ISZsF2YvxmI7pjIyV2c1Jye" + } + ) + const body = await response.text() + return { + evaluatedKeysStableid: JSON.parse(body)["evaluated_keys"]["stableID"], + derivedFieldsAppversion: JSON.parse(body)["derived_fields"]["appVersion"], + evaluatedKeysCustomids: JSON.parse(body)["evaluated_keys"]["customIDs"], + derivedFieldsBrowsername: JSON.parse(body)["derived_fields"]["browserName"] + } + } + async function executeRequest0051({ + origins, + urlAudience + }) { + console.log("Executing request 0051") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/projects/oai/settings`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//auth.openai.com", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//auth.openai.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0052({ + origins, + urlAudience + }) { + console.log("Executing request 0052") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/projects/oai/settings`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//auth.openai.com", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//auth.openai.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0054({ + systemHintsLogoAttributeFill, + urlAudience + }) { + console.log("Executing request 0054") + const response = await fetch( + `https://content-autofill.googleapis.com/${urlAudience}/pages/ChVDaHJvbWUvMTQ1LjAuNzYzMi4xMTkSIAm1ChMZPozhpRIFDWNyuuESBQ2NzLu4IU_nlNgIer6EGLepygE=??alt=proto`, + { + method: "GET", + headers: { + "host": "content-autofill.googleapis.com", + "connection": "keep-alive", + "x-goog-encode-response-if-executable": "base64", + "x-goog-api-key": "AIzaSyDr2UxVnv_U85AbhhY8XSHSIavUW0DC-sY", + "x-client-data": "CJe2yQEIpbbJAQipncoBCIziygEIlqHLAQiGoM0BCKKhzwEI0bDPAQjQsc8BCKa2zwEI1rfPAQjkuM8BCMK5zwEY7IXPARiKqc8B", + "sec-fetch-site": systemHintsLogoAttributeFill, + "sec-fetch-mode": "no-cors", + "sec-fetch-dest": "empty", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + } + } + ) + const body = await response.text() + return { + variable64: response.headers.get("content-length") + } + } + async function executeRequest0086({ + clientLocale, + attributeAriaExpanded, + session, + origins, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + statsigpayloadDynamicConfigs217573384Value, + authstatus, + userGroups, + secureNextAuthCallbackUrlCookie2, + url1, + variable8, + variable9, + urlAudience, + evaluatedKeysStableid, + derivedFieldsAppversion, + evaluatedKeysCustomids, + immutableclientsessionmetadataAuthSessionLoggingId + }) { + console.log("Executing request 0086") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/b`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": modelsProductFeaturesAttachmentsAcceptedMimeTypes, + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//auth.openai.com", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//auth.openai.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: JSON.stringify( + { + "writeKey": "oai", + "batch": [ + { + "timestamp": "2026-03-18T04:52:28.180Z", + "integrations": { + "Segment.io": variable4 + }, + "event": "__protobuf_structured_event__", + "type": "track", + "properties": { + "eventId": "659ffc37-b307-47dc-88e9-b66950521479", + "eventCreatedAt": "2026-03-18T04:52:27.472Z", + "eventType": "web", + "userParams": { + "userId": "", + "deviceId": evaluatedKeysStableid, + "authStatus": authstatus + }, + "deviceParams": statsigpayloadDynamicConfigs217573384Value, + "statsigMetadataV2": { + "stableId": evaluatedKeysStableid, + "sdkType": "javascript-client", + "sdkVersion": "3.16.1", + "sessionId": "4c71157d-7261-4224-ae34-fc38643d4d6c", + "appIdentifier": "login_web", + "appVersion": derivedFieldsAppversion, + "locale": clientLocale, + "language": "zh", + "user": { + "customIds": evaluatedKeysCustomids, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "locale": clientLocale, + "appVersion": derivedFieldsAppversion, + "custom": { + "client_id": "\"app_X8zY6vW2pQ9tR3dE7nK1jL5gH\"", + "app_name_enum": "\"chat\"", + "originator": "\"\"", + "AuthSessionLoggingId": "\"af0081e1-4aea-498f-9a49-344ed42ee061\"", + "client_type": "\"web\"" + } + } + }, + "eventParams": { + "@type": "openai.buf.dev/openai/protobuf-analytics-events/protobuf_analytics_events.v1.AccessFlowPageLoad", + "authSessionLoggingId": immutableclientsessionmetadataAuthSessionLoggingId, + "page": "ACCESS_FLOW_PAGE_TYPE_CREATE_ACCOUNT_PASSWORD" + }, + "clientMetadata": { + "name": "login_web", + "version": derivedFieldsAppversion + } + }, + "context": { + "page": { + "path": "/create-account/password", + "referrer": secureNextAuthCallbackUrlCookie2, + "search": "", + "title": "创建密码 - OpenAI", + "url": `https://${url1}/${variable8}/${variable9}` + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": "145" + }, + { + "brand": "Chromium", + "version": "145" + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locale": clientLocale, + "library": { + "name": "analytics.js", + "version": "npm:next-1.81.1" + }, + "timezone": "Asia/Shanghai" + }, + "messageId": "ajs-next-1773809548180-7c38beb2-3361-4baa-9710-54b10217ec6e", + "anonymousId": "38beb233-61cb-4ad7-9054-b10217ec6e20", + "writeKey": "oai", + "userId": null, + "_metadata": { + "bundled": [ + "Segment.io" + ], + "unbundled": userGroups, + "bundledIds": userGroups + } + }, + { + "timestamp": "2026-03-18T04:52:34.138Z", + "integrations": { + "Segment.io": variable4 + }, + "event": "__protobuf_structured_event__", + "type": "track", + "properties": { + "eventId": "4b8da1ca-6616-4785-bc5a-cfd02ebd2ac7", + "eventCreatedAt": "2026-03-18T04:52:34.138Z", + "eventType": "web", + "userParams": { + "userId": "", + "deviceId": evaluatedKeysStableid, + "authStatus": authstatus + }, + "deviceParams": statsigpayloadDynamicConfigs217573384Value, + "statsigMetadataV2": { + "stableId": evaluatedKeysStableid, + "sdkType": "javascript-client", + "sdkVersion": "3.16.1", + "sessionId": "4c71157d-7261-4224-ae34-fc38643d4d6c", + "appIdentifier": "login_web", + "appVersion": derivedFieldsAppversion, + "locale": clientLocale, + "language": "zh", + "user": { + "customIds": evaluatedKeysCustomids, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "locale": clientLocale, + "appVersion": derivedFieldsAppversion, + "custom": { + "client_id": "\"app_X8zY6vW2pQ9tR3dE7nK1jL5gH\"", + "app_name_enum": "\"chat\"", + "originator": "\"\"", + "AuthSessionLoggingId": "\"af0081e1-4aea-498f-9a49-344ed42ee061\"", + "client_type": "\"web\"" + } + } + }, + "eventParams": { + "@type": "openai.buf.dev/openai/protobuf-analytics-events/protobuf_analytics_events.v1.AccessFlowUserAction", + "authSessionLoggingId": immutableclientsessionmetadataAuthSessionLoggingId, + "actionType": "ACCESS_FLOW_USER_ACTION_TYPE_CONTINUE", + "page": "ACCESS_FLOW_PAGE_TYPE_CREATE_ACCOUNT_PASSWORD" + }, + "clientMetadata": { + "name": "login_web", + "version": derivedFieldsAppversion + } + }, + "context": { + "page": { + "path": "/create-account/password", + "referrer": secureNextAuthCallbackUrlCookie2, + "search": "", + "title": "创建密码 - OpenAI", + "url": `https://${url1}/${variable8}/${variable9}` + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": "145" + }, + { + "brand": "Chromium", + "version": "145" + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locale": clientLocale, + "library": { + "name": "analytics.js", + "version": "npm:next-1.81.1" + }, + "timezone": "Asia/Shanghai" + }, + "messageId": "ajs-next-1773809554138-b23361cb-aad7-4054-b102-17ec6e209219", + "anonymousId": "38beb233-61cb-4ad7-9054-b10217ec6e20", + "writeKey": "oai", + "userId": null, + "_metadata": { + "bundled": [ + "Segment.io" + ], + "unbundled": userGroups, + "bundledIds": userGroups + } + } + ], + "sentAt": "2026-03-18T04:52:34.182Z" + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0087({ + currencyConfigPromosBusinessOneDollarAmount, + evaluatedKeysStableid, + variable14 + }) { + console.log("Executing request 0087") + const response = await fetch( + "https://sentinel.openai.com/backend-api/sentinel/frame.html?sv=20260219f9f6", + { + method: "GET", + headers: { + "host": "sentinel.openai.com", + "connection": "keep-alive", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"macOS\"", + "upgrade-insecure-requests": currencyConfigPromosBusinessOneDollarAmount, + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "navigate", + "sec-fetch-user": "?1", + "sec-fetch-dest": variable14, + "referer": "https//auth.openai.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2Xgr1zwPyxLxRd4DtCNYLuGRqd; cf_clearance=I.XQ3kfXYtCDHE3PinGr_lgOvGtSVVnlYXkwj3enqWk-1773808009-1.2.1.1-WRxjIO9Pnd15Qvi.mYpzVoPfeBMwwX9wwQM8pZa0fYHZLAIseni7zdNdhmN5k8oRftVKkMhKPuytssKLZ.Ns9Gu7EJH1FaGKuDRqYTd8tnsSV58djGum.dCbgjp_jmaAwQhkTIPaf2qa6063TxhvBoyuiPGJ02xOi7UCvz6Jipk5_UUh.pTMU2iOjelbcXOy4KFipnsEgYuiqItYCUFrQWgvqKGqGoNwfFIcbHZ6kCk23_yNxkD04TAlH.NwKjj5jaS2Z6Qx3ZPfff4nRdEsxgSeLZ4tz4kdBXDODgs5H34SDwQ8b4T_8EBage0SRCLI4WE_mohDV.SrH.f8vYEnMQ; oai-sc=0gAAAAABpuimPEL2wn_kAYm8cbwKX5Iev-yf4kUIEaPcn8--KZsEKeEdpxv0jnVqdRs-h8nRPg_KgvpmJ3ZIRJ4GhI038-U7hbzJJiC0QGQCQiQ5MX3nOy-NDgAQ33W_i6os-Mls9MDH8ofSzkyqsBBcuJwyDiTHyUSF0phaCew3nYReTPYiDFHtHcwBE_IjfCqjkY9-j6y022GkoCah9cz_ebnjqT2cOUTQZNBtEsybt_FVBD9sfDBtuE0cIzF-05sdNOYewCqwi; __cf_bm=0EL4AcmZy6YABOgAu1caF13.HOgAJFYpEPZclKcKt7o-1773809548-1.0.1.1-I4NecjcKI_YTJdkYmgKLrSVWQqlc.32fNjD.Htd3hjzOTyKmiSVcYcpdjkY4mTjVtKFeZXl4sBQx.IIHkPz_K5p_j_cHjy5CGIBZrLn3uCA; _cfuvid=XloS9D5ZuYqw1gWUBZTcrrbrjrk7UeBZTkOWf_cTx3U-1773809548430-0.0.1.1-604800000` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0088({ + clientLocale, + attributeAriaExpanded, + session, + origins, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + statsigpayloadDynamicConfigs217573384Value, + userGroups, + urlClientId, + urlAudience, + evaluatedKeysStableid, + derivedFieldsAppversion, + immutableclientsessionmetadataAuthSessionLoggingId, + immutableclientsessionmetadataAppNameEnum + }) { + console.log("Executing request 0088") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/b`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": modelsProductFeaturesAttachmentsAcceptedMimeTypes, + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//auth.openai.com", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//auth.openai.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: JSON.stringify( + { + "writeKey": "oai", + "batch": [ + { + "timestamp": "2026-03-18T04:52:27.856Z", + "integrations": { + "Segment.io": variable4 + }, + "type": "page", + "properties": { + "path": "/create-account/password", + "referrer": "redacted", + "search": "redacted", + "title": "创建密码 - OpenAI", + "url": "redacted", + "route_id": "CREATE_ACCOUNT_PASSWORD", + "is_error": attributeAriaExpanded, + "origin": "login-web", + "category": "Identity", + "name": "Create Account Password" + }, + "category": "Identity", + "name": "Create Account Password", + "context": { + "page": { + "path": "/create-account/password", + "referrer": "redacted", + "search": "redacted", + "title": "创建密码 - OpenAI", + "url": "redacted" + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": "145" + }, + { + "brand": "Chromium", + "version": "145" + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locale": clientLocale, + "library": { + "name": "analytics.js", + "version": "npm:next-1.81.1" + }, + "campaign": statsigpayloadDynamicConfigs217573384Value, + "timezone": "Asia/Shanghai", + "app_name": "login_web", + "app_version": derivedFieldsAppversion, + "device_id": evaluatedKeysStableid, + "auth_session_logging_id": immutableclientsessionmetadataAuthSessionLoggingId, + "openai_client_id": urlClientId, + "app_name_enum": immutableclientsessionmetadataAppNameEnum + }, + "messageId": "ajs-next-1773809547856-20f7f205-7c38-4eb2-b361-cbaad71054b1", + "anonymousId": "f7f2057c-38be-4233-a1cb-aad71054b102", + "writeKey": "oai", + "userId": null, + "_metadata": { + "bundled": [ + "Segment.io" + ], + "unbundled": userGroups, + "bundledIds": userGroups + } + } + ], + "sentAt": "2026-03-18T04:52:33.860Z" + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0089({ + systemHintsLogoAttributeFill + }) { + console.log("Executing request 0089") + const response = await fetch( + "https://android.clients.google.com/c2dm/register3", + { + method: "POST", + headers: { + "host": "android.clients.google.com", + "connection": "keep-alive", + "authorization": "AidLogin 48414557928291861127629698221106001664", + "content-type": "application/x-www-form-urlencoded", + "sec-fetch-site": systemHintsLogoAttributeFill, + "sec-fetch-mode": "no-cors", + "sec-fetch-dest": "empty", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: "app=com.google.android.gms&device=4841455792829186112&sender=745476177629" + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0093({ + evaluatedKeysStableid + }) { + console.log("Executing request 0093") + const response = await fetch( + "https://sentinel.openai.com/cdn-cgi/challenge-platform/h/b/jsd/oneshot/833f25fde7cb/0.7038850727994532:1773803411:ARXnmPIBnLtHrBDlKdcQyOQWgQPFReiwnR-YqmP6ZHI/9de1a0f4c09c2f7f", + { + method: "POST", + headers: { + "host": "sentinel.openai.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "text/plain;charset=UTF-8", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//sentinel.openai.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2Xgr1zwPyxLxRd4DtCNYLuGRqd; cf_clearance=I.XQ3kfXYtCDHE3PinGr_lgOvGtSVVnlYXkwj3enqWk-1773808009-1.2.1.1-WRxjIO9Pnd15Qvi.mYpzVoPfeBMwwX9wwQM8pZa0fYHZLAIseni7zdNdhmN5k8oRftVKkMhKPuytssKLZ.Ns9Gu7EJH1FaGKuDRqYTd8tnsSV58djGum.dCbgjp_jmaAwQhkTIPaf2qa6063TxhvBoyuiPGJ02xOi7UCvz6Jipk5_UUh.pTMU2iOjelbcXOy4KFipnsEgYuiqItYCUFrQWgvqKGqGoNwfFIcbHZ6kCk23_yNxkD04TAlH.NwKjj5jaS2Z6Qx3ZPfff4nRdEsxgSeLZ4tz4kdBXDODgs5H34SDwQ8b4T_8EBage0SRCLI4WE_mohDV.SrH.f8vYEnMQ; oai-sc=0gAAAAABpuimPEL2wn_kAYm8cbwKX5Iev-yf4kUIEaPcn8--KZsEKeEdpxv0jnVqdRs-h8nRPg_KgvpmJ3ZIRJ4GhI038-U7hbzJJiC0QGQCQiQ5MX3nOy-NDgAQ33W_i6os-Mls9MDH8ofSzkyqsBBcuJwyDiTHyUSF0phaCew3nYReTPYiDFHtHcwBE_IjfCqjkY9-j6y022GkoCah9cz_ebnjqT2cOUTQZNBtEsybt_FVBD9sfDBtuE0cIzF-05sdNOYewCqwi; __cf_bm=0EL4AcmZy6YABOgAu1caF13.HOgAJFYpEPZclKcKt7o-1773809548-1.0.1.1-I4NecjcKI_YTJdkYmgKLrSVWQqlc.32fNjD.Htd3hjzOTyKmiSVcYcpdjkY4mTjVtKFeZXl4sBQx.IIHkPz_K5p_j_cHjy5CGIBZrLn3uCA; _cfuvid=XloS9D5ZuYqw1gWUBZTcrrbrjrk7UeBZTkOWf_cTx3U-1773809548430-0.0.1.1-604800000` + }, + body: "tYM8Roc7zha66lOK7KlKbKJ8d+8a18c6KRKgfSKUhK2Kmd+7LMxzyKCKeLTdIK7cRyKahycKhYc3ZKlhSMoZSY0Kb8HI0KgV+KIIKs0R25K7XcU9MjxNsoWK43CF3EfrnMKg7-ftUMk0JgMeK8MKa-t+MDU18TVc11VZUTrKYMct7MvMNt2YG0WK+1cHK+iKc5oKg1cczP3GJ8K$K+6yKKrGkoio0vvRh+U1K+NGeap106yy8l0KWWBo8aVGGD0lFFYz40yz7WsahKcSmVnUN7yKlHRzvOcrcmoKU0yJSIZI8YcJO9PGBuRnuMXeMRlYjAOTOUR1ITMIjMsYKchOD0Y8KsbdvAgWbL59Mzc0ylKka1-VJGPiy2hKUMZMvDHCjZzFt$Zs$DZYX1TKPYJel+hURKaoGgKzlHaWyMJkrfmM9dYIAaXgJH90QS-gch6nMlnCfkjXkp1c1gcKa+I94Xq+sahSWyhAyZvX024mesgq7aIJ$sRSoKKlfAvsAbDjjQd75VzFP1v35nzB$QkOJaYdiQSiJMhetM80U2xKa9mZUHNO02IgcMSoiWbh2HH$hLLJQtcMqena1SL3npInRLnkPnH6E$OSWfxWn+eT+FcIyjfWSYYbCmvClsrpcpiTp9qncPfx1B$ElIQDAqmxYtv9x8F-5v+pzHnr5rDfnj3rYD8mZ+CD1ktDg2BkqFG27JRvT$zcj29P$aFGTMeIBnW-aQCC7VhUdTahvIXK7MIMj$vC$hiYolT0W1cyHFK4ad0YI+9k2plKt8m+Yj8jqKzcoBmglllUZo0OOEXoMMUKs8or+2ULt2QMYnSkoWnY+vO$8pK5E8WK188Fa1EnCz7Eox+MSRUxdE2VxMOKpUpQfCj6KXYU1Zz5eQCO8yd+aIiOgiplnkcl3EFc0TBE2$-1dJiKItooREM8HHvKHcK1U0A0iOzUb1I2LZ8JVctVMzzz1+cCyVJBp1ILOlZ8S-+mMqb$OiTVmOWFsBAMF3hW1TiUKVJelAO$yoT1M8KlvGAMcOGyQoHWK1YpbahFzzyQRHUFElV8zIY2t9IZK0KVHaoAI4KCg+McRo1fpizpnsR2Vgzn7L$8Ri9x0cM9JbAydyyY9IaL0In9io+hJV+nUlboyMIoBWaFenT4Mc4MUmXB0JISUc0YS3W1hppa1Ca2saJsBH1-W1XvmbCto0S8c5YoR43qjUDY9nJ9IHjddtYQ34tSi0T1nnUKKob1YooLvWCo+p0Lyz7SD1$VHoxh+caEUEx0K+g3hzE2+MWn2YMqOKrZ8JH50plyvn288Ca3EBk3+AXBK77sBji9XOfMEoQAMJcJ+a9XhlE8xVcGJgpTUt8ZyMbjYzTxncyQq8iTdXTBjTm6Gh07YMuT0fEoogK8CTMaLkCTJprTgmtjYSDT-tLSN8pB0Q+0ttGyo8JtEUoZl5qZb91pcekd3Oa9ppbqqSXYjNUjMkv$0p-A7LgX3d221GK14clgOx5tcsmdPm36rWREN2qkq6uy4reBVBKyWotUxMQzdsisYUXUpp4JHpRqNsFdpn8Iq7vAcjbtT8qKGfecjBXZOmpLctDOAMg1iaGLtL9Paec8GroC1IKGtUlg2$adiz1H6YSszqo154HI$M7sa1MKKe51e8Fc21oLMjARv386G5YizxgUUYaLz3CJbin48mGl893c8KIdjK$ctN0aPKm2HRa7Ad04jecLma0KQyb7eUolfUg$gnAB37by6AecIo80LMs1pPIjz$+6IeB1i3dy6U83S4Nbo1kc34hv0zsxpeSi21sdDaVMgcu1-8c-CoGj8UG48tWGmmJWVh32N-QzG58$8DyFUASIAgRHMovJ5MTM$gWlosQDFPegxoyV-Wec0EMZKmcHMCzoO1gpdc21BoGt8-H5dJtYgPjM33UFcU6UOagJJXfzTUcVy6j1EINSmUWjOa7UeFT5g6y6KrJozaYz1WfpXaSA0QtUo8LXUbCKAl7FcxLWnUBZo7VYViqFENMBpQnPiPbCRc8NcYSfvnjhQ56AEzd7CNhAnn5ElLCitcOaz9EMv3H2+B21z15aUv1QozbgHhLTeUoAx2M$7zHKCzSiDOmJcNKvQZ6UVUsovnUP0c0K5JHNKudPxd1IWN5fOVUKdxI6E5cyKqvq+YF1B8UlRqrU1PV1-BgHT6ImVXK-kz87W263R4B+pBWGeVIGDKAlJWG11gpLzzHEHEn85Fni5qYoxdNx7z5B8qJhyNcFEE8a47UHNPRxKCUpT$JI0iVf9ThKCmngK9oHIG2dZ8FcRRiFqsEy8MV5fmz3mVOMs2FyqR241-BkKppnxFgOAHoHWN-JQMW5tge8vVFfa1MdW6UnvxDB4-fLVsIBLKtQq8BrVcLvC0Av1vSK2sdtPQd5sKnYXqBSotHDsJKWcT4nl$5a9pujQMtj8Jc4ls-EVnntbr7XlTs55T4TJJNJxPW74xOKdFFIZHN4LIt0NVV+VpA4VCNahU-HU9tqRh2Kmi4rhaGhTN49kBaTObiuN8LIjWfaHSipYXKX17xhC2v+-C2kor7ejnUiuOO+U5C-zcc8Gqzf7elbxlU-loqaKBA6UCbtz2WzVzx1RKj-f-lB50IsJL98QTZyxKy1Qo3Elljv324gI$mLpxfnU3A$3$lCNtTIgoqWZT5censP6ld7eaAe-B7uUXQB5d5OsenG13+RhqQ1GnQXJbHAAOiK51$mMYQycsFENkK-Va$Is-BIdC20xk3dNR7rG$I91XfTlrLZKKcmVCiSg32HVYMnl6qWdFybH711hHyTHUUng0sLcMMILMyFM5nNBsq8Qp1x8dKUsorBVtt-dFoxfEV7t+lNVoLYRgfrJV5NAdseoMM4Kr2q7P05jH27lDAPWxdmg8J76Fmr5dasu40YQKx$dJs9DJI9jWSSCsJcHCDXOtaZ95QnNm4MbQQy4c5oKm-7Ol8OKvvrc6hnJvvovhOqkCpea8ABe-Fkrcb2mBOm4WpXnB4zAsa94zkaXxjshWP4Oy2dMylhZu7b-muTHBOjYu8G2xtqqk8-sPONua6-RQb7zq2bXas57jO8EXrsnDZMTsd$n1qZjKIes2s4vtmoI6zdVpJy-u4L7t6Vu4pf2QZbfrJdADq7sppNxzOXdqIisc9R$RFvqv9nbJ6X1Re37s7XIDBug94dNMSAr6COi9PiWILpoaOy27eecLKQOTN8MZ1PdDh4akl$hNyked$mfrJOKc5dR3RbP0UlFRIWA6zdXplVjeZClkJqQIz2S2hHe4o1QoPrB0CCzAC-N6GNpFrQIMCc8pjhZkYIK503IDZhL$RlgPTGhxXjfrqJZk5-LVoT2mCSF6uHaXrouJDfDiroyT0yZyddRjps$LSI-eu8XECY6evz+OGovKZesv3eWEg-WqEeZ-efDXLWIMztgmroqiJVQ5KaN+AKqa6mRa1g1HjcZcEOM+Y-fWbRSWKSI5KCPU8hHZDJxUKLqlq0kT8-gHKXKXt760YjKP-3tH1Wf0+-f1x0otRlKPTy6-JldWncKkRMe+laKo1jhmq7G-fj4KrAe3en8vecNyN11GNjNyNtK6$JOJsKYjuZO-NlJyN+Ea6Jsc1uNeElnJO-fJsh1fNjx5412aKb1Y1u1f1VY1MTCn1C8BNOqedi8GqjT+2aKkdQqtFe4R1uKx67stq58Icy1PKrbjqadp41RaKiME1z4m8sd58d1XClMN4z8xrgI34lMb4UY-8drg1Or0TMV5M$rOQ0TJMNrgr1dmHhMuMrr3tm+sqsrnb58urK8AM2KiaMdmIGaeIQaya3xtIXMybHMVIEXZdDf+Iv-edQVRamIo6tbAI2KY27eaI62ANad6d2KB23y58k2H2aKE2M88-t2U1cd58F2ATMYEc13zvZ2nc4Ted9DaKS341+358kYv3a1ROBY6P0O2d9XUY2K9X7b589XjI8UxXgTHM9XcX-YxX1OYUV9eYFYxXnCabedPXt4aK645864mFad6RzR58$R11rLHRaKERl8r8QZ58CRTOTbedo176+AmuOFl6hF+8ePlipoeFziriFUPKdD48NF11EtTRaIIey8-F48uFHCadIsZPMV58Cdfsed$sRmAslO$dLsMituadiC0-sbaIC0Ps0f1-ngR0bsT0GCjh-OYCsN+-e-edeiF0CXMMPKuBaCnntHadIdTCZTWTOT4YffspD8yTaUEKbYEUEKpUYhYbAUPK8hb-tUEK$UkhYbzU6hYbZYvh$aMUr8PUO+3YbibhCV11Fb0f1MQ8Y6SJmpEp6p8-3xOpx68pSQmbA0X-5pS$+Ja-AC5pPh26S-t-W6b6F-h6ZvgU2dVd8DK6fpCKDKBIfp68qAsJnKXSzgydunUdxo+7fvaUyTcBR79Ba7vKYbMxjPUs5026HEa971TvK6ZM+6Ni2dfiEZ-8K0vZ+ZA4siD3ldcY-W5s3gsJWxhKz++U+YH1Zua7vVhF3yyOZ4c9JI26edaxyzE8siQ7+UUeU175a6noaxAk3gjpTd-C01WKKKmoMIG1NRLU1ja1IaYa5l6oi2L06c+Ti3jaH+ugKK+8$06lg3rl5ajl7S63vgRTfh21OqOTYH9WDbMyC3oU4-ai2S32Zpe+jbLbl8aJq16JGbAzYxsSlpUzPg6a0xXQNJDyFcDgv2DgqWhPjl7VRTjomS+K5alcUc6UWce8z-daGjhzIz6V0pzA+1stO+tzy2OhHBTMMcBUXLRTg5zSPNzxcfFUylZSAamb8LMztS6TODhVWPfTo-6f7hH8Wjqo5iAWecgWgHBzy-Uzv+3SeldXB37jhKA5vR5hJ2fzAKbiCDniQ8JhoKKMbA+Dd+5o$cQ2QVzB7fva7VcM$U2-a-z+cQszSSRiqpWaX1biWKKU4HnHno8h1jERiNUxLYhgcUFCgXKxL6OdczSyLpz1KxLtFMOdcuRk4KF8xUOCFHnRMMx48q+88OxaFMn06xxDMW3LcvxcM08kNyWgFmIiIdei8GSpFW+grYeLE7x0f-g6tRMTvXyQOaSJcFcXKnzdxbFKI8FevzsPJhnCFRMWskYfe1F$x9SX8o0XvmFKzxgG+pItS0vCxQdVfHc31ZV0vOGzLK0xden-gxOxUtMoKNgISdN31t861Vp-hiSnezdv8Ut+e48vsJsJ6xejxZ0VennfaWFGcrsMO8SbEkezcqsLK3sBMB8j8ySXSXK2G3x38qRfzMpBHbg+KDzjsU8xL13K$PeJYrsaIcEI8xc0GB61KD0fL5W+SnqppXI1ygc31ghJxGdgK2nXKx1GnYhcY1O+ROy1KnOBSeKkpS+EXLSinbMUnhOvV5S6hFxKr3n5pxLPgBMQ$sFUxHcm$XIz1RNcCXcFOscuEHCGKnnj+58v$1K2EECbenSE$xSyLVKEyEiXIj8k8iKN$oIDM2OrCN$DM4$3SIcuHrCSNanXCR$3CXKX$dKIMFCa$3SbCCCGcxx2cTCuH6K-CG$PK2nZCuCGcT$iKGsoIVLA0jCY$6CD$aCXch$NKdc8lOle$yKFX4nmKKl2KGCv$oW1KnSeX1nPnEVQchEWlycQKs+USWSKS58Dg+s9v0qKIBCVYQLyTQcFOJ8vO7EV$ml-rLcVCQxvIC3USxdkTy1QIFp0HSTGpyXLlt0TrGKcnMnK7UOpHisbMBlaqbcHK+8ycTRGcEs5WyxWYZE4IWHXsPJbs-sFTFq0YySG8aS+YscsyoGcEJ6HFF+CEEiXe1KZOxKl+0Eo8lcKvI$W+z7KbZn8ba8YdrnCY7HXK1SWSrnhOSIzcU80brnz85$M6cx1c6b3ck$qY5IXI1SoSX8sU0YaopqfbyBDKdcZ6aeTxjStYfriBlBBBmK5b2iixLYGLmFAbXSlbBbLcxe6byBPfpVUSiE0EKNCsZTovG+AVhBEb92GcNB+BW$ulJbknhBCYMsJeqbs04bovPny+2BJMYrtbT3KCWlxKv89UzTKbcHX8PG7nQI-CICOCnbZODBjSN6lVks53-bX8sfC6lV3HWguNWONUd-fY8XtbuBxbnOnci5xKDbGYtKsK$lvnbg3gcsFvz1TB65zE2B0-teUiy-h-XShnPvla2K7yAvW5$-+oWKxKMYqC55HOsKDMd5$l5N8F55Zb8J5-$sZO95e5DbB-RFkb5-tCv-X8QY1J+vVv55UH$5r0B-SRtBUt65RvKyUOLISvHv9ORFXK3-rNh2oYm$38ATGKLI$UHKBU0UNcGLcHChVhQLsVZNCbT-9OM-mXZM2YeTR-KDsfzBFf7FNVqyKQ01ecWS-YuxHOaogJYDChg-dQUQ2SJKoE+chHR5a24vtvs-2-fHnzUnIE5EQEAE53sls+Aa98GLov0vsT0BBBsKcEslT$JCE-GKsXTI2I2YViWq3HTV-MDOTvfabv+d6HlWDgcQnDKz5idKmQcDvQbIJD8z+CtQ2IDcGSyBvDWgsKHcvetDAXkEu-4DM5JIXBB8rB9VaBivJe8DHKlVCQvQY-FQA8$KBsVYDnA8oKZQ8jKAg6$vkQ+C7FSCoiDnTpQbH6ZDTpM5Mid$YAAI0jQcyQpAcDijFG6Ahy+$GAY-pAdcBLUBvc0vU5o-JIUAo0iAAIeAW-7AAIljRxnlscjQ5jQjclXvU-G+mA9AoAAIcA7YkjTpDnrxIy2c9vgjHcQK$ToH$WVcZ5HCMjGSrFbQ76kjrxXnUbA-kYOD$6n$vKrOjgM8XIvSdvBV0CXKFjH30EFQ1nDVPhdK7jfC9FCs-ACjjjc5RvtvhEhOtcI8dGDgbA4sKSuAVKyTv$7GMAQyNYZAgCUQQc-K25ZA3MvKOAUObByLhH+5WcDj79Opxxv-RAzYNMy8GnU8s+e7zBcyzqtvHQedLvf6FDMjKaOs7Fdrf$KSJDc5c0OIWcpPv$FJ705riVQskvH9$Y3v2Afn$EJev8Hvc1FfFaVPcHxDN9JPK-0Y2E0It9DD85Kjv$J929JICAXP0Y4SqPcHU-2+s3gVsPC97Btze9XPTNbPTp7RpiDPR9C9vS+Km0uP3Pc1y$xCs9vSVMK$1Zf$JPd9$vOmt9WCgioPYmfvMmGSMmkP5VMmJPsPhOeOzmL-1mzH7Uzcc1oIuEZ9CMnit9G-MbLcuOVdeOz1Nvu9ViJK9RsPAZj38ZeZD91Eh7pmSmX41mADAvkmlIAZ-9cZuPiCy$sKHm+Zsj1Zfj-2pvs9UB0E1pNZrxqmGdxUqmAD8AimJ9qRFKGLymtK5rs9RZUmEZ1ZSg2c3KHZbm3cvpt9XTMSsPFmmKbgyjZmxZsmXZcHj-FMG8QLZZs9o-jKnjH5oZ1uqsAIOuzSG8yLA5x3hH0k7xs9iuOdvIDAQgRFGuKZG65czPokbPGkm8k8qRPKWuTmYZcHD178US0u6YWcuZUY2KVKAkscM82-kkWKZZGuPmTZvZ1ZDHcHknbUQKxHAN0kU$69VkcOvccHJkfdxHtkvKx8VuJKEL0kTSMP65mh2uVYQKokluXuHKSNyrrShEXkY85E$kZcxkBktPDHWdV3bEqm7H0kHllyKCKKjinoh29cVZjFBNscuGE$kZcZBHV9CscdULN0jF4Dd3kKpcMi01R4pK+8at75rnZVmNaEYp5igPTKO7VB83GU9yD5Bxn+9$pNSQkKVezRdO+4JW$uDJ8O3p+$6zlmlJgbFZQcH6ro1TKb0i4cJEyG39XZJ8mMh6YpaHc$84DxCpiUs45co8XDbMRQLTHpx+bU1nIyQz6KZf19mLzIjiU+p88GfO9SIt52ZL2KzvUdnIjAC-H$cI8CAU1MuE5a$AIZOJaYJcECrOm$30HxoHKavtKeU3j80-Ucv2pKee5hMe18hFQ6DMM1BMJ1UnEaNLBSqyMH40BWLzIBBhz$8-HfHHa-ovXgn8kLU2ChdK1-19U0MOdVzxdfX7I0kdNdP6pSL1bOjmDK2HKx1P3HM+0AQeVaASD1knt0jdcrz$SZ2lI16dBFhHCQ5b0$ljJu1RaRlHF4XiYLSaY4FQedQNxMaflQUqSqo0fA8gL$6iqSthT8lkdqe2abl+1-ClkpLK-iS$NdDCaO8nejza8tdbvVRUGzEablF2U8AYQE1Xc6kiTtO-GMcTrd8H40e$o1UQluaWMudputf2TFAtMH+dPOWohLcegPIa80G6UA7eaNOH-IeU7oyrK74NKOpctVBf9li2clby-khWzv+Y2+1L601loh9Lh2plxbedK1UgUjcaQvIaItO+0YkG1HX2ji70+tKPzHS3M8YzE3YKTMkYzh1JiYbUzOLZB4KfaIyDzfQgFQ8FKEjhjdKa7aSL8He+23ue6im8jKhqFxA1y$oqYWoUc9hTqlhJaHgVmBydUnSpLCKtG4Wy$gLF92jHzJ30Od3bKOS3QfAHmg4c52ai2AskWh1pBTRJt$06O69PlA2lDHqQxtzQTlg6Kg2sI$3m8zJL3TBKpLLR5$yiX$a+2aH9OrhnocfTLaCYW84Xx5g9SNo0SY1i635RRlO8alX01XPUbxdq2SfPOFdhioTlDHBdVf-p9AyszlrAL0OC6mMUY3lKtAGby6mhzClqoVL$k58sEKVsFonLG-UYKmhDTaVm02Ok7-BAXEP73LzYF7W5jN8M8Y1SINR2OclC2cYOsC5pqmfZ8KElfH0RoV6lgTltuKld+ixQTZ+qGF05MX9a6jne3gn53YGd+cjpMd3RifUYj+L16sUSn5lUBQ+SjvUpKHlAd4FBLHfURtXKydf10efMeTOWlkKMN6bNJFPo+8m1K6g12JsHoi$bi07eaKkcJcplVUbo4DH9I229$viRG4LRClBH200ojP8iyUbW3ZM$K206i2UBcHnzVOZOAmgrshEFQ$iu9zxdCSx3SggiP60mhWKlh7UHFlRoK+zeqE3MSjJ6+8b6bStQL716$tbcs2-64xSGA4I$tGB8pEQ963DgUc$a6o+xP9zfW+h5xHK9HWgsLPmpdY02ChQdiys8oWbY72H0hl$IVtylO4j5F8hv9VRQon3PQiTjyZ0yezO46gtKtyZ8UxVkthAg0bLVJgGV5gCQq0YF2QgX8q3AvSUVWnOUz2P2lvEXcxHNhRlO8DKsKWybNhBiMLPl3iuhyF5GeG6kefG4xs825Vt2gcD24XqYDbITWfdsOJvU4UQVC13i-0keWty6Heg+KZcjHU18WnUcyBJSU+80QnvyKBMk7m0OrWeOvdaATpE1try7ooHXKXtUZ8rHkE8KLz+OBny$LxSCcz8i7AAx$LO3-qUeqgZ9j5gSUyWs$b0RlencLbBc+IVealOY3KaYMfUbUiBH3yvBUMCvAoZ8PIVvVxgLk8idQgJ5xvjvmK5FHViO+dB7fditJscIsUoFYMtKj-lOahKxch3S9P0dQjrKknQg5KdI$yOFyvcPqXfrolOjrc$UiXuIGq1dTFjWUj0anJMcj8K1u3BX-5Q-7QOqck2BXLQUqcNI1Dk2It8I11D5JWUpVa4CKv8tzVPKH2mXZntN5Weaa72lvPK7pcPBdfLxHfQMh7roj8KGKY62iE8eem2aJb-6aQV3+y31z6yEXX88R48RA+Yf+XaQL76AS-hxeO7eEYReCV1gBH+fOQ37LMzDhZHFNEir7GmUASCxdG5EQXaL2DM5nJ7zdMGQNcjAkvcKvEgOjUafMTBJftAqxA$5YhbY8KoEzjm9OaXOasXEvQGNFtPMbgTHInHGQbtPAATNfHOjQt9HbhFVeoM6r7P+iuR4+jf5QtiHmn0NWn8doIuPm94UKOciXjEJIJvzYVXnN4CUH7iLb1AK0BtymrKT8jug2FKvuEN7Yc4bzQaIyG8UKvPi-jJCNXBdc88SJO8MJESCxqGVAn-hZCKyRmCKm97gKUWOR7+V7EB9B8-bhRyBEd+m6Kqgihc$EYuZSHyDFBthbGdzNAeuoBHoRSSdoDihKIVOpt$E1o9HWqU00F1qAI87cHYXPBJtcetj4m0-hJvYSQO5jOcO0UJEhRr+V7k94hLuRtXyE8yJUtOxc19fkkdzd+jyii07RX8bteoBMl6-zMp+-orcqO6z55RyBBovUn1PzJ6cOgr7GAUpNGSLyEdFoFLJWU910ytEV7CIZ-txiER$SAWd5yQcf-cKMVFg7j2UVh8j7FQdUp9jn8x5k1xVc37v0aTCSTcbg1pEoyVleJrdBVq0RZtttK5CrXyL09ATpIpa-6nkBka1jUx68aLgVSkRcajp6aPoeAdWfax6Fmy$yZ0vhmQbiUY32RNVjfnQ12U+I5HFQ4qyIeF3qF97Ceoamn+aBeE9H7BiPnlIT1p$1XU884sx12UavTKcO-fer8Wh8CjY7YEMSdjnV91zdNUMyG2RJhS07cXKgfHlqN+WS5+z8gs15WKKmzfLoIV6UHS+88iyf6JOher2OIeSTLXKnyuOyDg$E0x38ntMdAPRv5gcGUAds9VIMYK16t8PK$agWFLaycDLIbzmjiNGSz4plYKqyIC-7CoFGct85oZYLV51qJesdOIcpz1W6cvJp1OIz2QhzQWJJAxIdgx9yc7zxSM-K8lEcJJ7z2J-KfVJxq3nOMJJqZUYyeqz$Qxf8BAtN4ugMH9xOcRxGN3$6gK$GDJ+JUnUiVnMxF7BBM0cZO820NRnzRigIl5XasYcYNE6erxB968bMYE+YVtW4hk8vF28OK-Vb1UB1Vpo0PZnQadWqvPooJphxN8rhQ8udFMnssAncNRagvJYNpQqZBS+56KSA8Kd79BIDH6JQxB$4t1iJjn9+Jemta+AFgKKizMUCFROlQqnojgjfsL-NqZi$8+pAyI8A22DH-5Pon0BGJAgNTZTLWzKXOWlZRyKIvFodOKHvZO21Vd3-SzUuMiSRP-C+HKUPRq6Cco5-gFmNjHMhkq-VpLHvN0ua6Ca2aHqMQPitVKxH42R7Gdmp5NAjJQWOSKESTHaOzD3vTHhtzhsamqB$3I0zt7OtrofJMDXcOtKGHaOYyeaYeItJlQrq4+dU2xYdJbctttcQUbHytzjc2WBPOQm7jicaHa12D8QGsjAKbzP6iVUDpEWNbb73OLxBcMMzdEU03WvPY2XFQtyBv348JJUGs4tXVH2mgP7$Ms+tKBxO+JNsf0euARVg1AnxppO18cu7Z2OE6Z-01QdaBLamEvPgyK2S1c0lyVlGDH15mMyH2eipocmeYdzPH8VM+7QMeOqy7-Z2KdWpj02I0BVqIFiON53MOcsZ31SPon5MIq0dlKeLvBWMsbvG5kgPFz6Ckhyqk61J64a2FNs3KFUrVOL9miC0etN5pdTF+N$AsbvopmVhcv$NUKMlUGaFOhp6a+sjvbTeX1NcBDyKsKzuRShJq4s63GdJ5xOK2tmF7ezqQQEcM2jfQ0e1NppOFmjfQDdRHhifOFJ6qWOi3BMklPsnHxQ-TRoqZf$algIhp5eCYN+JdAr9lyQVoq9YCFe0+eY6VTg5heeK0R7oySV1KVJiqhy-llKjmLek34+8F5ZNK8cOUSycxFa8sBv5A6PhnzHHTFG$f6eroqP7I8cxxBNa1TRjZ+08Bp8Re3g3xsWBo7pcKn0s2p8EvygK7yDJ23FXck4XKq0oSz1TOKi3DL-0NHa3ttoUWj06DMttG9VQU36vphOdtmNxbZXoIqiC-mut+QU3J4V2hAIO+JxN3cvTiZ9hs9gK7f1KK9YIIs66O+7J4HyQx1JN+Du3H4NneotNX2sQ$Z4Wsn1TrWNpkC1rKJnl-h22I8CP4M87K25qP-Q$0SqQJbI6ttopK7Opb539b9BSXzV9IB7YB4gx-xIvIh7UIWHNtooKp5gm2+jpMFQdtil+rHpJ0cWUXnBMYDcPjDcm+a4H408TTaOK2YstC4KpDSqytf077XIO9fSzHjXxUSAIp-t8lj2uJiLVrSpHRoBPK16gbOBkv4Zy6F0x0Wdmiqq-2KgoRthpkkpu03lQoR$4c9ekE4qcFMD0a86zUYRY2PDyIo178-CJL3A2j$jItKJNbfFMW9ztHs+mB0Qckf8l38s7ZP0OMT28lTrvUEN3rVOeYoUaTmXLU87Wa1qzYRynueWVZDMNYY$70AcfiayxNYYncp$5V3E1ildYyiyC4Sb22JJPI2cX$WB5OtV7$aMld-ZT+T0XWj4770Ajdmk8dxyadSutc6UzSfCWYUSom+MZCoHWWYZcutgDVWn1dLanp+1LN5O2O8Vdj-mAK8sIhMTAUbN58pMOkaXNYYXfFqoMUHekVYYfy8m20P28KydK61n6+vo2Y9T1YmSPUtXLGhZKualf48uV-22s3iN6S2Yh5qXoSdkngK7AtrKJRLLY2oHfyvIsIjLTNaQKoZniZnscTu4m7Wc8eyoAbGsKlzCCe0ORD312IpRcnU12X2JTjBz887JG2RojITaI7mdN5UdO5TK5jvtBUzFOFLLKEAM$vmDJRS+Hp1vs1daDF2SycK8gknHI1D+bOy-nghfxb29aBJJHApIGZI36MeJJhACbtl09PhzblIUIH62xRgKaQGGdhcbhbKmCQE34nhdcYpg26BPTdH0cLMh0+mAGRZ2uLoBsnRkt88VaMIqoxzeczKRGx0gqdE5ScAPTdvPLxLK8nijmhUax0sLx$DctXF63fzlLhYb63YBVKqF3yzze6W96Te9d4YNo7vjMg0IcifvO43RLB7VraUpfeaanAHKuIsLaKdEt+5XlsxQH2smITdhZ$Dr44lkJuavT0rzQIduVWzbEAcHb2VbyNaYxJvOMv9FKa0d8bdngIsxxvIOD3dfxUgL4Jzst-KnGEdLM8Dguj4E5kvExFlMKZAs64JFEfh2KsnNIdBOHbTtBOjWpzCbSSNlI7x01gBfRkn0KMXNJ-eAR3sdfvWSaXzhk8DzXRtHhAdJIUgDaAeYRxGr7pXjPdKSKy8yxDGW850cVqiBRqgsm0dxc865aUodDeOa8HrL5du6USjDKz+HvlXi4MizQsYW4q3piAQuVQZVNtb-rZnX6pBoJTSHViFF70QW2CHvyOpA73B6zS9IRr8UN-e4c9ms1uOLqx$FkzbU68OSstAh+BnuWai8MoKHSoGE9sDAOdxGY810lWl7OTbAIfGaUA3FPABKTXtGEGkWTGQFqNXVEF7CkmO2ubG8WON529ePt85bXREvhO12u-L0SyrF+I4Pve16g5NM$qlc2zSpYLhJzcYLUofLJmcEBcKm7Y1mFFZilI8O8h5$hHJycLKLuRac4a9J9+Beb04gVpi1slNdz2qh5B9ssa3Wi2gfPo$s3qIo-nvkKAQqWeecW5+W6VuoC6cAOCcnRonBWkg74FUfnRjfAD1fIc3Aydqy7D5HbtNbZTUViTtdRFgPhsX-2+hDO32KLiWbtIV+Xu-Q8ovdg-RRkrfuj0G9P$B9cA7+54KhBqSAUWo7l0l7ozFbN2kKg7BIboqQbRAvvXUAee5Yv-fUVXcUnYSuQ0WZ6$3aryfbB1L143m1-LOfZf6j0xo1-Ux$VloaEcW8sVf0$iX+3CKA0qy5LKktePAF3nViRxdqq$qF63fc$qooNOlPaBvXuJSu2ZqJv25Tkm155ByejQ2-zWBc8v2fI+toJAY0SSq5EKQ6e3UH+INeEqO6qs-Z+zX-074OA9CE90h$Y$vxy99qRaFvin6Or7SDDzIBkN26YtnRUHO$OAV99FO2vSRWq32cnlq0D83MBCAFhM$lV76$Wd983iB3FeJyzicpVNv$HAUio1OQdiZCWgUVs6$XO58y7AvVkf3383q$0dKlyKfvqJchBqSEoM25UafB1KTdyB$5KAHlKvors4BGr76q60QsJM5fYR4E3xKU7aryBYqKV-7-hBUqxiUXnQJfQz09i08RElpLWDnJgKJgSU8MezDVsWht5EVKNqyxWKhqLMTFno8lDndB0tdLy9NPOQesGqfQ$Fmq9jdlKpqflaL749QDtsnqCQ+1QDlLJ3QTzRSzGjMvrIoXdxKna5e29fpoYcaM6X9Inn+5q$uGTmWXeRh9hj8kzJvU1UYbUq5WB4QxUJUFhED3Kk4E$v57n++BvRVnYNljKmvkDzX+1m9kCU62ZRyXKg29GDeCPX3THHnD9DVXb0aQynDf2H7qnBH+BtOBAOLK2zb9OEpC7rVQ6-pyaTbFcVnNu8k6zavvyX6rf6dWa7S+Bpte4PRZPnU83phLm5$riZZnOJbBC+1hoGrzOT-HyXSgV5euOATGDgCpd0kGDsi9JBPLkdKU$D7s9mDnsX4dcdqKvi8jQCGpf6Cp7yOJcry5qQ4ZKuteQUoXORh9DbsE1+QzBBaV+FtvFjNFhom6m3qSnBHvyMiY5OYAIlSn9UzsbrA+21YYFpjUsPatcUdkIm3vPIsaPzXPzLFgMOR5E2YcG+h65s-qrf9BUrq9NFrkYl59Kp+F2zUaaSe2KROhiOpxAYtVHDNq1OF6fsM9CfInP8lnJp5Xy0A7E4jSiPud$TFNaBNYlp-bcI5qp5LCJTFb4RKIJSsQWa4vbhHd6S57TedDdq8KO4P2ombpXOFhpNkXsOyxVzomzdO2R0r-IG-lin3jCKGgidpP+Isv0YmmiyEKOJTggL9UJVGn+qOIaNtHGhyTFd+Nlb2sIyOkLGxSn9H2o19py1znpO7s2FIXi+55W4WoHobUy6uvEVcmiX5XIv1UnunQe3HxcYUXrl+hkA+Ufnbx0eknFdkdd6orULqOnfjj37oWHTdXh-HxoljB8ryzmP1JeWQl4cBcas+BXT-DVpOs-JlpEVOVp+BTbLOgErMoxKgIfhETHeraOk4FdGepejEDAKc4DAY9FyCcez$NAjANYlzk0mtcMKdPd-Hptma1LHZ3NYp3bclp1lqCgU1Ipr-+uokgq+47-WtI2ZJDgmGtisYLIvHNQvmbLe-jL9XFoEbvtB+OFRpotR+V87PbMLvBFBfrEZfLk-aRCVp1Tn7o9rNbsm-zXsRYLng-Kt01zt+$K6QFfVd$gIGQme-0eV83gE2FeqVJ3PONXK6AIqRASUKBgF6NuWVZ2SrP5ybzmNifBa8qN4tNJsjy$$KiPz-MK4NGWkzxiPgcPFGJLWrqM0pTlKcHVfQivmgyeV1sBRzl$dj4dG8GfFZcMB3fm1yKSVANa-aMLhCWOrolSj9BoLtdtK-yg$LjK0OWMQfTyhqd0f0v6crVbyAi4fB7mOS-TMJmqDQvSqtLpOLOg9g1j9hgIpV$8m4Mp+$vvyn-sGcIRN5FsM9FU374$8rWSApB+D8NiiDgn-ZmMG8DXb8hArT4XLdDbFt4o1BGsrP0xL3fdtj7Ki7vUeaNH8LMiISUveDPiz+R4zs2gEd7tC$aTmGb3Onl8ZHRrENcu7MyuUdNvb9I+Pm5HCD37HVARHnHEz5KBMHehCWheaLOjXyg$zSY$aFqcYPJabJNiL80sA0zezHTSku41ZZDtsGpO7RmytK9$fG-+Su+pScK+RxqHIKRTIrWJc5Ji0kK1+OukUtK5lKziWIm1ujyfKLofH0BhSm+Dt1JefU$xMRWmG8Q-A3ppK0GPKcDuS4+UUyQ3NaBMmbKlnD8pr$mBmupu4gD85c3c2jrk9T5kKHp+t4jtbY4nI35KBZBJcVqoIEGG+tGPju78-vnk6up4MAPb9xTiDWmcZBMVb8611zoOSmegLal$o+uJQ3MA4QtAGxEuPNQfAd2CEoMoDZUSmsfgChrxFJyHP4Jj$b26aB1eoocfPTxfFkLBloNNWi9My1zMZS3qH0YeS3NgJreKRdDHE2Dp6NY-oRi9URd-xoaIxWr03iUNzyBtEh0zrHKUNzcVacfNXZlkN-oexqYCc3mD9oDv1cvfhcsZXdADSsLt1AGEeKPQDPMRJfp048T7vfrOb4G9HFLtDEYcDaSIqyQi3EgkGeyrr5aLMRxk-EIAtWs1d+nxQx7$vy1ezGpJAl$leJBuS1dkQPa6CcWuOCcMkYZDpAkkmKLGU96Z3Hkf92r+8kqhZEMi2WGcSGDZOFAjYb$WObyqbIzTO1$6J7iuBU6OoTdu-zVQH6kgBRDPPnNenka5kZ8DMVxGbvddsRQab8r$jzLUYY+zQvFNAlrfe4mNfpD7GK5Tvy8ItZcQK8zxoIaO$t4H8logscmKAE+A4s0lP2aJrEgRiBh+Ulq-mPAWkit3WujytdRaMfh6y7EtVuLFoK8ZvGzmh5+hZAevZAkRBiB25rJ7Z61jSD+Cu0cl6yi9G+fiXvFHLgHK2C3g2VqP$yQAduR9b11zcuGJeI1j8u9d+ULnkGquaa6y-rULY6aiu5NORAlgnXHWWEYOA6E22r6kCkbjCDkmT4Frt34jq+gTC3F3K48Pa14PGG8TGhmSupSWAoyadSbSu$ZItJvOUyL2cJuHlQ6T$KheA0Xd9ui0MyaLSqIKKcMqziKtc6da1gyxvaMckS6Yy5hzZqajztcSiHd+UyqEDk2gNlJuYnguudKOKa1z8KbkKKcH$d08TpKOIHKKKa7nu8k8UKgu9KUbkHIzZYSKguv9KDKpKc8KDK6KKKz0gu29YCK83RULU0lKK8zdKa1KHz8cazU-yYKgubtcMMguv$dHMtKj8lDMfhAMcU0pKt8zKcyKUK+KcguvF3zKy7y1TicVK4ka$KFu8B2yfd9jZ$id$JaNKPkVWzf1tMSuVRa6KoigMlJM81UNvo1a021zjkd1c1zicK85KlidiKm2zdcz8O8lidfKJhzIc$KW8zOcQK-8UUczeU1ULhx7yMU0cJKWKUpcV7b1UhcY8UdTxcFKWZC6cUZ+dUGcuK-dTKc187SFmcY8JZ$GMYVKnck8y5U1KKKqK7cCk58WdalKF9h9avc513ilYKl1JZCEc-t2T8o8HeKdchKk1ndKu8ATx6zvMqoB9LWh8PVP3pUMI+1EO7kezWdu8KZPC1OyH1eKXEKvIgi+n88d5ke77ca+6o6dz1TU80fhyPxSk85+lKcU0j8ty2o8OZqWFcWZIlHH70cKgHWlKN+RHWV0jYyvKqK2+K7UCcjDxhU8KyKK8c7cWKUH1W1zMj$aIczMgKKOKDd18KA8jYMoSi7IO87270p8jB8iWfYakaNzAWc5Oy171AyKI8phagd2cMIRdHAdjYci3GUvgqnxykIGz1COS7MZ8ao88bx4g40RbgG8aKZIKKaUF14Rdu8y+TCCipm+tpfU0g+M7T7ogdHEKp0KZiHHu0nlgilGKZKyHHdMDMiHHTea1+6UUKKKjfoKxMKKzGCdZ$KIKzMtKcIK88AxUWcEYgCgzh02MhKKKPPx+KKK" + } + ) + const body = await response.text() + return { + cfClearanceCookie2: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === 'cf_clearance').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0094({ + evaluatedKeysStableid + }) { + console.log("Executing request 0094") + const response = await fetch( + "https://sentinel.openai.com/backend-api/sentinel/req", + { + method: "POST", + headers: { + "host": "sentinel.openai.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "text/plain;charset=UTF-8", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//sentinel.openai.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//sentinel.openai.com/backend-api/sentinel/frame.html?sv=20260219f9f6", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2Xgr1zwPyxLxRd4DtCNYLuGRqd; cf_clearance=I.XQ3kfXYtCDHE3PinGr_lgOvGtSVVnlYXkwj3enqWk-1773808009-1.2.1.1-WRxjIO9Pnd15Qvi.mYpzVoPfeBMwwX9wwQM8pZa0fYHZLAIseni7zdNdhmN5k8oRftVKkMhKPuytssKLZ.Ns9Gu7EJH1FaGKuDRqYTd8tnsSV58djGum.dCbgjp_jmaAwQhkTIPaf2qa6063TxhvBoyuiPGJ02xOi7UCvz6Jipk5_UUh.pTMU2iOjelbcXOy4KFipnsEgYuiqItYCUFrQWgvqKGqGoNwfFIcbHZ6kCk23_yNxkD04TAlH.NwKjj5jaS2Z6Qx3ZPfff4nRdEsxgSeLZ4tz4kdBXDODgs5H34SDwQ8b4T_8EBage0SRCLI4WE_mohDV.SrH.f8vYEnMQ; oai-sc=0gAAAAABpuimPEL2wn_kAYm8cbwKX5Iev-yf4kUIEaPcn8--KZsEKeEdpxv0jnVqdRs-h8nRPg_KgvpmJ3ZIRJ4GhI038-U7hbzJJiC0QGQCQiQ5MX3nOy-NDgAQ33W_i6os-Mls9MDH8ofSzkyqsBBcuJwyDiTHyUSF0phaCew3nYReTPYiDFHtHcwBE_IjfCqjkY9-j6y022GkoCah9cz_ebnjqT2cOUTQZNBtEsybt_FVBD9sfDBtuE0cIzF-05sdNOYewCqwi; __cf_bm=0EL4AcmZy6YABOgAu1caF13.HOgAJFYpEPZclKcKt7o-1773809548-1.0.1.1-I4NecjcKI_YTJdkYmgKLrSVWQqlc.32fNjD.Htd3hjzOTyKmiSVcYcpdjkY4mTjVtKFeZXl4sBQx.IIHkPz_K5p_j_cHjy5CGIBZrLn3uCA; _cfuvid=XloS9D5ZuYqw1gWUBZTcrrbrjrk7UeBZTkOWf_cTx3U-1773809548430-0.0.1.1-604800000` + }, + body: JSON.stringify( + { + "p": "gAAAAACWzQwMDAsIldlZCBNYXIgMTggMjAyNiAxMjo1MjozNCBHTVQrMDgwMCAo5Lit5Zu95qCH5YeG5pe26Ze0KSIsNDI5NDk2NzI5Niw0LCJNb3ppbGxhLzUuMCAoTWFjaW50b3NoOyBJbnRlbCBNYWMgT1MgWCAxMF8xNV83KSBBcHBsZVdlYktpdC81MzcuMzYgKEtIVE1MLCBsaWtlIEdlY2tvKSBDaHJvbWUvMTQ1LjAuMC4wIFNhZmFyaS81MzcuMzYiLCJodHRwczovL3NlbnRpbmVsLm9wZW5haS5jb20vc2VudGluZWwvMjAyNjAyMTlmOWY2L3Nkay5qcyIsbnVsbCwiemgtQ04iLCJ6aC1DTix6aCIsOCwic2VydmljZVdvcmtlcuKIkltvYmplY3QgU2VydmljZVdvcmtlckNvbnRhaW5lcl0iLCJfcmVhY3RMaXN0ZW5pbmdwdGluZjVxNGZqIiwib25sb2FkZWRtZXRhZGF0YSIsMTEzMDYuODk5OTk5OTk4NTEsIjVkNTYzYmQ4LThmNDQtNDUwOC04NTRiLWYwOTc0Zjk2MmM5MSIsIiIsOCwxNzczODA5NTQzMTA4LjQsMCwwLDAsMCwwLDAsMF0=~S", + "id": evaluatedKeysStableid, + "flow": "username_password_create" + } + ) + } + ) + const body = await response.text() + return { + oaiScCookie2: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === 'oai-sc').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0096({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs3689744552ValueLookbackDays, + attributeType, + url1, + oaiLoginCsrfDev3772291445Cookie, + rgContextCookie, + statsigpayloadFeatureGates6102981RuleId, + authProviderCookie, + loginSessionCookie, + hydraRedirectCookie, + oaiClientAuthSessionCookie, + unifiedSessionManifestCookie, + authSessionMinimizedCookie, + cfBmCookie2, + cfuvidCookie4, + evaluatedKeysStableid, + url4, + variable16, + cflbCookie1, + oaiScCookie2 + }) { + console.log("Executing request 0096") + const response = await fetch( + `https://${url1}/api/${url4}/user/register`, + { + method: "POST", + headers: { + "host": url1, + "connection": "keep-alive", + "x-datadog-origin": "rum", + "x-datadog-parent-id": "6916001063266132347", + "sec-ch-ua-platform": "\"macOS\"", + "openai-sentinel-token": "{\"p\"\"gAAAAABWzQwMDAsIldlZCBNYXIgMTggMjAyNiAxMjo1MjozNiBHTVQrMDgwMCAo5Lit5Zu95qCH5YeG5pe26Ze0KSIsNDI5NDk2NzI5NiwyNywiTW96aWxsYS81LjAgKE1hY2ludG9zaDsgSW50ZWwgTWFjIE9TIFggMTBfMTVfNykgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzE0NS4wLjAuMCBTYWZhcmkvNTM3LjM2IiwiaHR0cHM6Ly9zZW50aW5lbC5vcGVuYWkuY29tL3NlbnRpbmVsLzIwMjYwMjE5ZjlmNi9zZGsuanMiLG51bGwsInpoLUNOIiwiemgtQ04semgiLDIsIm1lZGlhRGV2aWNlc+KIkltvYmplY3QgTWVkaWFEZXZpY2VzXSIsImxvY2F0aW9uIiwib253YWl0aW5nIiwxMzExNiwiNWQ1NjNiZDgtOGY0NC00NTA4LTg1NGItZjA5NzRmOTYyYzkxIiwiIiw4LDE3NzM4MDk1NDMxMDguNCwwLDAsMCwwLDAsMCwwXQ==~S\",\"t\"\"ShMbAB0DBwwOEXBwEwkRHRMYBR0GAgwOEXxlSUF+YAwTFh8TCR8aBQQTFBZgWX9+ZV97aHZsX1VnHmJpdXAadnFwUktzcXdgfAQKVWkdWGZjAGBWYWN8e3ZiUnBvZXpmZEVQYmMARhtld1VPclRac2ZlS2djeHZqYFxsV2JjfHt2RHxVawQCU2kfAXdQXWhwYWdaY3BUdHdmZUtSZ0JcZGNab2ZwRnBPdXJ8VWsFX1VnHmJpdXAadnFwUktzcXdzeXJpY2kdYmZpWmxWdkZCTXV2BQwMGBEHAgAEBxMLDGVYZ2F/cXFoZ0l2e2daZHdhAEVKVl9ZemlTUHdzfEd+c0ZndntZWW9mZXNQfAVDZnkeBWVkd0JhYFlBeWYCc3J/Ynl3ZmtyUmBzFnB1VnxtdkR4UGxDelVgQkRlYwFkbWBjQUhhdntQTwUGVGd7UGBmXXxiUGRzT2x1YHB7YWVgaXhAZWMARlFidFJIZVhnYX9xcWhnSXZ7YwBsYGJdd11jdWRwb3VQd3NsbXJwcGt2clZ0bXdiZ3hqZVxwcHxbcXJWb3x7cGQTFh8TBRcaCwMTFBZkZGdPZnZwfWZTdWdjRWJpcHdacGV3CH5sYQBidl9+U2RremZlAWxje3dzYGICSXR2BVxTYB92cGlkYFdiAGQTFh8TCBkaCgITFBZwYAwTFh8TCRgaCwITFBZycHBvdXJwcG91cnBwb3VycHBvdXJwcG91cgwMDBgRCQAABxELAQAEAAEBHgEABAQXAQcAARkABB0THQIdBwAMDhFQWWBEZABJeWxmQmRLWApicGxtVXQCVmRlAkFIZmZFaGtmA3twSWZGEx0MBgsfBRsWCRNwSQkOEx0MBR0EBwwOEWBpSmJiZHtAe3cBDAwYEQIFAAARCxNrBmVpY2huA2AAVlZiYEJ8VmVnVXYFBlB3a3JmZHRBYWIBf0tsX3dzfGJbfWNWelZnRht2a2dne2d1AFV4cmZ+eWtyZmR0XlBrZ2h8d2VVV3lyYXBgZnJWaV1efGEBf39sW3xQfHIKemR4YmppAVplYV0IeGcCe1B2BWF6YHgFZWd0RlBrZ2N4YwJBaXhyV3lmQm5lY3RsZWVdVXdldXdpa0MODBMCFgsIHxgAEQsTfVx9ZndJX3F5YFZ6dmBCZnNEdFVtdWZTc1l9d3NwZ2Nhd1l4Y19GY21DUGh2SWV1cEkWeXFwYEpwdUlmeXJpdmBscX9wSVlVcVkBemNfRXVrQ0BocH9tVXJzQXZycHBqc0tWY38FW3tpa1dncklJd3tgaGh8cmR9bFNicndCclZjZ15Wa1l8YnNyfH1mQ2ZQcH91cnBJXW12ZwB7Z3ZwY21DdWUTAhYHBB8ZDBELE21lDgwTUw==\",\"c\"\"gAAAAABpui-T2FzX0pEbIhCH5yZD-xfU8P5IJJVEaVxy2nxuG9kWPqQvebVPnPmLmTbVXAYo-32ID5oR-trrca-LulyOnHVpAccLy38ATSiK2XQ6glp8juBEsuqg7hE3BQyrffsyZbifvracEnQTU3Jzpv3fwiayVv_11-gNb4qnJoXZpqhUymeGDJ38HrpVTnRicAqPWmzvDkXF0zxse6pmFnU78wbyjRn2a4zM8NwiLClSXm7NWBmwAA06WfBDkZUlErqxIP-1ZBTaKIxvHsrS1JN04OpSxeyQC4DUJXE770waFuTt4mSo8ccsF3G3VQN6jvlBw1wShTAGqgch68EF42piAkmY11BhzJg_I-ikQ8ae8QCnI3gWuH_yYVEltzROUSR5P4-aZyZ7-8xj9oI2K1fYHaRzSNRWWTlq1nsQJdDeSbtxr5OHVc5mXKpx2lykYoxLHorabVud7d9UfEXgAe8Qlj1QSaagLZg4bpoMIt9fhVeDMhl4WUrq1sD6Q3eIMA65MXyQzeNn9H5bY8gPCtBnvWlNy5HImsoHWxETv-1Ii-J81SxES4e-bpm_eNtupNwXnvlWwnYF7SWOrbEEyaz2Jx1VJ9qxS03xT0lGLJ9k2dSQ0Cli9D2nHxH5la5-7ZghB5pzK78wyK105lZdXdZsHkn4gmZToPPWrWATAWycZkf0jn42s1upQsE7R781kiroiWX3MrOlrWZ5ebj8PMimD4PBosxV1sXTCkRsntaf3EQA4aJgmu5CLKpo4nDV4CtvN8l51z3RxV625GV-9g87087h7ydL_TGp5WyN1-ZkLSNufboUQuLw1NKsOYqJ7pA-LlYCbG5bLoexrvdpyZitZeyNW7BCDkCCPyn0lAR2mykg_k4_aP05GuPfz6sV6xtUpgBAldbOExkgP8ngFP1t8rd63-LaytWKq96HoAs_0rgcdI3tCjrs0ltsUsQDHZtyPt_R5t3bcrzkSph9zY3Ve3Vv_XgHKb3UtDtKmTTxYtd274P52gii8tDC1MpLuiTjEsLSz6BChFpH82JA8eXLF07m9AuXUYu9OkHLcUz7T3itjpllui5p2ws5cdb4-tJYmo-qnMbUMO_WzbbXExAeBzDUkNKPA4MGY5zRBdG0dUSZazfE472G2vzyf3cf640WEgLnPaQf3xbGuph0rqZdAyOm2bWVUZZHm3woziQl9K9OkLNz2ZOoF8KiTEOR4nq4qDVecUGdMKioh_-vvHNgthytF3kAKrfbvJ1_AujMgkXMkgxyK4jfi3BC1eM2pUPJT0izB3ocSZhHIQlYO3Smnd-uoETIIKqcnVynPX2zUyzVoVyykZef8GLqxynCjqzMwD-nbcBcOIOe8jq5woKs86cImY8dmWEMMjoiLPb9ghq4kYl4nmtXcttFA7ZTu9z1LqFyttppNaFfT_1b92uT9Dmvy_H6JUiwwRg3vP6p-cDoUowFgS1DJ_Dnane8j6os8A9rtIv_SXm9MEqBE8cUMKSXzzjPX0pyJwb5DIO3b0lM_HHGtx4fWD9J-Hrb5X3IhIEnZf-aIwobfCRpFsHU_MOBguD4X7Ec-oZTRXwkWaFcj04LXuioJfe3j2LWmdv8oc7j3Xy2pfYb8TXJGPJhqFgpw16U3XWfd_rcXK9l3CXLKclhenPjIby0e8vEkVxMqsssTV1rqt8qJ8J9FPz8vJpgnZNn0Cce_KkL4IC8-GWpDxYq30C4dZNHBauudkW8d_LkNfRU9bR8A1E4WLzFhlEDqgJtf6kpK5OBf3bwk_Nu7jZRTLs54H9cmWBnclksZZmsXkpjMrcUuY1dCX--rUjT1lhUA7WhMTXqmnzeL_DV-dA=\",\"id\"\"2b5a57b5-2e0d-4cd3-910c-e00d9bc2c517\",\"flow\"\"username_password_create\"}", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "x-datadog-trace-id": "5856245282077677809", + "traceparent": "00-00000000000000005145900e6bcc18f1-5ffa92531233a17b-01", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "content-type": attributeType, + "tracestate": "dd=s1;orum", + "x-datadog-sampling-priority": currencyConfigPromosBusinessOneDollarAmount, + "origin": "https//auth.openai.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable16, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-did=${evaluatedKeysStableid}; cf_clearance=1FMuuZQ7T0nhGGvAC5nLD1vOD5xBdtaknyTZ1yvmE78-1773808043-1.2.1.1-ZoH_uQuVL5xITquOtfZL5YDHiHeREad7Z_BGpPZ_F7ZNqoWz2WrC4pf5aqFHhEud8Vc8RzkE8dsLlo2mIUKmeOkYIpBweAidDmpdXAnUeIH7Optf6vzmDmD_TfrkqDEYOsnhRjBMpbS_aLok4Tqq_Zxka78UwJjXvJIq5T_fMBQtMhOwl.up7EcjHQPlbuWoRWVNicd1mubhbFIXSnO46K_vyqvezIzd3LvoOWoKfe4UkEaUX7fRo2FFWbpv8B1knuuI2ls_Cazhr.lhUOumr7TeLMgDHjRv35bl62F8pG3djlWPHemp9YxAdx7htMXLRKdz3kB2sBjsAtsPkUM9lw; oai-login-csrf_dev_3772291445=${oaiLoginCsrfDev3772291445Cookie}; rg_context=${rgContextCookie}; iss_context=${statsigpayloadFeatureGates6102981RuleId}; auth_provider=${authProviderCookie}; login_session=${loginSessionCookie}; hydra_redirect=${hydraRedirectCookie}; oai-client-auth-session=${oaiClientAuthSessionCookie}; oai-client-auth-info=eyJsYXN0X2xvZ2luX3N0cmF0ZWd5IjoiYXV0aDAifQ; unified_session_manifest=${unifiedSessionManifestCookie}; auth-session-minimized=${authSessionMinimizedCookie}; __cf_bm=${cfBmCookie2}; _cfuvid=${cfuvidCookie4}; __cflb=${cflbCookie1}; _dd_s=aid; oai-sc=${oaiScCookie2}` + }, + body: "{\"password\":\"Aasdfgg123..\",\"username\":\"jnathej@inctart.com\"}" + } + ) + const body = await response.text() + return { + continueUrl: JSON.parse(body)["continue_url"], + authProviderCookie1: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === 'auth_provider').split("=")[1].split(";")[0].trim(), + oaiClientAuthSessionCookie1: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === 'oai-client-auth-session').split("=")[1].split(";")[0].trim(), + unifiedSessionManifestCookie1: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === 'unified_session_manifest').split("=")[1].split(";")[0].trim(), + authSessionMinimizedCookie1: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === 'auth-session-minimized').split("=")[1].split(";")[0].trim(), + cfBmCookie3: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '__cf_bm').split("=")[1].split(";")[0].trim(), + cflbCookie2: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '__cflb').split("=")[1].split(";")[0].trim(), + cfuvidCookie5: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '_cfuvid').split("=")[1].split(";")[0].trim(), + continueUrl1: new URL(JSON.parse(body)["continue_url"]).pathname + } + } + async function executeRequest0102({ + currencyConfigPromosBusinessOneDollarAmount, + url1, + oaiLoginCsrfDev3772291445Cookie, + rgContextCookie, + statsigpayloadFeatureGates6102981RuleId, + loginSessionCookie, + hydraRedirectCookie, + evaluatedKeysStableid, + variable16, + oaiScCookie2, + continueUrl, + authProviderCookie1, + oaiClientAuthSessionCookie1, + unifiedSessionManifestCookie1, + authSessionMinimizedCookie1, + cfBmCookie3, + cflbCookie2, + cfuvidCookie5 + }) { + console.log("Executing request 0102") + const response = await fetch( + continueUrl, + { + method: "GET", + headers: { + "host": url1, + "connection": "keep-alive", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"macOS\"", + "upgrade-insecure-requests": currencyConfigPromosBusinessOneDollarAmount, + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "navigate", + "sec-fetch-user": "?1", + "sec-fetch-dest": "document", + "referer": variable16, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-did=${evaluatedKeysStableid}; cf_clearance=1FMuuZQ7T0nhGGvAC5nLD1vOD5xBdtaknyTZ1yvmE78-1773808043-1.2.1.1-ZoH_uQuVL5xITquOtfZL5YDHiHeREad7Z_BGpPZ_F7ZNqoWz2WrC4pf5aqFHhEud8Vc8RzkE8dsLlo2mIUKmeOkYIpBweAidDmpdXAnUeIH7Optf6vzmDmD_TfrkqDEYOsnhRjBMpbS_aLok4Tqq_Zxka78UwJjXvJIq5T_fMBQtMhOwl.up7EcjHQPlbuWoRWVNicd1mubhbFIXSnO46K_vyqvezIzd3LvoOWoKfe4UkEaUX7fRo2FFWbpv8B1knuuI2ls_Cazhr.lhUOumr7TeLMgDHjRv35bl62F8pG3djlWPHemp9YxAdx7htMXLRKdz3kB2sBjsAtsPkUM9lw; oai-login-csrf_dev_3772291445=${oaiLoginCsrfDev3772291445Cookie}; rg_context=${rgContextCookie}; iss_context=${statsigpayloadFeatureGates6102981RuleId}; oai-sc=${oaiScCookie2}; auth_provider=${authProviderCookie1}; login_session=${loginSessionCookie}; hydra_redirect=${hydraRedirectCookie}; oai-client-auth-session=${oaiClientAuthSessionCookie1}; oai-client-auth-info=eyJsYXN0X2xvZ2luX3N0cmF0ZWd5IjoiYXV0aDAifQ; unified_session_manifest=${unifiedSessionManifestCookie1}; auth-session-minimized=${authSessionMinimizedCookie1}; __cf_bm=${cfBmCookie3}; __cflb=${cflbCookie2}; _cfuvid=${cfuvidCookie5}; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + variable18: response.headers.get("location"), + authProviderCookie2: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === 'auth_provider').split("=")[1].split(";")[0].trim(), + oaiClientAuthSessionCookie2: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === 'oai-client-auth-session').split("=")[1].split(";")[0].trim(), + unifiedSessionManifestCookie2: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === 'unified_session_manifest').split("=")[1].split(";")[0].trim(), + authSessionMinimizedCookie2: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === 'auth-session-minimized').split("=")[1].split(";")[0].trim(), + variable20: response.headers.get("location") + } + } + async function executeRequest0103({ + currencyConfigPromosBusinessOneDollarAmount, + url1, + oaiLoginCsrfDev3772291445Cookie, + rgContextCookie, + statsigpayloadFeatureGates6102981RuleId, + loginSessionCookie, + hydraRedirectCookie, + evaluatedKeysStableid, + variable16, + oaiScCookie2, + cfBmCookie3, + cflbCookie2, + cfuvidCookie5, + variable18, + authProviderCookie2, + oaiClientAuthSessionCookie2, + unifiedSessionManifestCookie2, + authSessionMinimizedCookie2 + }) { + console.log("Executing request 0103") + const response = await fetch( + `https://${url1}/${variable18}`, + { + method: "GET", + headers: { + "host": url1, + "connection": "keep-alive", + "upgrade-insecure-requests": currencyConfigPromosBusinessOneDollarAmount, + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "navigate", + "sec-fetch-user": "?1", + "sec-fetch-dest": "document", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"macOS\"", + "referer": variable16, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-did=${evaluatedKeysStableid}; cf_clearance=1FMuuZQ7T0nhGGvAC5nLD1vOD5xBdtaknyTZ1yvmE78-1773808043-1.2.1.1-ZoH_uQuVL5xITquOtfZL5YDHiHeREad7Z_BGpPZ_F7ZNqoWz2WrC4pf5aqFHhEud8Vc8RzkE8dsLlo2mIUKmeOkYIpBweAidDmpdXAnUeIH7Optf6vzmDmD_TfrkqDEYOsnhRjBMpbS_aLok4Tqq_Zxka78UwJjXvJIq5T_fMBQtMhOwl.up7EcjHQPlbuWoRWVNicd1mubhbFIXSnO46K_vyqvezIzd3LvoOWoKfe4UkEaUX7fRo2FFWbpv8B1knuuI2ls_Cazhr.lhUOumr7TeLMgDHjRv35bl62F8pG3djlWPHemp9YxAdx7htMXLRKdz3kB2sBjsAtsPkUM9lw; oai-login-csrf_dev_3772291445=${oaiLoginCsrfDev3772291445Cookie}; rg_context=${rgContextCookie}; iss_context=${statsigpayloadFeatureGates6102981RuleId}; oai-sc=${oaiScCookie2}; __cf_bm=${cfBmCookie3}; __cflb=${cflbCookie2}; _cfuvid=${cfuvidCookie5}; _dd_s=aid; auth_provider=${authProviderCookie2}; login_session=${loginSessionCookie}; hydra_redirect=${hydraRedirectCookie}; oai-client-auth-session=${oaiClientAuthSessionCookie2}; oai-client-auth-info=eyJsYXN0X2xvZ2luX3N0cmF0ZWd5IjoiYXV0aDAifQ; unified_session_manifest=${unifiedSessionManifestCookie2}; auth-session-minimized=${authSessionMinimizedCookie2}` + } + } + ) + const body = await response.text() + return { + cflbCookie3: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '__cflb').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0104({ + statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + clientLocale, + attributeAriaExpanded, + session, + origins, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + statsigpayloadDynamicConfigs217573384Value, + authstatus, + userGroups, + secureNextAuthCallbackUrlCookie2, + url1, + variable8, + variable9, + urlAudience, + evaluatedKeysStableid, + derivedFieldsAppversion, + evaluatedKeysCustomids, + immutableclientsessionmetadataAuthSessionLoggingId + }) { + console.log("Executing request 0104") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/b`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": modelsProductFeaturesAttachmentsAcceptedMimeTypes, + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//auth.openai.com", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//auth.openai.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: JSON.stringify( + { + "writeKey": "oai", + "batch": [ + { + "timestamp": "2026-03-18T04:52:38.141Z", + "integrations": { + "Segment.io": variable4 + }, + "event": "__protobuf_structured_event__", + "type": "track", + "properties": { + "eventId": "e0490a17-6873-401f-9258-5911455e8c5c", + "eventCreatedAt": "2026-03-18T04:52:38.140Z", + "eventType": "web", + "userParams": { + "userId": "", + "deviceId": evaluatedKeysStableid, + "authStatus": authstatus + }, + "deviceParams": statsigpayloadDynamicConfigs217573384Value, + "statsigMetadataV2": { + "stableId": evaluatedKeysStableid, + "sdkType": "javascript-client", + "sdkVersion": "3.16.1", + "sessionId": "4c71157d-7261-4224-ae34-fc38643d4d6c", + "appIdentifier": "login_web", + "appVersion": derivedFieldsAppversion, + "locale": clientLocale, + "language": "zh", + "user": { + "customIds": evaluatedKeysCustomids, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "locale": clientLocale, + "appVersion": derivedFieldsAppversion, + "custom": { + "client_id": "\"app_X8zY6vW2pQ9tR3dE7nK1jL5gH\"", + "app_name_enum": "\"chat\"", + "originator": "\"\"", + "AuthSessionLoggingId": "\"af0081e1-4aea-498f-9a49-344ed42ee061\"", + "client_type": "\"web\"" + } + } + }, + "eventParams": { + "@type": "openai.buf.dev/openai/protobuf-analytics-events/protobuf_analytics_events.v1.AccessFlowApiInvocation", + "authSessionLoggingId": immutableclientsessionmetadataAuthSessionLoggingId, + "path": "/user/register", + "status": "ACCESS_FLOW_API_STATUS_SUCCESS", + "responseCode": statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + "latencyMs": "1906.2000000029802", + "page": "ACCESS_FLOW_PAGE_TYPE_CREATE_ACCOUNT_PASSWORD" + }, + "clientMetadata": { + "name": "login_web", + "version": derivedFieldsAppversion + } + }, + "context": { + "page": { + "path": "/create-account/password", + "referrer": secureNextAuthCallbackUrlCookie2, + "search": "", + "title": "创建密码 - OpenAI", + "url": `https://${url1}/${variable8}/${variable9}` + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": "145" + }, + { + "brand": "Chromium", + "version": "145" + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locale": clientLocale, + "library": { + "name": "analytics.js", + "version": "npm:next-1.81.1" + }, + "timezone": "Asia/Shanghai" + }, + "messageId": "ajs-next-1773809558141-aad71054-b102-47ec-ae20-92194a96efce", + "anonymousId": "38beb233-61cb-4ad7-9054-b10217ec6e20", + "writeKey": "oai", + "userId": null, + "_metadata": { + "bundled": [ + "Segment.io" + ], + "unbundled": userGroups, + "bundledIds": userGroups + } + } + ], + "sentAt": "2026-03-18T04:52:40.013Z" + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0105({ + clientLocale, + attributeAriaExpanded, + session, + origins, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + userGroups, + secureNextAuthCallbackUrlCookie2, + url1, + urlClientId, + statsigpayloadDynamicConfigs489084288ValueOptions, + variable8, + variable9, + urlAudience, + evaluatedKeysStableid, + derivedFieldsAppversion, + immutableclientsessionmetadataAuthSessionLoggingId, + immutableclientsessionmetadataAppNameEnum + }) { + console.log("Executing request 0105") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/b`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": modelsProductFeaturesAttachmentsAcceptedMimeTypes, + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//auth.openai.com", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//auth.openai.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: JSON.stringify( + { + "writeKey": "oai", + "batch": [ + { + "timestamp": "2026-03-18T04:52:36.232Z", + "integrations": { + "Segment.io": variable4 + }, + "event": "Register User", + "type": "track", + "properties": { + "usernameKind": statsigpayloadDynamicConfigs489084288ValueOptions, + "openai_app": "login_web", + "origin": "login-web" + }, + "context": { + "page": { + "path": "/create-account/password", + "referrer": secureNextAuthCallbackUrlCookie2, + "search": "", + "title": "创建密码 - OpenAI", + "url": `https://${url1}/${variable8}/${variable9}` + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": "145" + }, + { + "brand": "Chromium", + "version": "145" + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locale": clientLocale, + "library": { + "name": "analytics.js", + "version": "npm:next-1.81.1" + }, + "timezone": "Asia/Shanghai", + "app_name": "login_web", + "app_version": derivedFieldsAppversion, + "device_id": evaluatedKeysStableid, + "auth_session_logging_id": immutableclientsessionmetadataAuthSessionLoggingId, + "openai_client_id": urlClientId, + "app_name_enum": immutableclientsessionmetadataAppNameEnum + }, + "messageId": "ajs-next-1773809556232-61cbaad7-1054-4102-97ec-6e2092194a96", + "anonymousId": "f7f2057c-38be-4233-a1cb-aad71054b102", + "writeKey": "oai", + "userId": null, + "_metadata": { + "bundled": [ + "Segment.io" + ], + "unbundled": userGroups, + "bundledIds": userGroups + } + } + ], + "sentAt": "2026-03-18T04:52:40.013Z" + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0107({ + url1, + oaiLoginCsrfDev3772291445Cookie, + rgContextCookie, + statsigpayloadFeatureGates6102981RuleId, + loginSessionCookie, + hydraRedirectCookie, + evaluatedKeysStableid, + oaiScCookie2, + cfBmCookie3, + cfuvidCookie5, + authProviderCookie2, + oaiClientAuthSessionCookie2, + unifiedSessionManifestCookie2, + authSessionMinimizedCookie2, + cflbCookie3 + }) { + console.log("Executing request 0107") + const response = await fetch( + `https://${url1}/cdn-cgi/challenge-platform/h/b/jsd/oneshot/833f25fde7cb/0.3826145302929881:1773807029:wZXV1keK3ZE0JRkqNBwHNIl4s4qnToZkjwPxfcBNVWU/9de1a1150e8f090a`, + { + method: "POST", + headers: { + "host": url1, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "text/plain;charset=UTF-8", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//auth.openai.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-did=${evaluatedKeysStableid}; cf_clearance=1FMuuZQ7T0nhGGvAC5nLD1vOD5xBdtaknyTZ1yvmE78-1773808043-1.2.1.1-ZoH_uQuVL5xITquOtfZL5YDHiHeREad7Z_BGpPZ_F7ZNqoWz2WrC4pf5aqFHhEud8Vc8RzkE8dsLlo2mIUKmeOkYIpBweAidDmpdXAnUeIH7Optf6vzmDmD_TfrkqDEYOsnhRjBMpbS_aLok4Tqq_Zxka78UwJjXvJIq5T_fMBQtMhOwl.up7EcjHQPlbuWoRWVNicd1mubhbFIXSnO46K_vyqvezIzd3LvoOWoKfe4UkEaUX7fRo2FFWbpv8B1knuuI2ls_Cazhr.lhUOumr7TeLMgDHjRv35bl62F8pG3djlWPHemp9YxAdx7htMXLRKdz3kB2sBjsAtsPkUM9lw; oai-login-csrf_dev_3772291445=${oaiLoginCsrfDev3772291445Cookie}; rg_context=${rgContextCookie}; iss_context=${statsigpayloadFeatureGates6102981RuleId}; oai-sc=${oaiScCookie2}; __cf_bm=${cfBmCookie3}; _cfuvid=${cfuvidCookie5}; _dd_s=aid; auth_provider=${authProviderCookie2}; login_session=${loginSessionCookie}; hydra_redirect=${hydraRedirectCookie}; oai-client-auth-session=${oaiClientAuthSessionCookie2}; oai-client-auth-info=eyJsYXN0X2xvZ2luX3N0cmF0ZWd5IjoiYXV0aDAifQ; unified_session_manifest=${unifiedSessionManifestCookie2}; auth-session-minimized=${authSessionMinimizedCookie2}; __cflb=${cflbCookie3}` + }, + body: "DoLQcNj$E27JJBZb$bBbpb-QUQDEbDQjZj1GLbaQRZ7UbMxvvqmOkZ79L5Yb7QvVObi$0Q71bGigjuO$tPYmYbveY8YbEVKOwwbBTEZfQk2gaFNPoJ9ZoQk-5sCUZ+lNbEFBX7aEkaBFNhtuobjAxE3VNgO7nbQcNtNj4bGRbxxkCRWCd$9LvbE3b3QEnbbAKbR3bQm-A5Egb6bEUYbb55lWWaElGPxbNLbEr5DErLEGPYO7wbvwFaOjn59V8XVUS4B3P4BwDjxbbgpOJEWJPb7cPjZJb40DKbELPnylIGqJb8C-l566f2IpFwciseI9zeLkibMeOMIOVobj23iGZQbzMdvBLWMg9xvS1-nBj5DKpAGSpfn+2bRc0O8IjYttbM-oqcoIteFbPbIefwRPGkib7N$vbEEKXGwgK46T5g3bcBcX06WV-MA23ViQ6wBWbx9Xt+XqfPy37QObdwvp2YKBiFOlEujNeo$fclkxxNVlqZP1Cn3ZQbjJuJ9iAXFiXJ7PvlwzgwCdxQmm+MxYl5TvD35PWPB7GLYBLsQbepxdL$9vvs2KNbVvL3ibhC9N2GG6+KNclBq-gG-9-cr$Xxq8UGs15pgZ+wCpa9QdWd82NS3AmBv4I85dxy6j+vbXc89OsSNfdm0aND+i8l8m7ss8QwhhMa6jR95-p$S8FTy5Dokpd5XTtu-nZY0MsqclvWsK4QQFoeM4Qoy1nB8v8GPgXm4lwF124iFwsTie2wE74855avBLjNhLCyNCWgeF$P1wjzp36jQDZeN5Do7eObQ3ApNKjNacofRBB$ZQEjbBeg0K3d26Z6Q1wZqMRx5jZ9B3hbPxZouobLniG19mikBZwNWbWKLJBZYZNBbhEDPJ1detT5ERcgfx+mULbJ1OswBEVhjxlQKC4WgfjYxZ4xT2PA7nDZLN4$LRGsqoQFojP7xvBbjwTELS-oPVQFVWbbuR1OmnA-V+kn29jfoL-d-NcV4CvjYlCR8UVaNETikRjY4bv-9jaxBNLNT2Lbj80jNb9IE+QCCuo1DdiFEgbN+JTaw4KAZ7wBLiV8cgYbvZOZa8cOUnKWbWeR2+d7DB9noY$Oxl293EYc8fyNcfVFQJ2N1v8t$fwBzAgNFPVKGKjAZQNELACQrUBKIWbpOjcJYfPWLa7fBLGIR7Dh7GBgoUgh9YpCvTC2rlA5dZALZb-xLNIGeFd14cx-V8RFS275DCIFZVYETB9abbL8TBL3JsGmZN6v2NukL6T1AZZwujqQ5K1sfbjWCdbxZKOR8Z5Ec9bt-ovG-xD1N89ZgLUgT4V0Cd6JVuekBVaY7JUtEBZDaNvOfKOiJFjmOwvF0vW+EdDZegNvi5barxQW+uZdES2dVudIMIjPk1EtdY2mzLJOL1dnbSqmdh6tKnl7K4L6dhiGZ6zhvfhN-7F0b33PF$KLpdfMlYephb90JRUbemDvezZ$476K7nt8$fDPip2$$TSLgTI7ocOaQ9wf7O9eJcICetCN4-ZeqMztnpq9AAVQ2CLaKENhu2BYBSj2dDDkVG+Ee69ryhEZwclwuQFYi9o7Ot2BQFYJiUk+GOF$UjNRGvby2F$zMgUQZtlZmhn7IPK1NZ4QXd7RRzBLBgMZCPpOsBNkBghSbbBfCB3wgOTLJWEiNrOoctPmdjwQKB1t$bC4hVYBFZk053cCgZb22Dg9QF$-begkQTEgI7JPkFU0JkQ-jhNAIBaLaJa7mN9FACIvnMExQstLv2WBTDcr7gmazwBACvk$EM1LZol6VoCtQGIFwfbxo+B3VLTBSDgrWEOlTVob-4etPojtzZ7G0kpfGAFZoXGXutj3B3Dnwd7M87N$TEL8G-Njn1NG43xX+reUNs3NA-hBQ-wWcgzQGW1iLNRE62bZTvMtPZvT-JPW5EzhnRTdwOOcEBbn--$SbQdbVWMDT1sDVpNRfUbIjBwghQzEMbtPZba57RRJ+2QoFCDuKtL2$dv5dXapwgWJGxavpop15vVcs46Wv+DxzYcY4ngZDlmL$89FiDxM7mq2k1XF7x9-m5J5YXKxbgMm$wGT3dVMGkRPQdwG23QAnG62KUjLu83n1pboOUg3VDUkAODOw6pej1KBo89Kwh7fbPAGDOtScoJbwR+-JBLKb228c1PQNQcsz95ETK34jNeq9RcYGPYuCKewkA$gPqQ3kR3eRnIVa6vptBAst-gXafltbRE6GOQC-9B+FQWTTPMva9mPETwWWoljxb602oQpOtG59okgPQffn-sAbcYWQLf9g5R75fLLzuMw+DX-Olx5bgTK8MjZ1KEKGhlKUbWkhwsQAA+nDOOgWJRVa8Ix6lndfz3xh799-QxSfE4AMGUdOvQbuzgD09i3MbVoXm993r+wadb+mJu6cjhsqfeRBMgWQmuDMSnJCBi4mZu7fMcD1u8LrJUzm11h2bZGdIe3rmoTBLz8UNhe5mIhsQxEilKR1erZDzIW14844B4r8It3nDJFnBesGVB3tWuXaQQTohq6O$8XzuAPle+5y+E8vrRQ0-Zzr8kMbjBy$+En08Bf8BRzruDXbN2JRepDW6ejCB8OcbtlnW7PimDW0KYj+j314KGbGQ+pkCK8bL4flhtBu8ekW0dCKXs5tQ6IZT1QxwhvTVZ7vfm5dME48GYA5ViSh1nVzPAQ+rxdj29TnIZ78pX2rzZSVSOjV78ofXO3PmXplY1sGt8Q+$z7j26Xlj89seR2Jk$zCziCD5bbESDhvEWMrncOO7EGqR19P1xTAMc2GBNOLnFt-NEOqPTNjDBoP3TIzOMwQgbLZNiBeZSlgMNmNYfDhfBhfNUotdu6-fWh1gcWNOL+j6uf6XG9tKjlrTU0WNg5vQGoJ7qpxDNzy6Ge9RnngGzMbYJmtWajQ+3IerJBa0Iwz9IzDh+NMOP37rLx4J2DO2bGh5u9B28TTdIB2GIVrP4aeF2DUIsyFKaFII13nzTy9yehactmz5YhB+BvuJJjjgRR7o1em6+Il7fFIro6y8jYrUUqODme8wyj0iBe-mM-2f7mijsW5FqqVFSzAtqLczQrVKD6tbAW6XF+gD5uqLtOGYi0zrUSne0YXi+7u9NA$yQyTNpXzgTY8EOFdD3fMjmDrcrmlCz-$i1iVBQ9tkq9YpK0heuqza3KBDy9C826yD9yaAah8jz8EdbUzruuPQ00gI2KeoAabhcUsQnmu6-Zbj9gcFvMMGP-rc3Fy2Eguh-CtZqeB4Fhr3WuaN2On6NO9utaxGYeE9ephJShTMXn3Le5QlUL5ZqLb9DuMletgdRR96uJtoV-xqfes8yX30uDRkrNI7J4SNbkIY+iXz0webGB3G4faQ93$phu6OmTyjpIpdZhWRwdYPOm4TIWnlO-W0gcnT4mhaJMEtnDv5XN+C-fU9bKhw$RT6aYy2pvQ5c$twE2SlnB1mBqy8PyUMUL7Rl+i1a9jhnMPtxoPnGb2cKilcj17QLhnMbGRJfj-SCwfLpEdyhanMPh9JRxObDqnBaKaqT7WXliltPSfplpFxCUxLw9Q+-oCPueOgwZwEjZcbLDKxIU70iUk+WERqn3a5OePBTR2+FraY9mKxOQ19dxIDGow+GZDBTG2Cw3xoLebEBmhR13LSa3RUiTvOwuGi-g12D9N3cC12tsicF22M-gtviMFCDz9$ILv$wGbeF3ESb$wvg$2kFSLdlZDtCsbpO$1p91P3LlGGElK5nvGZDpUZxIK5iEvtGtO2kCF$wIl0CaptlaG0-SiZDgc0lgk1iGFC2bT2EwcqFnvyORGrN8DyGTIZL8D2IbcQL8tVILDAWQnwLMRECZLXaOd8cNd7FC2TcTvgTnfgtgTLIL1LnOLViLURkJPgLZh4h91OWVGAlLLZijiTthILwRiohxtUcFURhnkGj1cC2CidhgL2I9tLL2iKimvTTdIZL2TjI5vTn2T514LKiTL2iUcCL2dJhLN$cQL$hklLcz-gczlkiCLSnSILvSTZ2Eg9LEdEdgtLvNIjwkUWBUjAiTLWgMPFClREkK7WnvBZBinvcnhBcQtRBnIaLVDdBj-gvRPwTZw7-Nd8wBC3P8Udt8g1iTwsIMnv-gvJ2riT1rnIurhStL2BTvktiQv9hVIUTvcCD-c9gVTrxWGhvxnAIeCrcT1UgfgPg-Ohv-w1hgtYu1IStLwmh5nKg4n5h12Juad61VuTcag51X1b24Da1bwjLa1b2$27wKhst7wyK4cXwKU51a1bc5tVDVvAxDcCLvivIfcT2DcvUfhdLSu-D2xPcCvivh29dAvc2cL6fmtLvPIefYgfcDDPiFcQcMwc2+v4WzwfhMF2wcO-dFtK1QDQ20lKcOcFxh9b2oON-TtU9Zw+Kp28lKR4gVNlcAQlwbwKnwuMdsIPLeR5OeuRjrOc7nEe1VUd1khkTwtttdvkdobOUVtCUJkmPTfrTn9hG8ubba9KB5bGk0glwVlWTnCx7pOzC8LeEJbrxb8ZBVDpBKjBxRkPQeRWL1kEcRC$ubjmdRRQbbkAJwfhEjbEI-nj5j-aMLALSGcjaKYRidGOInObjZ1fI$DbyOfQidpLzPRJWgJNtGww9j4RzC+YTE8hZQ97gYLoGYaJBaFYSVdA5G8b3XVYqLiaI$xo9JjbuiMbYwxjrWhE9E+wPciddEYnA7XcrW4bsZrZ-ncw8dFco-pvWdiopAaKYaKaajMbRQ93bCSbQRiAwbMvdDk7a-+W9jFON3n7RZSiAaLSWdn-QA6SLMkJzcpYuQI3yhNbuVMjnDiLT8Saof72W2AbKTRVVS7fM3WGN-AQNCdjwKGYxa32YCn+mT7fEFvuPV$a7QvYwXUVD3AWLQkSjninObc7Eb63XAOAFDwOIvtuUQtGIGgQl+xg3ZWo+$RQohC2ibbjkG9G9L36R74WYDKwJtX$Ob3VwMY-brsb3WJjIRbwJcspL3w4pRwJwaB1rT9WnwweZcKLL1wgriRr8+n6d2c2OBsQWqRI8vwWsNB3LGBdLlL7wTac01BJ5twx2fns7Wnjrsn3rqZPOwg2gGzcK9+KrgwGwU8bxxzFB5rnnRxym2xSwa8i32oLf2rt8oOQgqj6w6Z-w5r+Jw$oOGTkY-w6BDWOPwbTBKOsxwa7WlIbJwLDhGT6ZFRKX2iKL99nZqXK9eZw9h9TzwxXrJbc9JOB96bd3ExnQG5FBKUV4qxybLUCUYNK36o$32o2gVqGr0ZVWXbXhKCVnjOK8uUxVwJFog1JbcUf5l9grb5wLWQGtZMRb5h2JBC4ZlM$D2rlSSOGTFu-s02$OLU2gWCtBtXb5RBEWJECbB9K3BQ1+LK$$JZVBVnjBFBwVP3s7wrM72gqaFi2OznVN6mxrTroOqmJrqR66Z5JgsUsgq4$50bB9FdP3B5CbL4K5YUrZK5n3WJvO2WmV2r6ol3vb7538DnLUb4i5+nt5oosbqTO4Y+OUW4r4J4JgE4JbwEB4o4oo-4d40bB8ggV4yT9GD4QmigLUq4gj0bV4AblBo8v$Ffc4a1e1i434Jgc1hO2bGjmjUmSQLSI9kQLjggq1U53cOUlGTBzU5VDQF12aSQDQBdjLR3bLP3DnK9e82cOwVmY5DJwa+QsUVZw9k1-5IaTy2O-5u88sD7jLsJqaNCD8F6VRRK4DETNKu-v$2gb9WBjejB-RvBYnVaazvgRO5Z$QPn0b59xCn8Cmk4lsZCtbGzVUhUxdnx0LqZK5sgjnAtb5GzGsrdzLo82anQja-1L35QOwB1CaqopUqdh1PUWZt954zR2gZLR3q9wUMAjvAvCgb3-mAuOsdvy9O5M5P82rZLL32oBdP1VZScLACAhg7EeQq9pLXoF5DtjvrAUA4AoY2r0Lt2t8fAJoBAxe6AaLZAJoVS+vjLV1-15WoUpdd3qjFAqb2bEV430bvV8VTm4V9VCWqxjVm4qRh9hVeWXVIdfVnaqVfWtIPV3eG10dnZcaLaCbEvQG2owykB68D4x1m1SVIUvYXo$zjAqxxCdYJoRSIzjAGTGN1XGxDKLPSmFetdAYm5rOPVeYTAQmsg5a89VnGnO9rrbC5PhPXOqVfPu9avLfnQvYiB672mm4bXqPnfgmWQE1k5yPC9sgDnLP4aC+2wyPuY+CYPSfJo5xIUvfJfAYxfu8sYyfAYe5T-JoDmRPKsVsqP4R5fgQ3g$-SVyXq1kQsgcSaB2sLsGszxzBjLbhm6wLomtmooFa0b2s1aZOvaPj-Oq2bGOiRFDJ9YDQn-CbLSCPnlGnL49aJglhTS4dlh0wfI9h4gOiR3-4lrC9VZN-wDYRsQL-oDrDrQOoPOLmjO7RZDYZIsFsWhy-JCtQaBs1-m6mFmBCmdxdt2F3vvJwhw1dXvi8b51dA4+5Jr+Ujr6bYrK$FR$CxJGTKY-nk+drLrL4vVECS60+dyPA2b7+0bRSN6Xxqgj6U6Ar-gtLRAp+TNBgZOs9Y6TDpfz+oXTPfsLYiV4VfErhAw-90hCOjAwXp+8PehX39QvxY5DU73OQ6XIXpXuM182XA50wT5oADUbXKAhM6XQXRPNv$1n7u857+Q2+d7Y6m7pq-7dEA5i78PA7JbVJ1vnO-w9PpPhss73f97u8$u0Pu7N-C7UPCyk1LmBVQuYugmbuyjLKhu8JZYI7u8zufuQu+UbroEggz8GFCODQ5a3CvcKOFhJ5duQrIV4XJrcArFJU1vdfymlwNUZzKP097nEL2rWZ$wVAD1Jg2iyCh1zhCB6Y9i21eXU5p8oUdi8ihiifNrFsF1FB6OwLPQqbDn5ie9QLzidOWafimBEL1ixtjBRBw5rQvvmqZQt-uiCnWO$74cmQzhs8C-oQ67NmpcuRB-TiQmDW$3tBjLBdkkOsuNCCiss6xJ2s7cqm1i00tFIRPWU5X6hAFfQ-Bw-cp1wi8hlPR0Vv6xCmJx5m$qKh1mRr-9nZRsbGLSIOAzQGE++zYzIYh1L4-w6zdXyYYiNmYzgefswiTeh1zZczQG9PodGlWVBeme0vxOrMTeQXveQXBfXv-eNeUenZjOsOmnBV6znmrmxenZVWb1IeU5YzCcm8BkCeQGGmnVOMTkJ8EkILEkIMJbEkYzxeiBBxbp0fAkyRljqbbGL8t4keok+eC1OcGa2OqUv$BxqRDsteAVVO6IBeip8eLka87pNkDkYze3Dl9kC1bCD+ppfeUp0ef18mrgZlQG5lniSl3unoXwBeUvf1PhDlQrMl02waclXv0XdkXzYW8gt2WpXOR0BeNIakUlSloWLgRgvlYIogz+6zSdxcJIYzrIeQvnRuxerIrpIkIIQG-hrnlLDJZtxepPugEFIf3pStM9i81tQ3tLEJKfQCuR6tIwreftU2wsviMg2tdIAkXTbk89Rrt2VWT0deg0Tloo10eg6teL5L6te1ZQbtd1OgKOF0rgELt-QqoQkIS0XzXTzIaIQlSlXTbGqxVd-QWCW+6td1ichqQ9WObG7qJJWCkqnOW3-qfO1$6t4o2ce-xuGyY5-QR0h0g0X-v+FttZF1wyULPmP0AG8VO0TJBGY4zleR6t8LgdOcVbjEu$K36TTMqXRodbqyQ0GcecSoJDIcZ1ba1MaSzm4Etg1QvRQNbzmObSb9sKIAMSUmoqlBNTaDro77CJTsqpKl9rThFLDI9xA1gLRMOf5ube8xlF4YJ7E56tDQKNiEV2SKbct2bBinvE$EhWKTPl3MU1rT7djsQWOsVU9YJ7I5M0sOZ3DCkw7t5sQmzR6bn3x$djUQiZEgPqv2YeR2QQgZlGE7iLWr9QhsDyE2jWCij+QJe+6bZkN7JodbSquZw3eaXaG+a$l3qTKY9TdBGvRbPz9j8aD28hQZEfN-EkyGLautZQcnp0amOgao95LqSGBZFTJZTTWV1CD-8ZgF9a6kvPC2mwk2Vx$izVJLcqiYEISsi$3-JnrW86ZJLX939GcorDjgLGOWCvCcgj4$E2zOuVAT1rk-E9aAOeZE4hrB+7+QChVNP5nsBpOvr-YGLFzU3jr+EmYOvdNaUXZzElZA5RObG1FWaEpBDNVdcYbgRoXj81gdh76CqZxJvrFu$37$cDLZQ7nLXjoF6aJKG+ea4gKolGnfQ5b2aFuPdJO7$z$AAQmqR7uJ1jBQu4ooLm8D6GWBONQKARRR90xYFqEoK+ggoFJcaPRh6375l3GoUkMzENKELeoKdn1auOGUszOC-rPCzqdqoKLBCG$2-7BgKb9LgguJ2gsw$Mbd4vRZ8jIsxaUQ-QKFuPIYkIjjKpgiuMWtU7m-5bjntmbuRYV1Ldbx2FY0Ovbr$+mrG2zhAng1OcESbyl9dv2C9NZhtUDvz3DgBcsruQEm3M5R3ubVujeKfPOTsmWMj9-tJ6QB41AP6kZTtKsYFGZOFp73Q7UO1K5v6j9uWoX1o4$2OTxfdfDrGTZozcB2uBIKYUMWv25lKFBo+z3-+ZMN7lNOduMb$ZUrRChrEVNibUZxrjN7nBv7M9NQOMf91fnhuwddZh2KNR2zDK61aZY29UviR6utLpQVvRUDmuDacCMAR$GURDr+NLdyZJOvgN2bs$UbPZgTlU1MkiuqLaQ1QzYEPZMNdQsorlwkFIBFNr3XZx$W9Dir06udjoUrv9thugaZOa3hQEo7WYtNLQueGlDrnquIV8nKGvN30WNj4jhQhv-Jw4vb7+SMGKDFmtJvBcGJJN7oJgjjwCvOFcCNRYI1eCJVRQD9sRxUja2VBV+oTUgDMNjIWPF2ibsgoep8UxbC2z85M-t8MFbpij$QjZWaL8Tukvhjd06-J1SR8EZDnvpRgA0dweRjJFUOC3$qIBDKWv44Vo0bvUtRxxO2jWAVvkvDe8xO4EfZtZRCLXVRY09wCgwtwgeuwWjvkRMJ$ji38B2$R5MWcNbEEsfYFLat-JPQfJCaDwbybJrDpjzu5+68aSb63r1SCQTjUmJ9dt7BrEBPP8hm2nF2pEpgg5K2mcdf5dOYGu72fM-wtPvxZ3$uKG2BrxftsR36l9cQOWlQjnCz2+aLkZ8$-jOrZF8bwG3wzQQWfZ6sA5TwXfYwJKlJ8A+iEJjU1BYPF9A2iw8ZALJEjOgvYGJUuhc8pYulbMbsw3h1JFYNVA7Cy2wMWSsJJ4snSP8zQa9CDuumluOMfoTlAeWngzZ-AR6k9feOFCeGy2$DwJKsLPb6jtKROfNZuGcQNtbP3D9V8wbxL4$5G9bEToAg61zTAOvXw$NNOibiDGquC94YQjPEVZxVLrd8NebEQC$513rdZF5JRsE9qmc9wTp0h13B2TnEUc08V3TVJ15QtQuLKJWibNTFDBF2LOIW6RXjqKvFtZEGn88qRgUP-K88k35b8M1EsCKVfavs8m7OUDPlgF8jLULbsZD2kw7TWamIYOUtXj5VUL9b33nwOCBx7yKkU4Y5d1M1BkGThVyT59ai-hCBhwVjJU1JENvQLg6VuMcc8z2AEcOq36JC6uF7kzniwOx7ZwERvhp8Fjm6QRgtjWIa9iy3tJxrAvLfAxjuGlQ1swlIZsZTILC$gQDktZaojIbacLYjk2mWRb-VIMz6NGnWpGj6Em$JocSiZEias2a$p6Jlt73-nWx9gdkClDnMBd8j2njmlfKMpbJ7TBX5V1ItkaD34rX$nm-TT1zm25YGiWMQ9Pkps-vYlhOLDtvcEoauSbSUm-2dmC5EV4LbLmq7IzCbX9bUSy260Dwiznjn1D-ECqvdizn$5e$C9D6xzCvbNY93Au1ILdVtnIK+SN1Vl2zzPOpY5Z7LR-b7e+n3QXbLxG0w+E+LlR9z9M0ZNcxxDrjLETdAFi37$bbPYJYtmlUQl-nOPU$FZvQ+nEOETPf$XlmI1zjBENP-NLalxkmA0nGYjEpQ1IL+YJbrPt6KbWbmVMaAPY4ECAx$7l3Qw8VXb6m-tIo-E+UYDFs-2LMqgDS1PqFDy2LAYbQwa9+76mGLMCGMKPPwTv3WLbQlmDIYvFO9uFIlfPiPsmL6xPudbGPbP5UEnK5IDBs0C9Yf$gPENEJ-b3lV2qRjZEpfKqXvPpDZN8LEJlEL2PpNoKPZ0SlrcwYxNXR6OAwZ3W$jLES1ja-Su+nNayqBvV$N3GziwYIOXm--2n-S62fQJ-JvC8EjawsWCqBvwVkmY+$nK$$OiwG+Sufcj8vW3BtIR1E1FjAiR-wbTMeuhcs3T4Ws9b3to9-EAA$zA53BXziSASrQ9v-VbkauwfS9E5qaZ7bpC62BIMvVW$-T9BhWZd+lLvgaBGQ6hfiJaBLcOJQMwfsqOh9CzGwYBhCBSnFeRhi$NV2UUWDLS6TImsaT1Aml2gwkG1bEg0CIMZCWjgAP8jSY+nb9B3Cj--WO-i20bE$QKM6KG3mab3L9UgfojeQJJZ8vzPRV2VOvIGCbBqgn75+MP7GL4BZRv-ej1moJTf$$7v8BjhYfwaLtQxUEXT6jebRPmJ7okdf$-mLvOBjwRoFdJx0CEZzNmROO7T8u+OMAQdPlGW6Qvwo-OOD-80bNQeOvjEgkP-KbNQwtLgDVL-GsM7b8833DgcrRj$Qmvw+-6gchl$EF-KOjDfQQ--DS8aypOcxYP+GOYc-uzRavs+QBBMk-k8QC7MT+9-GKCWWBCQ8JnZZQgPXNRDVGAbjSRlLuOZ+CBigbdMiZIMvD6Vj1WdiCaiJLrVXRF-kbgbMc9Qv2fcAR344iJBQ3RkAKQFLVVM1rV+jya9KNUU$C789E7WMdcA1wiP$sLP-J6$hRSZb$Kc336-hYOr8sWx8w3k+B88+lB3RFkG+vGVishxLSNqLpPt914F8LlOZ3Njw1q6j6$4DdbbXrEpGw+9mfYkDagVJJaBP3NMjQbrfXNwvFi2xOsJRvNshQDjDzz9bjoGWCtNlx6N0McC8SmxEDvOe1gogLzlzwcuVKWf3xSP$A+AGp8eL2Ob$p7+Rh4ZVhwKEPWXlBjUe6L2DLBmZBs9AwZzSDoBxC+RU$BDbCDKBSulQ2k-dQi1y8sstJL9Yozo5fBfusYg4FID3xStW7GK0ae$6xbvQiXlKMddPMl10BfuGQQc7CKmDGxyNDBM3hWs9DTj-G$dJF-TzuLGBm2cdJweK2vDrxnZv-hcdRs01efKOtA3GTZK4hACDuOV+0lGOUgPxrv0VAtwwjiaF4GBwfB$IKOajjYt7GCgNj1sogS0OQALPJU9sO+w$bypbUNV2W4Ubxp4GsFgT9FLZmz-F-AANV9LQ+2Flh6Nj3Tiv3xuTScZ-0hax6KAfxdrVnU1udTW+vQvNGnMgUtF68gxpcWZ7hNrSw+4JKstWQWEhsJYibE5LhmrZ9jJ+eT8L$V3sNusfbhQVqfgxnU1J9v4ZZMlB7aC0GxDB9hzz-BnTjMA3UU88J+JxbLwU2Cnzc5J8WVRFxLfBXzGK0U9zcJ+InMX7dMGU9seodPPgt6+SNP+eviUrv+m1RTfb9mhv5n6CvdNvcpZW3DSjdKALi7YdjQ7IQ9MRT4VWhIXbLb9jLObs8gOBa8WuMFiBOCG5rm+cDJ375JN6O7csm3jffQFwOKslYudavhPAFKf9VGsTavTAwL-IPz4pxESr6hSvPEZQBgELfQFUA8NExszkgfi$u3EI6x1UMfCQb8AxGrBRZBXznrqYuOsnWMmYVNrMBOmyE5kO2E8h4A1K-AsVjhh92UV$myE$N3+h9DWmenM8zc88xf61rBP2rkX0vl6$Y6-VPQcBnGEy-f6lmyI$PGKfivorqUim+hRGbCLa6MCpzwin9B-b7E74FgvvhDNveYaNIDuPJGdWcTk4Bw13qahDQNjVZCQltFk7wRPeoB87w43rLFT-YxLZIb0tIR4B761rCQskDZEuecDM6KLLF+w1eTPirKMmIpVONLCPhv5zcLimIfy-CdAXaTD52ekbOJLPX$rYhx3Eflfzxfj2RJ7A1z-og+XfJJ+Fv9xsKAvX5QdDldUZuVddJA7$ysWx1E4vzXn8OCcLP5Imoi34gzD6OR6ZC8ERFZsej8c33TnyXbrooBIkzhEsqXVE6gOb51jBsUBmYFf9OQzU5LO7EO$P3ljVOqreXi4m+tkkFNag1Gtbc0qkRLtkFT8qwqbUkjGakz32S$B8+Xj3t0WZn6jycAOsN-9eooLrerReMuNagm7aQpuxgquFMjb33mTmkg5RDbeqLTGy+vgquW-oCx13gqGL$rM2OJOWo$9qkEb1YdOoUaiajXO31SkIQNX51bS3ylEjZ9MA51cE8kAKMooQEJb7RBzbnZZ46aT113srY9bF7eafAvoqpBbnE8oaXov+LF-jBEh1aYUMjt7uqOAWS$kx6R5N3GNi3$KUEZ3VgkwBu7t2ugY367QCJKCnKILUNdQPiap+5$Ft6DE1uQJPCKE23gd+5V8jfwo86AskRJD5Cnojr1xDQn21yDtWvTaRs2+7QjiebQGRgT-7KjPJ7bc5m1L3bEEMo-BgJeZvi9jOIGA4B18UsicoVXrA4gBXxq7jOrP$GV84JgL$sQK2krbhC4Ipx7b1JCaDi5ew5M1x7lk+NDCaoiEvQ2vbNQ7dIaKSs42CiE1OJforEjC18i6Z7dagrZWwfQxQPYdQRYS6jEaWtu-NzOULsSzskGA-NKhJE61pCjk9vgA9FDDd1fY23hCMdMN$uU1TpurvIjLrhWarF4oBckuwq3ZpBF9gFv0rE$9ODUWj-CdxrxC$9h8bJ7F4ayqlK0fqd1GuLp0v2wjItd1FQG1orVn+K5wfs9EWzC8ZOWRDbTDh5GySA3BV-ERq18ajx3QDK6ARFvTimPEzCqrt3hukhaxheU8hSYWKXD0sTZF2LuuwiVkAsPDigg8upU-wjRgYPqDwbQVx8M+kP8xKQZtsaYMeR71ZDt2dG5oBdxUb+jj-bVJTNsTl3BpKX5bZL1Gb-lqNOEWQZ+QCd6MFsNxYOLP0OztifhrhG6OCkIPz74gWRy$LLVraYTxboR7V0ajaKnvJDG+zVJlKUq0h6p9iPjWJ5PB9W1+jFVwOpq9diackpPj6O1WbxeFcXQR-lc1Zm8yQAdcLrLGiFuRVpqhfiBYeOTmqltlZ2ZcZVNbwPvj12+ipGV51N7ttP3cix2ctBLj0DCaIDEeBrxmVq2xbIiDSiSICbFB8TyiwYgEX5602vuER0rdwfdF0zD7fXRE-qGUJk-3dcivMwI6352KgJG-pQWV0QBptIrCs6wdxvV9XU0itfNQ2OBqnQglKMfu-VxAhjWZcDCBW+jUuJ7PMcBUgCTxLo$3o0Cx6QK+tNXDcg7UTacuOGWhwOCmxT7xUg5UfB6Cm1TEVE6kY1zmAGb3pPLwE15MDT0IbIuSWC78ok-xpxGY7d0og$vda3naFxTZNiQ$AxU9P1JERNSqNu-KGoRul5kDBi1aTp9gpEvKw71X2KbPiD4CbP1FGOK9iF-ptGdNbD1c6ZMYEGY8N2SK0envhUwUMCFSodO9bsAUCdfVnwKA9GSnkwrfENjYbWQXfoGTCiPKeb1G+w9dk5D8mgBdb5JA8YD+sJBh+hLvAS$hs8BEEjiZgvObhBNmX9KMmOlIbwVIhT-U-wjgsMDsYDS-1oLaU+9Yb9mjK7cbS6sTTMKkXdwQnhYQPt2hBjZYM0CFsX1A1MklLZu5+Wz+62NDNFMNhgpQED-MzlQ6z-gTGduAN894jOTwJb+v-1RRCsVF5jbNsJrJgu3S-TiAcRrb1Wv13mR3EOjWG563m5lEvt$iluavLC3hNmMhxsbAdwxMeODEjDI8FbbZo72xYGb9zxkxLEDLOkxgAmGaWgjnOgkTKMVCIDMIM6oBFz2JQjmz5yzrtXNqACIP3L8hNgCkY+TIDfg+4UFPEKN4KV23+m-$OEWz3UvzL+m9nOb-mVOfz3csg1cVfJRA6L9+U$vfb$2NM-zCWOUYMZEExIkoXb29Y7PWs2Iizn+QUnJU3Zzuo8je7aPgC4PwCV$mVo-b2pctjIq$K$5YMxZIl3VNM1Xq470LVJQj$iiu6otQfsWRbUvmcBCJp68aPOWis6Cgvps53fpxKmVTWn95DKug$Ne+A14GRM0mdcL6maBcx54DDUWiM6y2Zrvz+yBxeIMzmYxNzJscAM2nl2dMbaiBvxeYO25eTbFmFUt4jOl$eZvc2qX19osRJdtVctoQILmV47qkzWUzUKLGXD29fMe0fb5VdVp2UqZL0tKxjV-W4INVnVFbmhAe1NMx6pJfp1cY9I2d4cU7qkreh6AUUd$0JyUP3qdy4oIzxxlUmu+6uWNM$ELfxun6gn4TEgcJVU4G96d4TEiBIfxshGKt9DviOJivwOGcFiR$7G7Q+B81DoadRfL$2GwkJD0axQCYTTt1TIT5aY5VINZhCCoPu$4Sk5jr97D4nxYVTZgIlsSDKbaW-cRRhJYdkxyqmD46sW7vVkW6ze-j+ijCBNenW7y-jNrzQir-cYj81Kq6BGlJswnnGgplyuC1l8iDigD3JPs91fPCNuAW2$KornbzF2YNvYfvwbr4iaOm$7uwp362rwiDFqfTP-UAOOpQJ$LiDt-YNZVA7X4dkWzw-OPdTGFFJxAIWmRQPKnW2z3PzqB8uswOXFGq7RarTcbdJoX$VxvJqwAReoZ3Cc+RCEB69bG4h$66B$awic9Gd-AToN-xAOWQxGRsJTethubjphpVA1B8Umuti1PgIn7b36axjMYx02ejEir26hsKILCXFcaUBy7TdU4EXpq6Nk0xq6wEE0VfsNUr$lfhlEBXh-K0QINgDirKPxZd0l1hofOqhkPNLrF9epz2D5cuWXWq1YgIi3rB0bV9owblwAfYIPnglnud32bNsoEXp8O0Gz+7$PhViXKU$ZzabsINRKENih2lUcyBUuTd6gIMX6lZfIgIaJ-wJ2BcTNbgXtNG0Iu-pFPItOe2wgxl+cgQEnyfu1O6FLtVfecPV$SmO1-qliPnYEdz85iRmK1nw4fQE0mlLQRs7TRFmLt7aRF9YxM$i14dhlCW-24$gc78wEiMajYp8oDqTAloCq6hQAUk+7DvQgcjlF6-BgnmJlZ-qB4z-ka1mEl+qZe3ryvqT0WlXNkhdnYv5qN3hQzIi2BXOt6d$Q2nrqjLx7n5Knb+fvmjouG7GeWZXNBak1aSdDdhblwksIU0RZWv5$kwtDoDWC8Jb6fpw$GXnpjsIOMkYDR4wgBhV5CsoRDAmPOwmt4ANksQq+bT7rMRtvlzS53khOMVg0$RF$DruCFa1tBUXu-U5v1SJNCpCRpXnCSxXnj0tmbIzI+Itb+8Adl9NeRaPoIz6A-$pPQs5hZEM$LT$NDjNKvKEvWf0qLRw9SztB7d0Z1G-enn7OZGKDPIIlrsXYUxQgDbdWiRlXYhky5Lw7R92wbNnQwk2b2ONTVUJZTkN2A3tFTK74TEls7g48u1oD2-$LU$AyGRNz7I4Sy$b5WIY3aWW$Osj-a1kpGFffVPtuojAc8+L7dN-3y3JtomCOL2desc8b32pYkPOSp559f5u36EA2VB0lUzO8hC1h$SbC4YbJmTpd3cvoeb6mUNrwRL-JQ0h2Sl6$rW0kv4T4yWXtiR5Zv2b2SIwWgR1n3P7JBAs5ctOrmNpVrvKTMDcuphZDAolvI04Y+tGi4Vr3oQ$ptq6cvJyzSSxq7DC2E+sMGEXNb8vDRXFXAo-Txu3T9DEJmYoJ4Ui-tUpUPxj1NSpfXUaewcyGPVLDOftwpSS2-yJNf5l-kZcKQGiM8fL$OCQqQSSksNAgvEcjPMnTblN0iyKlAjMg0Rpv$vpQq-teKGur3pvv8G-ZznZ+AoNjv8G7wBEfmxXfSB3$IdOR+oe7uqlmsIMA3ZbUypQ+0JInsM+YWU4qD0mOBMf33eEBouflFSSLzf55i0pu5WWYwa8PnNoFYK4h6dUkNOxJ$0FOEsC9aydi-+G8jZJ0GPY3w6dT3ryOQVK9EOy477JIjO$ya4Ngt9TterjqqtbL42qe2$3yG55bo4$lIT$csueVslqPikZWkdFXjaGIgWKhR8rML8W3RotU4mPcJx5bcmkS$lze45EY4t5jm1c-YkuubI4JzS1eT5RF9agWPvmtjl6eunr4Bhuw-RbhRffjOPQhq4bP-vOPKUwe7bDRWU2SRDnn68ULDqBthBm4lv2ZnLV727+ta2tig5ZtsP0pfBgPaC$99P1$fGXoTZ0QpTNatBcjClMDo0aLxXMBSw58myIgIveeCBO3oCPjGkG7Y4SNbwalWPcZL1f0v4EQY1ybtXyZ8hKy0dyDQBdpFXAsjBkZL0UdQdZkL1+wg9$cNixQdE-Qg6Gi7kSYXZd9qzq0$pdf7ArrqswWtUpxuyZjqrQcqYYB6Fe4PqOWVCtTka7tEb2yONMEgwW-BjcyMX+ZtTLZd$ApQ+yg3bGku7cObbEKsvLk87VarQn--WwO7X7VdOJgRysB5bs77v7QnLvzY0XBOsDiygnDyIQbg7hbGbayQbbG5JvLEXbBwLObbbI2qee34bLqoQjayCsEk4gOLqrzQhgDbbZbhgcbbbbfLqozmUgjRgj2ZbDaOZbEbcb7hbjRRbR2LK$uQEk4$TRQNk4MMjRuGb1bz$uLgZQDaFObJ3kyo3byy0yrk4B+RLbAgdbsOkCjIok3jt4y8LMc2oDy8FbVGtGLyr-LhvbTae4GJBgEwOoQVGQjbh9xaOUWhbkqYjbYb2OPSjgbsFjQjr2PbPnj$bsFbLjCgRQR3jwbBQRZjUbzQk434bzeERjgQ9ORGjQb-OB-nDblOPNb7bs3k2jay8gPKSkb-gBSjtbObREjF0AoBNjYyMguSGjCkrEaZabbbET4gD0osjibRZjxonowCRVj9OFQjAjYyMCBJUF52wjv3XbLgEYjkb74EZ5wgwCQUwNeDLdsRaXaAcl4i78aid35c747jRy+PQ3Pjo7kCExQrO-x7XjXYfRcI29nwi7dbSqCFwn248kr7LGUPDo7W3Z3bCKC8QGpr7oGaPbZ7RGy0xwE8OiOvKK4QyOtTPeroT2wb3bEbjgPLbUPjv7gQy3EQkgQCbjQj0jJ3bd7pQNwLKijNjn2Wa4QbgGKccQtokdgYLdVQAEdbdgWPQW$Og$wETRFJ74EKRXjL3jZ4wgwDNo18LVEPobZ3kdekWI-bYnqLyOkrbbbd2TREStocjOd5YDkr75bxP7aKoGXbbKKOZjgWKFjRUPcxuMbrOqWQgmpWm+byQpJJLiW2bgbbE433Gbb" + } + ) + const body = await response.text() + return { + cfClearanceCookie1: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === 'cf_clearance').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0109({ + origins, + urlAudience + }) { + console.log("Executing request 0109") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/projects/oai/settings`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//auth.openai.com", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//auth.openai.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0112({ + origins, + urlAudience + }) { + console.log("Executing request 0112") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/projects/oai/settings`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//auth.openai.com", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//auth.openai.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0137({ + currencyConfigPromosBusinessOneDollarAmount, + attributeType, + url1, + oaiLoginCsrfDev3772291445Cookie, + rgContextCookie, + statsigpayloadFeatureGates6102981RuleId, + loginSessionCookie, + hydraRedirectCookie, + evaluatedKeysStableid, + url4, + oaiScCookie2, + cfBmCookie3, + cfuvidCookie5, + authProviderCookie2, + oaiClientAuthSessionCookie2, + unifiedSessionManifestCookie2, + authSessionMinimizedCookie2, + cflbCookie3, + continueUrl1, + variable20, + cfClearanceCookie1 + }) { + console.log("Executing request 0137") + const response = await fetch( + `https://${url1}/api/${url4}/${continueUrl1}/validate`, + { + method: "POST", + headers: { + "host": url1, + "connection": "keep-alive", + "x-datadog-origin": "rum", + "x-datadog-parent-id": "4400848238283082280", + "sec-ch-ua-platform": "\"macOS\"", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "x-datadog-trace-id": "4206139299359371755", + "traceparent": "00-00000000000000003a5f35685e2031eb-3d12f427f1444a28-01", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "content-type": attributeType, + "tracestate": "dd=s1;orum", + "x-datadog-sampling-priority": currencyConfigPromosBusinessOneDollarAmount, + "origin": "https//auth.openai.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable20, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-did=${evaluatedKeysStableid}; oai-login-csrf_dev_3772291445=${oaiLoginCsrfDev3772291445Cookie}; rg_context=${rgContextCookie}; iss_context=${statsigpayloadFeatureGates6102981RuleId}; oai-sc=${oaiScCookie2}; __cf_bm=${cfBmCookie3}; _cfuvid=${cfuvidCookie5}; auth_provider=${authProviderCookie2}; login_session=${loginSessionCookie}; hydra_redirect=${hydraRedirectCookie}; oai-client-auth-session=${oaiClientAuthSessionCookie2}; oai-client-auth-info=eyJsYXN0X2xvZ2luX3N0cmF0ZWd5IjoiYXV0aDAifQ; unified_session_manifest=${unifiedSessionManifestCookie2}; auth-session-minimized=${authSessionMinimizedCookie2}; __cflb=${cflbCookie3}; cf_clearance=${cfClearanceCookie1}; _dd_s=aid` + }, + body: "{\"code\":\"311068\"}" + } + ) + const body = await response.text() + return { + variable65: response.headers.get("openai-processing-ms"), + continueUrl2: new URL(JSON.parse(body)["continue_url"]).pathname, + continueUrl3: JSON.parse(body)["continue_url"], + authProviderCookie3: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === 'auth_provider').split("=")[1].split(";")[0].trim(), + oaiClientAuthSessionCookie3: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === 'oai-client-auth-session').split("=")[1].split(";")[0].trim(), + unifiedSessionManifestCookie3: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === 'unified_session_manifest').split("=")[1].split(";")[0].trim(), + authSessionMinimizedCookie3: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === 'auth-session-minimized').split("=")[1].split(";")[0].trim(), + cflbCookie4: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '__cflb').split("=")[1].split(";")[0].trim(), + oaiClientAuthSessionCookieUsernameValue: JSON.parse(response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === 'oai-client-auth-session').split("=")[1].split(";")[0].trim())["username"]["value"] + } + } + async function executeRequest0139({ + clientLocale, + attributeAriaExpanded, + session, + origins, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + statsigpayloadDynamicConfigs217573384Value, + userGroups, + url1, + urlClientId, + statsigpayloadDynamicConfigs489084288ValueOptions, + variable8, + variable9, + urlAudience, + evaluatedKeysStableid, + derivedFieldsAppversion, + immutableclientsessionmetadataAuthSessionLoggingId, + immutableclientsessionmetadataAppNameEnum, + variable18 + }) { + console.log("Executing request 0139") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/b`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": modelsProductFeaturesAttachmentsAcceptedMimeTypes, + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//auth.openai.com", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//auth.openai.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: JSON.stringify( + { + "writeKey": "oai", + "batch": [ + { + "timestamp": "2026-03-18T04:52:44.023Z", + "integrations": { + "Segment.io": variable4 + }, + "type": "page", + "properties": { + "path": "/email-verification", + "referrer": "redacted", + "search": "redacted", + "title": "检查您的收件箱 - OpenAI", + "url": "redacted", + "route_id": "EMAIL_VERIFICATION", + "is_error": attributeAriaExpanded, + "origin": "login-web", + "category": "Identity", + "name": "Email Verification" + }, + "category": "Identity", + "name": "Email Verification", + "context": { + "page": { + "path": "/email-verification", + "referrer": "redacted", + "search": "redacted", + "title": "检查您的收件箱 - OpenAI", + "url": "redacted" + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": "145" + }, + { + "brand": "Chromium", + "version": "145" + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locale": clientLocale, + "library": { + "name": "analytics.js", + "version": "npm:next-1.81.1" + }, + "campaign": statsigpayloadDynamicConfigs217573384Value, + "timezone": "Asia/Shanghai", + "app_name": "login_web", + "app_version": derivedFieldsAppversion, + "device_id": evaluatedKeysStableid, + "auth_session_logging_id": immutableclientsessionmetadataAuthSessionLoggingId, + "openai_client_id": urlClientId, + "app_name_enum": immutableclientsessionmetadataAppNameEnum + }, + "messageId": "ajs-next-1773809564023-5fb851f7-11de-469f-b76a-c518ac1c2c86", + "anonymousId": "b851f711-deb6-4ff7-aac5-18ac1c2c8606", + "writeKey": "oai", + "userId": null, + "_metadata": { + "bundled": [ + "Segment.io" + ], + "unbundled": userGroups, + "bundledIds": userGroups + } + }, + { + "timestamp": "2026-03-18T04:52:49.675Z", + "integrations": { + "Segment.io": variable4 + }, + "event": "Validate OTP", + "type": "track", + "properties": { + "intent": "validate", + "kind": statsigpayloadDynamicConfigs489084288ValueOptions, + "routeId": "email_otp_verification", + "openai_app": "login_web", + "origin": "login-web" + }, + "context": { + "page": { + "path": "/email-verification", + "referrer": `https://${url1}/${variable8}/${variable9}`, + "search": "", + "title": "检查您的收件箱 - OpenAI", + "url": `https://${url1}/${variable18}` + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": "145" + }, + { + "brand": "Chromium", + "version": "145" + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locale": clientLocale, + "library": { + "name": "analytics.js", + "version": "npm:next-1.81.1" + }, + "timezone": "Asia/Shanghai", + "app_name": "login_web", + "app_version": derivedFieldsAppversion, + "device_id": evaluatedKeysStableid, + "auth_session_logging_id": immutableclientsessionmetadataAuthSessionLoggingId, + "openai_client_id": urlClientId, + "app_name_enum": immutableclientsessionmetadataAppNameEnum + }, + "messageId": "ajs-next-1773809569675-6ac518ac-1c2c-4606-84e1-4410332d15b3", + "anonymousId": "b851f711-deb6-4ff7-aac5-18ac1c2c8606", + "writeKey": "oai", + "userId": null, + "_metadata": { + "bundled": [ + "Segment.io" + ], + "unbundled": userGroups, + "bundledIds": userGroups + } + } + ], + "sentAt": "2026-03-18T04:52:50.026Z" + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0147({ + clientLocale, + attributeAriaExpanded, + session, + origins, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + statsigpayloadDynamicConfigs217573384Value, + authstatus, + userGroups, + url1, + variable8, + variable9, + urlAudience, + evaluatedKeysStableid, + derivedFieldsAppversion, + evaluatedKeysCustomids, + immutableclientsessionmetadataAuthSessionLoggingId, + variable18 + }) { + console.log("Executing request 0147") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/b`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": modelsProductFeaturesAttachmentsAcceptedMimeTypes, + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//auth.openai.com", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//auth.openai.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: JSON.stringify( + { + "writeKey": "oai", + "batch": [ + { + "timestamp": "2026-03-18T04:52:44.537Z", + "integrations": { + "Segment.io": variable4 + }, + "event": "__protobuf_structured_event__", + "type": "track", + "properties": { + "eventId": "d2481374-dbdc-42b5-af24-0665993d4bca", + "eventCreatedAt": "2026-03-18T04:52:43.271Z", + "eventType": "web", + "userParams": { + "userId": "", + "deviceId": evaluatedKeysStableid, + "authStatus": authstatus + }, + "deviceParams": statsigpayloadDynamicConfigs217573384Value, + "statsigMetadataV2": { + "stableId": evaluatedKeysStableid, + "sdkType": "javascript-client", + "sdkVersion": "3.16.1", + "sessionId": "4c71157d-7261-4224-ae34-fc38643d4d6c", + "appIdentifier": "login_web", + "appVersion": derivedFieldsAppversion, + "locale": clientLocale, + "language": "zh", + "user": { + "customIds": evaluatedKeysCustomids, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "locale": clientLocale, + "appVersion": derivedFieldsAppversion, + "custom": { + "client_id": "\"app_X8zY6vW2pQ9tR3dE7nK1jL5gH\"", + "app_name_enum": "\"chat\"", + "originator": "\"\"", + "AuthSessionLoggingId": "\"af0081e1-4aea-498f-9a49-344ed42ee061\"", + "client_type": "\"web\"" + } + } + }, + "eventParams": { + "@type": "openai.buf.dev/openai/protobuf-analytics-events/protobuf_analytics_events.v1.AccessFlowPageLoad", + "authSessionLoggingId": immutableclientsessionmetadataAuthSessionLoggingId, + "page": "ACCESS_FLOW_PAGE_TYPE_EMAIL_OTP_VERIFICATION" + }, + "clientMetadata": { + "name": "login_web", + "version": derivedFieldsAppversion + } + }, + "context": { + "page": { + "path": "/email-verification", + "referrer": `https://${url1}/${variable8}/${variable9}`, + "search": "", + "title": "检查您的收件箱 - OpenAI", + "url": `https://${url1}/${variable18}` + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": "145" + }, + { + "brand": "Chromium", + "version": "145" + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locale": clientLocale, + "library": { + "name": "analytics.js", + "version": "npm:next-1.81.1" + }, + "timezone": "Asia/Shanghai" + }, + "messageId": "ajs-next-1773809564537-11deb69f-f76a-4518-ac1c-2c860644e144", + "anonymousId": "deb69ff7-6ac5-48ac-9c2c-860644e14410", + "writeKey": "oai", + "userId": null, + "_metadata": { + "bundled": [ + "Segment.io" + ], + "unbundled": userGroups, + "bundledIds": userGroups + } + }, + { + "timestamp": "2026-03-18T04:52:49.669Z", + "integrations": { + "Segment.io": variable4 + }, + "event": "__protobuf_structured_event__", + "type": "track", + "properties": { + "eventId": "ca1da4dc-0dbc-4e5e-80d6-1712b0f37c1e", + "eventCreatedAt": "2026-03-18T04:52:49.669Z", + "eventType": "web", + "userParams": { + "userId": "", + "deviceId": evaluatedKeysStableid, + "authStatus": authstatus + }, + "deviceParams": statsigpayloadDynamicConfigs217573384Value, + "statsigMetadataV2": { + "stableId": evaluatedKeysStableid, + "sdkType": "javascript-client", + "sdkVersion": "3.16.1", + "sessionId": "4c71157d-7261-4224-ae34-fc38643d4d6c", + "appIdentifier": "login_web", + "appVersion": derivedFieldsAppversion, + "locale": clientLocale, + "language": "zh", + "user": { + "customIds": evaluatedKeysCustomids, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "locale": clientLocale, + "appVersion": derivedFieldsAppversion, + "custom": { + "client_id": "\"app_X8zY6vW2pQ9tR3dE7nK1jL5gH\"", + "app_name_enum": "\"chat\"", + "originator": "\"\"", + "AuthSessionLoggingId": "\"af0081e1-4aea-498f-9a49-344ed42ee061\"", + "client_type": "\"web\"" + } + } + }, + "eventParams": { + "@type": "openai.buf.dev/openai/protobuf-analytics-events/protobuf_analytics_events.v1.AccessFlowUserAction", + "authSessionLoggingId": immutableclientsessionmetadataAuthSessionLoggingId, + "actionType": "ACCESS_FLOW_USER_ACTION_TYPE_CONTINUE", + "page": "ACCESS_FLOW_PAGE_TYPE_EMAIL_OTP_VERIFICATION" + }, + "clientMetadata": { + "name": "login_web", + "version": derivedFieldsAppversion + } + }, + "context": { + "page": { + "path": "/email-verification", + "referrer": `https://${url1}/${variable8}/${variable9}`, + "search": "", + "title": "检查您的收件箱 - OpenAI", + "url": `https://${url1}/${variable18}` + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": "145" + }, + { + "brand": "Chromium", + "version": "145" + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locale": clientLocale, + "library": { + "name": "analytics.js", + "version": "npm:next-1.81.1" + }, + "timezone": "Asia/Shanghai" + }, + "messageId": "ajs-next-1773809569669-9ff76ac5-18ac-4c2c-8606-44e14410332d", + "anonymousId": "deb69ff7-6ac5-48ac-9c2c-860644e14410", + "writeKey": "oai", + "userId": null, + "_metadata": { + "bundled": [ + "Segment.io" + ], + "unbundled": userGroups, + "bundledIds": userGroups + } + } + ], + "sentAt": "2026-03-18T04:52:50.539Z" + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0153({ + currencyConfigPromosBusinessOneDollarAmount, + evaluatedKeysStableid, + variable14, + oaiScCookie2, + cfClearanceCookie2 + }) { + console.log("Executing request 0153") + const response = await fetch( + "https://sentinel.openai.com/backend-api/sentinel/frame.html?sv=20260219f9f6", + { + method: "GET", + headers: { + "host": "sentinel.openai.com", + "connection": "keep-alive", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"macOS\"", + "upgrade-insecure-requests": currencyConfigPromosBusinessOneDollarAmount, + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "navigate", + "sec-fetch-user": "?1", + "sec-fetch-dest": variable14, + "referer": "https//auth.openai.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2Xgr1zwPyxLxRd4DtCNYLuGRqd; __cf_bm=0EL4AcmZy6YABOgAu1caF13.HOgAJFYpEPZclKcKt7o-1773809548-1.0.1.1-I4NecjcKI_YTJdkYmgKLrSVWQqlc.32fNjD.Htd3hjzOTyKmiSVcYcpdjkY4mTjVtKFeZXl4sBQx.IIHkPz_K5p_j_cHjy5CGIBZrLn3uCA; _cfuvid=XloS9D5ZuYqw1gWUBZTcrrbrjrk7UeBZTkOWf_cTx3U-1773809548430-0.0.1.1-604800000; cf_clearance=${cfClearanceCookie2}; oai-sc=${oaiScCookie2}` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0155({ + evaluatedKeysStableid, + oaiScCookie2, + cfClearanceCookie2 + }) { + console.log("Executing request 0155") + const response = await fetch( + "https://sentinel.openai.com/backend-api/sentinel/req", + { + method: "POST", + headers: { + "host": "sentinel.openai.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "text/plain;charset=UTF-8", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//sentinel.openai.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//sentinel.openai.com/backend-api/sentinel/frame.html?sv=20260219f9f6", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2Xgr1zwPyxLxRd4DtCNYLuGRqd; __cf_bm=0EL4AcmZy6YABOgAu1caF13.HOgAJFYpEPZclKcKt7o-1773809548-1.0.1.1-I4NecjcKI_YTJdkYmgKLrSVWQqlc.32fNjD.Htd3hjzOTyKmiSVcYcpdjkY4mTjVtKFeZXl4sBQx.IIHkPz_K5p_j_cHjy5CGIBZrLn3uCA; _cfuvid=XloS9D5ZuYqw1gWUBZTcrrbrjrk7UeBZTkOWf_cTx3U-1773809548430-0.0.1.1-604800000; cf_clearance=${cfClearanceCookie2}; oai-sc=${oaiScCookie2}` + }, + body: JSON.stringify( + { + "p": "gAAAAACWzQwMDAsIldlZCBNYXIgMTggMjAyNiAxMjo1Mjo1MiBHTVQrMDgwMCAo5Lit5Zu95qCH5YeG5pe26Ze0KSIsNDI5NDk2NzI5Niw3LCJNb3ppbGxhLzUuMCAoTWFjaW50b3NoOyBJbnRlbCBNYWMgT1MgWCAxMF8xNV83KSBBcHBsZVdlYktpdC81MzcuMzYgKEtIVE1MLCBsaWtlIEdlY2tvKSBDaHJvbWUvMTQ1LjAuMC4wIFNhZmFyaS81MzcuMzYiLCJodHRwczovL3NlbnRpbmVsLm9wZW5haS5jb20vYmFja2VuZC1hcGkvc2VudGluZWwvc2RrLmpzIixudWxsLCJ6aC1DTiIsInpoLUNOLHpoIiwyLCJjYW5Mb2FkQWRBdWN0aW9uRmVuY2VkRnJhbWXiiJJmdW5jdGlvbiBjYW5Mb2FkQWRBdWN0aW9uRmVuY2VkRnJhbWUoKSB7IFtuYXRpdmUgY29kZV0gfSIsIl9yZWFjdExpc3RlbmluZ2RhdW9janh6amZhIiwic2Vzc2lvblN0b3JhZ2UiLDE0MzQ2LjgwMDAwMDAwNDQ3LCIyYjAxYzFiMi04NGFkLTRiODQtYmRlZC04OTQ5YjcyNTIwMDgiLCIiLDgsMTc3MzgwOTU1ODU4My43LDAsMCwwLDAsMCwwLDBd~S", + "id": evaluatedKeysStableid, + "flow": "oauth_create_account" + } + ) + } + ) + const body = await response.text() + return { + oaiScCookie3: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === 'oai-sc').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0156({ + evaluatedKeysStableid, + oaiScCookie2, + cfClearanceCookie2 + }) { + console.log("Executing request 0156") + const response = await fetch( + "https://sentinel.openai.com/cdn-cgi/challenge-platform/h/b/jsd/oneshot/833f25fde7cb/0.7038850727994532:1773803411:ARXnmPIBnLtHrBDlKdcQyOQWgQPFReiwnR-YqmP6ZHI/9de1a16836b52f7f", + { + method: "POST", + headers: { + "host": "sentinel.openai.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "text/plain;charset=UTF-8", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//sentinel.openai.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2Xgr1zwPyxLxRd4DtCNYLuGRqd; __cf_bm=0EL4AcmZy6YABOgAu1caF13.HOgAJFYpEPZclKcKt7o-1773809548-1.0.1.1-I4NecjcKI_YTJdkYmgKLrSVWQqlc.32fNjD.Htd3hjzOTyKmiSVcYcpdjkY4mTjVtKFeZXl4sBQx.IIHkPz_K5p_j_cHjy5CGIBZrLn3uCA; _cfuvid=XloS9D5ZuYqw1gWUBZTcrrbrjrk7UeBZTkOWf_cTx3U-1773809548430-0.0.1.1-604800000; cf_clearance=${cfClearanceCookie2}; oai-sc=${oaiScCookie2}` + }, + body: "tYM8Roc7zha66lOK7KlKbKJi1lSKldK6KbyUK1dzhcCKJXU8FXMa6cFU-h8cdU6IKXhb8aAK0Ndc2K0RlY9nKgEYxnKznH1yyKlNGIE8ThdcaocCtBII8T0mxY$ZA5oKzJUGaczRBUWoJjadKaJtEKNU88TVkZ2+PU+ru1Mct0RgdEA2Op-oK+1cHK+iKc0oKg1cchq37n8K$K+6fKKr7Q8izOxvXhlU1K+N7ecp1OPff8l0KW1Bz8aV7pN0$2vYGJ-fG01srhKcS5BnYEZfKlWRGSOcrA7oKU-fV9FPMPOcJ16P7xrRvDybMbhFb7nbqK-tGb6zb7cF8KUd2JWoKc9jKiIByjleI2dn3MOcYJzm+Jf93y0dK1BGz24CIr7h6-9rjq4ZVtuIzZBJMZi1-hKAydiKMH+NKvcs$DcEz8K6IFQ4Lg+W9UpSTyc0PvMUnFdk-Lki3kKycKa+Mx43v+F+hc0yhyyP9XiV49WsLv7rPVe4RcoKKldASnACQj-Qd0-+hxPZM3eOzxYQQnVtE1YpSIJMUsNKSiMoxKa994UcQOUSIHzMk8izVhrWHxjHS5QJzMtOn43cSHniFv3fnmqnSPnesczdxoe+e++XzIWtfzoYI2C99C$4rpzpi+pA9nkqff3le$ldfDQ9myuNg6xut-Bx+pKHvk5qNfgR34u-KeZErD8$tbtTJGsJEyYyJW-pUUZs7ZdTsYQ-JchWbAs6DpEzOL2QyO3WBjOS11jp3NpHgHTplIU2GU2BaeRSgL1344+IhKFa7adPTPeKUc+0rojpUMZKIuH3VUZ8MT-AU$glHoF+6md3+rMV3DX7LJzIZt3aUjckz5y8fLQME3l0zHG0gnS3aRO1dzIcvtBQ-OkVdK8mK6V6QLKn8f+HKL2yI0X7UhCXBKI-t3apB88vMA1FlUTfSTzrWuKzjcdP6SMdTLlSSaoDcRMzRy1TYM8fcQ+RRgI91oDpDKzxyp1sRpkgDhGuU5Nh0HBoOISDRdmRyDp0L05Ul8SKKtHY0HGfY+qY8ijKLxAynBTY+6B8gTXNRKgHHzsJ1maMmyz+UJ1ezQzy1U-M8VxMgvWf-syoKfv2JTbH70FGc4Rh7n8i5LJ1C8vKf4yUznRhyGgNtUOHSchYl5DW5$1K$Zd42hdFSKMhvHUBISvxIyS5alBTyXh68A8SC34tQ3UgaK7qHK5xBeegbd7pFJHzsSuxLIBxeaRMlSWdMKc+lSHc+r3+NUaIg80MYaxSVyal0MyG+fHf0IKy1B1+3UyZU3+dcedl$DKyi6SIpHW2TkzQeBXgG$yqVhjnONh-gqoLIH3l601yKxWTqiOJXk5ytYyHIlMFamO1A4dOA0dz+qFzMT8BthAj4eY1vnDS9AgSXgUolcBA1a2qDQqvxjoux-daxAQsa+FAIhx6zvxnYnUK6sGMU$hNsZR79vGLrulda4SIj4s4Bd4x1ZSE3YIIx7vo2obkT$oYjKeKh7d0Px7Q4Bm6BnYiTXRasqen$0FCJgRhKiBUWgiW6gS-j-udBAvd$ySITexX-9vlKoLf8YOk6p9a0+XAIOkFt4oCHUMDJ8I8+K1RXMDe$7hIUaLQaqh84d0HIoj8jh1HKlfol6zQHcvN$oIBLitjKKcvgcyahTNURM8pYAVQKXQsi1zIY12SDTLTqlmSV5zCXxhE0luGac7cIMDn1QrkCNTh+dFcSN4vClYg1tOy7LFojFK1FI+Veetp7odLI$ofK3KSVazkKrXFBpSon7H-cyLozAgDlmLzYltdfS1H9X1xUWgcbahAUSUlrzmjEj93dma2fQjJ3LnYJM0fATJ-O3Lxzx+766K$eSOVtTzzVnOK4aF+RxcPRmAGIixjyn4cIE3U8GzYgUr6WgcaT3Kyt7e3d5K4csA0C8lG7otMWIU7dcSpBJ3jjd01$JyL4+Bq5gYcM42NDS66JO$LyXrQ5jdT8HKRg3jQME4O0WfcTMWs6jOvXhTRcg8WgkLfb850QbbUoFWnik0k-6plr0C8ThVIG2nyLsVXlXb08E+isVFa9-0g8pRsVzStzhleJKLzOMWvaWMf4++3K4Po1$ytaxdyU+6Wl27SY0+0hbgk1WiW9hVIWN1nHkOJ+0tu7kXcGoRHsAoO1rzy8XBOKI7Qlpb2tKeT8M9-pSKkHc5OvU9XcY-McsYWcHRQfhvQ1-zn3dx02L7TOgJ3LkaTHUKgsVCVlzevBmebofxa0vDLWe7NULR-$FbBKJN81T0G6I+641PvBoW0-hY0dr6EVUK$clrf-cmahK6BWQNjiyazHsAYHteJKo9y6opQtVKmeY+3mBf6ESnTLcRn4sOkMOD+6zx5bMJKazyDSxBXmvpZglH96sUK-e5Ksp0RlCq8$+alTG+PZ5ZecO6lbqABeegJ+490lMO4JVFxOyC4GDOKpmK0cpHqjBViipZLXMOtqvnqDqH-n5frHdQv8+zB9krC0DU8L3e5U5THnp-q0Mdc4Y3OppPWUcxH-N1tdDPnQF$Ihq8mJueay84yMhlz3420aJKfF3xAIJj9DCXQLP48Wark8iWs97jYeaWNXyLPxeIMH6sfNpUOGda96NfAMM0zvZhu7Zy77nHWkqblecOnG6IZgrsLtiZIQV5t0baICaW2gYHp$vtI4P1p58lRJyGmOgvE99dFzLPpLvAn3r2temsAnkqgbHzh16GDgaHBsA5nUdE61kOaIYV2ZMn9jB-Ck70Txkq9eac9gW2E-ai6XNX6oLaTM6eDUGKK+Y-6WMV5t$-Koi7fER76y7+dcaHKIJUK1iBHqUM8G2OSyPcmbenQQrsSayaKjSQR5siDJszByXRl0dDi45eRR8hBRQ5HsOCmqfMK8pcQlNorSn4UtDF0$qyXKYicHfGqFNRcNqrL3VO7FXKJ6Cn56Yqy$lq60cTbZ+80hk$smbnEioPeOIpleKcv4S8xc8UB2pydHi5iBhikobCD1IhKGnSmDC0T9A$mSLN33NbvDd$6lEiROAAF4PHzrE8yjuaMZHDro4q$Gmlm8D29aWjMpQN$A4Qra5GhLOPW48y5jPjNvnu4GaTAN9bnGPqDagizQGYz9vQttDUQ$houX7-SJg4rX+u5o-4Q3Mjmk-RV-uemQLF345dgaAzpoW6yYbIAPlpBkBJ52tuhvALvXl2As7bnNa-zMCBXt2oYk5yqT7MJSyALxIaU4nKZBacEzDahL0AYnIN02EXag$RQJ8K+nKvhBmN18sh6SjeuX4j8sikvC63ElDySfhljHgvBgrsfrQm3F61Ctm5LX3WbDW8a6$c1YLDC68kOHh2nGrTd6Ib74dpFUu3QJ0u$nslWMAtsP$6XkUTjBR45ZgmHQjMJ1gGRcKIumPXle84xk+jFPGLyVd52pyIcqvAitxR8VJybVgG4vRsjgyPKdN+EQhQm5TnOcD-gXEFqSLnxKyKgCXCDyccjKk10$7M1+NKd+4EUzogkYq3KUtFJIbL7KEMMUOUnvV2TzYl$YnFfK518Ik1+1iWvs1lY$J8$v5K3Rd+Lea3MXI+ozESNvb8kWCFCxX1sHhlR3Qx5Iz+Bxkx5xIlb3RKFnCzu$CKkFWx5FjRq8Fsf+kv-R3RRKk1FeoU5xr1XIUsITe+z+$UW+jakaZny+7T5v+v5TU+VxYChsI+QUNxqn3xe+YlJS2eqIplKyWlY+6$rF9U2IcsITclya2xpzmKpUzUZsHUFFil-ItKsFHTsvTKGUTIycTI8$UIL+-vld8YvUPxjF$cfyS+E+PInvdv4vZvhYp+uvYzLTITKOlcN+8nJUde1O4WqTvz0YgTt+AnkUk3tlyE5UpxOnNTVo6$NTI+Un23qlieQF9lBTIT0On1p+pOhsI+heUTG$6nzcQKpl7ed$T+MMzsVgGnMgIE5lQCITfexayOp+DlynxzsT-lVY2T9lQsTTIlQniYplQerTul5eMYglQsQOul5Oa+KbtL-lZl5njs6E5lkeFFIl2Ipl2vNs9lSsSOp+HOz+9MgsI+gs0+6UXYp+nnsa7E5+ocV2gLDE+sJoVnhcJC0iiHJsiV6BOBYUlE6UqOz+gFnsqla10Krn6+rOjs9lanr$UIp+mU3n5+3esfXs3+5UROUoPC9TTOoE7Cq+eBCOB1zEgyebsseVbeE8C+TnmFyEW$5c0BeVmeclY+GXPnRyxR9UlaZnYY1EKEPU5Hmb7z1CIVMTZ+MVMU8VcVU$dBYTkbe$IVM+1VLVUC8BSVUEulgV1eKV6UYSKIZT7bnV7Izl7YB1cUp++bfvQVABBbGY4HlBJb$bQLp$fieYQbD3yFx$DOQBEbqbf$xYJb4Be$VSryMb9TAT$CEi5VOUYTJU5BilvLevMU7RSy5+CRll03RiJgIo1CpfsBpXFBM+U$+WrCaOfbq8jRqfoa4REoEati6b9U0VRC7aGBRCR$Xv7i$n5cDK$1XOngeIJH8a8vMSjafcuCFBhxVOn13cCFNdqTqo5aqW15hc7iXSM2aHzcoXqSh3qWDdnykSmKuszz1KKapS+Co$vAMzcOenKjKydJiii9yE81I7ovYyMjEMKuhCWE8HyPIodvY3iNoqgLOmHUer+XKZzNfBGncbeh1axO7U7f7Fkr1gGmhOpuxtxEojivdb+27dQuKVEJ8xVBm5xAEVOQENh9ENxSVnY3igOnG2p1I7dMd18J8G1X0uo9KPSv8+KViyBKH1xrnXKgIS0Fczh1EmK0dlmLOny10NkMJ8AVOk13GHdFp7lHKS6J8slniyJ917W4B2SzhGH46opcfa1LySy0dSWI8+My7315l6fFSv8kfJgxLz6A1cdYGTmshlpGvY1ukYE199KypT1Qp9pM03B+MFiMgs1UeOeI1MA3OihL7+9G19eYGG1KK2oRzRM0loAuc7xIv5TcBMKV-nyOg5+2lKjic5l8WKg5cqHalKTE-X8+0+ZaR4WRcnA+J6gIIUt+ZqHazVvJeEhWeM+tZLUiRQSWmt3NMVya1iailVW1SjbaejaV7B7E+SSnj4lneXT6hIgOyOtMe+Or1+M+3JK3J$S2T4Hnh3-Dy37+-JHpy7MWx4aN1KnHT8BVl6zVT4eQM90MzetGoVaTPBKzv5t3zE+3g19vK1yvgUlloel6coM96E8iaRZBchjc8FJ6gRWFWqv3mr4$IF4Rl1WJs8TFHaKUUuTX-8+FeMhs0LKplGl0y7yOMZ6407gv51ml8fUEjMyYmCZUg5zz1TnC7PRF14jDgUc1zbINoKy$x5zf-hatBBx4hc5MzeAg6qsBlMMsyOcWR2TcPDhajg3cWKtRKpt1RQIMbAehU2UEjac2gh6p+Sv4ZCoszQv5+EULyD441V0MaDe4ToAm8jeO+s+OTuzjs8tRcY6pgjWKMZTj0CJhTjH0c5MIRgshx4lGapU8yPOJyEMsRP5PeEtP07tKT$TP0A8slZHZ7ZeOyZ5KgcgZ1Z07Uu-Zs8+J1OKu-$ayhu-bHYMsau-us8Ku08R20JM9cf9u-Tnb5uZPeOcbWIlKUKrKr-51gm3Ftdju1ORbJjOWWK+ha5Wa+CThxdcbz1Q1ydtOPUh0jYhpyEKFJNzV8+MD0PyQc1$d+sU6gRtbUP4dGuxMUP5NntReZU+5RdkWyNgmioUMDB955MkxPZF8jXcaKaPazoU20EMduqIYhMThl1KEs8TRWfmJ7-tuaqUWlsJ$iCWCJON4obl0RiT6KP+OanO-PDzq6tJObZThxsWKtCc1j1obM0T1K++T7183PYXCUUu6RlRFTZ+oyOUUh0TFc2MtT8jUhiDFjihDm+PNWK+iGOTDnPhNy4UUM0y7tO6bj6eVB0L0fYlKarPFZ45GcPy-iiu0YpNdhpp7IVejRBaNHp$7Kppp$M+3niL0EkeiPUUbzbKlbs3YpJT8SpSiChNps8l6uhG-sYG6DXciCZAaWFn6Xeq6pJ+Cc1i7GvRTS6d$1TW1L1chgdP8dUufy7guq2lNhuJT3T3hXCyGQGlqP0bXWfWG$7tms4P0oezHTko3yIxzQ-MlH6DGE0XR+MUoL1yGDblI+OR1ERUEznKRJ4joj7EoubU7GoLFZU9WLo$7c2+rKdOOtSmNzWCWd601c1ATgPWfGR+OyEyzC1GQi+WfrGpzofD33CgfrW$GpfL4-pffLPJy$7yDhz8qUqzfDzTWCxIfpgH6ucVok4KcZaytMtzt+XA4eOheD9Si0-tD07AdC8ytR1iMMd68oITBjfTnIvxQa72kb7d$NXAzXQ3EMZt1LedlXmZiEm4V56VvZ$po+1h0zuRr7Rj6myblDn9yQluld7hIM-jMAoceu63qcqaepe$WaMZa+TzDlDcDzf3OrOSdnpRBUJzVaOfiYpNOjDaOuZ7P-yC8tm1rM4MZM66JoeKGoEyCj4l10rK9coKfeEKArAdK7pBKtQuQNAYrh9pKZjH9Y4zYRic0EAfHtOUM+Rm9LQ-DT$X9LzGqy7dpR6Ep87YVzFOlGMj0bmEACzNmQpa1MX0PyCApK1tkYcdcktFJTQuj3V0j00xCKkxpftqkdk9zkUxTsckNhS$dc5$SuQpSNZvSkSZjsSCzQSQKUQKiLMzVKoYWfqjcYWISkNtHGWXSkNjHL44MNOckGLQLdM$4KoD82LELYHkNjLrbRLdkxCTqnc1O+NcgGMydR1YWTW1Ia$GjHcCiTq0krVFLDqesKiLfDDtlDJqjHMRFAEAUy4chl+UpobeOgnfyWb+mGalGVEBKtSQ-JN-sWECnLEdyk4cqcbc2lIgUyTxEUErFZYTEdIA1Nj4b9c$LePtEkj1BfdhYMerEGncMtcuaMGk5AoKxp1lEXVrlvJnyLnubyvl0R2jUtO23PiuLZVSqzAr5ytlJvmLcdK3a3V5TB--Yz9dyufq+U1lVNjne2o6DiiBX-NztC-h4Un$3T-zFHhhtjfgmnO0quf+5QqGqdzfbMZzVAq$kpzukNj7qY4GqRn$4fb+6+qufKopO2eHh24D4rikI4J$4dkirdkqS5ixrL4C4LhjMtfFrf4ufA-n-34LhUvjC7aQ-7qQ+CJaakqG-HhIJDa$JcaXicaCNfpSaGqX4L2t3j2$yfaDoa8b8jfMJRuarCnth9qCoLU$MTCM9t3ToyqTrY6iIgL34LXL$0aX3QrGTc2x2YR$soakQLNTXuJAXfruXDrpbH-JOhRuRXnfaQHfG5Va4uUGbzlxFDqnFCBg1vFkQpcY2GqEvnORBc3QIhD24ksd2CRfapgMOhOhRpCpO+A9q$OkUa4NsNdMEcHXCE3Xs$sufc$NnaiyQaCX4YWkYtgfyY3fTNFHNtTuiRiA5cfEWmozbrV44YbXlgtyE$Lc4-bdaDVidKJp-YrDbNpapgvnYh-dCCaufl$+iTUzbNbU1TCdbKOKIADNOAUMeDDp1tCDbNCusNRfaQ$jfTXUYodcWcQobuTnVYPuXcMjfzP$5cWcPLMc0MPGIRAzbD7c+NorLIZpPzdM-u-QZGMMAS-F6cblZXUhDT-NY+-YDkqQ$z5Mx0u+FNozbGMkobQXuGElI21CPv3XYE65dPu5mbbDb$iOs9BdhcU4HaYD7GUP8JK7glUKD7KcIK2-gPW-$-61k9tnvhsQdUTMnIYumR6qLvIB1s9ttM4b8A52zr$cbJU9brLOUUGcmRKkb9V0nYDG80Fj1iAdANyTHVmoPOCiDLO+ozRANKi1eIa4Y9Ggc$D+81IMr$fa46Spty9nQUUezt8XKsGIR263yzEck4KMThoRFxzJI-G1djy5hUezX9JpA8WMyXoUaDkV892oTf+3mU1m9ulTBiLUOIi1Ke3Kl9UNYl+dKeIrZ$xVVzUigry4FJfhUAoU0Klm8rhn8s0oTb0gih1fgS2TAFEN6ii1VYo7p5sDqSMmXhKM+dRo+a$hL1f6U6XyljqN7XCJM00yQcD6dMi1ziapDozJzqBg12IJpRBHJa7KP1QIsYQxTXtLx3UArvvLAo2pZpGdoLIeX7$AhI1mTyrx6gqszc7StS3O3OShSIa6mRg3O43zYzPqX5MdvLB0ckfPqp1EE1mV7gkX5g$5adPOt7A$eWLDKA1vLoYfMc9h900dRjScN5luauSZ71UsJz9vUKtSjdioTGgjL7vH$32zUm7tQTM2p1BoR$TOcjgczblKrlUn$zS+M2j1CTJ1ytT2enqRSgM8HSfSuoUSyH9MS0UslUzIoR62Mqcovp6cYKzH4dKroeaez5KJADPOU0YNEl+K31XdYOOfRQaA0mKkf-9jaK+eAgHKlhTEF1M8Yz6d6toyr8yDQHXa7Ku-ZOOOK5oONZQRgRI+d+RO$oizAIXmMIBKe2KCHa+Kp7n3v2hKlOqh5dtZa08926esI2pZ+1NUh+ndeMUri28-8-HVI1E1Xxu82TNMSfJ3AValtRvLoILtpR4o2-toLoFKGOB$liNIa+4iLv8Jh0WL98vhm8HO8p3BR3TIS6S719kKIa7YV2FIqOEM5UARTJ2WL$MZHiNKhELM$6XOI72QMGcggcLtpg6c7Srg22ldcPa6nlyCloKAUS843bgpFl2cALROL75PSIUkHL5eY$7-+fAaCotL1ETVKQRblEo6kFDOGZAhDT+orO7MlUKegWE5cS9IdAlykLqg-qTYuQc6IJUYIsKoHH2-dl6lnMq8DLFZWNgoMC2szQ5UflJIkthz1WrzpUoEUSyaf7JXlSMlJ9SAqoOW$HJKOHV6ae$6J6SGX0dh6MillqzlcQOSF8UtngGJesY9OaiTXK0gJ50OLASEcTU8dD8+1tcSHAYV4NFxdYF9onUu+73mLgiMNgMVCCLacg0ibfl8jJgggHgK0l1S5+Qcb2P53AyrBvRC2yqQYxiIW7ntClT2Y8k2scMeQoY8K1BRmUfK3LszOMCgO3t6sUtASnLBYJCse8Z+bOAoZgMt542FKrXSK98sMke2CbhbcW+xY13iOoWGnD6hAEM9X+6AziYgUvmT1pnal9IgWWSlTaN6Y+ynv34Il0FrScNfVNzl8lTRzJ1+WBYKyvP2aa6JAGeJ3PgVoAr2JyyC426YX02x1HA0bBKKIsYSx57DxbqWzL$M+dzdKoxrWgvGhRLIERXKxpPljR-BiPaeiYgJv2Oo1JYX7EmhE$kpp6yQceWT1tv9pOEgNRBba3RUBom1RdJpWUgYBcKzvvO5csEhBez8HoTbaVUjJlBf7Z39rh0cZ3TMMi0dUX5TCDJP9OK0195AB19qxIAdZMcT+2I9qBUJCcl2W3CSN2IHGi$kSNULiBH6nv8cec5bHiAUdKmz0ScLAgbiXyncz5$4I2Yg$MenxohZ8gMt8J0xx2$s8gxdnOlK7gThpgtJWdOldMxmzt1tNfBc3Kf82UIs2NMtSuHDBqon8Uyyoiyfy1FChGbOoBcuH9SLhP$TR-pz$fpSrNZ5HWT2CuEDpn6VNVVXtiRHPIn6649R-qOUhuIeaMyMUgNi08tg8D5dhO+1xsLYO-6bQ44Hii8L-MHx3dRtTF$6theU7NotTROoYKDKQR1EyOzBVILJnJCZ4S0QWV0cRzA7pYKzNOKX8mhc78ri-taFVfyBlTe95zf9$0aviS7$tIDjoatfTpxrAnT-RToav9$hjn9J6D7s4XEBV-Zhhjgq32fPxK1Wm75cLa72kE+7r32eV9B9zgkMK19ZaXFiKG5K5G9eJPgeLsXLfSpylOZgvLsf2S47Y5trVsbvfyEBIGRT-tLejX-H2GEqqnK-iJh0BIh1xTCXFBHK$Kvh2knece3AM7Qq-ALM-Ahepz8+L2zbF1zYcuXI$1yjkJ-yKJndt8ezbMAKhs$+fNm47v6jIjd55gG+9OA$2ZA3iJfTk1zGDxdaFVzHkUlzbcH-ynvvvEE3zovx7l-vKyWn4KA95jXY-o6$Ea3HuUKv3iPEgiIoIO0M9EcKRL5NaA9OMqi-R1++fp336MaK-9tsE+3K5q3X-B+f+eAMtBg2fK-EK+m2zPHH-RFV3tPf37o91zBHc5RK0X6DPiKIcHfIg+CzpYcXWIIoKF+1oJcnYF1n5yKV+oovSI6HU0ydVRKlz--RaothZM6WQ7zY6G008RiEzrmH-y$+NfevQW9I4iI+8qS6V817gWf3aCHM3MrDWricgRSQnfVjiWvZiXy5KdkYcdgfOtyO8v1BVP7Hv3JUDL3W1+AuhfiJt2oryNKJCeZSP20cLRRMu7zn1Zid33rXKsY$2iUI8YFR-oAoCNz3aqIEKAUOfqn4Go4bddceEiyrFs0xUxNsesb5Q88XBW1YB9FiTgSRfHIcNNAUhkMKTW$bddK$cdZBgGoPsYoMA3ksAlWR6cQOsiuhJHhzFMdNWMJsK0dh78Hv410IVSZMh5d+i8KC8h6MxcslUsSndgG6X+eazPs5R$ISG0dyWqQKqX99VyIYy31hcFXeJG1jc+6zCxezQKYRtOady8d0x71o8tGWgDTSEhZM8btcBKtWIApDAOxPKJOcIVktvJUR+5oGUycqcUUXKyJnUUyaMraKtiEJ4xIhKeFz8bKfI7+Xdz9HVJbKdNndMv5ex0QBznJ3-fAKBx19txiIc2V4JZXoUFx$K7$Ft-mFG1QPJNmJ5lWgM5Wfxbg9ocKJQgdNNWB16EKezVq1Q9KAt5szPOvxFMLf5AmmA3-TWjIfedYlKcEOpKgiL41VaDf427+ReFYdVJahqsDWtIDGWfy5fXi17WdWe+m+4gFJEvSJXK138KMTgvFNpF+txS923-LU3QFS+5F2-HHxf1KLKGcl$dQzqx5OafaGxGHrn-YAIk44o6M+IC4NVNRY$JcPc3841DL70PKUQKSVfXKyfeI6lKKeJQg0g6UVYZcRfyM3sNmLO1ARpCnALIV+fyDV3DocjxJEqhUeJJRdEALOd0szt2E+n3fVbOWD-hRqcqH2p4i$MKA1Hd1pK6p$SpaaZazdNFO9ie+Zasl+ZshiWt6dlaZDK1pAzl8mlfanHvPn-17cd$QhgnD2H3HqSLpz2ZaDIDgxQtTb4Ej8d1DdGYtjl2XPLDREgMHt4AUqHEXUpheg8ozZhlHcUDyekM7$q27v60NOUJHDlb30E1ONoeDAzlS3ZLIBzJ75G+lDX6E10cBstt$U1K-DaYpAeTNJUJ6jnI1N9sFfz81YOKHc8v1Pt00nb6z8Opvtd8bBQhjRdOMWK-tzl$R7bcDC1tYqrN1$gg9sOyYltVioljBXpDdeYBVoWRHhl8U6svizlv$-+Fon$LRAZ27F-FK+nTHO$45YdzLRn0hebvQNe2JJ9hz$d4maBv$1qavHKs9qcK7c9jTepatXKH52$HLf6DNHvqo8ydjjpYH+e-5sUPhgJIBadf-x-luRJqx11MfGq+lYtJtzyN2rtq7zi3choyQsy0BLUvoTSqQp0stVHfIFsGx8fosrtEBQk+H57cPeSotvMF39y$D+K59Xgcfn2zB2Ea-MzIg0jLHng3a+Lk84Di5FiNHnfNTrZdjBlM18sydOlvxn2qRLlHU0S$PAiFzPsReDyMKyxSq30zffDL+MHqKzfid0ClpgICtT8zJUYGMAxW61RzvNs0C7dPb0daJjMHUc5KLUqGnNg030f3OcUrNatpaHZyv4cUFyJaUhc-6ev-GIxanyNNPfH4cUV-HONaF$KJet08emEaCSlCz1ChiKjXxyMl$Rlk-n-OWvxbE7H4Zpi-J5WIS44OQ49CDOBp0zuJt4D9ijZEWHBXgO$dAFD0MaKRJxsN49EM34SnYRz3ONKsl+gLiEv$vI6dLsog2Ayb3xVexWetTlyTU73Od8J+6-PHHrafrhagc9Z14UJciSpQgoltDFLrLbS8DU-HMlLL5cdk$XADZNgYnWo7VCT0$yRII3UWG$kMax++LOz2EZNvhgZ14KWCgxdUXzgQcP6-JfxyNfVO6Rvts5YLGOzXatTPvjQUdqIzkC13BF9JsHxfNNjOaKoAKkgsrWxKiaMckQ7J3I3kr$+1c4eGFWUR8r0eL3vBtSP6McIYyDaCQlakYOckuWHy4-ZO5lAMkKkDIGWMTY80RK9hfoZpiI-rWtAAlbca26IKfyqAAy1nABvJm0LcpAhvU9NOOYYJJR$KdOkbgiBav-58GcI+NLdHNpprDsTcaSGlPIpyG8pMsXHFKKI69i9AMZToWlkYU0Y9RdsX14Y0Bih01$4l0jq0BMBMH7tNX22dTeaGc2ScrHIAzlD87rAAUG6CnzKU5jvAAUoPCFJyYYuG6KtUzszenMkXSiARInLc7rPasd-dk62OtE0YY5pvt3Msmc+x7YM7-B01aaSZHEW77AMdiOoIeTea7Hq1N8jTpnlQ51HPDsbK8s$2M2guydA8xkpVTGr0p1$+zDBWUg7YJH2EPMjClZgWYa$mdfTa6AJ8hlES8+q$JnoKF5y77KA4oyxJqpWYS0JUz5Dpa4COYz8ZdhZo0OUhLn5zEQ73MxxY$8E+JU3VyRTYU$zl+JaaBENHBRF3KgLfczU4MYof1K4P-htKmXydl9rA0b5JhT9AznsgRL6UnKZoz+K-2jzbYDGZgiQ3Z2MMH1GytOI8BK1KzPyvz47hJv83RL6y3G763dTva-2mKfVzGO96d36$FUp8B6HAMCUmgS1aedf2KbRURFmQq6amAOBy3Wz+yjvMx0TJWGvbHZZHghi8L53Y1-$yG-1jQWHJhL$$ViZ5QxKGaCkNus-5PBZLeHJjKqohRE-KIk3K0gYLnpq3mR+eBzWs6dTJjdMGloee$ox7lAprpxczh-n1oX5dTPA6h7M+fsXNm0Px9efLoKaXiClJem7rMu$f4OhMBUvL2nxadqaAYYOqHfTzVKze62ZB+K7hNJHQSoN5GpxUIZ7DatIhd6WXU3+6lezz7dXl97$bj3tj3C7K11hIhxvuTM++Kvsgg6C05NVhf8IRn8kMItDlcOUP7+6TClMHrLuciec6LT1gatbmUTsUrcavP$4BE42nVusQOCAgv+HO0gnz$X+AivmpxW$ttbKEvKvFxGuMc+Jfb3FBBpDQ0sW96u2gdRMeMlX42lniZNKEdzK8MOZjhsb4XlhWPyMTEKi8blkE2xUPaHciCsXL8mGrZyZAi8utyCt7Lm7DhuBBMZEDMMBgJFsbRXI+LGGk73UUgZN7J1WbeQe+sCBiXz+q7AqH2ILM4Qha+ZKehWMqhJT8Anb8abhUlx$-EmxKljrl9oUJz801UZpdXbHsVFSgBSNaWe4MUlHqhK8CJ+xFb5d0pLMG7qY6BNsedVBes8+qv0Bl8iVk02gsYPsc2B5dlWdBmiqo5TeHh$WrGVqDpFui3opR7bgNbvf4n-LSgHcL7K$XFX$GVYk3gQTOLpnYv2ecHOuQrvdx6z+fGuF7qXpjRRkLFP22c5bHrgROaSMI2cBcbd8yEqOC8U-yxMYFqvoXoeZHcBb+9fJ6Sc7DSUmgPr+UCCliDZ16IEip0s0XicG0hBGFrNWII+Qy6vHM891OIyEOVhvtH09d4VaWS63Do5F3xiQHnU$PXemFxCOGP9qOFt-kF1Ef7DNZPC-$JeINku2icVxobarMN8iS8Zfs7Fk3IVa9gMZF59HNF$iSUmeg56s-XRBNbLZhLN+T-rFAkRVtAxAIe2RFRW8$fnzsUj5M44dfgbqZsha-oLY55Btv4FIQgeOopX0ddWHvJhYUWgQXoXUAov5RAU6aIMEAiYQVo8LKtgJeeiHSMMi$tpgRkdoWg-sAhQgIhb+xeZqUpOUFmShTk88tys+1ag2OeO8MNcK7viKlGUv6VSric8WOb5Xnqj5RRF+JBLWc66zQm0x8mTjZ0v6RHLJ-+2g9ROvzhDqV6qu+avlMKk1qhiqBJ01cWsSgGlKqv5Y2+J6nHNsoxI8tRZoz$DIIkqB7cV+7joxqs5t$BDROq6xQFsaGA8+ROS275Tstq25$sero0hqLhJUr9diY3jzfyPe16pyb$3JbMChq19j8pRjsF$5SJXmbulDbhDzXX2tYT8Se1UKAgHR+iSbnxo+1yXQ4YdTbemIJBlHSnfWL5etW2LCxPq86Q0aFq9dRM-fo6uGZsqtDAC7pSpO5nC9E4nNu4GBJGP0JR-viSnr5c2oh3dLgClAtACjm4v+rG8HExdH5nZCDFuKeez6XjOFtYS-MSnNaeb4fNCDSMYr4hsVxPeTQQ5Env9Q0+MqjHlcJpz6dWmJiPDrSZtomEhcjqtDnR+nXGs6TkhqQlCTqB5pDOKZXHfndaq9DtMFhrlzBn1jWvFnbJdAX5tS16$zNR9EDm0k4ugS8kHOXsxX4e2MFFaiEO-vixWGgl+iAzxKI5FSZlLuJSs0jQy4aSlXdN1WhAxTU$R$ydrdPsLheWWezE9smcPK3REBVC-7qvojesqxuj9AVq8AcsOdcK8YeIDGpaMltf2QaH0nrn0TfCpBoRBG6leYKBJq+pfva2AJ3EvRZG5Sfr-n6mKq+vdy+24c67N1$E-W8ygOWrbKQen3UhRKJ2cp6hGROKeT3YuTxrt5y3tJZiQfzIvHMbK6eMGNRJYjULv$02kuDUnjNyLe$$+ARb9z61TEHWWhs9+mZUHe5yu4a0-aUSC7K4HgYB$hBR64yvBsUOdiaqKial7lT$Yx$UElJBiB0IUOLLhFR$7nHbvpNp$h0ll4Q7Bi0eu9AhCHo3A2SSh$nfVzPierD6pR1Pmh45U7oXp-MYimGMXlpsMSaEdj782FDE-UqcbKnP8fLe6dNrn4elEN5qhn-L4knkEp5Um4WMy8Ge02lHd5q1DDbxG-lVlVkmXSubqXQRofxd08Pt3aXNmA8FV+21oKpR6+Y4+-20ti-0rAtMEDS6UKFmWHOy+jHL4Y9osS-T+Y27MNN7f-jaglQh7y-q7x-gGlVrG46YYPv$2nk5zfEMSWdnOCRvfUemx$69m-76jVuW$E7UKQ-dFD4HQXVXhDWkp5zJur5UaaH98XtfGS7yoOjhbB+Nev1UpmseDRnV0FQ+7DXcxyWXMHZL6ert4pI-YOZRN6vDT9nhg8ORt-44H5Lf9A8LR8VfKa44U98xgRo13$C+Zi9sWEtmLPu8nZtIy-zW$vOlkoXcPha-7TMTh6DXoMiGTih8KnJq3JLWh2AiBTOBIHCII627t1gfimP2LElYoJ69fVRZEt+yRKjnHfVv+7IbT$M+LG+3FmrFIs27tlU5Us80zC2GeJgeIab3NKmxxW$J$uaxKr0xQWRfLMDamFDJM3tgk4dtmgAf-VD-oTM+G$Yca9HD6GhtL$N-sUMPlZsVyi0uhc3QKgCyclP41OjoMyMSylqXETc1DHlYWmhTtm$8fD9gp5lmIRp0u74HPDGzDLUt7n$xKsD+iArYDKnHoNB091v8AoK5SANalKGlapfim2MmQ8eCKmaN-nQ4OhOEl2VjlbUWYmPDiTbrr5CtUTa-or139iPcLsPd4MK1mWfF-xaGd$jiVKJvncjSYK5jZSt1gSbuyUFCiDXo6PpZhbVM2MbStXO+W6oAFzz0bbM+VNiGtcEj3dZqDY3HWcati41voRvDki4ENj9bLbbrRD14YE8UdMXDZqSQPSY4k3T3rn$T0eUJ8LbvVZv4OIAmjc2Z3XDDjEY5mFj4Tza2ErxoEhpbK-vocnuX+YcMBd-$o01Q9FcmN4Uf4bJ2JPM9mCrq6r6Kk$O8M6DLd-$G6mNjOxpWiFD+3QvusanV$Id8hFk$Ixr6OSIt4UvtoKiazlY0s0+AyI1r1JZB8GGJp5OErgtZEYzE3SUGc$FKCfijJOEAt-zx2Z2+ujO1At-Ke1L6q6DSPVJulIFZQdiDNC8qY0ax7aKBD6GtquBu2JrPQ5uXNqEfKN4t+COmDz7F5yDmRixGa4QmTqXOsXWtvOk7ZFl8PZV87W7$bVGec2JlppcleVx2AIWi$8jtn399BBBn9Y0pjNFusyd-jDQdojQTNr+PqbSpZkRXTYps6vIkHODFaTQWAMNjcIZNDByr2$gGibLfRnxK9QKAv+5gjnS3lKSYjQdI4iFjGn6rrCp4-lZKNDbdtpgOPM$7plorPnuD72LhHQAm1Vx7rHS97BT-N7VtXjaE8$WMy4-uq2dayIyK5Ar-1OlI85db8r9c3F5LcvYLJZ9WzEc2zHzF0DF3iDvt0dPLfo7z1f02az2AHnmGeI81TfZTTS+83T3Bf-rPiExgvJPV-sCMauqfmuJKSF7vaPl7xhCxp6WO1Kkdfsneskzqr6TfrvNYcKZZ+lxMauD$6KHhBZDR-dDsKVkHh9RZnTN95KX8o56pUiBmzavAnOuFjQuSX$rrb8DeZ3UD4C5WWkNep1TMRD0asrjgkurTdZNM12vzS7MvYjkF$+JsBKz6Md+ZYHvFzkSrlaV0GaP$+aGS7OFeKKK1R1gK41RhT0UWIx1WKPIRAhVVKVCH3dr1MnK7zHKFZquMftHvZ$l1Zu7KlKAIc1c2uKKKv4Oz1c$cp0K8KKc90uDP1GKOuXKa2u1pljG88OudDKF8eKKdKF85KKKcyOuQD7q8KgSonzyaKK1cOKAITd81KkSURV6KOuNBSUUOudrndiy8adzsigl+UczyeKcVKKKVKUKaKKYudNvcKnAcMzfKo8yuc4K+uD21VnM-aPGWOtyB$Sbuzvlng$iKupVS5KcWKizyiZdUeNHMmxWIKTu1MaMKWKu8tKzWOzKRH8OKk1M1zWOgKMBK0KqKg1KhKFKtdaGKktUMaIB+AcUafKf8AKaxKo9JIa$Kp1UOzNKV8AjGQKGjiYa9KP8tYz8Kd1y1pPK61hPGmUhWbpSZ1nRKMKKK52Qc4u31yOcaK+Dz-Kp8XMAfa6K4MhPGG8XBQ2dS11qaIKlKjMjOcPdsaQ5K0ilLJ-nglK-pDI$zM0UI4hAjtlgnPdZDXrvp+1IgKn78UpKfahdKOtZhAAZciQ15OAM+oHfne+3NHZ13z2KczyRdzVHH10jfv08v-p+MvAyjKKIvrKyoSIIWxsGc08B8cobQaq8CCLlz1K+KK1cAKvKUMvLMAUarKpK9UU8KhKRYMdKE1sGKHHWAUh-Q19yW1aXHogg7luK$SsgTRtEMlM++Ki1ylliES8I0cYgTOsGTWMkzUif6p+ZUmlM761QUtdcH1K3LAVAxnX8k1k8-pKKco+IyVEPdnzVrGfe-zo$OzyOo8Az9HOYj7SxyZDpMvZx02Kfa9KT8cMvOURi0MvaqAIUQzGKKKTESKnUKKcmtYRrK0KAUl8KpKZ8aJaLK6GKrVclWHb$KKK-XNz8KK" + } + ) + const body = await response.text() + return { + cfClearanceCookie3: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === 'cf_clearance').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0157({ + statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + clientLocale, + attributeAriaExpanded, + session, + origins, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + statsigpayloadDynamicConfigs217573384Value, + authstatus, + userGroups, + url1, + variable8, + variable9, + urlAudience, + evaluatedKeysStableid, + derivedFieldsAppversion, + evaluatedKeysCustomids, + immutableclientsessionmetadataAuthSessionLoggingId, + variable18, + continueUrl2, + continueUrl3 + }) { + console.log("Executing request 0157") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/b`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": modelsProductFeaturesAttachmentsAcceptedMimeTypes, + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//auth.openai.com", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//auth.openai.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: JSON.stringify( + { + "writeKey": "oai", + "batch": [ + { + "timestamp": "2026-03-18T04:52:50.615Z", + "integrations": { + "Segment.io": variable4 + }, + "event": "__protobuf_structured_event__", + "type": "track", + "properties": { + "eventId": "1ac0e9a5-bad3-443e-9dbe-9509cd2bc858", + "eventCreatedAt": "2026-03-18T04:52:50.615Z", + "eventType": "web", + "userParams": { + "userId": "", + "deviceId": evaluatedKeysStableid, + "authStatus": authstatus + }, + "deviceParams": statsigpayloadDynamicConfigs217573384Value, + "statsigMetadataV2": { + "stableId": evaluatedKeysStableid, + "sdkType": "javascript-client", + "sdkVersion": "3.16.1", + "sessionId": "4c71157d-7261-4224-ae34-fc38643d4d6c", + "appIdentifier": "login_web", + "appVersion": derivedFieldsAppversion, + "locale": clientLocale, + "language": "zh", + "user": { + "customIds": evaluatedKeysCustomids, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "locale": clientLocale, + "appVersion": derivedFieldsAppversion, + "custom": { + "client_id": "\"app_X8zY6vW2pQ9tR3dE7nK1jL5gH\"", + "app_name_enum": "\"chat\"", + "originator": "\"\"", + "AuthSessionLoggingId": "\"af0081e1-4aea-498f-9a49-344ed42ee061\"", + "client_type": "\"web\"" + } + } + }, + "eventParams": { + "@type": "openai.buf.dev/openai/protobuf-analytics-events/protobuf_analytics_events.v1.AccessFlowApiInvocation", + "authSessionLoggingId": immutableclientsessionmetadataAuthSessionLoggingId, + "path": "/email-otp/validate", + "status": "ACCESS_FLOW_API_STATUS_SUCCESS", + "responseCode": statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + "latencyMs": "938.3000000044703", + "page": "ACCESS_FLOW_PAGE_TYPE_EMAIL_OTP_VERIFICATION" + }, + "clientMetadata": { + "name": "login_web", + "version": derivedFieldsAppversion + } + }, + "context": { + "page": { + "path": "/email-verification", + "referrer": `https://${url1}/${variable8}/${variable9}`, + "search": "", + "title": "检查您的收件箱 - OpenAI", + "url": `https://${url1}/${variable18}` + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": "145" + }, + { + "brand": "Chromium", + "version": "145" + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locale": clientLocale, + "library": { + "name": "analytics.js", + "version": "npm:next-1.81.1" + }, + "timezone": "Asia/Shanghai" + }, + "messageId": "ajs-next-1773809570615-18ac1c2c-8606-44e1-8410-332d15b365df", + "anonymousId": "deb69ff7-6ac5-48ac-9c2c-860644e14410", + "writeKey": "oai", + "userId": null, + "_metadata": { + "bundled": [ + "Segment.io" + ], + "unbundled": userGroups, + "bundledIds": userGroups + } + }, + { + "timestamp": "2026-03-18T04:52:50.639Z", + "integrations": { + "Segment.io": variable4 + }, + "event": "__protobuf_structured_event__", + "type": "track", + "properties": { + "eventId": "43bf7756-ea6b-4dc9-ad0f-a22a8ac6642a", + "eventCreatedAt": "2026-03-18T04:52:50.637Z", + "eventType": "web", + "userParams": { + "userId": "", + "deviceId": evaluatedKeysStableid, + "authStatus": authstatus + }, + "deviceParams": statsigpayloadDynamicConfigs217573384Value, + "statsigMetadataV2": { + "stableId": evaluatedKeysStableid, + "sdkType": "javascript-client", + "sdkVersion": "3.16.1", + "sessionId": "4c71157d-7261-4224-ae34-fc38643d4d6c", + "appIdentifier": "login_web", + "appVersion": derivedFieldsAppversion, + "locale": clientLocale, + "language": "zh", + "user": { + "customIds": evaluatedKeysCustomids, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "locale": clientLocale, + "appVersion": derivedFieldsAppversion, + "custom": { + "client_id": "\"app_X8zY6vW2pQ9tR3dE7nK1jL5gH\"", + "app_name_enum": "\"chat\"", + "originator": "\"\"", + "AuthSessionLoggingId": "\"af0081e1-4aea-498f-9a49-344ed42ee061\"", + "client_type": "\"web\"" + } + } + }, + "eventParams": { + "@type": "openai.buf.dev/openai/protobuf-analytics-events/protobuf_analytics_events.v1.AccessFlowPageLoad", + "authSessionLoggingId": immutableclientsessionmetadataAuthSessionLoggingId, + "page": "ACCESS_FLOW_PAGE_TYPE_ABOUT_YOU", + "previousPage": "ACCESS_FLOW_PAGE_TYPE_EMAIL_OTP_VERIFICATION", + "transitionLatencyMs": "958" + }, + "clientMetadata": { + "name": "login_web", + "version": derivedFieldsAppversion + } + }, + "context": { + "page": { + "path": continueUrl2, + "referrer": `https://${url1}/${variable8}/${variable9}`, + "search": "", + "title": "最后一步:确认你的年龄 - OpenAI", + "url": continueUrl3 + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": "145" + }, + { + "brand": "Chromium", + "version": "145" + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locale": clientLocale, + "library": { + "name": "analytics.js", + "version": "npm:next-1.81.1" + }, + "timezone": "Asia/Shanghai" + }, + "messageId": "ajs-next-1773809570639-860644e1-4410-432d-95b3-65df34decd53", + "anonymousId": "deb69ff7-6ac5-48ac-9c2c-860644e14410", + "writeKey": "oai", + "userId": null, + "_metadata": { + "bundled": [ + "Segment.io" + ], + "unbundled": userGroups, + "bundledIds": userGroups + } + }, + { + "timestamp": "2026-03-18T04:52:52.476Z", + "integrations": { + "Segment.io": variable4 + }, + "event": "__protobuf_structured_event__", + "type": "track", + "properties": { + "eventId": "69475f96-9e96-43ac-a35b-ff82c355db77", + "eventCreatedAt": "2026-03-18T04:52:52.476Z", + "eventType": "web", + "userParams": { + "userId": "", + "deviceId": evaluatedKeysStableid, + "authStatus": authstatus + }, + "deviceParams": statsigpayloadDynamicConfigs217573384Value, + "statsigMetadataV2": { + "stableId": evaluatedKeysStableid, + "sdkType": "javascript-client", + "sdkVersion": "3.16.1", + "sessionId": "4c71157d-7261-4224-ae34-fc38643d4d6c", + "appIdentifier": "login_web", + "appVersion": derivedFieldsAppversion, + "locale": clientLocale, + "language": "zh", + "user": { + "customIds": evaluatedKeysCustomids, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "locale": clientLocale, + "appVersion": derivedFieldsAppversion, + "custom": { + "client_id": "\"app_X8zY6vW2pQ9tR3dE7nK1jL5gH\"", + "app_name_enum": "\"chat\"", + "originator": "\"\"", + "AuthSessionLoggingId": "\"af0081e1-4aea-498f-9a49-344ed42ee061\"", + "client_type": "\"web\"" + } + } + }, + "eventParams": { + "@type": "openai.buf.dev/openai/protobuf-analytics-events/protobuf_analytics_events.v1.AccessFlowUserAction", + "authSessionLoggingId": immutableclientsessionmetadataAuthSessionLoggingId, + "actionType": "ACCESS_FLOW_USER_ACTION_TYPE_INPUT", + "page": "ACCESS_FLOW_PAGE_TYPE_ABOUT_YOU", + "field": "ACCESS_FLOW_FIELD_NAME" + }, + "clientMetadata": { + "name": "login_web", + "version": derivedFieldsAppversion + } + }, + "context": { + "page": { + "path": continueUrl2, + "referrer": `https://${url1}/${variable8}/${variable9}`, + "search": "", + "title": "最后一步:确认你的年龄 - OpenAI", + "url": continueUrl3 + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": "145" + }, + { + "brand": "Chromium", + "version": "145" + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locale": clientLocale, + "library": { + "name": "analytics.js", + "version": "npm:next-1.81.1" + }, + "timezone": "Asia/Shanghai" + }, + "messageId": "ajs-next-1773809572476-44e14410-332d-45b3-a5df-34decd53205e", + "anonymousId": "deb69ff7-6ac5-48ac-9c2c-860644e14410", + "writeKey": "oai", + "userId": null, + "_metadata": { + "bundled": [ + "Segment.io" + ], + "unbundled": userGroups, + "bundledIds": userGroups + } + } + ], + "sentAt": "2026-03-18T04:52:56.619Z" + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0158({ + clientLocale, + attributeAriaExpanded, + session, + origins, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + statsigpayloadDynamicConfigs217573384Value, + userGroups, + urlClientId, + urlAudience, + evaluatedKeysStableid, + derivedFieldsAppversion, + immutableclientsessionmetadataAuthSessionLoggingId, + immutableclientsessionmetadataAppNameEnum, + continueUrl2 + }) { + console.log("Executing request 0158") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/b`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": modelsProductFeaturesAttachmentsAcceptedMimeTypes, + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//auth.openai.com", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//auth.openai.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: JSON.stringify( + { + "writeKey": "oai", + "batch": [ + { + "timestamp": "2026-03-18T04:52:50.637Z", + "integrations": { + "Segment.io": variable4 + }, + "type": "page", + "properties": { + "path": continueUrl2, + "referrer": "redacted", + "search": "redacted", + "title": "最后一步:确认你的年龄 - OpenAI", + "url": "redacted", + "route_id": "ABOUT_YOU", + "is_error": attributeAriaExpanded, + "origin": "login-web", + "category": "Identity", + "name": "About You" + }, + "category": "Identity", + "name": "About You", + "context": { + "page": { + "path": continueUrl2, + "referrer": "redacted", + "search": "redacted", + "title": "最后一步:确认你的年龄 - OpenAI", + "url": "redacted" + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": "145" + }, + { + "brand": "Chromium", + "version": "145" + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locale": clientLocale, + "library": { + "name": "analytics.js", + "version": "npm:next-1.81.1" + }, + "campaign": statsigpayloadDynamicConfigs217573384Value, + "timezone": "Asia/Shanghai", + "app_name": "login_web", + "app_version": derivedFieldsAppversion, + "device_id": evaluatedKeysStableid, + "auth_session_logging_id": immutableclientsessionmetadataAuthSessionLoggingId, + "openai_client_id": urlClientId, + "app_name_enum": immutableclientsessionmetadataAppNameEnum + }, + "messageId": "ajs-next-1773809570637-1c2c8606-44e1-4410-b32d-15b365df34de", + "anonymousId": "b851f711-deb6-4ff7-aac5-18ac1c2c8606", + "writeKey": "oai", + "userId": null, + "_metadata": { + "bundled": [ + "Segment.io" + ], + "unbundled": userGroups, + "bundledIds": userGroups + } + } + ], + "sentAt": "2026-03-18T04:52:56.643Z" + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0162({ + clientLocale, + attributeAriaExpanded, + session, + origins, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + statsigpayloadDynamicConfigs217573384Value, + authstatus, + userGroups, + url1, + variable8, + variable9, + urlAudience, + evaluatedKeysStableid, + derivedFieldsAppversion, + evaluatedKeysCustomids, + immutableclientsessionmetadataAuthSessionLoggingId, + continueUrl2, + continueUrl3 + }) { + console.log("Executing request 0162") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/b`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": modelsProductFeaturesAttachmentsAcceptedMimeTypes, + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//auth.openai.com", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//auth.openai.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: JSON.stringify( + { + "writeKey": "oai", + "batch": [ + { + "timestamp": "2026-03-18T04:52:58.283Z", + "integrations": { + "Segment.io": variable4 + }, + "event": "__protobuf_structured_event__", + "type": "track", + "properties": { + "eventId": "aa66aa26-6f36-48b9-88da-0080419f1167", + "eventCreatedAt": "2026-03-18T04:52:58.283Z", + "eventType": "web", + "userParams": { + "userId": "", + "deviceId": evaluatedKeysStableid, + "authStatus": authstatus + }, + "deviceParams": statsigpayloadDynamicConfigs217573384Value, + "statsigMetadataV2": { + "stableId": evaluatedKeysStableid, + "sdkType": "javascript-client", + "sdkVersion": "3.16.1", + "sessionId": "4c71157d-7261-4224-ae34-fc38643d4d6c", + "appIdentifier": "login_web", + "appVersion": derivedFieldsAppversion, + "locale": clientLocale, + "language": "zh", + "user": { + "customIds": evaluatedKeysCustomids, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "locale": clientLocale, + "appVersion": derivedFieldsAppversion, + "custom": { + "client_id": "\"app_X8zY6vW2pQ9tR3dE7nK1jL5gH\"", + "app_name_enum": "\"chat\"", + "originator": "\"\"", + "AuthSessionLoggingId": "\"af0081e1-4aea-498f-9a49-344ed42ee061\"", + "client_type": "\"web\"" + } + } + }, + "eventParams": { + "@type": "openai.buf.dev/openai/protobuf-analytics-events/protobuf_analytics_events.v1.AccessFlowUserAction", + "authSessionLoggingId": immutableclientsessionmetadataAuthSessionLoggingId, + "actionType": "ACCESS_FLOW_USER_ACTION_TYPE_INPUT", + "page": "ACCESS_FLOW_PAGE_TYPE_ABOUT_YOU", + "field": "ACCESS_FLOW_FIELD_BIRTHDAY" + }, + "clientMetadata": { + "name": "login_web", + "version": derivedFieldsAppversion + } + }, + "context": { + "page": { + "path": continueUrl2, + "referrer": `https://${url1}/${variable8}/${variable9}`, + "search": "", + "title": "最后一步:确认你的年龄 - OpenAI", + "url": continueUrl3 + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": "145" + }, + { + "brand": "Chromium", + "version": "145" + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locale": clientLocale, + "library": { + "name": "analytics.js", + "version": "npm:next-1.81.1" + }, + "timezone": "Asia/Shanghai" + }, + "messageId": "ajs-next-1773809578283-4410332d-15b3-45df-b4de-cd53205e708e", + "anonymousId": "deb69ff7-6ac5-48ac-9c2c-860644e14410", + "writeKey": "oai", + "userId": null, + "_metadata": { + "bundled": [ + "Segment.io" + ], + "unbundled": userGroups, + "bundledIds": userGroups + } + } + ], + "sentAt": "2026-03-18T04:53:04.292Z" + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0165({ + variable12, + currencyConfigPromosBusinessOneDollarAmount, + url1, + oaiLoginCsrfDev3772291445Cookie, + rgContextCookie, + statsigpayloadFeatureGates6102981RuleId, + loginSessionCookie, + hydraRedirectCookie, + evaluatedKeysStableid, + cfBmCookie3, + cfuvidCookie5, + cfClearanceCookie1, + continueUrl3, + authProviderCookie3, + oaiClientAuthSessionCookie3, + unifiedSessionManifestCookie3, + authSessionMinimizedCookie3, + cflbCookie4, + oaiScCookie3 + }) { + console.log("Executing request 0165") + const response = await fetch( + continueUrl3, + { + method: "GET", + headers: { + "host": url1, + "connection": "keep-alive", + "cache-control": `max-age=${variable12}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"macOS\"", + "upgrade-insecure-requests": currencyConfigPromosBusinessOneDollarAmount, + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "navigate", + "sec-fetch-user": "?1", + "sec-fetch-dest": "document", + "referer": "https//auth.openai.com/about-you", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-did=${evaluatedKeysStableid}; oai-login-csrf_dev_3772291445=${oaiLoginCsrfDev3772291445Cookie}; rg_context=${rgContextCookie}; iss_context=${statsigpayloadFeatureGates6102981RuleId}; __cf_bm=${cfBmCookie3}; _cfuvid=${cfuvidCookie5}; cf_clearance=${cfClearanceCookie1}; auth_provider=${authProviderCookie3}; login_session=${loginSessionCookie}; hydra_redirect=${hydraRedirectCookie}; oai-client-auth-session=${oaiClientAuthSessionCookie3}; oai-client-auth-info=eyJsYXN0X2xvZ2luX3N0cmF0ZWd5IjoiYXV0aDAifQ; unified_session_manifest=${unifiedSessionManifestCookie3}; auth-session-minimized=${authSessionMinimizedCookie3}; __cflb=${cflbCookie4}; oai-sc=${oaiScCookie3}; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + cflbCookie5: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '__cflb').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0166({ + clientLocale, + attributeAriaExpanded, + session, + origins, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + statsigpayloadDynamicConfigs217573384Value, + userGroups, + url1, + urlClientId, + variable8, + variable9, + urlAudience, + evaluatedKeysStableid, + derivedFieldsAppversion, + immutableclientsessionmetadataAuthSessionLoggingId, + immutableclientsessionmetadataAppNameEnum, + continueUrl2, + continueUrl3 + }) { + console.log("Executing request 0166") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/b`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": modelsProductFeaturesAttachmentsAcceptedMimeTypes, + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//auth.openai.com", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//auth.openai.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: JSON.stringify( + { + "writeKey": "oai", + "batch": [ + { + "timestamp": "2026-03-18T04:53:05.495Z", + "integrations": { + "Segment.io": variable4 + }, + "event": "Onboarding: User Info: Complete", + "type": "track", + "properties": { + "flow": "authapi", + "loginWebUI": "new", + "openai_app": "login_web", + "origin": "login-web" + }, + "context": { + "page": { + "path": continueUrl2, + "referrer": `https://${url1}/${variable8}/${variable9}`, + "search": "", + "title": "最后一步:确认你的年龄 - OpenAI", + "url": continueUrl3 + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": "145" + }, + { + "brand": "Chromium", + "version": "145" + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locale": clientLocale, + "library": { + "name": "analytics.js", + "version": "npm:next-1.81.1" + }, + "timezone": "Asia/Shanghai", + "app_name": "login_web", + "app_version": derivedFieldsAppversion, + "device_id": evaluatedKeysStableid, + "auth_session_logging_id": immutableclientsessionmetadataAuthSessionLoggingId, + "openai_client_id": urlClientId, + "app_name_enum": immutableclientsessionmetadataAppNameEnum + }, + "messageId": "ajs-next-1773809585495-15b365df-34de-4d53-a05e-708eebb2b7c0", + "anonymousId": "b851f711-deb6-4ff7-aac5-18ac1c2c8606", + "writeKey": "oai", + "userId": null, + "_metadata": { + "bundled": [ + "Segment.io" + ], + "unbundled": userGroups, + "bundledIds": userGroups + } + }, + { + "timestamp": "2026-03-18T04:53:05.541Z", + "integrations": { + "Segment.io": variable4 + }, + "type": "page", + "properties": { + "path": continueUrl2, + "referrer": "redacted", + "search": "redacted", + "title": "糟糕,出错了! - OpenAI", + "url": "redacted", + "route_id": "ABOUT_YOU", + "is_error": variable4, + "origin": "login-web", + "category": "Identity", + "name": "About You" + }, + "category": "Identity", + "name": "About You", + "context": { + "page": { + "path": continueUrl2, + "referrer": "redacted", + "search": "redacted", + "title": "糟糕,出错了! - OpenAI", + "url": "redacted" + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": "145" + }, + { + "brand": "Chromium", + "version": "145" + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locale": clientLocale, + "library": { + "name": "analytics.js", + "version": "npm:next-1.81.1" + }, + "campaign": statsigpayloadDynamicConfigs217573384Value, + "timezone": "Asia/Shanghai", + "app_name": "login_web", + "app_version": derivedFieldsAppversion, + "device_id": evaluatedKeysStableid, + "auth_session_logging_id": immutableclientsessionmetadataAuthSessionLoggingId, + "openai_client_id": urlClientId, + "app_name_enum": immutableclientsessionmetadataAppNameEnum + }, + "messageId": "ajs-next-1773809585541-65df34de-cd53-405e-b08e-ebb2b7c079ef", + "anonymousId": "b851f711-deb6-4ff7-aac5-18ac1c2c8606", + "writeKey": "oai", + "userId": null, + "_metadata": { + "bundled": [ + "Segment.io" + ], + "unbundled": userGroups, + "bundledIds": userGroups + } + } + ], + "sentAt": "2026-03-18T04:53:09.438Z" + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0168({ + clientLocale, + attributeAriaExpanded, + session, + origins, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + statsigpayloadDynamicConfigs217573384Value, + authstatus, + userGroups, + url1, + variable8, + variable9, + urlAudience, + evaluatedKeysStableid, + derivedFieldsAppversion, + evaluatedKeysCustomids, + immutableclientsessionmetadataAuthSessionLoggingId, + continueUrl2, + continueUrl3 + }) { + console.log("Executing request 0168") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/b`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": modelsProductFeaturesAttachmentsAcceptedMimeTypes, + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//auth.openai.com", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//auth.openai.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: JSON.stringify( + { + "writeKey": "oai", + "batch": [ + { + "timestamp": "2026-03-18T04:53:05.491Z", + "integrations": { + "Segment.io": variable4 + }, + "event": "__protobuf_structured_event__", + "type": "track", + "properties": { + "eventId": "37473286-ca23-40d0-8af1-85d50a84c481", + "eventCreatedAt": "2026-03-18T04:53:05.491Z", + "eventType": "web", + "userParams": { + "userId": "", + "deviceId": evaluatedKeysStableid, + "authStatus": authstatus + }, + "deviceParams": statsigpayloadDynamicConfigs217573384Value, + "statsigMetadataV2": { + "stableId": evaluatedKeysStableid, + "sdkType": "javascript-client", + "sdkVersion": "3.16.1", + "sessionId": "4c71157d-7261-4224-ae34-fc38643d4d6c", + "appIdentifier": "login_web", + "appVersion": derivedFieldsAppversion, + "locale": clientLocale, + "language": "zh", + "user": { + "customIds": evaluatedKeysCustomids, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "locale": clientLocale, + "appVersion": derivedFieldsAppversion, + "custom": { + "client_id": "\"app_X8zY6vW2pQ9tR3dE7nK1jL5gH\"", + "app_name_enum": "\"chat\"", + "originator": "\"\"", + "AuthSessionLoggingId": "\"af0081e1-4aea-498f-9a49-344ed42ee061\"", + "client_type": "\"web\"" + } + } + }, + "eventParams": { + "@type": "openai.buf.dev/openai/protobuf-analytics-events/protobuf_analytics_events.v1.AccessFlowUserAction", + "authSessionLoggingId": immutableclientsessionmetadataAuthSessionLoggingId, + "actionType": "ACCESS_FLOW_USER_ACTION_TYPE_CONTINUE", + "page": "ACCESS_FLOW_PAGE_TYPE_ABOUT_YOU" + }, + "clientMetadata": { + "name": "login_web", + "version": derivedFieldsAppversion + } + }, + "context": { + "page": { + "path": continueUrl2, + "referrer": `https://${url1}/${variable8}/${variable9}`, + "search": "", + "title": "最后一步:确认你的年龄 - OpenAI", + "url": continueUrl3 + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": "145" + }, + { + "brand": "Chromium", + "version": "145" + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locale": clientLocale, + "library": { + "name": "analytics.js", + "version": "npm:next-1.81.1" + }, + "timezone": "Asia/Shanghai" + }, + "messageId": "ajs-next-1773809585491-332d15b3-65df-44de-8d53-205e708eebb2", + "anonymousId": "deb69ff7-6ac5-48ac-9c2c-860644e14410", + "writeKey": "oai", + "userId": null, + "_metadata": { + "bundled": [ + "Segment.io" + ], + "unbundled": userGroups, + "bundledIds": userGroups + } + }, + { + "timestamp": "2026-03-18T04:53:05.543Z", + "integrations": { + "Segment.io": variable4 + }, + "event": "__protobuf_structured_event__", + "type": "track", + "properties": { + "eventId": "b8b0c7de-c133-4ce9-941e-0cc6f5431a08", + "eventCreatedAt": "2026-03-18T04:53:05.542Z", + "eventType": "web", + "userParams": { + "userId": "", + "deviceId": evaluatedKeysStableid, + "authStatus": authstatus + }, + "deviceParams": statsigpayloadDynamicConfigs217573384Value, + "statsigMetadataV2": { + "stableId": evaluatedKeysStableid, + "sdkType": "javascript-client", + "sdkVersion": "3.16.1", + "sessionId": "4c71157d-7261-4224-ae34-fc38643d4d6c", + "appIdentifier": "login_web", + "appVersion": derivedFieldsAppversion, + "locale": clientLocale, + "language": "zh", + "user": { + "customIds": evaluatedKeysCustomids, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "locale": clientLocale, + "appVersion": derivedFieldsAppversion, + "custom": { + "client_id": "\"app_X8zY6vW2pQ9tR3dE7nK1jL5gH\"", + "app_name_enum": "\"chat\"", + "originator": "\"\"", + "AuthSessionLoggingId": "\"af0081e1-4aea-498f-9a49-344ed42ee061\"", + "client_type": "\"web\"" + } + } + }, + "eventParams": { + "@type": "openai.buf.dev/openai/protobuf-analytics-events/protobuf_analytics_events.v1.AccessFlowPageLoad", + "authSessionLoggingId": immutableclientsessionmetadataAuthSessionLoggingId, + "page": "ACCESS_FLOW_PAGE_TYPE_ABOUT_YOU", + "previousPage": "ACCESS_FLOW_PAGE_TYPE_ABOUT_YOU", + "transitionLatencyMs": "36" + }, + "clientMetadata": { + "name": "login_web", + "version": derivedFieldsAppversion + } + }, + "context": { + "page": { + "path": continueUrl2, + "referrer": `https://${url1}/${variable8}/${variable9}`, + "search": "", + "title": "糟糕,出错了! - OpenAI", + "url": continueUrl3 + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": "145" + }, + { + "brand": "Chromium", + "version": "145" + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locale": clientLocale, + "library": { + "name": "analytics.js", + "version": "npm:next-1.81.1" + }, + "timezone": "Asia/Shanghai" + }, + "messageId": "ajs-next-1773809585543-34decd53-205e-408e-abb2-b7c079efd8c6", + "anonymousId": "deb69ff7-6ac5-48ac-9c2c-860644e14410", + "writeKey": "oai", + "userId": null, + "_metadata": { + "bundled": [ + "Segment.io" + ], + "unbundled": userGroups, + "bundledIds": userGroups + } + } + ], + "sentAt": "2026-03-18T04:53:09.439Z" + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0170({ + origins, + urlAudience + }) { + console.log("Executing request 0170") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/projects/oai/settings`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//auth.openai.com", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//auth.openai.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0175({ + origins, + urlAudience + }) { + console.log("Executing request 0175") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/projects/oai/settings`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//auth.openai.com", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//auth.openai.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0199({ + clientLocale, + attributeAriaExpanded, + session, + origins, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + statsigpayloadDynamicConfigs217573384Value, + userGroups, + urlClientId, + urlAudience, + evaluatedKeysStableid, + derivedFieldsAppversion, + immutableclientsessionmetadataAuthSessionLoggingId, + immutableclientsessionmetadataAppNameEnum, + continueUrl2 + }) { + console.log("Executing request 0199") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/b`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": modelsProductFeaturesAttachmentsAcceptedMimeTypes, + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//auth.openai.com", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//auth.openai.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: JSON.stringify( + { + "writeKey": "oai", + "batch": [ + { + "timestamp": "2026-03-18T04:53:10.535Z", + "integrations": { + "Segment.io": variable4 + }, + "type": "page", + "properties": { + "path": continueUrl2, + "referrer": "redacted", + "search": "redacted", + "title": "最后一步:确认你的年龄 - OpenAI", + "url": "redacted", + "route_id": "ABOUT_YOU", + "is_error": attributeAriaExpanded, + "origin": "login-web", + "category": "Identity", + "name": "About You" + }, + "category": "Identity", + "name": "About You", + "context": { + "page": { + "path": continueUrl2, + "referrer": "redacted", + "search": "redacted", + "title": "最后一步:确认你的年龄 - OpenAI", + "url": "redacted" + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": "145" + }, + { + "brand": "Chromium", + "version": "145" + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locale": clientLocale, + "library": { + "name": "analytics.js", + "version": "npm:next-1.81.1" + }, + "campaign": statsigpayloadDynamicConfigs217573384Value, + "timezone": "Asia/Shanghai", + "app_name": "login_web", + "app_version": derivedFieldsAppversion, + "device_id": evaluatedKeysStableid, + "auth_session_logging_id": immutableclientsessionmetadataAuthSessionLoggingId, + "openai_client_id": urlClientId, + "app_name_enum": immutableclientsessionmetadataAppNameEnum + }, + "messageId": "ajs-next-1773809590535-690d87dc-929e-432c-933f-9d6fe296f465", + "anonymousId": "0d87dc92-9ef3-4c53-bf9d-6fe296f4653b", + "writeKey": "oai", + "userId": null, + "_metadata": { + "bundled": [ + "Segment.io" + ], + "unbundled": userGroups, + "bundledIds": userGroups + } + } + ], + "sentAt": "2026-03-18T04:53:16.539Z" + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0201({ + systemHintsLogoAttributeFill + }) { + console.log("Executing request 0201") + const response = await fetch( + "https://android.clients.google.com/c2dm/register3", + { + method: "POST", + headers: { + "host": "android.clients.google.com", + "connection": "keep-alive", + "authorization": "AidLogin 48414557928291861127629698221106001664", + "content-type": "application/x-www-form-urlencoded", + "sec-fetch-site": systemHintsLogoAttributeFill, + "sec-fetch-mode": "no-cors", + "sec-fetch-dest": "empty", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: "app=com.google.android.gms&device=4841455792829186112&sender=745476177629" + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0204({ + clientLocale, + attributeAriaExpanded, + session, + origins, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + statsigpayloadDynamicConfigs217573384Value, + authstatus, + userGroups, + urlAudience, + evaluatedKeysStableid, + derivedFieldsAppversion, + evaluatedKeysCustomids, + immutableclientsessionmetadataAuthSessionLoggingId, + continueUrl2, + continueUrl3 + }) { + console.log("Executing request 0204") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/b`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": modelsProductFeaturesAttachmentsAcceptedMimeTypes, + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//auth.openai.com", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//auth.openai.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: JSON.stringify( + { + "writeKey": "oai", + "batch": [ + { + "timestamp": "2026-03-18T04:53:11.008Z", + "integrations": { + "Segment.io": variable4 + }, + "event": "__protobuf_structured_event__", + "type": "track", + "properties": { + "eventId": "8c166e5b-5ec0-40d7-b8a0-f2baf1ab9b84", + "eventCreatedAt": "2026-03-18T04:53:10.078Z", + "eventType": "web", + "userParams": { + "userId": "", + "deviceId": evaluatedKeysStableid, + "authStatus": authstatus + }, + "deviceParams": statsigpayloadDynamicConfigs217573384Value, + "statsigMetadataV2": { + "stableId": evaluatedKeysStableid, + "sdkType": "javascript-client", + "sdkVersion": "3.16.1", + "sessionId": "4c71157d-7261-4224-ae34-fc38643d4d6c", + "appIdentifier": "login_web", + "appVersion": derivedFieldsAppversion, + "locale": clientLocale, + "language": "zh", + "user": { + "customIds": evaluatedKeysCustomids, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "locale": clientLocale, + "appVersion": derivedFieldsAppversion, + "custom": { + "client_id": "\"app_X8zY6vW2pQ9tR3dE7nK1jL5gH\"", + "app_name_enum": "\"chat\"", + "originator": "\"\"", + "AuthSessionLoggingId": "\"af0081e1-4aea-498f-9a49-344ed42ee061\"", + "client_type": "\"web\"" + } + } + }, + "eventParams": { + "@type": "openai.buf.dev/openai/protobuf-analytics-events/protobuf_analytics_events.v1.AccessFlowPageLoad", + "authSessionLoggingId": immutableclientsessionmetadataAuthSessionLoggingId, + "page": "ACCESS_FLOW_PAGE_TYPE_ABOUT_YOU" + }, + "clientMetadata": { + "name": "login_web", + "version": derivedFieldsAppversion + } + }, + "context": { + "page": { + "path": continueUrl2, + "referrer": continueUrl3, + "search": "", + "title": "最后一步:确认你的年龄 - OpenAI", + "url": continueUrl3 + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": "145" + }, + { + "brand": "Chromium", + "version": "145" + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locale": clientLocale, + "library": { + "name": "analytics.js", + "version": "npm:next-1.81.1" + }, + "timezone": "Asia/Shanghai" + }, + "messageId": "ajs-next-1773809591008-929ef32c-533f-4d6f-a296-f4653b069b28", + "anonymousId": "9ef32c53-3f9d-4fe2-96f4-653b069b2872", + "writeKey": "oai", + "userId": null, + "_metadata": { + "bundled": [ + "Segment.io" + ], + "unbundled": userGroups, + "bundledIds": userGroups + } + }, + { + "timestamp": "2026-03-18T04:53:11.008Z", + "integrations": { + "Segment.io": variable4 + }, + "event": "__protobuf_structured_event__", + "type": "track", + "properties": { + "eventId": "f7697e30-63a1-4cf6-b175-0f53475602a6", + "eventCreatedAt": "2026-03-18T04:53:10.934Z", + "eventType": "web", + "userParams": { + "userId": "", + "deviceId": evaluatedKeysStableid, + "authStatus": authstatus + }, + "deviceParams": statsigpayloadDynamicConfigs217573384Value, + "statsigMetadataV2": { + "stableId": evaluatedKeysStableid, + "sdkType": "javascript-client", + "sdkVersion": "3.16.1", + "sessionId": "4c71157d-7261-4224-ae34-fc38643d4d6c", + "appIdentifier": "login_web", + "appVersion": derivedFieldsAppversion, + "locale": clientLocale, + "language": "zh", + "user": { + "customIds": evaluatedKeysCustomids, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "locale": clientLocale, + "appVersion": derivedFieldsAppversion, + "custom": { + "client_id": "\"app_X8zY6vW2pQ9tR3dE7nK1jL5gH\"", + "app_name_enum": "\"chat\"", + "originator": "\"\"", + "AuthSessionLoggingId": "\"af0081e1-4aea-498f-9a49-344ed42ee061\"", + "client_type": "\"web\"" + } + } + }, + "eventParams": { + "@type": "openai.buf.dev/openai/protobuf-analytics-events/protobuf_analytics_events.v1.AccessFlowUserAction", + "authSessionLoggingId": immutableclientsessionmetadataAuthSessionLoggingId, + "actionType": "ACCESS_FLOW_USER_ACTION_TYPE_INPUT", + "page": "ACCESS_FLOW_PAGE_TYPE_ABOUT_YOU", + "field": "ACCESS_FLOW_FIELD_NAME" + }, + "clientMetadata": { + "name": "login_web", + "version": derivedFieldsAppversion + } + }, + "context": { + "page": { + "path": continueUrl2, + "referrer": continueUrl3, + "search": "", + "title": "最后一步:确认你的年龄 - OpenAI", + "url": continueUrl3 + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": "145" + }, + { + "brand": "Chromium", + "version": "145" + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locale": clientLocale, + "library": { + "name": "analytics.js", + "version": "npm:next-1.81.1" + }, + "timezone": "Asia/Shanghai" + }, + "messageId": "ajs-next-1773809591008-2c533f9d-6fe2-46f4-a53b-069b2872add4", + "anonymousId": "9ef32c53-3f9d-4fe2-96f4-653b069b2872", + "writeKey": "oai", + "userId": null, + "_metadata": { + "bundled": [ + "Segment.io" + ], + "unbundled": userGroups, + "bundledIds": userGroups + } + }, + { + "timestamp": "2026-03-18T04:53:15.523Z", + "integrations": { + "Segment.io": variable4 + }, + "event": "__protobuf_structured_event__", + "type": "track", + "properties": { + "eventId": "c0052975-40b3-430e-90ea-54435d41ef49", + "eventCreatedAt": "2026-03-18T04:53:15.523Z", + "eventType": "web", + "userParams": { + "userId": "", + "deviceId": evaluatedKeysStableid, + "authStatus": authstatus + }, + "deviceParams": statsigpayloadDynamicConfigs217573384Value, + "statsigMetadataV2": { + "stableId": evaluatedKeysStableid, + "sdkType": "javascript-client", + "sdkVersion": "3.16.1", + "sessionId": "4c71157d-7261-4224-ae34-fc38643d4d6c", + "appIdentifier": "login_web", + "appVersion": derivedFieldsAppversion, + "locale": clientLocale, + "language": "zh", + "user": { + "customIds": evaluatedKeysCustomids, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "locale": clientLocale, + "appVersion": derivedFieldsAppversion, + "custom": { + "client_id": "\"app_X8zY6vW2pQ9tR3dE7nK1jL5gH\"", + "app_name_enum": "\"chat\"", + "originator": "\"\"", + "AuthSessionLoggingId": "\"af0081e1-4aea-498f-9a49-344ed42ee061\"", + "client_type": "\"web\"" + } + } + }, + "eventParams": { + "@type": "openai.buf.dev/openai/protobuf-analytics-events/protobuf_analytics_events.v1.AccessFlowUserAction", + "authSessionLoggingId": immutableclientsessionmetadataAuthSessionLoggingId, + "actionType": "ACCESS_FLOW_USER_ACTION_TYPE_INPUT", + "page": "ACCESS_FLOW_PAGE_TYPE_ABOUT_YOU", + "field": "ACCESS_FLOW_FIELD_BIRTHDAY" + }, + "clientMetadata": { + "name": "login_web", + "version": derivedFieldsAppversion + } + }, + "context": { + "page": { + "path": continueUrl2, + "referrer": continueUrl3, + "search": "", + "title": "最后一步:确认你的年龄 - OpenAI", + "url": continueUrl3 + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": "145" + }, + { + "brand": "Chromium", + "version": "145" + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locale": clientLocale, + "library": { + "name": "analytics.js", + "version": "npm:next-1.81.1" + }, + "timezone": "Asia/Shanghai" + }, + "messageId": "ajs-next-1773809595523-3f9d6fe2-96f4-453b-869b-2872add44646", + "anonymousId": "9ef32c53-3f9d-4fe2-96f4-653b069b2872", + "writeKey": "oai", + "userId": null, + "_metadata": { + "bundled": [ + "Segment.io" + ], + "unbundled": userGroups, + "bundledIds": userGroups + } + } + ], + "sentAt": "2026-03-18T04:53:17.011Z" + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0210({ + currencyConfigPromosBusinessOneDollarAmount, + evaluatedKeysStableid, + variable14, + oaiScCookie3, + cfClearanceCookie3 + }) { + console.log("Executing request 0210") + const response = await fetch( + "https://sentinel.openai.com/backend-api/sentinel/frame.html?sv=20260219f9f6", + { + method: "GET", + headers: { + "host": "sentinel.openai.com", + "connection": "keep-alive", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"macOS\"", + "upgrade-insecure-requests": currencyConfigPromosBusinessOneDollarAmount, + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "navigate", + "sec-fetch-user": "?1", + "sec-fetch-dest": variable14, + "referer": "https//auth.openai.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2Xgr1zwPyxLxRd4DtCNYLuGRqd; __cf_bm=0EL4AcmZy6YABOgAu1caF13.HOgAJFYpEPZclKcKt7o-1773809548-1.0.1.1-I4NecjcKI_YTJdkYmgKLrSVWQqlc.32fNjD.Htd3hjzOTyKmiSVcYcpdjkY4mTjVtKFeZXl4sBQx.IIHkPz_K5p_j_cHjy5CGIBZrLn3uCA; _cfuvid=XloS9D5ZuYqw1gWUBZTcrrbrjrk7UeBZTkOWf_cTx3U-1773809548430-0.0.1.1-604800000; oai-sc=${oaiScCookie3}; cf_clearance=${cfClearanceCookie3}` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0211({ + clientLocale, + attributeAriaExpanded, + session, + origins, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + statsigpayloadDynamicConfigs217573384Value, + userGroups, + urlClientId, + urlAudience, + evaluatedKeysStableid, + derivedFieldsAppversion, + immutableclientsessionmetadataAuthSessionLoggingId, + immutableclientsessionmetadataAppNameEnum, + continueUrl2, + continueUrl3 + }) { + console.log("Executing request 0211") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/b`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": modelsProductFeaturesAttachmentsAcceptedMimeTypes, + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//auth.openai.com", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//auth.openai.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: JSON.stringify( + { + "writeKey": "oai", + "batch": [ + { + "timestamp": "2026-03-18T04:53:19.247Z", + "integrations": { + "Segment.io": variable4 + }, + "event": "Onboarding: User Info: Complete", + "type": "track", + "properties": { + "flow": "authapi", + "loginWebUI": "new", + "openai_app": "login_web", + "origin": "login-web" + }, + "context": { + "page": { + "path": continueUrl2, + "referrer": continueUrl3, + "search": "", + "title": "最后一步:确认你的年龄 - OpenAI", + "url": continueUrl3 + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": "145" + }, + { + "brand": "Chromium", + "version": "145" + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locale": clientLocale, + "library": { + "name": "analytics.js", + "version": "npm:next-1.81.1" + }, + "timezone": "Asia/Shanghai", + "app_name": "login_web", + "app_version": derivedFieldsAppversion, + "device_id": evaluatedKeysStableid, + "auth_session_logging_id": immutableclientsessionmetadataAuthSessionLoggingId, + "openai_client_id": urlClientId, + "app_name_enum": immutableclientsessionmetadataAppNameEnum + }, + "messageId": "ajs-next-1773809599247-6fe296f4-653b-469b-a872-add446465051", + "anonymousId": "0d87dc92-9ef3-4c53-bf9d-6fe296f4653b", + "writeKey": "oai", + "userId": null, + "_metadata": { + "bundled": [ + "Segment.io" + ], + "unbundled": userGroups, + "bundledIds": userGroups + } + }, + { + "timestamp": "2026-03-18T04:53:24.265Z", + "integrations": { + "Segment.io": variable4 + }, + "type": "page", + "properties": { + "path": continueUrl2, + "referrer": "redacted", + "search": "redacted", + "title": "糟糕,出错了! - OpenAI", + "url": "redacted", + "route_id": "ABOUT_YOU", + "is_error": variable4, + "origin": "login-web", + "category": "Identity", + "name": "About You" + }, + "category": "Identity", + "name": "About You", + "context": { + "page": { + "path": continueUrl2, + "referrer": "redacted", + "search": "redacted", + "title": "糟糕,出错了! - OpenAI", + "url": "redacted" + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": "145" + }, + { + "brand": "Chromium", + "version": "145" + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locale": clientLocale, + "library": { + "name": "analytics.js", + "version": "npm:next-1.81.1" + }, + "campaign": statsigpayloadDynamicConfigs217573384Value, + "timezone": "Asia/Shanghai", + "app_name": "login_web", + "app_version": derivedFieldsAppversion, + "device_id": evaluatedKeysStableid, + "auth_session_logging_id": immutableclientsessionmetadataAuthSessionLoggingId, + "openai_client_id": urlClientId, + "app_name_enum": immutableclientsessionmetadataAppNameEnum + }, + "messageId": "ajs-next-1773809604265-96f4653b-069b-4872-add4-4646505156b7", + "anonymousId": "0d87dc92-9ef3-4c53-bf9d-6fe296f4653b", + "writeKey": "oai", + "userId": null, + "_metadata": { + "bundled": [ + "Segment.io" + ], + "unbundled": userGroups, + "bundledIds": userGroups + } + } + ], + "sentAt": "2026-03-18T04:53:25.254Z" + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0212({ + evaluatedKeysStableid, + oaiScCookie3, + cfClearanceCookie3 + }) { + console.log("Executing request 0212") + const response = await fetch( + "https://sentinel.openai.com/cdn-cgi/challenge-platform/h/b/jsd/oneshot/833f25fde7cb/0.7038850727994532:1773803411:ARXnmPIBnLtHrBDlKdcQyOQWgQPFReiwnR-YqmP6ZHI/9de1a221b19d2f21", + { + method: "POST", + headers: { + "host": "sentinel.openai.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "text/plain;charset=UTF-8", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//sentinel.openai.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2Xgr1zwPyxLxRd4DtCNYLuGRqd; __cf_bm=0EL4AcmZy6YABOgAu1caF13.HOgAJFYpEPZclKcKt7o-1773809548-1.0.1.1-I4NecjcKI_YTJdkYmgKLrSVWQqlc.32fNjD.Htd3hjzOTyKmiSVcYcpdjkY4mTjVtKFeZXl4sBQx.IIHkPz_K5p_j_cHjy5CGIBZrLn3uCA; _cfuvid=XloS9D5ZuYqw1gWUBZTcrrbrjrk7UeBZTkOWf_cTx3U-1773809548430-0.0.1.1-604800000; oai-sc=${oaiScCookie3}; cf_clearance=${cfClearanceCookie3}` + }, + body: "tYM8Roc7zha66lOK7KlKbKtS1g8a18c6KRKgfSKUhK2Kmd+7LMxzyKCKeLTdIK7cRyKahycKhYc3ZKlhSMoZSY0Kb8HI0KgV+KIIKs0R25K7XcU9MjxNsoWK43CF3EfrnMKg7-ftUMk0JgMeK8MKa-t+MDU18TVc11VZUTrKYMct7MvMNt2YG0WK+1cHK+iKc5oKg1cczP3GJ8K$K+6yKKrGkoio0vvRh+U1K+NGeap106yy8l0KWWBo8aVGGD0lFFYz40yz7WsahKcSmVnUN7yKlHRzvOcrcmoKU0yJSIZI8YcJO9PGBuRnuMXeMRlYjAOTOUR1ITMIjMsYsc243oKc9ZziYVyZ+eY8M+1IOaYtcmJ-fk1xhdK1SGob4T6rGy6DvrPF4u2tK7zuSJIO0d16KARdiKMgUtMIS-CDgCz8K6OIAaNgJH90QSbgcpInMznCfkjXkp1c1gcKa+I94Xq+satc7yKyLobY7NMDTBBfs-K$+AifYO8acAvO9DDjZQdh5VzFP1v35ezB$QkOJaYdiQSYJMhetM80U2xKa9mZUHNO02IgcMSoiWbh25HeMLLJQtcMq7na1SLJn0PvRQnkFnHIE$OSWfxWm+ea+FcIfjfWSYYbCmvClZrpcpiTp9vncPfx1B$ElIQDAqmxYtv9xKF-59+pUHnr5rDfvj3rYD8mZ+CD1kt-g2BkqvG27VRvj$zcj29P$aFGCMeIBnW-aQCE7VhUdTahvIXK7dIMc8vC$hiYolT0W1cyHFK4ad0YI+9k2plKt8m+Yj8jqKzzoBmglllUZo0OOEXoMMUKsq8r+2ULt2QMYn2k6WnY+vO$8pK5E8WK188Fa1EnCz7Eox+McgUxdE2VxMOKpUpQfCj6KXYU1Zz5eQCO8yd+cIiOgiplnkcl3EFc0TBE2$-1dJiKItooREM8HHvKHcK1U0A0iOKUb1I2LZ8JVctVMzzz1+cCyVJBp1ILOlZ8S-+mMqb$OiTVm1WFsBAMF3hW1TiUKVJelAOeyoT1M8KlvGAMcOGyQoHWK1YpbahFzzyQRWUFElV8zIY2t9IZK0KVHaoAI4KCg+McRo1fpizpnsR2Vgzn7L$8Ri9x0cM9JbAydfMY9Iaf0In9io+hJV+nUlboyMIoBWaFenT4Mc4MUmXB0JISUc0YS3W1hppa1Ca2saJsBH1-W1XvmbC+o0S8c5YoR43qjUDY9nJ9IHjddtYQ34tSi0T1nnUKKob1YooLvWCo+p0Lyz7SD1$VHoxh+caEUEx0K+g3hzE2+KWn2YMqOKrZ8JH50p$yvn288Ca3EBk3+AXBK77sBji9XOfMEoQAMJcJ+a9XhlEKxVcGVgpTUt8ZyMbjYzTxncyQq8iTdXTBjTm6Gh07YMuT0fE6ogK8CTMaLkCTJprTgmtjYSDT-tLSN8pB0Q+0ttGzo8JtEUoZl5qZb91pcekd3Oa9ppbqqSXYjNUjMkv$0p-A7LgX3d221GK14clgOx5tcsmdPm36rWREN2qkq6uy4reBVBKyWotUyMQzdsisYUXUpp4JHpRqNsFdpn8Iq7vAcjbtT8qKGfecjBXZOmpLctDOAMg1iaGLtL9Paec8GroC1IKGJU$g2$adiz1H6YSszqo154HIeM7sa1MKKe51e8Fc21oLMjARv386G5YizxgUUYadz3CJbin48mGl893c8KIdjK$ctN0aPKm2HRa7Ad04jecLma0KQyb7eUolfUg$gnAB37by6AecIo80LMs1pPIjz$+6IeB1i3dy6U83S4Nbo1kc34hv0zsxpeSi21sdDaVMgcu1-8c-CoGj8UG48tWGmmJWVh32N-QzG58$8DyFUASIAgRHMovJ5MTM$gWlosQDFPegxoyV-Wec0EMZKmcHMChoO1gpdc21BoGt8-H5dJtYgPjM33UFcU6UOagJJXfzTUcVy6j1EINSmMWjOa7UeFT5g6y6KrJozaYz1WfpXaSA0QtUo8LXUbCKAl7FcxLWeUBZo7VYViqFENMBpQnPiPbCRc8NcYSfvnjhQ56AEzd7CNhAnn5ElLCitcOaz9Edv3H2+B21z15aUv1QozbgHhLTOUoAx2M$7zHKCzSiDOmJcNKvQZ6UEUsovnUP0c0K5JHNKudPxd1IWN5dOVUKdxI6E5cyKqvq+YF1B8UlRqrU1PV1-BAHT6ImVXK-kz87W263R4B+pBWGeVIGDKAlJWG11gpLzzHEHEn85Fni5qYoxdNx7z5B8qJhyNcFEE8a47UHNPRxKCUpj$JI0iVf9ThKCmngK9oHIG2dZ8FcRRiFqsEy8MV5fmz3mVOMs2FyqR241-BkKppnxFgOAHoHWN-JQKW5tge8vVFfa1MdW6UnvxDB4-fLVsIBLKtQq8BrVcLvC0Av1vSK2sdtPQd5sKnYXqB9otHDsJKWcT4nl$5a9pujQMtj8Jc4ls-EVnntbr7XlTs55T4TJJNJxPW74xOKdFFIZHN4LIt0NVV+VpA4VCNahU-HU9tqRh2Kmi4rhaGhTN49kBaTObiuN8LIjWfaHSipYXKX17xhC2v+-C2kor7ejeUiuOOnU5C-zcc8Gqzf7elbxlU-loqaKBA6UCbtz2WzVzx1RKj-f-lB50IsJL98QTZyxKy1Qo3Elljv324gI$mLpxfnU3A$3$lCNtTIgoqWZT5censP6ld7eaAe-B7uUXQB5d5OsenG13+RhqQ1GnQXJbHAAOiK51$9MYQycsFENkK-Va$Is-BIdC20xk3dNR7rG$I91XfTlrLZKKcmVCiSg32HVYMnl6qWdFybH71HpHyaHUUng0sLcMMILMyFM5nNBsq8Qp1x8dKUsorBVtt-dFoxfEV7t+lNVoLYRgfrJV5NAdsWoMM4Kr2q7P05jH27lDAPWxdmg8J76Fmr5dasu40YQKx$dJs9DJI9jWSSCsJcHCDXOtaZ95QnNm4MbQQy4c5oKm-7Ol8OKvvrc6hnJvvovhOqkCpea8ABe-Fkrcb2mBOm4WpXnB4zAsa94zkaXxjehWP4Oy2dMylhZu7b-muTHBOjYu8G2xtqqk8-sPONua6-RQb7zq2bXas57jO8EXrsnDZMTsd$n1qZjKIes2s4vtmoI6zdVpJy-u4L7t6Vu4pf2QZbfrJdADq7sppNxzOXdqIisc9R$RFvqv9nbJ6X1Re37s7XIDBug94dNMSAr6COi9PiWILpoaOy27eecLKQOTN8MZ1PdDh4akl$hNyked$mfrJOKc5dR3RbP0UlFRIWA6zdXplVjeZClkJqQIz2SohHe4o1QoPrB0CCzAC-N6GNpFrQIMCc8pjhZkYIK503IDZhL$RlgPTGhxXjfrqJZk5-LVoT2mCSF6uHaXrouJDfDiroyT0yZyddRjps$LSI-eu8XECY6evz+OGovKZesv3eWEg-WqEeZ-efDXLWIMztgmroqiJVQ5KaN+AKqa6mRa1g1HjcZcEOM+Y-fWbRSWKSI5KCPU8hHZDJxUKLqlq0kT8-gHKXKXt760YjKP-3tH1Wf0+-f1x0otRlKPTy6-JldWncKkRMe+laKo1jhmq7G-fj4KrAe3en8vecNyN11GNjNyNtK6$JOJsKYjuZO-NlJyN+Ea6Jsc1uNeElnJO-fJsh1fNjx5412aKb1Y1u1f1VY1MTCn1C8BNOqedi8GqjT+2aKkdQqtFe4R1uKx67stq58Icy1PKrbjqadp41RaKiME1z4m8sd58d1XClMN4z8xrgI34lMb4UY-8drg1Or0TMV5M$rOQ0TJMNrgr1dmHhMuMrr3tm+sqsrnb58urK8AM2KiaMdmIGaeIQaya3xtIXMybHMVIEXZdDf+Iv-edQVRamIo6tbAI2KY27eaI62ANad6d2KB23y58k2H2aKE2M88-t2U1cd58F2ATMYEc13zvZ2nc4Ted9DaKS341+358kYv3a1ROBY6P0O2d9XUY2K9X7b589XjI8UxXgTHM9XcX-YxX1OYUV9eYFYxXnCabedPXt4aK645864mFad6RzR58$R11rLHRaKERl8r8QZ58CRTOTbedo176+AmuOFl6hF+8ePlipoeFziriFUPKdD48NF11EtTRaIIey8-F48uFHCadIsZPMV58Cdfsed$sRmAslO$dLs1ituadiC0-sbaIC0Ps0f1-ngR0bsT0GCjh-OYCsN+-e-edeiF0CXMMPKuBaCnntHadIdTCZTWTOT4YffspD8yTaUEKbYEUEKpUYhYbAUPK8hb-tUEK$UkhYbzU6hYbZYvh$aMUr8DUO+3YbibhCV11Fb0f1MQ8Y6SJmpEp6p8-3xOpx68pSQmbA0X-5pS$+Ja-AC5pPh26S-t-W6b6F-h6ZvgU2dVd8DK6fpCKDKBIfp68qAsJnKXSzgydunUdxo+7fv4UyTcBR79Ba7vKYbMxjPUs5026HEa971TvK6ZM+6Ni2dfiEZ-8K0vZ+ZA4siD3ldcY-W5s3gsJWxhKz+nU+YH1Zua7vVhF3yyOZ4c9JI26edaxyzE8siQ7nUUeU175a6noaxAk3gZpTd-C01WKKKmoMIG1NtLU1ja1IaYa5l6oi2L06l+Ti3j+H+ugKK+8$06lg-rl5ajl7S63vgRTfh21OqOTYH9WDbMyC3oU4-ai2S32Zpe+jbLbl8aJq16JGbAzYxsSlpUzPg6a0xXQNJDyFcDgv2DgqWhPjl7VRTjomB+K5alcUc6UWce8z-daGjhzIz6V0pzA+1stO+tzy2OhHBTMMcBUXLRTg5zSPNzxcfFUylZSAamb8LMztS6TODhVWPfTo-6f7hH8Wjqo5iAWecgWgHBzy-UUv+3SeldXB37jhKA5vR5hJ2fzAKbiCDniQ8JhoKKMbA+Dd+5o$cQ2QVzB7pva7VcM$U2-a-z+cQszSSRiqpWaX1biWKKU4HnHnoSp1jERiNUxLYhgcUFCgXKxL6OdczSyLpz1KxLtFMOdcuRk4KF8xUOCFHnRMMx48q+88OxaFMn06xxDMW3LcvxcM08kNyWgFmIiIdei8GSpFW+grYeLE7x0f-g6tRMTvXyQOaSJcFcXKnzdxbFKI8FevzsPJhnCFRMWskYfe1F$x9SX8o0XvmFKzxgG+pItS0vCxQdVfHc31ZV0vOGzLK0xden-gxOxUtMoKNgISdN31tSh1Vp-hiSnezdv8Ut+e48vsJsJ6xejxZ0VennfaWFGcrsMO8SbEkezcqsLK3sBMB8j8ySXSXK2G3x38qRfzMNlHbg+KDzjsU8xL13K$PeJYrsaIcEI8xc0GB61KD0fL5W+SnqppXI1ygc31ghJxGdgK2nXcy1GnYhcY1O+ROy1KnOBSeKkpS+EXLSinbMUnhOvV5S6hFxKr3n5pxLPgBMQ$sFUxHcm$XvG1RNcCXcFOscuEHCGKnnj+58v$1K2EECbenSE$xSyLVKEyEiXIj8k8iKN$oIDM2OrCN$DM4$3SIKhcrCSNanXCR$3CXKX$dKIMFCa$3SbCCCGcxx2cT$hcn1-CG$PK2nZCuCGcT$iKGsoIVLA0jCY$6CD$aCXch$NKdc8lOle$yKFX4nmKKl2KGCv$oW1KnSeX1nPnEVQchEWlycQKs+USWSKS58Dg+s9v0qKIBCVYQLyTQcFOJ8vO7EV$ml-rLcVCQxvIC3USxdkly1QIFNiHSTGpyXLlt0TrGKcnMnK7Un0HisbMBlaqbcHK+8ycTRGcEs5WyxWYZE4voHXsPJbs-sFTFq0YySG8aS+YscsyoGcEJ6HFF+CEEiXe1KZOxKl+0Eo8lcKvI$W+z7KbZn8ba8YdrnCE6HXK1SWSrnhOSIzcU80brnz85$M6cx1c6b3ck$qY5IXI1SoSX8sU0YaopqfbyBDKdcZ6aeTxjStYfriBlBBBmK5b2iixLYGLmFAbXSlbBbLcxe6byBPfpVUSiE0EKNCsZTovG+AVhBEb92GcNB+BW$ulJbknhBCYMsJeqbs04bovPny+2BJMYrtbT3KCWlxKv89UzTKBcHX8PG7nQI-CICOCnbZODBjSN6lVks53-bX8sfC6lV3HWguNWONUd-fY8XtbuBxbnOnci5xKDbGYtKsK$lvnbg3gcsFIz1TB65zE2B0-teUiy-h-XShnPvla2K7yAvW5$-+oWKxKMYqC55HOsKDMd5$l5N8F55Zb8J5-$sZO95e5DbB-RFkb5-tCv-X8QY1J+vVv5-6c$5r0B-SRtBUt65RvKyUOLISvHv9ORFXK3-rNh2oYm$38ATGKLI$UHKBU0UNcGdcHChVhQLsVZNCbT-9OM-mXZM2YeTR-KDsfzBFf7FNVqyKDi1ecWS-YuxHOaogJYDChg-dQUQ2SJKoE+KhHR5a24vtvs-25fHnzUnIE5EQEAE53sls+Aa98GLov0vsT0BBBsKcEslT$JCE-GKsXTI2I2YViWq3HTV-MDOTvfabv+LhHlWDgcQnDKz5idKmQcDvQbIJD8z+CtQ2IDcGSyBvDWgsKHcvetDAXkEu-4DM5JIXBB8rB9VaBivJe8DHKlVCQvQY-FQA8$KBsVYDnA8oKZQ8jKAg6$vkQ+C7FSCoiDnTpQbH6ZDTpM5Mid$YAAI0jQcyQpAcDijFG6Ahy+$GAY-pAdcBLUBvc0vU5o-JIUAo0iAAIeAW-7AAIljRxnlscjQ5jQjclXvU-G+mA9AoAAIcA7YkjTpDnrxIy2c9vgjHcQK$loH$WVcZ5HCMjGSrFbQ76kjrxXnUbA-kYOD$6n$vKrOjgM8XIvSdvBV0CXKFjH30EFQ1nDVPhdK7jfC9FCs-ACjjjc5RvtvhEhOtcI8dGDgbA4sKSuAVKyTv$7GMAQyNYZAgCUQQc-K25ZA3MvKOAUObBydhH+5WcDj79Opxxv-RAzYNMy8GnU8s+e7zBcyzqtvHQedLvf6FDMjKaOs7Fdrf$KSJDc5c0OIWcpPv$FJ705riVQskvH9$Y3v2Afn$EJev8HIc1FfFaV9cHxDN9JPK-0Y2E0It9DD85Kjv$J929JICAXP0Y4Sq9cHU-2+s3gVsPC97Btze9XPTNbPTp7RpiDPR9C9vS+Km0uP39c1y$xCs9vSVMK$1Zf$JPd9$vOmt9WCgioPYmfvMmGSMmkP5VMmJPsPhOeOzmL-1ZGH7UzKc1oIuEZ9CMnit9G-MbLcuOVdenG1Nvu9ViJK9RsPAZj38ZeZD91Eh7pmSmX41mADAvkmlIAZ-9cZuPiCy$sKHm+Zsj1Zfj-2pvs9UB0E1pNZrxqmGdxUqmAD8AimJ9qRFKGLymtK5rs9RZUmEZ1ZSg2c3KHZbm3cvpt9XTMSsPFmmKbgyjZmxZsmXmcHj-FMG8QLZZs9o-jKnjH5oZ1uqsAIOuzSG8yLA5xWhH0k7xs9iuOdvIDAQgRFGuKZG65czPokbPGkm8k8qRPKWuTmYmc1j178US0u6YWcuZUY2KVKAkscM82-kkWKZZGuPmTZvZ1mj1cHknbUQcyHAN0kU$69VkcOvKcHJkfLyHtkvKx8VuJKEL0kTSMP65mh2uVYQKokluXuHKSNyrrShEXkY85E$kZcxkBkt9jHWdV3bEqZ6H0kHllyKCKKjinoh29cVZjFBNscuGE$kZcZBHV9CscdULN0jF4Dd3kKpcMi01R4pK+8at75rnZVmNaEYp5igPTKO7VB83GU9yD5Bxn+9$pNSQkKVezRdO+4JW$uDJ8O3p+$6zlmlJgbFZQcH6Go1TKb0i4cJEyG39XZJ8mMh6YpaHc$84DxCpiUs45co8XDbMRQLTHpx+bU1nIyQz6KZf19mLzIjiU+p88GfO9SIt52ZL2KzvUdnIjAC-H$cI8CAU1MuE5a$AIZOJaYJcECrOm$30HxoHKavtKeU3j80-Ucv2pKee5hMe18hFQ6DMM1BMJ1UnEaNLBSqyMH40BWLzIBBhz$8-HfHHa-ovXgn8kLU2ChdK1-19U0MOdVzxdfX7I0kdNdP6pSL1bOjmDK2Hcy1P3HM+0AQeVaASD1knt0jdcrz$SZ2lI16dBFhHCQ5b0$ljJu1RaRlHF4XiYLSaY4FQedQNxMaflQUqSqo0fA8gL$6iqSthT8lkdqe2abl+1-ClkdLK-iS$NdDCaO8nejza8tdbvVRUGzEablF2U8AYQE1Xc6kiTtO-GMcTrd8H40e$o1UQluaWMudputf2TFAtMH+dPOWoMLcegPIa80G6UA7eaNOHDIeU7oArK74NKOpctVBf9li2clby-kUWzv+Y2+1L601loh9Lh2plxbedK1UgUjcaQvIaItO+0YkG1HX2ji70+tKPzHS3M8YzE3YKTMkYzh1JiYbUzOLZB4KfaIyDzfQgFQ8FKEjhjdKa7aSL8He+23ue6im8jKhqFxA1y$oqYWoUc9hTqlhJaHgVmBydUnSpLCKtG4Wy$gLF92jHzJ30Od3baIS3QfAHmg4c52ai2AskWh1pBTRJt$06O69PlA2lDHqQxtzQTlg6Kg2sI$3m8zJL3TBKpLLR5$yiX$a+2aH9OrhHocfTLaCYW84Xx5g9SNo0SY1i635RRUO8alX01XPUbxdq2SfPOFdhioTlDHBdVf-p9AyszlrAL0OC6mMUY3lKtAGby6mhzClqoVL$k58sEKVsFonLG-UYKmhDTaVm02Ok7-BAXEP73LzYF7W5jN2OKY1SINR2OclC2cYOsC5pqmfZ8KElfH0RoV6lgTltuKld+ixQTZ+qGF05MX9a6jne3gn53YGd+cjpMd3RifUYj+L16nUSn5lUBQ+SjvUpKHlAd4FBLHfURtXKydf10efMeTOWlkKMN6bNJFPo+8m1K6g12JsHoi$bi07eaKkcJcplVUbo4DH9I229$viRG4LRClBH200ojP8iyUbW3ZM$K206i2UBcHnzVOZOAmgrshEFQ$iu9zxdCSx3SggiP60mhWKlh7UHFlRoK+zeqE3MSjJ6+8b6bStQL716$tbcs2-64xSGA4I$tGB8pEQ963DgUc$a6o+xP9zfW+h5xHK9HWgsLPmpdY02ChQdiys8oWbY72H0hl$IVtylO4j5F8hv9VRQon3PQiTjyZ0yezO46gtKtyZ8UxVkthAg0bLVJgGV5gCQq0YF2QgX8q3AvSUVWnOUz2P2lvEXcxHNhRUO8DKsKWybNhBiMLPl3iuhyF5GeG6kefG4xs825Vt2gcD24XqYDbITWfdsOJvU4UQVC13i-0keWty6Heg+KZcjHU18WnUcyBJSU+80QnvyKBMk7m0OrWeOvdaATpE1try7ooHXKXtUZ8rHkE8KLz+OBny$LxSCcz8i7AAx$LO3-qUeqgZ9j5gSUyWs$b0RlencLbBc+IVealOY3KaYMfUbUiBH3yvBUMCvAoZ8PIVvVxgLk8idQgJ5xvjvmK5FHViO+dB7fditJscIsUoFYMtKj-lOahKxch3S9P0dQjrKknQg5KdI$yOFhvcPqXfrolOjrc$UiXuIGq1dTFjWUj0anVMcj8K1u3BX-5Q-7QOqck2BXLQUqcNI1Dk2It8I11D5nWUpVa4CKv8tzVPKH2mXZntN5Weaa72lvPK7pcPBdfLxHfQMh7roj8KGKY62iE8eem2aJb-6aQV3+y31z6yEXX88R48RA+Yf+XaQL76AS-hxeO7eEYReCV1gBH+fOQ37LMzDhZHFNEir7GmUASCxdG5EQXaL2DM5nJ7zdMGQNcjAkvcKvEgO-UafMTBJftAqxA$5YhbY8KoEzjm9OaXOasXEvQGNFtPMbgTHInHGQbtPAATNfHOjQt9HbhFVeoM6r7P+iuR4+jf5QtiHmn0NWn8doIuPm94UKOciXjEJIJvzYVXnN4CUH7iLb1AK0BtymrKT8jug2FKvuEN7Yc4bzQaIyG8UKvPi-jJCNXBdc88SJO8MJESCxqGVAn-hZCKyRmCKm97gKUWOR7+V7EB9B8-bhRyBEd+m6Kqgihc$EYuZSHyDFBthbGdzNAeuoBHoRSSdobihKIVOpt$E1o9HWqU00F1qAI87cHYXPBJtcetj4m0-hJxYSQO5jOcO0UJEhRr+V7k94hLuRtXyE8y+UtOxc19fkkdzd+jyii07RX8bteoBMl6-zMp+-orcqO6z55RyBBovUn1PzJ6cOgr7GAUpNGSLyEdFoFLnWU910ytEV7CIZ-txiER$SAWd5yQcf-cKMVFg7j2UVh8j7FQdUp9jn8x5k1xVc37v0aTCSTcbg1pEoyVleJrdBVq0RZtttK5CrXyL09ATpIpa-6nkBka1jUx68aLgVSkRcajp6aPoeAdWfax6Fmy$yZ0vhmQbiUY32RNVjfnQ12U+I5HFQ4qyIeF3qF97Ceoamn+aBeE9H7BiPnlIT1p$1XU884sx12UavTKcO-fer8Wh8CjY7YEMSdjnV91zdNUMyG2RJhS07cXKgfHlqN+WS5+z8gs15WKKmzfLoIV6UHS+88iyf6JOher2OIeSTLXKnyuOyDg$E0x38ntMdAPRv5gcGUAds9VIMYK16t8PK$agWqLaycDLIbzmjiNGSz4plYKqyIC-7CoFGct85oZYLV51qJesdOIcpz1W6cvJp1OIz2QhzQWJJAxIdgx9yc7zxSM-K8lEcJJ7z2J-KfVJxq3nOMJJqZUYyeqz$Qxf8BAtN4ugMH9xOcRxGN3$IgK$GDJ+JUnUiVnMxF7BlM0cZO820NRnzRigIl5XasYcYNE6erxB968bMYE+YVtW4hk8vF28OK-Vb1UB1Vpo0PZnQadWqvPooJphxN8rhQ8udFMnssAncNRagvJYNpQqZBS+56KSA8Kd79BIDH6JQxB$4t1iJjn9+Jemta+AFgKKizMUCFROlQqnojgjfsL-NqZi$8+pAyI8A22DH-5Pon0BGJAgNTZTLWzKXOWlZRyKIvFodOKHvZO21Vd3-SzUuMiSRP-C+HKUPRq6Cco5-gFmNjHMhkq-VpLHvN0ua6Ca2aHqMQPitVKxH42R7Gdmp5NAjJQ1OSKESTHaOzD3vTHhtzhsamqB$3I0zt7OtrofJMDXcOtKGHaOYyeaYeItJlQrq4+dU2xYdJbctttcQUbHytzjc2WBPOQm7jicaHa12D8QGsjAKbzP6iVUDpEWNbb73OLxBcMMzdEU03WvPY2XFQtyBv348JJUGs4tXVH2mgP7$Ms+tKBxO+JNsf0euARVg1AnxppO18cu7Z2OE6Z-01QdaBLamEvPgyK2S1c0lyVlGDH15mMyH2eipocmeYdzPH8VM+7QMeOqy7-Z2KdWpj02I0BVqIFiON53MOcsZ31SPon5MIq0dlKeLvBWMsbvG5kgPFz6Ckhyqk61J64a2FNs3KFUrVOL9miC0etN5pdTF+N$AsbvopmVhcv$NUKMlUGaFOhp6a+sjvbTeX1NcBDyKsKzuRShJq4s63GdJ5xOK2tmF7ezqQQEcM2jfQ0e1NppOFmjfQDdRHhifOFJ6qWOi3BMklPsnHxQ-TRoqZf$algIhp5eCYN+JdAr9lyQVoq9YCFe0+eY6VTg5heeK0R7oySV1KVJiqhy-llKjmLek34+8F5ZNK8cOUSycxFa8sBv5A6PhnzHHTFG$f6eroqP7I8cxxBNa1TRjZl08Bp8Re3g3xsWBo7pcKn0s2p8EvygK7yDJ23FXck4XKq0oSz1TOKi3DL-0NHa3ttoUWj06DMttG9VQU36vphOdtmNxbZXoIqiC-mut+QU3J4V2hAIO+JxN3cvTiZ9hsxgK7f1KK9YIIs66O+7J4HyQx1JN+Du3H4NneotNX2sQ$Z4Wsn1TrWNpkC1rKJnl-h22I8CP4M87K25qP-Q$0SqQJbI6ttopK7Opb539b9BSXzV9IB7YB4gx-xIvIh7UIWHNtooKp5gm2+jpMFQdtil+rHpJ0cWUXnBMYDcPjDcm+a4H408TTaOK2YstC4KpDSqytf077XIO9fSzHjXIUSAIp-t8lj2uJiLVrSpHRoBPK16gbOBkv4Zy6F0x0Wdmiqq-2KgoRthpkkpu03lQoR$4c9ekE4qcFMD0a86zUYRY2PDyvz178-CJL3A2j$jItKJNbfFMW9ztHs+mB0Qckf8l38s7ZP0OMT28lTrvUEN3rVOeYoUaTmXLU87Wa1qzYRynueWVZDMNYY$70AcfiayxNYYncp$5V3E1ildYyiyC4Sb22JJPI2cX$WB5OtV7$aMld-ZT+T0XWj4770Ajdmk8dxyadSutc6UzSfCWYUSom+MZCoHWWYZcutgDVWn1dLanp+1LN5OSO8Vdj-mAK8sIhMTAUbN58pMOkaXNYYXfFqoMUHekVYYfy8m20P28KydK61n6+vo2Y9T1YmSDUtXLGhZKualf48uV-22s3iN6S2Yh5qXoSdkngK7AtrKJRLLY2oHfyvIsIjLTNaQKoZniZnscTu4m7Wc8eyoAbGsKlzCCe0ORD312IpRcnU12X2JTjBz887JG2RojITaI7mdN5UdO5TK5jvtBUzFOFLLKEAM$vmDJRS+1p1vs1daDF2SycK8gknHI1D+bOy-nghfxb29aBJJHApIGZI36MeJJhACbtl09PhzblIUIH62xRgKaQGGdhcbhbKmCQE34nhdcYpg26BPTdH0cLMh0+mAGRZ2uLoBsnRkt88VaMIqoxzeczKRGx0gqdE5ScAPTdvPLxLK8nijmhUax0sLx$DctXF63fzlLhYb63YBVKqF3yzze6W96Te9d4YNo7vjMg0IcifvO43RLB7VraUpfeaanAHKuIsLaKdEt+5XlsxQH2smITdhZ$Dr44lkJuavT0rzQIduVWzbEAcHb2VbyNaYxJvOMv9FKa0d8bdngIsxxvIOD3dfxUgL4Jzst-KnGEdLM8Dguj4E5kvExFlMKZAs64JFEfh2KsnNIdBOHbTtBOjWpzCbSSNlI7x01gBfRkn0KMXNJ-eAR3sdfvWSaXzhk8DzXRtHhAdJIUgDaAeYRxGr7pXjPdKSKy8yxDGW850cVqiBRqgsm0dxc865aUodDeOa8HrL5du6USjDKz+HvlXi41izQsYW4q3piAQuVQZVNtb-rZnX6pBoJTSHViFF70QW2CHvyOpA73B6zS9IRr8UN-e4c9ms1uOLqx$FkzbU62ISstAh+BnuWai8MoKHSoGE9sDAOdxGY8K0yWl7OTbAIfG4UA3FPABKTXtGEGQWTGQFqNXVEF7CkmO2ubG8WON529ePt85bXREvhO12u-L0SyrF+I4Pve16g5NM$qlc2zSpYLhJzcYLUofLJmcEBcKm7Y1mFFZilI8O8h5$hHJycLKLuRac4a9J9+Beb04gVpi1slNdz2qh5B9ssa3Wi2gfPo$s3qIo-nvkKAQqWeecW5+W6VuoC6cAOCcnRonBWkg74FUfnRjfAD1fIc3Aydqy7D5HbtNbZTUViTtdRFgPhsX-2+hDO32KLiWbtIV+Xu-Q8ovdg-RRkrfuj0G9P$B9cA7+54KhBqSAUWo7l0l7ozFbN2kKg7BIboqQbRAvv2UAee5Yv-fUVXcUnYSuQ0WZ6$3aryfbB1L143m1-LOfZf6j0xo1-Ux$VloaEcW8sVf0$iX+3CKA0qy5LKktePAF3nViRxdqq$qF63fc$qooNOlPaBvXuJSu2ZqJv25Tkm155ByejQ2-zWBc8v2fI+toJAY0SSq5EKQ6e3UH+INeEqO6qs-Z+zX-074OA9CE90h$Y$vxy99qRaFvin6Or7SDDzIBkN26YtnRUHO$OAV99FO2vSRWq32cnlq0D83MBCAFhM$lV76$Wd983iB3FeJyzicpVNv$HAUio1OQdiZCWgUVs6$XO58y7AvVkf3383q$0dKlyKfvqJchBqSEoM25UafB1KTdyB$5KAHlKvors4BGr76q60QsVM5fYR4E3xKU7aryBYqKV-7-hBUqfiUXnQJfQz09i08RElpLWDnJgKJgSU8MezDVsWht5EVKNqyxWKhqLMTFno8lDndB0tdLy9NPOQesGqfQ$Fmq9jdlKpqflaL749QDtsnqCQ+1QDlLJ3QTzRSzGjMvrIoXdxKna5e29fpoYcaM6X9Inn+5q$uGTmWXeRh9hj8kzJvU1UYbUq5WB4QxUJUFhED3Kk4E$v57n++BvRVnYNljKmvkDzX+1m9kCU62ZRyXKg29GDeCPX3THHnD9DVXb0aQynDf2H7qnBH+BtOBAOLK2zb9OEpC7rVQ6-pyaTbFcVnNu8k6zavvyX6rf6uoa7S+Bpte4PRZPnU83phLm5$riZZnOJbBC+1hoGrzOT-HyXSgV5euOATGDgCpd0kGDsi9JBPLkdKU$D7s9mDnsX4dcdqKvi8jQCGpf6Cp7yOJcry5qQ4ZKuteQUoXORh9DbsE1+QzBBaV+FtvFjNFhom6m3qSnBHvyMiY5OYAIlSn9UzsbrA+21YYFpjUsPatcUdkIm3vPIsaPzXPzLFgMOR5E2YcG+h65s-qrf9BUrq9NFrkYl59Kp+F2zUaaSe2KROhiOpxAYtVHDNq1OF6fsM9CfInP8lnJp5Xy0A7E4jSiPud$TFNaBNYlp-bcI5qp5LCJTFb4RKIJSsQWa4vbhHd6S57TedDdq8KO4P2ombpXOFhpNkXsOyxVzomzdO2R0r-IG-lin3jCKGgidpP+Isv0YmmiyEKOJTggL9UJVGn+qOIaNtHGhyTFd+Nlb2sIyOkLGxSn9Hoo19py1znpO7s2FIXi+55W4WoHobUy6uvEVcmiX5XIv1UnunQe3HxcYUXrl+hkA+Ufnbx0eknFdkdd6orULqOnfjj37oWHTdXh-HxoljB8ryzmP1JeWQl4cBcas+BXT-DVpOs-JlpEVOVp+BTbLOgErMoxKgIfhETHeraOk4FdGepejEDAKc4DAY9FyCcez$NAjANYlzk0mtcMKdPd-Hptma1LHZ3NYp3bclp1lqCgU1Ipr-+uokgq+47-WtI2ZJDgmGtisYLIvHNQvmbLe-jL9XFoEbvtB+OFRpotR+V87PbMLvBFBfrEZfLk-aRCVp1Tn7o9rNbsm-zXsRYLng-Kt01zt+$K6QFfVd$gIGQme-0eV83gE2FeqVJ3PONXK6AIqRASUKBgF6NuWVZ2SrP5ybzmNifBa8qN4tNJsjy$$KiPz-MK4NGWkzxiPgcPFGJLWrqM0pTlKcHVfQivmgyeV1sBRzl$dj4dG8GfFZcMB3fm1yKSVANa-aMLhCWOrolSj9BoLtdtK-yg$LjK0OWMQfTyhqd0f0v6crVbyAi4fB77OS-TMJmqDQvSqtLpOLOg9g1j9hgIpV$8m4Mp+$vvyn-sGcIRN5FsM9FU374$8rWSApB+D8NiiDgn-ZmMG8DXb8hArT4XLdDbFt4o1BGsrP0xL3fdtj7Ki7vUeaNH8LMiISUveDPiz+R4zs2gEd7tC$aTmGb3Onl8ZHRrENcu7MyuUdNvb9I+Pm5HCD37HVARHnHEz5KlMHehCWheaLOjXyg$zSY$aFqcYPJabJNiL80sA0zezHTSku41ZZDtsGpO7RmytK9$fG-+Su+pScK+RxqHIKRTIrWJc5Ji0kK1+OukUtK5lKziWIm1ujyfKLofH0BhSm+Dt1JefU$xMRWmG8Q-A3ppK0GPKcDuS4+UUyQ3NaBMmbKlnD8pr$mBmupu4gD85c3c2jrk9T5kKHp+t4jtbY4nI35KBZBJcVqoIEGG+tGPju78-vnk6up4MAPb9xTiDWmcZBMVb8611zoOSmegLal$o+uJQ3MA4QtAGxEuPNQfAd2CEoMoDZUSmsfgChrxFJyHP4Jj$b26aB1eoocfPTxfFkLBloNNWiAMy1zMZS3qH0YeS3NgJreKRdDHE2Dp6NY-oRi9URd-xoaIxWr03iUNzyBtEh0zrHKUNzcVacfNXZlkN-oexqYCc3mD9oDv1cvfhcsZXdADSsLt1AGEeKPQDPMRJfp048T7vfrOb4G9HFLtDEYcDaSIqyQi3EgkGeyrr5aLMRxk-EIAtWs1d+nxQx7$vy1ezGpJAl$leJBuS1dkQPa6CcWuOCcMkYZDpAkkmKLGU96Z3Hkf92r+8kqhZEMi2WGcSGDZOFAjYb$WObyqbIzTO1$6J7iuBU6OoTdu-zVQH6kgBRDPPnNenka5kZ8DMVxGbvddsRQab8r$jzLUYY+zQvFNAlrfe4mNfpD7GK5Tvy8ItZcQK8zxoIaO$t4H8logscmKAE+A4s0lP2aJrEgRiBhnUlq-mPAWkit3WujytdRaMfh6y7EtVuLFoK8ZvGzmh5+hZAevZAkRBiB25rJ7Z61jSD+Cu0cl6yi9G+fiXvFHLgHK2C3g2VqP$yQAduR9b11zcuGJeI1j8u9d+ULnkGquaa6y-rULY6aiu5NORAlgnXHWWEYOA6E22r6kCkbjCDkmT4Frt34jq+gTC3F3K48Pa14PGG8TGhmSupSWA6yadSbSu$uItJvOUyL2cJuHlQ6j$KheA0Xd9uY0KyaLSqIKKcMqziKtc6da1gyxvaMakS6Yy5hzZqajztcSiHdnUyqEDk2gNlJuYnguudaQ8a1z8KbkKKcH$d08TpKOIHKKKa7nu8k8UKgu9KUbkHIzZYSKguv9KDKpKjeKDK6KKKz0gu29YCK83RULU0rIK8zdKa1KHz8cazU-yYKgubtcMMguv$dHMtKj8lDMfhAMcU0pKRyzKcyKUK+KcguvF3zKy7y1TicVK4ka$KFu8B2yfd9jZ$id$JaNKPkVWzf1tMSuVRa6KoigMlJM81UNvo1a021zjkd1c1zicK85KlidiKm2zdcz8O8lidfKJhzIc$KW8zOcQK-8UUczeU1ULhx7yMU0cJKWKUpcV7b1UhcY8UdTxcFKWZC6cUZ+dUGcuK-dTKc187SFmcY8JZ$GMYVKnak8y5U1KKKqK7cCk58WdalKF9h9avc513ilYKl1JZCEc-t2T2z8HeKdchKk1ndKu8ATx6zvMqoB9LWh8PVP3pUdI+1EO7kezWdu8KZPC1OyH1eKXEKvIgi+n88d5ke77ca+6o6dz1TU80fhyPx2k85+lKcU0j8tySo8OZqWFcWuIlHH70cKgHWlKN+RHWV0jYyvKqK2+K7UCcjDxhU8KyKK8c7cWKUH1W1QKc8aIcQKgKciciKt8a71hUMoSi7IO87270p8jB8iWfYakaNzAWc5Oy171lyaM8phagd2cdIRdHAdjYci3GUvgqnxykIGz1COS7MZ8co88bx4g40RbgG8aKuIKKaUF14Rdu8y+TCCipm+tpfU0g+M7T7ogdHEKp0KZiHHu0nlgilGKZKyHHdMDMiHHTea1+6UUKKKjfoKyMKKzGCdJ8aOKpKl8zzKeIHMTb8b6iMLWh8dKKzkmI0KK" + } + ) + const body = await response.text() + return { + cfClearanceCookie4: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === 'cf_clearance').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0214({ + evaluatedKeysStableid, + oaiScCookie3, + cfClearanceCookie3 + }) { + console.log("Executing request 0214") + const response = await fetch( + "https://sentinel.openai.com/backend-api/sentinel/req", + { + method: "POST", + headers: { + "host": "sentinel.openai.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "text/plain;charset=UTF-8", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//sentinel.openai.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//sentinel.openai.com/backend-api/sentinel/frame.html?sv=20260219f9f6", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2Xgr1zwPyxLxRd4DtCNYLuGRqd; __cf_bm=0EL4AcmZy6YABOgAu1caF13.HOgAJFYpEPZclKcKt7o-1773809548-1.0.1.1-I4NecjcKI_YTJdkYmgKLrSVWQqlc.32fNjD.Htd3hjzOTyKmiSVcYcpdjkY4mTjVtKFeZXl4sBQx.IIHkPz_K5p_j_cHjy5CGIBZrLn3uCA; _cfuvid=XloS9D5ZuYqw1gWUBZTcrrbrjrk7UeBZTkOWf_cTx3U-1773809548430-0.0.1.1-604800000; oai-sc=${oaiScCookie3}; cf_clearance=${cfClearanceCookie3}` + }, + body: JSON.stringify( + { + "p": "gAAAAACWzQwMDAsIldlZCBNYXIgMTggMjAyNiAxMjo1MzoyMiBHTVQrMDgwMCAo5Lit5Zu95qCH5YeG5pe26Ze0KSIsNDI5NDk2NzI5NiwxNywiTW96aWxsYS81LjAgKE1hY2ludG9zaDsgSW50ZWwgTWFjIE9TIFggMTBfMTVfNykgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzE0NS4wLjAuMCBTYWZhcmkvNTM3LjM2IiwiaHR0cHM6Ly9zZW50aW5lbC5vcGVuYWkuY29tL3NlbnRpbmVsLzIwMjYwMjE5ZjlmNi9zZGsuanMiLG51bGwsInpoLUNOIiwiemgtQ04semgiLDIsInJlcXVlc3RNSURJQWNjZXNz4oiSZnVuY3Rpb24gcmVxdWVzdE1JRElBY2Nlc3MoKSB7IFtuYXRpdmUgY29kZV0gfSIsIl9fcmVhY3RDb250YWluZXIkajgzY2xiaHhjb2EiLCJ2aWV3cG9ydCIsMTQyNjguMzk5OTk5OTk4NTEsIjk0MzBjZWU0LWI1YzctNGM2Yy04NDYxLWI3YjQyYTY2ZGYyZiIsIiIsOCwxNzczODA5NTg4MzIwLjIsMCwwLDAsMCwwLDAsMF0=~S", + "id": evaluatedKeysStableid, + "flow": "oauth_create_account" + } + ) + } + ) + const body = await response.text() + return { + oaiScCookie4: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === 'oai-sc').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0215({ + variable12, + currencyConfigPromosBusinessOneDollarAmount, + url1, + oaiLoginCsrfDev3772291445Cookie, + rgContextCookie, + statsigpayloadFeatureGates6102981RuleId, + loginSessionCookie, + hydraRedirectCookie, + evaluatedKeysStableid, + cfBmCookie3, + cfuvidCookie5, + cfClearanceCookie1, + continueUrl3, + authProviderCookie3, + oaiClientAuthSessionCookie3, + unifiedSessionManifestCookie3, + authSessionMinimizedCookie3, + oaiScCookie3, + cflbCookie5 + }) { + console.log("Executing request 0215") + const response = await fetch( + continueUrl3, + { + method: "GET", + headers: { + "host": url1, + "connection": "keep-alive", + "cache-control": `max-age=${variable12}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"macOS\"", + "upgrade-insecure-requests": currencyConfigPromosBusinessOneDollarAmount, + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "navigate", + "sec-fetch-user": "?1", + "sec-fetch-dest": "document", + "referer": "https//auth.openai.com/about-you", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-did=${evaluatedKeysStableid}; oai-login-csrf_dev_3772291445=${oaiLoginCsrfDev3772291445Cookie}; rg_context=${rgContextCookie}; iss_context=${statsigpayloadFeatureGates6102981RuleId}; __cf_bm=${cfBmCookie3}; _cfuvid=${cfuvidCookie5}; cf_clearance=${cfClearanceCookie1}; auth_provider=${authProviderCookie3}; login_session=${loginSessionCookie}; hydra_redirect=${hydraRedirectCookie}; oai-client-auth-session=${oaiClientAuthSessionCookie3}; oai-client-auth-info=eyJsYXN0X2xvZ2luX3N0cmF0ZWd5IjoiYXV0aDAifQ; unified_session_manifest=${unifiedSessionManifestCookie3}; auth-session-minimized=${authSessionMinimizedCookie3}; oai-sc=${oaiScCookie3}; __cflb=${cflbCookie5}; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0218({ + clientLocale, + attributeAriaExpanded, + session, + origins, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + statsigpayloadDynamicConfigs217573384Value, + authstatus, + userGroups, + urlAudience, + evaluatedKeysStableid, + derivedFieldsAppversion, + evaluatedKeysCustomids, + immutableclientsessionmetadataAuthSessionLoggingId, + continueUrl2, + continueUrl3 + }) { + console.log("Executing request 0218") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/b`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": modelsProductFeaturesAttachmentsAcceptedMimeTypes, + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//auth.openai.com", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//auth.openai.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: JSON.stringify( + { + "writeKey": "oai", + "batch": [ + { + "timestamp": "2026-03-18T04:53:24.268Z", + "integrations": { + "Segment.io": variable4 + }, + "event": "__protobuf_structured_event__", + "type": "track", + "properties": { + "eventId": "4b2aef24-2d4a-47cd-b900-91d32e070898", + "eventCreatedAt": "2026-03-18T04:53:24.266Z", + "eventType": "web", + "userParams": { + "userId": "", + "deviceId": evaluatedKeysStableid, + "authStatus": authstatus + }, + "deviceParams": statsigpayloadDynamicConfigs217573384Value, + "statsigMetadataV2": { + "stableId": evaluatedKeysStableid, + "sdkType": "javascript-client", + "sdkVersion": "3.16.1", + "sessionId": "4c71157d-7261-4224-ae34-fc38643d4d6c", + "appIdentifier": "login_web", + "appVersion": derivedFieldsAppversion, + "locale": clientLocale, + "language": "zh", + "user": { + "customIds": evaluatedKeysCustomids, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "locale": clientLocale, + "appVersion": derivedFieldsAppversion, + "custom": { + "client_id": "\"app_X8zY6vW2pQ9tR3dE7nK1jL5gH\"", + "app_name_enum": "\"chat\"", + "originator": "\"\"", + "AuthSessionLoggingId": "\"af0081e1-4aea-498f-9a49-344ed42ee061\"", + "client_type": "\"web\"" + } + } + }, + "eventParams": { + "@type": "openai.buf.dev/openai/protobuf-analytics-events/protobuf_analytics_events.v1.AccessFlowPageLoad", + "authSessionLoggingId": immutableclientsessionmetadataAuthSessionLoggingId, + "page": "ACCESS_FLOW_PAGE_TYPE_ABOUT_YOU", + "previousPage": "ACCESS_FLOW_PAGE_TYPE_ABOUT_YOU", + "transitionLatencyMs": "5012" + }, + "clientMetadata": { + "name": "login_web", + "version": derivedFieldsAppversion + } + }, + "context": { + "page": { + "path": continueUrl2, + "referrer": continueUrl3, + "search": "", + "title": "糟糕,出错了! - OpenAI", + "url": continueUrl3 + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": "145" + }, + { + "brand": "Chromium", + "version": "145" + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locale": clientLocale, + "library": { + "name": "analytics.js", + "version": "npm:next-1.81.1" + }, + "timezone": "Asia/Shanghai" + }, + "messageId": "ajs-next-1773809604268-653b069b-2872-4dd4-8646-505156b7aeb4", + "anonymousId": "9ef32c53-3f9d-4fe2-96f4-653b069b2872", + "writeKey": "oai", + "userId": null, + "_metadata": { + "bundled": [ + "Segment.io" + ], + "unbundled": userGroups, + "bundledIds": userGroups + } + } + ], + "sentAt": "2026-03-18T04:53:27.876Z" + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0220({ + origins, + urlAudience + }) { + console.log("Executing request 0220") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/projects/oai/settings`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//auth.openai.com", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//auth.openai.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0229({ + origins, + urlAudience + }) { + console.log("Executing request 0229") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/projects/oai/settings`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//auth.openai.com", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//auth.openai.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0251({ + currencyConfigPromosBusinessOneDollarAmount, + evaluatedKeysStableid, + variable14, + cfClearanceCookie4, + oaiScCookie4 + }) { + console.log("Executing request 0251") + const response = await fetch( + "https://sentinel.openai.com/backend-api/sentinel/frame.html?sv=20260219f9f6", + { + method: "GET", + headers: { + "host": "sentinel.openai.com", + "connection": "keep-alive", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"macOS\"", + "upgrade-insecure-requests": currencyConfigPromosBusinessOneDollarAmount, + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "navigate", + "sec-fetch-user": "?1", + "sec-fetch-dest": variable14, + "referer": "https//auth.openai.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2Xgr1zwPyxLxRd4DtCNYLuGRqd; __cf_bm=0EL4AcmZy6YABOgAu1caF13.HOgAJFYpEPZclKcKt7o-1773809548-1.0.1.1-I4NecjcKI_YTJdkYmgKLrSVWQqlc.32fNjD.Htd3hjzOTyKmiSVcYcpdjkY4mTjVtKFeZXl4sBQx.IIHkPz_K5p_j_cHjy5CGIBZrLn3uCA; _cfuvid=XloS9D5ZuYqw1gWUBZTcrrbrjrk7UeBZTkOWf_cTx3U-1773809548430-0.0.1.1-604800000; cf_clearance=${cfClearanceCookie4}; oai-sc=${oaiScCookie4}` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0252({ + clientLocale, + attributeAriaExpanded, + session, + origins, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + statsigpayloadDynamicConfigs217573384Value, + userGroups, + urlClientId, + urlAudience, + evaluatedKeysStableid, + derivedFieldsAppversion, + immutableclientsessionmetadataAuthSessionLoggingId, + immutableclientsessionmetadataAppNameEnum, + continueUrl2 + }) { + console.log("Executing request 0252") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/b`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": modelsProductFeaturesAttachmentsAcceptedMimeTypes, + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//auth.openai.com", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//auth.openai.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: JSON.stringify( + { + "writeKey": "oai", + "batch": [ + { + "timestamp": "2026-03-18T04:53:29.477Z", + "integrations": { + "Segment.io": variable4 + }, + "type": "page", + "properties": { + "path": continueUrl2, + "referrer": "redacted", + "search": "redacted", + "title": "最后一步:确认你的年龄 - OpenAI", + "url": "redacted", + "route_id": "ABOUT_YOU", + "is_error": attributeAriaExpanded, + "origin": "login-web", + "category": "Identity", + "name": "About You" + }, + "category": "Identity", + "name": "About You", + "context": { + "page": { + "path": continueUrl2, + "referrer": "redacted", + "search": "redacted", + "title": "最后一步:确认你的年龄 - OpenAI", + "url": "redacted" + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": "145" + }, + { + "brand": "Chromium", + "version": "145" + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locale": clientLocale, + "library": { + "name": "analytics.js", + "version": "npm:next-1.81.1" + }, + "campaign": statsigpayloadDynamicConfigs217573384Value, + "timezone": "Asia/Shanghai", + "app_name": "login_web", + "app_version": derivedFieldsAppversion, + "device_id": evaluatedKeysStableid, + "auth_session_logging_id": immutableclientsessionmetadataAuthSessionLoggingId, + "openai_client_id": urlClientId, + "app_name_enum": immutableclientsessionmetadataAppNameEnum + }, + "messageId": "ajs-next-1773809609477-8a98b76f-3ca6-4ec6-9998-b75a8b9e73f8", + "anonymousId": "98b76f3c-a69e-46d9-98b7-5a8b9e73f889", + "writeKey": "oai", + "userId": null, + "_metadata": { + "bundled": [ + "Segment.io" + ], + "unbundled": userGroups, + "bundledIds": userGroups + } + } + ], + "sentAt": "2026-03-18T04:53:35.480Z" + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0254({ + evaluatedKeysStableid, + cfClearanceCookie4, + oaiScCookie4 + }) { + console.log("Executing request 0254") + const response = await fetch( + "https://sentinel.openai.com/cdn-cgi/challenge-platform/h/b/jsd/oneshot/833f25fde7cb/0.7038850727994532:1773803411:ARXnmPIBnLtHrBDlKdcQyOQWgQPFReiwnR-YqmP6ZHI/9de1a26c60d02f7f", + { + method: "POST", + headers: { + "host": "sentinel.openai.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "text/plain;charset=UTF-8", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//sentinel.openai.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2Xgr1zwPyxLxRd4DtCNYLuGRqd; __cf_bm=0EL4AcmZy6YABOgAu1caF13.HOgAJFYpEPZclKcKt7o-1773809548-1.0.1.1-I4NecjcKI_YTJdkYmgKLrSVWQqlc.32fNjD.Htd3hjzOTyKmiSVcYcpdjkY4mTjVtKFeZXl4sBQx.IIHkPz_K5p_j_cHjy5CGIBZrLn3uCA; _cfuvid=XloS9D5ZuYqw1gWUBZTcrrbrjrk7UeBZTkOWf_cTx3U-1773809548430-0.0.1.1-604800000; cf_clearance=${cfClearanceCookie4}; oai-sc=${oaiScCookie4}` + }, + body: "tYM8Roc7zha66lOK7KlKbKtB8+8a18c6KRKgfSKUhK2Kmd+7LMxzyKCKeLTdIK7cRyKahycKhYc3ZKlhSMoZSY0Kb8HI0KgV+KIIKs0R25K7XcU9MjxNsoWK43CF3EfrnMKg7-ftUMk0JgMeK8MKa-t+MDU18TVc11VZUTrKYMct7MvMNt2YG0WK+1cHK+iKc5oKg1cczP3GJ8K$K+6yKKrGkoio0vvRh+U1K+NGeap106yy8l0KWWBo8aVGGD0lFFYz40yz7WsahKcSmVnUN7yKlHRzvOcrcmoKU0yJSIZI8YcJO9PGBuRnuMXeMRlYjAOTOUR1ITMIjMsYKchOD0Y8KsbdvAgWbL59Mzc0ylKka1-VJGPiy2hKUMZMvDHCjZzFt$Zs$DZYX1TKPYJel+hURKaoGgKzlHaWyMJkrfmM9dYIAaXgJH90QS-gch6nMlnCfkjXkp1c1gcKa+I94Xq+sahSWyKyXob$7NMD-BBfs-K$+mBfYO8acAvO9DDjZQd75VzFP1v35nzB$QkOJaYdiQSiJMhetM80U2xKa9mZUHNO02IgcMSoiWbh2HH$hLLJQtcMqena1SL3npInRLnkPnH6E$OSWfxWn+eT+FcIyjfWSYYbCmvClZrpcpiTp9qncPfx1B$ElIQDAqmxYtv9x8F-5v+pzHnr5rDfnj3rYD8mZ+CD1ktDg2BkqFG27JRvj$zcj29P$aFGTMeIBnW-aQCC7VhUdTahvIXK7MIM+8OXgAMSSNUiK1iedT1G+AycsPIrc8aOTSmaYaC1K8Ovb6HSSSTY+llA7YozcKlYMbHOfh3OroAlOuIiBmce5AItK+9OU8UMMydpA5mdbAOxSWMWLy6AOEeolKtctt69XCKhkcUTd+Bq9QMz6c1$glhntzBZ8SbmedJcE9OmVpU+nKyaOI8kWMY-x1U11UA+rVglKSgpyM7-Ygn1HnWK88ic1mdvnntUyh5kbYKJH-oanmBgAEbBUxQE2oyp3UiAEcaLJ5S2BAoISpzMKcxZaoK5jzqIi08UltgdXyd8oqopHMkmvOKxAMXsxTd+aL01Y2xT1AdHWKWYiUqgKql5fCnW1lJhmIzERoVKWRvnXo6zo9RxKGJMl3vMS3gnS5HAvYooyMgbK$QBWDWK-WcT6nB+eMHKJAMipitttKpAdOpdN5ni0+pUjesvkXOVMOKJ9MzN0X3HtkRBJsxM37jr5tUN31n+cpl5HKKMvpAMMPx09YS4+hW8bK40hv0OxSc11kWAWVKcW0XK9OLWUBOkKR5KD-Y+0VVtcoy0OYMAX0QnjbH36E8TTlE2ER65hoAOq2o+1JW1C6Xz9Oyv1Z+W4cLaOTfocXkac$B1WqFOgcGULESLCFja+TAGtLNh9OIo1dhLfK749kNqtHG-23kK4HQX7O4OtcVtSJt3ZzI8+2mHKbHBFsEsitK5jPYQKsqtcCss6QarWaGjymV++3VhW70udYpjKUT1Ho5zV23BD6XNiXj08k4Os4F3jWVZevvn8ziI2Hyot86yE$kcULNATJ04KC45eGthdU5A0baTNB2d58mntaTNnP6-eOSlC6TUUIzcknlC-3SVK8mmd4I0KmloaUHGcYWcMMQ71qS5fMtAIp4UQhSIUKKtgMg1n8LIHnUTbcpvdlmX7WcJUoz7cYSMrIXph9d-maHby8DuiOT84cl$xlDPDHIV89+OhAFqKYPcxKsc3Bt7HaOzUrK6F3H92i5TtT0H1yOUhIO-dT947Qih3RogY+5z1gLAYXQM-KL9l0xztNe+1oHMhYnSfiM8uIRLugrLmTd7mAL$xmjjzvzBgd$FCcmR141FVJ8T1pRUVIi10xFKaI4Ova1tEsLDVUVHE3RvtTy7ij8jcMi4SHhMO$OcHF2HmldRIFnfBGKDbiHvzJ8o5zhAifxEEcaoTWV5TI6pedPzgT6m9GtJ2FUQ+5Z9xLccGcMcnynSLTyszoH1MEz3r8T+An8NOghoHjQAWGzfBpGYiJe3hbfbfrB8Dx8GKEiqTisR5R7SOQ7$iTM6272O4fl86lSs7i0vIL8XHIcM3czJMsHl3IIBOaqzWTHHI45cM84o1psijy8$SiEjfzWoJLiqz-xKxjXyI$SPCbNOM0HeFnhWoTIJ057FKVaBdQoGJI31zc+fkoMTfMyXUIVQOjzEKRuz1ygHQHVAfzY3gm+Wims8TcyvmMMO$O8cR7P76d3JhXX0G5J1eVAkR33BxBgeuJ7Gdz99zK$bVNK4oeTrypWWWE-aBTqbhi8-1MD9HYjdJ8+if5QvGV1OWFnjzgFW6UJLJi5BL9IaXZKxspNJi6RMLMgsRxCUgalYq8JWNEcIUOH5Gt0QsNA2EMftN2O8zC5damfSOD46T0I0d81qC$XC1Rt8prvpX1LyIFqx8gaax6q43c-sPbCKlbdy8AotvGp6iB2k9n2cqFRt9rxyCyQ-vAlNhKI0NDDPeBYilyefdof$RAor$SBKRPzslBVB18tWykxc9lrCANZJc26afPC1OpavHcIdWs6e8nIlJe4HNzvrQummQtC6o1Z6hzo34FSK21e59n5tr3Nczt2m5S82T5K4NB9HLcW8JM+bC2E322yy-N6YD1RajVJaEjFmg62rlpxLxiY4jOe0njzAbJgqaq$B2pKLev-2FctjtDQaO5tkBtgXyZ6nF3RnXjNvhkMHo+bBEMehXnfXMBThWKRK4jU6s+atLGfuZXf8r-NqX0OtLy0ZyY7VBm94i5MnE+25YP8KKPzrfHUxLPWGU02B-gOJS3I9MMlMVaIozUiftYSUTiOigJYRpC3AQDFeMJ1OcGALeX7B$FO0L5nOfBlG2xXHOGciLmffRsTsNqHUUA8mdQ6-xRRIS9rebJvJOTU8yA-VqmFOAqP9y7saV4OzqbsyNb+v-1Nqx8MGCE6zSbD3spCjhiJC3+A8F1KtR9ha1hKipk8QzhopiLibp0u4$+c8T2hRQue8rLD3pAAxem6rAkTt8DhSscLNsqBM-96cHYUna$Au63qP-2dXplG4deHElBQuHX9DIeDSBR+$36cWLrEkqRjCP8OEQqpCjVr9Ynh85DbKJNALv9YBDHi-ksoGyvRP9OP$pWC9fncCDfE7xuC3QQtesxQcMnd5iWtS-+rcNYQiDpfxpnPEVgQt9OpnXsiCAIeiHT7Qn67-TfLJI$Hc6gHQttKY2FMa$dOjM5YnBySDatlxiZAOnjHmx6KKFM+giXDxUanVigC-ksvGa7bNj4oZMQC0AH8LBgthLjFm-9Xf4roTnF$QAee0kC0K48dyTlAu70KRzgisjbIr+VUC29lJOb$mfxbu3ROfLcLF4uJBZI8EGLsxXERfmL+axcjVOM+TCNkOdpaqZdvr4uBg09zpmSJKtqgpSqg7Uxv0Gvj2qgsEEg0UllIPALBfydCRKA$EAZta6ARa1g1cjmZmEOM+YTfzb3SzKSIlKFPU80HjD+xOKSqeqUkT8TgcK2K2t760Y-KD-atH1zfU+TfKxUoJReKDTy6TJldznmK9R1enl4Ko1jhAq7GTf-4Z45eaeg8LemNWNK16N-NWNJKp$JO+sKY-uZOTNeJWNnEa6+sm1PNyEenJOTf+s01oN-xl4K24KC1I1P1o1VY1MsCg1F8$NMqydY86q-Tn24K9dBqJFy431PKx6hsJql8dcW1DKqb-q4di4KR4KYME174m8sdl8812CeMV478frgIa4eMC4UYT88rg1MrUT1VlMxrMQUT+MVrHr1dAH0MPMqratA+RqRrgbl8PrK85MrKYaMdAI6ayIBaWaaxJIXMWbcMEIvXjdbfnIL-ydBV3aAIo6Jb5IrKI2he4Ip25N4dpdrK$2ayl892c24Kv218ubJ2U1cdl8X25T1YvcK37vj2gctTydQD4Kk341n3l89YL3a13O$YpPUOrdQXOYrKQXhbl8QX-IuYfXHTcMQXmXTYfXKOIUE9yYXYfXgC4bydDXJ44Kp4l8p4AF4dpR7Rl8xRK1qLcR4KvRe8q8BZl8FRTOsbydo176nAAuMFl60F+8yPeiioyF7iqiXUDK8Dt8VFK1vtsR4Idey8TFt8PFcC4ddsjP1Vl8Fdosydxs3m5seOxdSsMiJu4dYCU-Rb4IF0DsUfK-gg30Css06CjhTOICRNn-y-edyiX0FX1MDKPB4CgnJH4dIdsCjTzTMTtYofRpD8WT4UvKCYvUvKiUIhIb5UDKupC-JUvKxU9hIb7UphIbjYLhxa1Uq8PUM+aYCiChFVK1XbUfKMB8I6kJApvpppubaxMpf6u0kQAb502-lpk$nJ4-5ClpDhr6k-J-z6C6X-h6jvHUrdEdu-ZhopFKbK$Iopp8NARJgK2S7gWdPnOdfon7ovaUWTmB37QB47LKIb1x-POsl026cE4971svK6ZMn6VirdoivZ-8ZiLZnZ54Rib3ldcYTWlsagRJzxhK7++U+YH1ju47LV0FayyOj4m9+I26ed4xWzE8RiQ7+UOeU1h5a6go4x5kagZpTdTC01WKKKmiMP7-JRLK1Ra1IaYa5z6iiVL06c+ai3jaHcugKTEbe06zg-rl5ajz7B6JvgRafM2-IqOaY590D2MhC3oK43a82B3VZpecj2L2lbrHq-hHGbAUY6sBlpUUPg6+06XfNHDyFlDAvVDAq0hPjz7VRajimS+K5alcUc6UWlebG-d+GjhzIU6S0dzy+-FtO+tUyVOMHoTMMcBKXLRagWzBPLz6cfFUyzZSA+m28LMUtS6aOXhSWPfao36p7MHboRqi58AWelg0gHBUy-Uzvc3SezdNBJ7jhTQWvt5MJ2fzATT8CXn8QbVhoTuDTy+Ddc5o$lQVQSzo7fv+7ScM$K23a-zccQsUSBR8qpW+X-TiWKKU7HOHno8hHDYRVJUxdYhgKUxCgXKxd6OdczSydpz1KxdtxMOdKuyk7Kx8FYnsxHORgdx4St+8SIFrxMO0qyF-go3LKvFkM0Smpy3LxmvUv1ei8G8pxWUgGYsHY7FiXbM6hRgCIXR5OaSJcFcXcva1FTxKvKxeIzeP0hOCxRgoekEWs8x$x9SXSzJ3ImxKayMGUpIt80ICxQL+fHc3HPi0IOGzdK0xLxO-Mxny+NMocJgI8dN31t86H+Nbhi8nezdvSYh+e4SgeJeJqysDFPJ+svOfzWFGKreMO88bYkezKqsLc2eBMB8j8ySXSXcar2x3StyfadpB1bg+c-aDsU8xd1WKCjsVE4eavkEI8xK0rl61c-0fd5W+8n6pN3v8ygc3HLtVxGdgcanXKxH7OYtkE8nEyOy1cvOBSecmNcUEXL8iObgYOhngV586tRFu73O5pxdPMBg5CFxUxHKmC3IzHXpcCXKFOsKuYHCGcvOj+5Sg$1caYE$ben8E$xSyLVcnRnV3Ij8k8icJCzv-gan4$NC-gq$3SIKhKr$SpaOX$RC2CXc3$dKIgR$a$38b$CCGKxx2KT$hc6cb$G$PcaOZ$uCGKT$ic7eoIVdAJD$YCh$DCrCXKh$NKdK8TITx$ycRf4nmcu$2c7$vCzW1Kn8ef1OPOEVQKhYWlycQcF+USWSKS5S-M+e9I06Kvl$VYQdyTQKFOJSgn6YVC9TbrLKV$QFgvs3USxLmTyH5vRp01SlGNffLTNJCrGckOMOK4YOp1iebglTrqbcHK+8yKTRGKEe53fFoEPY4IW1XeP0be-eFlF60YySG8a8+YsKsRzrkYJqSxFUCYEV3e1cPOxc$U0Eo8lKKIICoUz4ulZO8ba8YL4OCY7HXK1SW8rOhncIzcUSiBrnzSBCdqkx1K6b3KkCtEBv3I1SoSXSF+iEr206fByBDKdKZqrsCxj8tEWGib$blBmcBB2VUFHYGdmxAbX8lBBbLKxshBybjX0VU8iY0YKpCeZloIGUAihbnB92GKNbEboCZTVBkOhbsEdeJstBsJqBoIPOyU2bVgOGtBTWK$WlxKvSA+GlKbcHXSjr6OQvb$I$O$nBZn-Bj8Nq$ike5W-bXSFXsq$V31WMupWnJ+15fEKftBubyBnOnKi5xc-BGYtKsceTgObM3MceFvzHCbh-GY2bi5tsYVf5h-X8hOPIla2c6RQIW-e5+oWKxcdEt$5-SOsc-g1-eTBp8x5-PB8055$eZnA-x--BB5RxkB55t$v-XS5E80+IVI55U1$-4Jl5SytbYh6-XIKRYnHvcIHI9nXFXc25rphooE9$3SQTGcHveUHcl+iUNcGLc1Ct+hQdsiZpCBT59nd5mfZgaExlR5KQsXGbRX6xNiqRu501ecW8-EZFSnr2L0YQCtL5dDYQ2SJczE+ch1R-ro4ItIs52-f1naYOIY5YQYAY5WsTFUAa98GdoI0Isl0blBsckYsTCCV$E-GcFfTvavaE+Voq31Ti-g-nCIfzbv+d61l3-McDvQKaBidc9DkQvDTvVQ8aE$tDaIDcG8ybgQWgsKHKvsNQAfkYu54QM-Vv3BBS4bAiabUIJsKDHc$iCDgDO5FQA8$cleVE-nA8ocPDKAKjLqeIkDE$7xS$oV-OTN5BHqPQTNd-dV1COjQvijQKyD0jkQiAFrhjpREC7jO5pAdcBdUBvK0IU-z5JvYjzJUjQvxjo57jQv$ARFvlsKjDBAQAcT3IU5GUmjAjzjQvkj6EmATN-OrFMy2K9IgjHcQceTo1$WVKZ-S$MjG8rxbD6qmArF3OUBA5kEIQ$qv$vc4nDgMS3Iv8dIBi0CXcRAHW0YFD8ODiPhdc6Af$9xCe-jsAjAc-XItIhYhOtcIS1r-MbjqsK8uAVcflvC6rdj5RJEPjL$UQQc-ca-Pj2MvcIjYnTByLh1+5WKDA7PINyFg5RjGEJMyS7nUSFUe4GbkRG6tIHQeLHIfqRQMAKzOe7xdGf$K8JQc-kJIIWKp9vCR07JBGiiQekIHPeE2I2jWO$YJevSSvcHRXRzVPc1xQNPV9K50EaY0vNP-Q8-uQvCVPaPVvsj390Y48qPc1U52UsWgis9CP6bNaxP39Tpb9TN6ypV-9RPs9vS+c9JZ93PcHfCy$s9v8Vgus8mfCV9dPeIOZNPo$gVz9YZWIMmG8MZm95iMZV9s9hnxnGZH51mz17UzccHzvZYZPsgvVNP75MbLKuOVLxOzHJIuP+iJcAys9AmjW8memDP8Yh40ZcZ371ZQQAIkZ$vQm-Pkmu9i$y$scSZEmsA1mfA-opIsPYbiY1NJmrFtmGLy+tZQQ8jUZVPtRFKGdymtcBGsPXmUZnm1mSg2c3cSmbm3KvNNP3TM8s9FmmcTMyAZZymsZ3Zc1j5FMG8QdZmsPz-jcvAH-zm1kqeAvIuzSG8ydA-y3h10u6FFPUuOLgv-j5MRxGkKmG65Kz9ouT9Gkm8kStRPcokTZOZc1j178U80k6YWKumUY2KVcQkscMSa5kkWcPmGkPZCmvm1mjHc1kObUQKx1Ap0uYChP+ukOvcc1Jkfdx1tkvKxS+uJKEd0kT8M96-9takVYQczu$kXuHccpyrr8hYXkYSBY$kZKxuluN9jHWL+WbYqm710uSTp0kQZubMNUeT4rymZTtxQ+u$XpGkGu02a4QQc8M2xMZlCb8bGzIaSMI8lC8KtKUeEt$WuWroTNLFtg2mQK8EatTTCL4V9ttUfa4Lvva6GcfpO-P1h$IVpu9RK8b8RLOTprpx2jluizVnCUSQcQv1$hFpJCT7BkRK61HnQIUoaNKsP+DSMj5Y6z+cTP51sqiASvJXAd821J6+OaZVc74on1-MjXvcKEiH441Wqzu2lcEWL82154f9SpzHc5718mup6+p71k1xsdoaNDYdGpBM2+UoKaWOKNdBPKd9KaJTFuJ06I1iSjv3qe9H8Sp1x8KXpTv2haei1G$ShSolHhhOENZAqiioUPU3BoXmr6gaQn8cK9c71IZHBy+J8VBn1Lr9FBZevzoSAdAr9cloc08mBo1WIJ6LyU4z9S7fyIZ8+$lNaZlN1kn9tWOSDqtAgp0m2kbBU5ta5sbHL2zadE-qJStF01Rig6yszsUgitK42LnysaxOjKJr9eLl+Ahy8jQJrvoTjyapFSjQeLjWdmUTcFSD3W5gYcf+Ah-lgKtLVfSBcnGMAxdDYZGRCoK2eIJNU8c6gkUi1uSgkRVyjW7O12XS9dEUnoUpHZ1TKgEMM0YdTId2P10MvU4$TOCxcHIGs3tv7ggUzhA0jGOigWtLly82OI8JUH4in+IhJAN8K8KWMmKTq31T1edzvQrCKoblPMYIyelmTaalHcdnfbdTQWrLYOKFHLAMKL8utecUTKJB+S6H-6c5kfAOZ8T$CCa2Kzp3lFkLnMrKmKvsT008HNlsL+Uda7OTeMOIl22y4hJ8KX+v2QcFYei+p4234Um2YxlIS8bAKLKb6i7zGz$hqzTyl4-GUOkvUAWxnpIOLv4AhJlg9Ss60eE65h3OT2UD1pBrKOF6Bjhzvoo5tp+gbpzRUlo7LeOXUtiRo+DdVKsbU644+FTgzdSLO$6e5hLa$hBIcbAgTJBs+aimL-8ggMAg92t8Rijvh70QKtY42ML-OG1cdBhax7EAVOGOgQgslRoNGtKbfAyX-T3oY9gdZ7H9yTMGIlL7YDhJbNmCT2ELBYY6-FKHcd8aHy-ldhtDlcdL-QtvyrIuTkdtVzIb+ROUWyhskKt8XgJ6lkts$5vhHT7sO5fdB1fqTLE8Wz-I58i-Mig1m3o9OQgKfqpgN63z-WgIazh48s-JoqijBsBcVSU8dNI1dAXUtGKSFgjoF3ZURKG8cOzSyxf2lgpjMMYilcGzxcIhygDUF9q45T+4p3MbYFosQghSlvgUPZmMOgyiik1pc$vggygMz8f+ydkdhG4$fnL-6NgZ7nJ9D+0Vz32gPOdGOiTpsOga5p-UKzULsdB1zmFO3cTnRznq2OSvpRAhDzPss0aY6Ccp3EgcxX64OT9WMapanTX0Z7EiYy1q0oz72UW-2ArSSDg+QOqSd0bcMVRd$l2MONNcyW0MdYmq-Kv3tysqKfVZ6MA909I0pKdEOWeKx0uKcJtGOO4ovD2Wx4Eh6HD6evH-s64blei4WzgfifdK+aZUtWXBr0rx15hLc9KQKUJ-xHtjSSmtTgkO+5VYLEeGpVYs0bcyqhsUWzPlsbRLbj-QVV8QdRW1$cqtQ2TgAv7pYenOipWycmz9o1SjUfMKJtRzdRZgiXW0zh1GY7IS$IpQ32$4Dvf8R$OEcU2BKBedum$qrXKzo+fLpf+NqJaQz+KMY64+N6doPOMpeWZ7A64zjib-pAIBhift2jhKR1yp$hSdBKadWiMAgLhGBn3MMWD3qUZcjHa3t0H2Gcgc6zxVJ0ZWGct5aRMdaSMEBSgxx5aKQc+3d1ec99hdlOc0UOVa7mvc6j$AGN6W6KSH00S5JW+ZnbiCUhdj$tpAgVu1EeS8-55ij9F$fx1GZZuAk2ti9669n6SetratV2qLerFKSbra1ncHKSA6xicvhlCQc3Kx+3mjazrikXFxhiilyEzt3mcnIrZJSv212B6HIEsUZKcYlLeTgXK0pqlyFyPsC6yBf0B8gOHXbbKK5CK57aL8RiT6oEI479H0ddCJfd5JDW84hiRbHqlEo1n91kV-vXM$EOG14tDHSCtfqBC2s9ZhpxY+SSEtx7mJrWzz3fWdmMsiZDMFbx7s0qpNdHjLKz+XYm478TBdzDVXWqER5RmmA0AS1XaEtARm07RFbzLP6F7rAH-hNTSO$E9RHke$hZbtqFMzGovoiNco+1um47$MKd+giZfF1RWnLaBNxEQgzEL2580K9hO0r$KjKjk4TWcHufxE1zFA+6a1JEcdc2Z195FXFbtSrckzfLj8FXcD0sEf7o91ufK-BrQK47IWjd8d0YyyE3tttjjyO0JtX8frMcW3MOcNfLkZzGJb-MeejY8+y7VughVUJazS+PMMcmyQInNXc+6oEeKI95oe4HKOzrLFZMxOzNxmeGd91F3Lc6Lhm1zdIKFpOJ$yyE47xnqkWsiJfK0xMyLOzB4BrG8+KyAJcMPO-bKAeJ+h1+OxUWIRj+eayL1UI60Jht+oMoS5UFOKdW$EO7Hv2E+oJX8-+boxic7bM-FfyE-1993JAfJNa6VK6J6ti9zaSy5WOZegznT9$-68gg7AXA0vGoJRGBnWdlTDzAcA3cv3U+yUpqCotyeIBkyeWKvDEB0ov67-vHIzPs3GtGl8AgnnTC83yaGBzeZvOaZT078VUT+neGHp-mIWO4qjMcd2lJFRPi36klKR-hS-qseV1V5Fs37$QpUl7fWTUNN78EhgmWtKA9vdSBgKK$-0klKTWAaGLjiJCZUHcfZXndfHa8AXa7bEoxg8JnllxHzIYaBc2iztRxzVU6y+coQK6iKKGcVS+1ROd27RAcjVBOF1OJCeLZJUj2BcWJkd+94Npv0bcWeH8tmsW6WcYM48-431HdTcOsKmc0lzV-ol0cPoHAYGjg2EUUEIhdcxJcQBEX+JYzsKtUPLqyISOxpD8L1aIM8VOcWFI8L1nT6Oc6byFqJH8aJ70UYlJa89cKJfhx6YllFAc+yXJWBpd3yxekgdUNW+LqJVKh7FxFk71V4-1abJnxCNOWlN$9FfxdfHgzf5J0Eth1Mz9LAl9x0f+bM310qxlDdcLxXOJC+tJnlAWLXXLfeY$Hrl3-TKdKjRA8chBRxUImk36s8vsJZlUxInVFm$Hqluo5HWQ57oax5z31FdFvtePthyqOzz7KcKEttm9VOvq0tpeekMomN7MxN7e$yt5WKlMT8MD55dJqWXKm1ZV-ojFyucNTXF6JHKqTs969vZTWItYy7axlkRoiUcBdUh95Oc53-+8dKaW9LySt8iPaYgmHHzsmFQyocLmbsgQtUI9H5Gxmo1grWPtv82WxvmTgQTlz2OH6ZMFym06Cz5EES4Itxhm26iLKcfzAzl8+Bb0A8OsYO5lqs+p21FYeYdFCnioHPBKdskYzlSd0padQ1syttCy$a8ATJLSRAGeyet6AA80sYmrlEt5LIGCPgGlzlkTbcvYpm4kAEZggzgFvdVxjAOBS2JhU11+8fMMBE3-LabJ6sVtoBFKoxAYp$ebyal635Ed1pyskt0dWFoD8IQk4byW8hXnvIdoKzkYZlSX1kxISqSCtzlqX4mW0zTaKzMh+y+Exo2hr80alVgvUUGNLSEmacy1zEI1DHsiYAuecP+P9xTHgtXsc-KL66i1LGQmBka-Up6WHev8pKV24h81NjWYq73j5gnXGsVerOKFM$RT3xQBK5gsyS20rAQF0exqv8-5aFd7NjW+I4yMa4NxMa8tLYC58nvOzypZWAAJBkxtt90KQcEkbzMFW$XObESyq0dmlWrWYDEeqqWzcl-VIIDcxvIH56ZvqF80oOgiH5XnWiQMVh1Gt9Qo2n6xAJ+sZV0l03ZvPhQDdxyF8tC0hHqg+e4L-5pIzNQnMA3hO0pZMeEUJaySkyRgyOO9hha9GoN7BxRA5IuxcKzdLzUaJ5aKNt3h4vmMfMoijJEpVOJCns5EHKcJ0txl8555kyvztIK50BzbOQStTnIzKWIbTScNW0WcOJAFeb-B+GCBKevEzU8AdlMVP2AvyoeBWsKMb9In98eREJRIMVnWIOL8yr2JyuV+1sg59qkWRIMix$RlI41dzFHxia3DMZ7MD7WTni8ck4HHKDHODfCyCzJt0uRoRFkio$xfJURFFlXqDmCUQf8-$vF9rpSCuyWhQnRT5cNm$HKOceq3mFqDgzs6RjcOWs+IaOdvAhbtjJt+BlR7HhnL0$40FJW3HIYL1Y2os+UzIqor$yjIm-v8nMtX$aIxIhiABLh1L9rmj9hGhlYo$vKQAldATD5nQCkvjay03iPO$bHH4+zOo-b0gK41I9sK0ZRkqgSR$aIz-nt5KBOHAdtro$9JH590IVS4gFeDlj2K5OnIrrgkdB+qK-Dez7N4fFet559ITKOUgdTLRZxJHU8EKjQXox4zZDP1eKRF-Ve1S7Tx25y4hv6trSKhbc5YZmddZDaKjD$Wg3xCCzdLLTdTQrToHKYizSO+LB03kiVzuxHvLdpYM74VKlHJvLLWagpNyFfBMASLVMVQFaTTzxvZ1laTpEhid4y$pT8tK99AzA9Bb9COYM7j8NrlS-ilSameaOK++VpVLLaYGW1DDKob+LmameaPzipSooT3IfSrxiLlLcRS9977mKC1Z8h7Mjxtcd1LGabvLdbVbsU1KoLrgLdiJu4ev-TTuV8cO8XO33gTQ7hSL4amMRbqYOkzkTNiscPybTzQVgxnaTdMq3bcaoGfWKO7R$jy32SLlU2UJa1C1sotxl6cYk2MQffztkC7YUaZ0nUnjYQcp+-QiIubxBoT1I5Gf1SRbzxhZtEcuOXEy-KZ3Ql1Y4Sx6c8DhhKqPWFh1+eL328cX6HJWq9o-Uy2I8WQS8sPsTz0zcc2GW2KSBRyd-AXon+J-T0TMxIo7vHOuKb11dxIO7DAxhL4mOcAA1M12vTU5WKaqEESIaQn5KNDvfi$fn8rLd3Rngmt82Mao1OIzGnY0ulu2EhBfsGsczyTSHF+UUpzKKJEJM3FSoqhznmtSWZ2VomKrMeGsdl0I-2+NBz4bJOBiUNogLTO2LtyKs5l0OUEOS4sQN48sLXULWe11vHrg+W8$x-Vh$RC$ggiilyf7ozuH-o$ckfWyvBj-062$Qr1T8ZZQPCe$NGXkRWyvY+6HSZyY+TfOzSjlRAVxsLOF0dW345K$vkcT8p33-0J38LQb9V1MHoCyU5eQKrENSoHK93mmFfVrJX55h1Km7bOfF3XbvTu53FcSUdVAhst1mVInDTa+xA1Y0IK3JisGfIaSBxxAph5xDBV1VaCBYnqcB+o5OoO48F113BlONXb0E$nv$ZZ8czKJcVJjYEK6I+RngtbeoQ6vS0+cshTL+c9pdRKVCoq8uOLzj9jYh21tBM$HMn6Cd8CObIM4tu36DR6shPCmXTnLtMxRzSRM-5OvpVRQVW-Hv6YTtM+t4-bEKMx90$47pQBkf2eJNbGnAcnKLKQs6OXh2kITAKHUcaaEE27C9OLoJELK8IhiUYDDh41VYlMhbsm4haDbFE3EGiTEv-nFBRXBEbGpLaujEcULyqs7Em4K9jbbXoO8SRkFoxz0C5X1FZ7pBO1qFSNxh4lga9L8OFYaHoH+voxGcXhzK7E88N-WuRN1KLuINp1ox0aoK2kBl7$R7q7ghpAIe33vK8ftv8UTeIqJ7QQzBBgT2VP+iQFs5U6X3GKqqyippUiPfinRZ+DOh7LQKf5UXpV6WdCWgbW-Piq9kVZGo75SsiEA6rA3FykhgyMAs8T54mZ-iPTfnAdClA2j+hs1yRTkDqA+J819-brsV9mSEnZQt4G7Oyp$jvtsK7g+UOhdhEUc-tFTGKoEJHT+4qh5733BMhpYqQWqiMRBGM2LtuIIbZOpBC$+VThBo2eBG8joSiDVZ9xJ+K9LJVytUTfzVc-RUvVgxybQa6Ie0tomGWNe40BfRMbJks3N4-sTVrNF+nxuNeTA3BkFrueuWFJlPDGG8hq00YZvl6Uihak3sVZf4UI4LgareNfAqZ0iM2XHyN2ekn7Q6kREBAII$uqnDL7vvNHNa0n4ne0T53M3OS$LaF9lHhrFCn8eG5jzfpLqRq4lLR3U5BeBlzWtyvbKoHAQ75OSpJyLndVS4cTgpblpx0+McvyF30ohgcUbH9SgZQUWHyCnLBdqciYq33rIB2KVspv8upUcv3exKnhsa3Ucl6MaVh8Kj8Vtp6j6ohz3U$Qstv$Ln4Ox6Qx1tV85Xfb0adEC$VtSeAyxY6ntLsJMHBr6qVPYI4MvKTf+viV6fxWKy37gj8d+qyDUOxq2yAF7J0icvso1-5r+TN9X8hIFSGJJFeLP0QEs+qV5NsOZ8hKvsUhsodCnq6eD3s-6WSV9goIbqQUbznY5HJCW+BS0uWe6ETnVx+LGlSnC4ZWpy9spuYQGEBY5m7OZKGURWM8cLygO6ihCt01xc5mX9BKGC3Nz6dfhRAW5yXHx0mj4Jr6+By844qQcnzk0Jbu2C4v9EDsBiA2zXj4DRFAPCPifPV$overhiRjxdh7HomlgjOLLvDnCXqMPI0zjt5zyXRumrOUa31JBnC+n8iyEURAIs0C95PmGgTTFv27qJC1kQfDRttQy8v+v$Mdy98JBz3f6Vku6RE63Dv8grv9CgOFAZ2r8uLV9dDOr6fQBCKakeA3AK4qQEv+nbId0dxc$Jtsh$9cQeL6y+b15v4DACfbXPEhhTfRls45sF0n+4O7bRzrhVW-SMd6Ld41+zN7RYQj$6ReSkL3I7MQmlxzHSN1YbHZH5T9+Cmg2WW31-tXTdaYznZhpPeCVqhHC34q-ErLpq6cdR-lKMUTaJluB8nKL90mdey2jFy8k-mipH7DV8XZKUfqI9BJM7nfxZtgsuopA-xCtFd+IPAc16sIt2BxT-y$0cHRz-6YlX3yOSSOz6OAVSbSsKa1$ZTYr-vxLWnxFGBQ1J+ygUY+2HTBvePcYBtjWiZDkY2gkv5R--1vL7rdJoKuyyWH24dFXYoRWL-CIeoYOij-8axgjUDHiL42vJhXO2TU84I08OX8du-+-1bMf6pifVK2lAgVnZ32yhrAB9bHW8dX9Xipo2-rLLbehWnp7hgb3A0IJG2-9rBSe+CL2xd2i5moETU2DSlOQ2nUMZAcCiU4muyYVIhYatGl5RJBlPFRF1DAxNv2ykRPXjDjod2XxH+0T2WiOfAzNxlkGr-oYpIpPX97jGr9mL75J5zi+ExOmmFLp+7I6ez1lS48PaIxGeS6o$bvLvTAGtI8+sfWRc1v$ARP+p37yYYPUsSl9FBWEYnMQL2SWrFVWEj8pPP2qbT+rj0sjfd5-gUy5aRTn4A123N-JVXfCVSGP$--RI8lfk+mCxAQ79nB$-QodWPuxI8OeRpln9-iRS03cEiGd9FJyKB2Xs5EshxVmdFBcOtHW5nzRkt2-vF9VzuaaEmqVAYrXgVhacnxCFxyQAJNplg7U91KsFIVp+Hg7WzZ-OFGVXe-gFQtuGaREqcWYW-JRKDp5OtE8eCSEKEVBk7HUb8G80Kayqxe9yHinpidCUNzj4++is8ecA02NGmjMDUWqVQ0vsugIv3OcCyA0qMFVUYGLK9j8x4sDq4a7sSILod27z8-7Z2WvRNK7$HIaNJW-WP-Ya1TxV5fHm5glYsNm$vznvjX9cFLgQWG9$GHEKPbjKM4fArbSS9j5xCOS+YXC7v0obV8ymdcjn1MNCxacGHcHUg1N9ZMYyl$MDz3L8EFD0l5rLAodftcmobC2xtku85kMSF2j41amY6SDPlYayh56fVfU6ch1zpgQIOdT8dmB02pnaLpa-OadmxCAXFc2TMp7vYpYo-aNkG8GuPxDnI8YeG0ez4pVYAR4kavzzaf5Je21ZBTHGiIzqRMgGK8zLCGMechhuE1VZ7Bk7JVk2EiGvUnUGg9sKxJiHNO1WirEK696bvIjgEmar9uzey1Mn62x+hH4Aup2PAvrpkhGuvm$aPK6zBclmCr6AqGjaPfO$ZFj1$21B6lhrhFrRF+cXLYhs$mmkEujzXNnCIY17Zjq0-gBiYzrh1RjkO88gUQzu0WolNNORQFIB36$6eqE+XDZqqi48TD3Uc+BkAzu-V2QvC+5o0VmYxmNjTOshPJ+UcVZDJ+-q2UtcFIVg7108O1Dz2e8vLJzTxzF$pTbo9oXTjvgFujK-y7M-8jJOTm0S$FTgLxYJ0sGOPE$ocLxYaWltVqBGtGxPYN+sLQUBkP7+PW843iOUQubSqPGDGePqkfDkmqPm1lFvIICaQY3VeL5CL7V-8sPXdr9sameHqRTX2rOp+C$6ao3b0GPX1heIQB8MX0q0nNz08pcEFy4NpppXtDzBSkqZCn5zEkLQUHkdkPIqrGGA2uLmOul24VtTfRlrOOkfHLlVYtak9GL-6ZHjiikAHst1UAdcNMxLgChyOdUjckQ+a6Vnu2tbPPm2xYXYl9Gkc9SR+ET3B8p-qCjkCimgoALXfUq3bxhtXid$kFiv9EYK6TWHc3xur6cKnJ+1zLDx$2KNUzQzGTqdy4eQMtjlyFrf1-MhOyMJeBre7BrgxB+kA038WlWiOO0nfRRD2-UzKk3YYGO6zO$7QWuqGbtHtyqGxCZnKZr93DkIUtsVM4YXVHb45VoWoKTQl3sR3ZdJ648k-qA88MaCYINHKZku48zgiXkEeklTOUPfgVLsCMkqxd57UWNB8iVXd14gXRTrnkDGAZ-PGGlC3$OBCPefW-QF5oKEcml8sZvEjDuIkakvzU4U0TSajcuNu1xFWdKJ2lKFuztqOZpjId7vb84uMI10R2+s1KKzce+MKean8l8oJ+Wl1TrcnLi6IUPelmUecaM28yM+srPElHxtRu1fauu8TqKtKyKhZYKK+RFcWKZ1AoSUKKKtfbkr$K1aTkOK7ZEl8LuoUaTkBYa7a1KrIa7zdKKKg3TkQC26Kchh3MH3Q8zKRKKtKcUzKTpMS7F8aTk6pM82TkTFAU8pKmK37SMdY8MH1YKKKW8zKc8K7ZYepd8hbKicnKH1TZ8k8zuCLIW6iRSDkghlV341XuS02hirWKZ$WdCKKvaoc+WMUzteIijJMpKau6UK0KgK-dl8cghcK+IdhK-MUMcghU8+3KyK58UIKlKJ8lYckKZloUcp3zbazcEKn1TKcNKH-ypcrKmMzhcx8WdTTksKmTf7cQKtdlGc1K1M+Meb8eMl-kjzlg3$1uIhVSUKKKR1TK9uSIU6KL8zC2R8x1Hi+nc9Klil-k91nXsHYMIM58hK3KRil7KjYtS$FKyWaOxF6i2KR$sp4czyz0ABTTB2U6jYjCEkp$z80U8hk1yeavc5OjplPBTTj8fsMRhKizLMEhqzv$IuIgSH8KS+aYcWIYIyTE0x10P$zi0b+K1K00S8+H1p0gJakKx1R1KLHCc5d4rCacMKz8KMKbK08zU0YiKoKOKeK1oz1KvKnKKU1YIKooi7MOP6S70p8TB2UWfYakcNzQWA5sf171AyKI80htgLacMIadWAdjYAiHGUggVnIykMGh1YOSpMZ8ao8Kbo4y40XbcG8aKuIKKaUX1JRdu8f+RCEip9++pdU0L+j6+7oHdmEa00uPIHWu0vlAilGKZKzHWdM-MIHWTea1c6UUKKKjfoKxMKKzGFdH8KIKzMtKcIK88zx+ocEYcCyzhi2MhKKKP2x+KKK" + } + ) + const body = await response.text() + return { + cfClearanceCookie5: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === 'cf_clearance').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0256({ + clientLocale, + attributeAriaExpanded, + session, + origins, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + statsigpayloadDynamicConfigs217573384Value, + authstatus, + userGroups, + urlAudience, + evaluatedKeysStableid, + derivedFieldsAppversion, + evaluatedKeysCustomids, + immutableclientsessionmetadataAuthSessionLoggingId, + continueUrl2, + continueUrl3 + }) { + console.log("Executing request 0256") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/b`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": modelsProductFeaturesAttachmentsAcceptedMimeTypes, + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//auth.openai.com", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//auth.openai.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: JSON.stringify( + { + "writeKey": "oai", + "batch": [ + { + "timestamp": "2026-03-18T04:53:31.121Z", + "integrations": { + "Segment.io": variable4 + }, + "event": "__protobuf_structured_event__", + "type": "track", + "properties": { + "eventId": "c5f8bec2-0e6b-4e5e-933c-706d35ec749c", + "eventCreatedAt": "2026-03-18T04:53:28.766Z", + "eventType": "web", + "userParams": { + "userId": "", + "deviceId": evaluatedKeysStableid, + "authStatus": authstatus + }, + "deviceParams": statsigpayloadDynamicConfigs217573384Value, + "statsigMetadataV2": { + "stableId": evaluatedKeysStableid, + "sdkType": "javascript-client", + "sdkVersion": "3.16.1", + "sessionId": "4c71157d-7261-4224-ae34-fc38643d4d6c", + "appIdentifier": "login_web", + "appVersion": derivedFieldsAppversion, + "locale": clientLocale, + "language": "zh", + "user": { + "customIds": evaluatedKeysCustomids, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "locale": clientLocale, + "appVersion": derivedFieldsAppversion, + "custom": { + "client_id": "\"app_X8zY6vW2pQ9tR3dE7nK1jL5gH\"", + "app_name_enum": "\"chat\"", + "originator": "\"\"", + "AuthSessionLoggingId": "\"af0081e1-4aea-498f-9a49-344ed42ee061\"", + "client_type": "\"web\"" + } + } + }, + "eventParams": { + "@type": "openai.buf.dev/openai/protobuf-analytics-events/protobuf_analytics_events.v1.AccessFlowPageLoad", + "authSessionLoggingId": immutableclientsessionmetadataAuthSessionLoggingId, + "page": "ACCESS_FLOW_PAGE_TYPE_ABOUT_YOU" + }, + "clientMetadata": { + "name": "login_web", + "version": derivedFieldsAppversion + } + }, + "context": { + "page": { + "path": continueUrl2, + "referrer": continueUrl3, + "search": "", + "title": "最后一步:确认你的年龄 - OpenAI", + "url": continueUrl3 + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": "145" + }, + { + "brand": "Chromium", + "version": "145" + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locale": clientLocale, + "library": { + "name": "analytics.js", + "version": "npm:next-1.81.1" + }, + "timezone": "Asia/Shanghai" + }, + "messageId": "ajs-next-1773809611121-3ca69ec6-d998-475a-8b9e-73f88996b71d", + "anonymousId": "a69ec6d9-98b7-4a8b-9e73-f88996b71d3e", + "writeKey": "oai", + "userId": null, + "_metadata": { + "bundled": [ + "Segment.io" + ], + "unbundled": userGroups, + "bundledIds": userGroups + } + }, + { + "timestamp": "2026-03-18T04:53:31.121Z", + "integrations": { + "Segment.io": variable4 + }, + "event": "__protobuf_structured_event__", + "type": "track", + "properties": { + "eventId": "b8c2ba9a-7a0a-40ab-b4c9-cb26783bd503", + "eventCreatedAt": "2026-03-18T04:53:30.472Z", + "eventType": "web", + "userParams": { + "userId": "", + "deviceId": evaluatedKeysStableid, + "authStatus": authstatus + }, + "deviceParams": statsigpayloadDynamicConfigs217573384Value, + "statsigMetadataV2": { + "stableId": evaluatedKeysStableid, + "sdkType": "javascript-client", + "sdkVersion": "3.16.1", + "sessionId": "4c71157d-7261-4224-ae34-fc38643d4d6c", + "appIdentifier": "login_web", + "appVersion": derivedFieldsAppversion, + "locale": clientLocale, + "language": "zh", + "user": { + "customIds": evaluatedKeysCustomids, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "locale": clientLocale, + "appVersion": derivedFieldsAppversion, + "custom": { + "client_id": "\"app_X8zY6vW2pQ9tR3dE7nK1jL5gH\"", + "app_name_enum": "\"chat\"", + "originator": "\"\"", + "AuthSessionLoggingId": "\"af0081e1-4aea-498f-9a49-344ed42ee061\"", + "client_type": "\"web\"" + } + } + }, + "eventParams": { + "@type": "openai.buf.dev/openai/protobuf-analytics-events/protobuf_analytics_events.v1.AccessFlowUserAction", + "authSessionLoggingId": immutableclientsessionmetadataAuthSessionLoggingId, + "actionType": "ACCESS_FLOW_USER_ACTION_TYPE_INPUT", + "page": "ACCESS_FLOW_PAGE_TYPE_ABOUT_YOU", + "field": "ACCESS_FLOW_FIELD_NAME" + }, + "clientMetadata": { + "name": "login_web", + "version": derivedFieldsAppversion + } + }, + "context": { + "page": { + "path": continueUrl2, + "referrer": continueUrl3, + "search": "", + "title": "最后一步:确认你的年龄 - OpenAI", + "url": continueUrl3 + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": "145" + }, + { + "brand": "Chromium", + "version": "145" + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locale": clientLocale, + "library": { + "name": "analytics.js", + "version": "npm:next-1.81.1" + }, + "timezone": "Asia/Shanghai" + }, + "messageId": "ajs-next-1773809611121-c6d998b7-5a8b-4e73-b889-96b71d3ebfbe", + "anonymousId": "a69ec6d9-98b7-4a8b-9e73-f88996b71d3e", + "writeKey": "oai", + "userId": null, + "_metadata": { + "bundled": [ + "Segment.io" + ], + "unbundled": userGroups, + "bundledIds": userGroups + } + }, + { + "timestamp": "2026-03-18T04:53:34.301Z", + "integrations": { + "Segment.io": variable4 + }, + "event": "__protobuf_structured_event__", + "type": "track", + "properties": { + "eventId": "3d0cac42-f916-4f1f-94c2-32d9510b18b2", + "eventCreatedAt": "2026-03-18T04:53:34.300Z", + "eventType": "web", + "userParams": { + "userId": "", + "deviceId": evaluatedKeysStableid, + "authStatus": authstatus + }, + "deviceParams": statsigpayloadDynamicConfigs217573384Value, + "statsigMetadataV2": { + "stableId": evaluatedKeysStableid, + "sdkType": "javascript-client", + "sdkVersion": "3.16.1", + "sessionId": "4c71157d-7261-4224-ae34-fc38643d4d6c", + "appIdentifier": "login_web", + "appVersion": derivedFieldsAppversion, + "locale": clientLocale, + "language": "zh", + "user": { + "customIds": evaluatedKeysCustomids, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "locale": clientLocale, + "appVersion": derivedFieldsAppversion, + "custom": { + "client_id": "\"app_X8zY6vW2pQ9tR3dE7nK1jL5gH\"", + "app_name_enum": "\"chat\"", + "originator": "\"\"", + "AuthSessionLoggingId": "\"af0081e1-4aea-498f-9a49-344ed42ee061\"", + "client_type": "\"web\"" + } + } + }, + "eventParams": { + "@type": "openai.buf.dev/openai/protobuf-analytics-events/protobuf_analytics_events.v1.AccessFlowUserAction", + "authSessionLoggingId": immutableclientsessionmetadataAuthSessionLoggingId, + "actionType": "ACCESS_FLOW_USER_ACTION_TYPE_INPUT", + "page": "ACCESS_FLOW_PAGE_TYPE_ABOUT_YOU", + "field": "ACCESS_FLOW_FIELD_BIRTHDAY" + }, + "clientMetadata": { + "name": "login_web", + "version": derivedFieldsAppversion + } + }, + "context": { + "page": { + "path": continueUrl2, + "referrer": continueUrl3, + "search": "", + "title": "最后一步:确认你的年龄 - OpenAI", + "url": continueUrl3 + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": "145" + }, + { + "brand": "Chromium", + "version": "145" + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locale": clientLocale, + "library": { + "name": "analytics.js", + "version": "npm:next-1.81.1" + }, + "timezone": "Asia/Shanghai" + }, + "messageId": "ajs-next-1773809614301-98b75a8b-9e73-4889-96b7-1d3ebfbe1b07", + "anonymousId": "a69ec6d9-98b7-4a8b-9e73-f88996b71d3e", + "writeKey": "oai", + "userId": null, + "_metadata": { + "bundled": [ + "Segment.io" + ], + "unbundled": userGroups, + "bundledIds": userGroups + } + } + ], + "sentAt": "2026-03-18T04:53:37.123Z" + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0257({ + evaluatedKeysStableid, + cfClearanceCookie4, + oaiScCookie4 + }) { + console.log("Executing request 0257") + const response = await fetch( + "https://sentinel.openai.com/backend-api/sentinel/req", + { + method: "POST", + headers: { + "host": "sentinel.openai.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "text/plain;charset=UTF-8", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//sentinel.openai.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//sentinel.openai.com/backend-api/sentinel/frame.html?sv=20260219f9f6", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2Xgr1zwPyxLxRd4DtCNYLuGRqd; __cf_bm=0EL4AcmZy6YABOgAu1caF13.HOgAJFYpEPZclKcKt7o-1773809548-1.0.1.1-I4NecjcKI_YTJdkYmgKLrSVWQqlc.32fNjD.Htd3hjzOTyKmiSVcYcpdjkY4mTjVtKFeZXl4sBQx.IIHkPz_K5p_j_cHjy5CGIBZrLn3uCA; _cfuvid=XloS9D5ZuYqw1gWUBZTcrrbrjrk7UeBZTkOWf_cTx3U-1773809548430-0.0.1.1-604800000; cf_clearance=${cfClearanceCookie4}; oai-sc=${oaiScCookie4}` + }, + body: JSON.stringify( + { + "p": "gAAAAACWzQwMDAsIldlZCBNYXIgMTggMjAyNiAxMjo1MzozNCBHTVQrMDgwMCAo5Lit5Zu95qCH5YeG5pe26Ze0KSIsNDI5NDk2NzI5Niw3LCJNb3ppbGxhLzUuMCAoTWFjaW50b3NoOyBJbnRlbCBNYWMgT1MgWCAxMF8xNV83KSBBcHBsZVdlYktpdC81MzcuMzYgKEtIVE1MLCBsaWtlIEdlY2tvKSBDaHJvbWUvMTQ1LjAuMC4wIFNhZmFyaS81MzcuMzYiLCJodHRwczovL3NlbnRpbmVsLm9wZW5haS5jb20vYmFja2VuZC1hcGkvc2VudGluZWwvc2RrLmpzIixudWxsLCJ6aC1DTiIsInpoLUNOLHpoIiwzLCJ2ZW5kb3JTdWLiiJIiLCJsb2NhdGlvbiIsIm9ucG9pbnRlcm1vdmUiLDg4MjMuNjAwMDAwMDAxNDksIjZlYmExZTdjLWU5NzctNDM4Yi05ZDgyLTYwOGNjNDc0MTlmOSIsIiIsOCwxNzczODA5NjA1NzM3LjcsMCwwLDAsMCwwLDAsMF0=~S", + "id": evaluatedKeysStableid, + "flow": "oauth_create_account" + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0260({ + evaluatedKeysStableid, + oaiScCookie4, + cfClearanceCookie5 + }) { + console.log("Executing request 0260") + const response = await fetch( + "https://sentinel.openai.com/backend-api/sentinel/req", + { + method: "POST", + headers: { + "host": "sentinel.openai.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "text/plain;charset=UTF-8", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//sentinel.openai.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//sentinel.openai.com/backend-api/sentinel/frame.html?sv=20260219f9f6", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2Xgr1zwPyxLxRd4DtCNYLuGRqd; __cf_bm=0EL4AcmZy6YABOgAu1caF13.HOgAJFYpEPZclKcKt7o-1773809548-1.0.1.1-I4NecjcKI_YTJdkYmgKLrSVWQqlc.32fNjD.Htd3hjzOTyKmiSVcYcpdjkY4mTjVtKFeZXl4sBQx.IIHkPz_K5p_j_cHjy5CGIBZrLn3uCA; _cfuvid=XloS9D5ZuYqw1gWUBZTcrrbrjrk7UeBZTkOWf_cTx3U-1773809548430-0.0.1.1-604800000; oai-sc=${oaiScCookie4}; cf_clearance=${cfClearanceCookie5}` + }, + body: JSON.stringify( + { + "p": "gAAAAACWzQwMDAsIldlZCBNYXIgMTggMjAyNiAxMjo1MzozNCBHTVQrMDgwMCAo5Lit5Zu95qCH5YeG5pe26Ze0KSIsNDI5NDk2NzI5Niw3LCJNb3ppbGxhLzUuMCAoTWFjaW50b3NoOyBJbnRlbCBNYWMgT1MgWCAxMF8xNV83KSBBcHBsZVdlYktpdC81MzcuMzYgKEtIVE1MLCBsaWtlIEdlY2tvKSBDaHJvbWUvMTQ1LjAuMC4wIFNhZmFyaS81MzcuMzYiLCJodHRwczovL3NlbnRpbmVsLm9wZW5haS5jb20vYmFja2VuZC1hcGkvc2VudGluZWwvc2RrLmpzIixudWxsLCJ6aC1DTiIsInpoLUNOLHpoIiwzLCJ2ZW5kb3JTdWLiiJIiLCJsb2NhdGlvbiIsIm9ucG9pbnRlcm1vdmUiLDg4MjMuNjAwMDAwMDAxNDksIjZlYmExZTdjLWU5NzctNDM4Yi05ZDgyLTYwOGNjNDc0MTlmOSIsIiIsOCwxNzczODA5NjA1NzM3LjcsMCwwLDAsMCwwLDAsMF0=~S", + "id": evaluatedKeysStableid, + "flow": "oauth_create_account" + } + ) + } + ) + const body = await response.text() + return { + oaiScCookie5: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === 'oai-sc').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0262({ + currencyConfigPromosBusinessOneDollarAmount, + attributeType, + url1, + oaiLoginCsrfDev3772291445Cookie, + rgContextCookie, + statsigpayloadFeatureGates6102981RuleId, + loginSessionCookie, + hydraRedirectCookie, + evaluatedKeysStableid, + url4, + cfBmCookie3, + cfuvidCookie5, + cfClearanceCookie1, + authProviderCookie3, + oaiClientAuthSessionCookie3, + unifiedSessionManifestCookie3, + authSessionMinimizedCookie3, + cflbCookie5, + oaiScCookie5 + }) { + console.log("Executing request 0262") + const response = await fetch( + `https://${url1}/api/${url4}/create_account`, + { + method: "POST", + headers: { + "host": url1, + "connection": "keep-alive", + "x-datadog-origin": "rum", + "x-datadog-parent-id": "1498417704558851125", + "sec-ch-ua-platform": "\"macOS\"", + "openai-sentinel-token": "{\"p\"\"gAAAAABWzQwMDAsIldlZCBNYXIgMTggMjAyNiAxMjo1MzozOSBHTVQrMDgwMCAo5Lit5Zu95qCH5YeG5pe26Ze0KSIsNDI5NDk2NzI5Niw3LCJNb3ppbGxhLzUuMCAoTWFjaW50b3NoOyBJbnRlbCBNYWMgT1MgWCAxMF8xNV83KSBBcHBsZVdlYktpdC81MzcuMzYgKEtIVE1MLCBsaWtlIEdlY2tvKSBDaHJvbWUvMTQ1LjAuMC4wIFNhZmFyaS81MzcuMzYiLCJodHRwczovL3NlbnRpbmVsLm9wZW5haS5jb20vYmFja2VuZC1hcGkvc2VudGluZWwvc2RrLmpzIixudWxsLCJ6aC1DTiIsInpoLUNOLHpoIiwyLCJtZWRpYVNlc3Npb27iiJJbb2JqZWN0IE1lZGlhU2Vzc2lvbl0iLCJfX3JlYWN0Q29udGFpbmVyJGM5YzR0Nng4cjF1IiwiX19vYWlfc29fc3QiLDEzMzM2LjYwMDAwMDAwMTQ5LCI2ZWJhMWU3Yy1lOTc3LTQzOGItOWQ4Mi02MDhjYzQ3NDE5ZjkiLCIiLDgsMTc3MzgwOTYwNTczNy43LDAsMCwwLDAsMCwwLDBd~S\",\"t\"\"TRMZAB0BCAwJEXRJFmlyQXxpcmECdW9EanR5SX53dFZrUBEaEx0dAgUTFBF3UQwTER8UCBkdAgcTFBFyd3BvcnJ3cG9ycndwb3Jyd3BvcnJ3cG9ycgsMDB8RAgEAAwcUCx4dAgADHAEBAAgXBwsCBRYFARoTGwcdDgYMCRF3YBMOERoTGAodBAQMCRF7W0VGfVx4ExEfFAkXHQAHExQRfXJWW313bwwMHxEHHx8BEQwTYFlQQ35qYg4UHQwCABgGGhEJFGV8fWNkZ2RVa25dT2UDfGtqclh0cFlQVn5JaGthBghPawADZHwCYVRgRn5md1ZNe3JneHxmWHRgfAIKGWQfV1JzYEV0e2dJfWFlUmh/XldVY0Z+ZndwY1J2BgBNawJadU9faXJgQlh+dWBrcHtnSUxlXw9mfFhQZHVvclJ0RmNSdgddT2UDfGtqclh0cFlQVn5JaHRkcGt5awB8ZHZYV1R3b0BQdAEaDhEaExYLHQYFDAkRblp4UmIGcGN7VHBifFh5bHBoS3djABdjZF4AeGtYe1J7X2FTZh5QVmIAG1ERGhMZBB0PAwwJEWRkeGNhBnNIZVR0cHhYZXVjH0tXV2dGeHtnUm1xYUV9bERmdHlGCnJnXWxSYnBBfHsDB2J7dQZjYkYCZGd3bHBhWnttZHZwVX9xVHJ3SWJwd3BnUnJ3eE9iX0ZifANlb2J8AlVgAWRSUXAEdGVmUmd5X31gUntXUmEAf3JlXWd2a2VCYnwCClNga3JVZGR4Y2EGc0hlVHRwfAJXYmBCaUBuAHtycUFSbXFxb3lvcmp0cElqcHJWeHpwUV5mcmFZdm1UUH55b3oOFB0MAgIYBhgRCRR3aWVrZwB0SWIHSU1iYkFjTGV5UmZoBlJzAWhnZnNeemIDZFR2X2l0YEJbf2dzYGllQQRpa2V8ZH11Q1JkH2Z8cQFoZ2ZzQU9rZXNjbWVxUGkfYXJkAmhpa1pBb2EDZGB2W2JXYB8KeGBdeFVrBkV2YV9eZ30CZVdmaGF4ZF0fYGVzWU9rZXhneQICbmQfV3tuZ3RgYXNzdmVfdGh/dWlud28ODhQdDAQLGAgMCRFUY2BDa3BJfGtmRWVLX1tlcGx2VXB5VmNmfkF3YWZCV2thXHxwSX1GFB0MBwIYCRYRCRR1SQ4OFB0MAx0GAwwJEWJjYGR2Z1ppe2JOemtiRHN2f3JXckZ7UXJ3eGtxcn9jfHUKYGZCQGFycGNQe2d8ZnFxUXNsW1xiY0JpUmNnQlJ2Z1pmcXJ/Y3wCX3R1b1h0d2BncnBRUmpyWw5zbFtcYmloQ2ZuWnt+cGd0a3tLAnJsVHJydlYLYWB3G1JhB0lMdktndm1EB1B3WVB0dGBvUHFeCXtrZkJnfEtienlFBw4UTA==\",\"c\"\"gAAAAABpui_R22JJRvl9XUwfuI_EHo1jd99uWW-4CMjPCLR9J9tMqTPgWZRzUK7EvY_v4riZYVRThtHjjjoMRDcr4nno3cXDNHh4byAmBEyvLN2FqnKJfSaRmkTyehbOj_23gD4tcq78VkErDP14xTbfNIovlaCRgyoPW3NBAfwdOUlNIHB_FFOWfPJ2QHhbMSlAUMtnvwyU9RhDRe4HetTCYSr6Rnirt9W8y0QndBwQA6-PJmnG5K37iDAC63vpGtW0KlWzxGsYpoiBXD38IY3TDmkHXI5qNs4egAyJ2n5_YRsBEGfm1cyAGQTkQkQlLCNimpsQ9fMnV7kgJ8i47NIxbLiIISJx-L6268Gs3gEmA4myHj_4cxJJOppm5M6v4_BDFuSNhTMrtVV4IQhvCHwbVwlxxmQiKSJ3QbJnTdxWV4bxWtJBj4-VEDe1tEH-wrN3S05-j2K0kDO-7h9siku8WKj-F-GT_ngzU2FuEUOtanWzrF998VTItEhFXUaGfTT0wgchGd-TCa2zOHgFJCXQMculLY9fub1snL5yeM02nxY3heJCOPmdVbqVnGnykRS3Dl4A5tIe6_FZ8glfVTy3CuZZlf3qibeenDvO4_Mkmx_3_kfEJZCs030a8zXmhOKtGfRln7X_7bPygnBQ3j3EUHNXveozqsIgGAlq7cx-H9Ee-13tlWvxBNF4Asi6ZvF9TfpodfTXGNAl2IqZrqyn2g4-e3F_5bukhtmudGa9c7LHW_8uGUSIkpf2qBLXSKEeLyi-Lcp3M0QdfCeILJu8Km48u9UsPgRmtYEI3IzPo-p6qDsqwrORsXphmSEDFPHdd0_pGOfESarLGLyIFBW04jZyksCSYdM2UxSwV3XPAYvPkRVBJDV61A2LlOcGXheYstJueCI77Cx_JM--ZpnDj4ry6flVFGkuGGX1RnfMMWHBBeH4dW5fU00aXenx_FYNYSbLyUkgDydNBId-RdcVnLSW6yXXmC3Ykj3gQT1UI5_04TDroTu8mOnVGj15vwwWvM2-xXrj9G9HpWFniSRR_vfA5J-SFZZFVh6IXjxhatGdt_ZJ_p0mSFz0mSBaTzNMNz0IMYJQwUE0Ke6ofjgK014nNYt5yXgxURsbmqBqtIvNVE3tGiBoTGaWkwXE4uHlLgDoxAbl_GkrxdO-laLW24cVwe72SqR7w8zfFR2Z7nDTgVGrwmWut_cPzhhz1a3hmdoR86yNxNy5WR8cifZsjNMXx0sDJRGl6HkGcC1nFO2Ava9ogq0pPOvsjH4ShsYH4AyOg1ZO2icAHb_U1YO4beoBtJROaMikQHHvdLfgmzmr_bXNH54y62T8NPfKp8l2VmUCQTCavsn7uK_m-yqeFQm39Jo2Md2IN18e0dPUUB0cvIs852faiq7ymLeK__GqJJtSIig7tzchxub3sADUgTmY7Ml8u2broDsk2rIms-bNSbf-M3CcqikX5QWdBeYci8zehZeu2YfKbb4nqImXaRw8aD10kgtfTyYefPVqMJyXmCvNFfNdDK5lRqwXlf5NyhAapUqxbecUlBz0XC1sy2r6ngF-sBGJw7qq8Dowz3d62fTvstZ9Wx1hndsa2zadUmNleejHnZ7otnBrRFRMixhyaGbBVXDSzquO7et5X411oJPmQ4ZR3bhZp7fFu-EouPZZM-RZL84jmsL4MumolnE3w_zNClJlxKCVJc0_9cIhVBlTXMvWGX9qBr9gkiqDybbew4NcMqUa_AwXQ8dr4B3TNbZ4JrFyQi3NNK83Jyro99GRhAiXJssmzCkZMByEszddrvOMFLKYlWVaB45ZAe_o9BI1yiIGlRgTOuxBHy7MwWEzw1BKZuFQy6Ubcv5-tDGjcqR4zEVXLFTNeyiM7KWqvO1uj-gJzC8w2az5uSIGHNyhZEZsk1cMQ4O1hVcjBFkOTiK6p7AXEgHm0PdGeVDrumH2c-_xkhQIixconKfqSc4KyAW_baDIJFmo9DXB8bd_zsydm1Xi0seVc7Z_ga6Yd1RviGDNfN2_M64Sdmj4EJGja2Ho-nsstDTnpY0_CAjEWUgyafFU9QGwPoEuK9zCPapmNgMrJ9gZ8OxbObtnlpcQDgpvfVXL_1lGJYUCyUO19jLJjbhF-cRqoL47ddEovHLsQxM3ZYYLE6Sqrx-5sxJgTI0=\",\"id\"\"2b5a57b5-2e0d-4cd3-910c-e00d9bc2c517\",\"flow\"\"oauth_create_account\"}", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "x-datadog-trace-id": "5866918167496973860", + "traceparent": "00-0000000000000000516b7afd33f15e24-14cb72f69d62f435-01", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "content-type": attributeType, + "tracestate": "dd=s1;orum", + "x-datadog-sampling-priority": currencyConfigPromosBusinessOneDollarAmount, + "origin": "https//auth.openai.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//auth.openai.com/about-you", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-did=${evaluatedKeysStableid}; oai-login-csrf_dev_3772291445=${oaiLoginCsrfDev3772291445Cookie}; rg_context=${rgContextCookie}; iss_context=${statsigpayloadFeatureGates6102981RuleId}; __cf_bm=${cfBmCookie3}; _cfuvid=${cfuvidCookie5}; cf_clearance=${cfClearanceCookie1}; auth_provider=${authProviderCookie3}; login_session=${loginSessionCookie}; hydra_redirect=${hydraRedirectCookie}; oai-client-auth-session=${oaiClientAuthSessionCookie3}; oai-client-auth-info=eyJsYXN0X2xvZ2luX3N0cmF0ZWd5IjoiYXV0aDAifQ; unified_session_manifest=${unifiedSessionManifestCookie3}; auth-session-minimized=${authSessionMinimizedCookie3}; __cflb=${cflbCookie5}; _dd_s=aid; oai-sc=${oaiScCookie5}` + }, + body: "{\"name\":\"nike fujie\",\"birthdate\":\"1998-03-18\"}" + } + ) + const body = await response.text() + return { + continueUrl4: JSON.parse(body)["continue_url"] + } + } + async function executeRequest0263({ + statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + clientLocale, + attributeAriaExpanded, + session, + origins, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + statsigpayloadDynamicConfigs217573384Value, + authstatus, + userGroups, + urlAudience, + evaluatedKeysStableid, + derivedFieldsAppversion, + evaluatedKeysCustomids, + immutableclientsessionmetadataAuthSessionLoggingId, + continueUrl2, + continueUrl3 + }) { + console.log("Executing request 0263") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/b`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": modelsProductFeaturesAttachmentsAcceptedMimeTypes, + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//auth.openai.com", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//auth.openai.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: JSON.stringify( + { + "writeKey": "oai", + "batch": [ + { + "timestamp": "2026-03-18T04:53:37.349Z", + "integrations": { + "Segment.io": variable4 + }, + "event": "__protobuf_structured_event__", + "type": "track", + "properties": { + "eventId": "9b1141e9-6513-4dc2-90b6-f3e1454fda8f", + "eventCreatedAt": "2026-03-18T04:53:37.349Z", + "eventType": "web", + "userParams": { + "userId": "", + "deviceId": evaluatedKeysStableid, + "authStatus": authstatus + }, + "deviceParams": statsigpayloadDynamicConfigs217573384Value, + "statsigMetadataV2": { + "stableId": evaluatedKeysStableid, + "sdkType": "javascript-client", + "sdkVersion": "3.16.1", + "sessionId": "4c71157d-7261-4224-ae34-fc38643d4d6c", + "appIdentifier": "login_web", + "appVersion": derivedFieldsAppversion, + "locale": clientLocale, + "language": "zh", + "user": { + "customIds": evaluatedKeysCustomids, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "locale": clientLocale, + "appVersion": derivedFieldsAppversion, + "custom": { + "client_id": "\"app_X8zY6vW2pQ9tR3dE7nK1jL5gH\"", + "app_name_enum": "\"chat\"", + "originator": "\"\"", + "AuthSessionLoggingId": "\"af0081e1-4aea-498f-9a49-344ed42ee061\"", + "client_type": "\"web\"" + } + } + }, + "eventParams": { + "@type": "openai.buf.dev/openai/protobuf-analytics-events/protobuf_analytics_events.v1.AccessFlowUserAction", + "authSessionLoggingId": immutableclientsessionmetadataAuthSessionLoggingId, + "actionType": "ACCESS_FLOW_USER_ACTION_TYPE_CONTINUE", + "page": "ACCESS_FLOW_PAGE_TYPE_ABOUT_YOU" + }, + "clientMetadata": { + "name": "login_web", + "version": derivedFieldsAppversion + } + }, + "context": { + "page": { + "path": continueUrl2, + "referrer": continueUrl3, + "search": "", + "title": "最后一步:确认你的年龄 - OpenAI", + "url": continueUrl3 + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": "145" + }, + { + "brand": "Chromium", + "version": "145" + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locale": clientLocale, + "library": { + "name": "analytics.js", + "version": "npm:next-1.81.1" + }, + "timezone": "Asia/Shanghai" + }, + "messageId": "ajs-next-1773809617349-5a8b9e73-f889-46b7-9d3e-bfbe1b0777a4", + "anonymousId": "a69ec6d9-98b7-4a8b-9e73-f88996b71d3e", + "writeKey": "oai", + "userId": null, + "_metadata": { + "bundled": [ + "Segment.io" + ], + "unbundled": userGroups, + "bundledIds": userGroups + } + }, + { + "timestamp": "2026-03-18T04:53:43.115Z", + "integrations": { + "Segment.io": variable4 + }, + "event": "__protobuf_structured_event__", + "type": "track", + "properties": { + "eventId": "be3d9289-6792-425f-a8dd-70ad9070ad34", + "eventCreatedAt": "2026-03-18T04:53:43.115Z", + "eventType": "web", + "userParams": { + "userId": "", + "deviceId": evaluatedKeysStableid, + "authStatus": authstatus + }, + "deviceParams": statsigpayloadDynamicConfigs217573384Value, + "statsigMetadataV2": { + "stableId": evaluatedKeysStableid, + "sdkType": "javascript-client", + "sdkVersion": "3.16.1", + "sessionId": "4c71157d-7261-4224-ae34-fc38643d4d6c", + "appIdentifier": "login_web", + "appVersion": derivedFieldsAppversion, + "locale": clientLocale, + "language": "zh", + "user": { + "customIds": evaluatedKeysCustomids, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "locale": clientLocale, + "appVersion": derivedFieldsAppversion, + "custom": { + "client_id": "\"app_X8zY6vW2pQ9tR3dE7nK1jL5gH\"", + "app_name_enum": "\"chat\"", + "originator": "\"\"", + "AuthSessionLoggingId": "\"af0081e1-4aea-498f-9a49-344ed42ee061\"", + "client_type": "\"web\"" + } + } + }, + "eventParams": { + "@type": "openai.buf.dev/openai/protobuf-analytics-events/protobuf_analytics_events.v1.AccessFlowApiInvocation", + "authSessionLoggingId": immutableclientsessionmetadataAuthSessionLoggingId, + "path": "/create_account", + "status": "ACCESS_FLOW_API_STATUS_SUCCESS", + "responseCode": statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + "latencyMs": "4027.5999999940395", + "page": "ACCESS_FLOW_PAGE_TYPE_ABOUT_YOU" + }, + "clientMetadata": { + "name": "login_web", + "version": derivedFieldsAppversion + } + }, + "context": { + "page": { + "path": continueUrl2, + "referrer": continueUrl3, + "search": "", + "title": "最后一步:确认你的年龄 - OpenAI", + "url": continueUrl3 + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": "145" + }, + { + "brand": "Chromium", + "version": "145" + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locale": clientLocale, + "library": { + "name": "analytics.js", + "version": "npm:next-1.81.1" + }, + "timezone": "Asia/Shanghai" + }, + "messageId": "ajs-next-1773809623115-f88996b7-1d3e-4fbe-9b07-77a45c090426", + "anonymousId": "a69ec6d9-98b7-4a8b-9e73-f88996b71d3e", + "writeKey": "oai", + "userId": null, + "_metadata": { + "bundled": [ + "Segment.io" + ], + "unbundled": userGroups, + "bundledIds": userGroups + } + } + ], + "sentAt": "2026-03-18T04:53:43.357Z" + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0265({ + clientLocale, + attributeAriaExpanded, + session, + origins, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + userGroups, + urlClientId, + urlAudience, + evaluatedKeysStableid, + derivedFieldsAppversion, + immutableclientsessionmetadataAuthSessionLoggingId, + immutableclientsessionmetadataAppNameEnum, + continueUrl2, + continueUrl3 + }) { + console.log("Executing request 0265") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/b`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": modelsProductFeaturesAttachmentsAcceptedMimeTypes, + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//auth.openai.com", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//auth.openai.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: JSON.stringify( + { + "writeKey": "oai", + "batch": [ + { + "timestamp": "2026-03-18T04:53:37.353Z", + "integrations": { + "Segment.io": variable4 + }, + "event": "Onboarding: User Info: Complete", + "type": "track", + "properties": { + "flow": "authapi", + "loginWebUI": "new", + "openai_app": "login_web", + "origin": "login-web" + }, + "context": { + "page": { + "path": continueUrl2, + "referrer": continueUrl3, + "search": "", + "title": "最后一步:确认你的年龄 - OpenAI", + "url": continueUrl3 + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": "145" + }, + { + "brand": "Chromium", + "version": "145" + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locale": clientLocale, + "library": { + "name": "analytics.js", + "version": "npm:next-1.81.1" + }, + "timezone": "Asia/Shanghai", + "app_name": "login_web", + "app_version": derivedFieldsAppversion, + "device_id": evaluatedKeysStableid, + "auth_session_logging_id": immutableclientsessionmetadataAuthSessionLoggingId, + "openai_client_id": urlClientId, + "app_name_enum": immutableclientsessionmetadataAppNameEnum + }, + "messageId": "ajs-next-1773809617353-9e73f889-96b7-4d3e-bfbe-1b0777a45c09", + "anonymousId": "98b76f3c-a69e-46d9-98b7-5a8b9e73f889", + "writeKey": "oai", + "userId": null, + "_metadata": { + "bundled": [ + "Segment.io" + ], + "unbundled": userGroups, + "bundledIds": userGroups + } + } + ], + "sentAt": "2026-03-18T04:53:43.364Z" + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0266({ + evaluatedKeysStableid, + cfClearanceCookie5, + oaiScCookie5 + }) { + console.log("Executing request 0266") + const response = await fetch( + "https://sentinel.openai.com/backend-api/sentinel/req", + { + method: "POST", + headers: { + "host": "sentinel.openai.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "text/plain;charset=UTF-8", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//sentinel.openai.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//sentinel.openai.com/backend-api/sentinel/frame.html?sv=20260219f9f6", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2Xgr1zwPyxLxRd4DtCNYLuGRqd; __cf_bm=0EL4AcmZy6YABOgAu1caF13.HOgAJFYpEPZclKcKt7o-1773809548-1.0.1.1-I4NecjcKI_YTJdkYmgKLrSVWQqlc.32fNjD.Htd3hjzOTyKmiSVcYcpdjkY4mTjVtKFeZXl4sBQx.IIHkPz_K5p_j_cHjy5CGIBZrLn3uCA; _cfuvid=XloS9D5ZuYqw1gWUBZTcrrbrjrk7UeBZTkOWf_cTx3U-1773809548430-0.0.1.1-604800000; cf_clearance=${cfClearanceCookie5}; oai-sc=${oaiScCookie5}` + }, + body: JSON.stringify( + { + "p": "gAAAAACWzQwMDAsIldlZCBNYXIgMTggMjAyNiAxMjo1MzozNCBHTVQrMDgwMCAo5Lit5Zu95qCH5YeG5pe26Ze0KSIsNDI5NDk2NzI5Niw3LCJNb3ppbGxhLzUuMCAoTWFjaW50b3NoOyBJbnRlbCBNYWMgT1MgWCAxMF8xNV83KSBBcHBsZVdlYktpdC81MzcuMzYgKEtIVE1MLCBsaWtlIEdlY2tvKSBDaHJvbWUvMTQ1LjAuMC4wIFNhZmFyaS81MzcuMzYiLCJodHRwczovL3NlbnRpbmVsLm9wZW5haS5jb20vYmFja2VuZC1hcGkvc2VudGluZWwvc2RrLmpzIixudWxsLCJ6aC1DTiIsInpoLUNOLHpoIiwzLCJ2ZW5kb3JTdWLiiJIiLCJsb2NhdGlvbiIsIm9ucG9pbnRlcm1vdmUiLDg4MjMuNjAwMDAwMDAxNDksIjZlYmExZTdjLWU5NzctNDM4Yi05ZDgyLTYwOGNjNDc0MTlmOSIsIiIsOCwxNzczODA5NjA1NzM3LjcsMCwwLDAsMCwwLDAsMF0=~S", + "id": evaluatedKeysStableid, + "flow": "oauth_create_account" + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0267({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + origins, + cfClearanceCookie, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + continueUrl4, + secureNextAuthStateCookie, + cfBmCookie4 + }) { + console.log("Executing request 0267") + const response = await fetch( + continueUrl4, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"macOS\"", + "upgrade-insecure-requests": currencyConfigPromosBusinessOneDollarAmount, + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "navigate", + "sec-fetch-dest": "document", + "referer": "https//auth.openai.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; oai-asli=a2109958-0f9f-4169-a59b-a51e809c3a8e; _cfuvid=${cfuvidCookie3}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; __Secure-next-auth.state=${secureNextAuthStateCookie}; __cf_bm=${cfBmCookie4}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0` + } + } + ) + const body = await response.text() + return { + accountCookie: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '_account').split("=")[1].split(";")[0].trim(), + secureNextAuthSessionTokenCookie: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '__Secure-next-auth.session-token').split("=")[1].split(";")[0].trim(), + variable24: response.headers.get("location") + } + } + async function executeRequest0268({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + secureNextAuthCallbackUrlCookie2, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + secureNextAuthSessionTokenCookie + }) { + console.log("Executing request 0268") + const response = await fetch( + secureNextAuthCallbackUrlCookie2, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "upgrade-insecure-requests": currencyConfigPromosBusinessOneDollarAmount, + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "navigate", + "sec-fetch-dest": "document", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"macOS\"", + "referer": "https//auth.openai.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; oai-asli=a2109958-0f9f-4169-a59b-a51e809c3a8e; _cfuvid=${cfuvidCookie3}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; __cf_bm=${cfBmCookie4}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; _account=${accountCookie}; oai-login-page-load-pending=${variable4}; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie}` + } + } + ) + const body = await response.text() + return { + statsigpayloadLayerConfigs817522959ValueChatgptInstantAnswersDynamicConfigLabradorFetcherConfigRetrievalCandidateCount: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["layer_configs"]["817522959"]["value"]["chatgpt-instant-answers-dynamic-config"]["labrador_fetcher_config"]["retrieval_candidate_count"], + statsigpayloadLayerConfigs817522959ValueChatgptInstantAnswersDynamicConfigLabradorFetcherConfigPromptMatchRejectsPromptTooLong: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["layer_configs"]["817522959"]["value"]["chatgpt-instant-answers-dynamic-config"]["labrador_fetcher_config"]["prompt_match_rejects_prompt_too_long"], + sessionAccesstoken: JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["session"]["accessToken"], + secureNextAuthSessionTokenCookie1: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '__Secure-next-auth.session-token').split("=")[1].split(";")[0].trim(), + sessionUserId: JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["session"]["user"]["id"], + sessionUserName: JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["session"]["user"]["name"], + authstatus2: JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["authStatus"], + statsigpayloadLayerConfigs817522959ValueChatgptInstantAnswersDynamicConfigLabradorFetcherConfigAnnThreshold: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["layer_configs"]["817522959"]["value"]["chatgpt-instant-answers-dynamic-config"]["labrador_fetcher_config"]["ann_threshold"], + statsigpayloadLayerConfigs817522959ValueChatgptInstantAnswersDynamicConfigAutoEvalSamplingRate: JSON.parse(JSON.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[7].childNodes[0].textContent)["statsigPayload"])["layer_configs"]["817522959"]["value"]["chatgpt-instant-answers-dynamic-config"]["auto_eval_sampling_rate"], + attributeHref11: xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[3].childNodes[0].childNodes[0].childNodes[0].childNodes[0].childNodes[0].childNodes[1].childNodes[1].childNodes[4].childNodes[1].getAttribute("href") + } + } + async function executeRequest0270({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) { + console.log("Executing request 0270") + const response = await fetch( + `https://${origins}/backend-api/system_hints??mode=connectors`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "chatgpt-account-id": accountCookie, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/system_hints", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/system_hints", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; oai-asli=a2109958-0f9f-4169-a59b-a51e809c3a8e; _cfuvid=${cfuvidCookie3}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; __cf_bm=${cfBmCookie4}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; _account=${accountCookie}; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0272({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) { + console.log("Executing request 0272") + const response = await fetch( + `https://${origins}/backend-api/settings/user`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "chatgpt-account-id": accountCookie, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/settings/user", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/settings/user", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; oai-asli=a2109958-0f9f-4169-a59b-a51e809c3a8e; _cfuvid=${cfuvidCookie3}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; __cf_bm=${cfBmCookie4}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; _account=${accountCookie}; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + eligibleAnnouncements1: JSON.parse(body)["eligible_announcements"][6], + cfBmCookie5: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '__cf_bm').split("=")[1].split(";")[0].trim(), + cfuvidCookie6: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '_cfuvid').split("=")[1].split(";")[0].trim(), + eligibleAnnouncements: JSON.parse(body)["eligible_announcements"][1], + eligibleAnnouncements4: JSON.parse(body)["eligible_announcements"][0], + eligibleAnnouncements2: JSON.parse(body)["eligible_announcements"][11], + eligibleAnnouncements3: JSON.parse(body)["eligible_announcements"][5], + eligibleAnnouncements5: JSON.parse(body)["eligible_announcements"][10], + eligibleAnnouncements6: JSON.parse(body)["eligible_announcements"][7], + eligibleAnnouncements7: JSON.parse(body)["eligible_announcements"][14] + } + } + async function executeRequest0273({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) { + console.log("Executing request 0273") + const response = await fetch( + `https://${origins}/backend-api/system_hints??mode=basic`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "chatgpt-account-id": accountCookie, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/system_hints", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/system_hints", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; oai-asli=a2109958-0f9f-4169-a59b-a51e809c3a8e; _cfuvid=${cfuvidCookie3}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; __cf_bm=${cfBmCookie4}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; _account=${accountCookie}; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0273({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) { + console.log("Executing request 0273") + const response = await fetch( + `https://${origins}/backend-api/me`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "chatgpt-account-id": accountCookie, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/me", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/me", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; oai-asli=a2109958-0f9f-4169-a59b-a51e809c3a8e; _cfuvid=${cfuvidCookie3}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; __cf_bm=${cfBmCookie4}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; _account=${accountCookie}; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + adsSegmentId: JSON.parse(body)["ads_segment_id"], + object: JSON.parse(body)["object"] + } + } + async function executeRequest0273({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + url4, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) { + console.log("Executing request 0273") + const response = await fetch( + `https://${origins}/backend-api/${url4}/check/v4-2023-04-27??timezone_offset_min=-480`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "chatgpt-account-id": accountCookie, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/accounts/check/v4-2023-04-27", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/accounts/check/{version}", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; oai-asli=a2109958-0f9f-4169-a59b-a51e809c3a8e; _cfuvid=${cfuvidCookie3}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; __cf_bm=${cfBmCookie4}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; _account=${accountCookie}; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + accounts9b62de654103487fAc2002e2030f03dfFeatures: JSON.parse(body)["accounts"]["9b62de65-4103-487f-ac20-02e2030f03df"]["features"][25], + accounts9b62de654103487fAc2002e2030f03dfEligiblePromoCampaignsPlusMetadataPlanName: JSON.parse(body)["accounts"]["9b62de65-4103-487f-ac20-02e2030f03df"]["eligible_promo_campaigns"]["plus"]["metadata"]["plan_name"], + accounts9b62de654103487fAc2002e2030f03dfEligiblePromoCampaignsPlusId: JSON.parse(body)["accounts"]["9b62de65-4103-487f-ac20-02e2030f03df"]["eligible_promo_campaigns"]["plus"]["id"] + } + } + async function executeRequest0276({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + sessionUserId + }) { + console.log("Executing request 0276") + const response = await fetch( + `https://${origins}/backend-api/aip/connectors/links/list_accessible`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "chatgpt-account-id": accountCookie, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/aip/connectors/links/list_accessible", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/aip/connectors/links/list_accessible", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "content-type": attributeType, + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; oai-asli=a2109958-0f9f-4169-a59b-a51e809c3a8e; _cfuvid=${cfuvidCookie3}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; __cf_bm=${cfBmCookie4}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; _account=${accountCookie}; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid` + }, + body: JSON.stringify( + { + "principals": [ + { + "type": "USER", + "id": sessionUserId + } + ], + "link_refresh_strategy": "BLOCKING" + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0277({ + statsigpayloadDynamicConfigs216497991ValueOutdatedRoomBootstrapMessagesCount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) { + console.log("Executing request 0277") + const response = await fetch( + `https://${origins}/backend-api/pins?limit=${statsigpayloadDynamicConfigs216497991ValueOutdatedRoomBootstrapMessagesCount}&item_type=project`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "chatgpt-account-id": accountCookie, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/pins", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/pins", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; oai-asli=a2109958-0f9f-4169-a59b-a51e809c3a8e; _cfuvid=${cfuvidCookie3}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; __cf_bm=${cfBmCookie4}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; _account=${accountCookie}; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + cfBmCookie7: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '__cf_bm').split("=")[1].split(";")[0].trim(), + cfuvidCookie8: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '_cfuvid').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0278({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) { + console.log("Executing request 0278") + const response = await fetch( + `https://${origins}/backend-api/user_system_messages`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "chatgpt-account-id": accountCookie, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/user_system_messages", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/user_system_messages", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; oai-asli=a2109958-0f9f-4169-a59b-a51e809c3a8e; _cfuvid=${cfuvidCookie3}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; __cf_bm=${cfBmCookie4}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; _account=${accountCookie}; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0278({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) { + console.log("Executing request 0278") + const response = await fetch( + `https://${origins}/backend-api/sentinel/chat-requirements/prepare`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "chatgpt-account-id": accountCookie, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/sentinel/chat-requirements/prepare", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/sentinel/chat-requirements/prepare", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "content-type": attributeType, + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; oai-asli=a2109958-0f9f-4169-a59b-a51e809c3a8e; _cfuvid=${cfuvidCookie3}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; __cf_bm=${cfBmCookie4}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; _account=${accountCookie}; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid` + }, + body: "{\"p\":\"gAAAAACWzQwMDAsIldlZCBNYXIgMTggMjAyNiAxMjo1Mzo0OCBHTVQrMDgwMCAo5Lit5Zu95qCH5YeG5pe26Ze0KSIsNDI5NDk2NzI5NiwxLCJNb3ppbGxhLzUuMCAoTWFjaW50b3NoOyBJbnRlbCBNYWMgT1MgWCAxMF8xNV83KSBBcHBsZVdlYktpdC81MzcuMzYgKEtIVE1MLCBsaWtlIEdlY2tvKSBDaHJvbWUvMTQ1LjAuMC4wIFNhZmFyaS81MzcuMzYiLG51bGwsInByb2QtNWIyYmJlMzc3MjhlMTMyYzNlOWMxZGU1MGNmOTYyMzA5YTAzNTk3NCIsInpoLUNOIiwiemgtQ04semgiLDAuNSwibG9naW7iiJJbb2JqZWN0IE5hdmlnYXRvckxvZ2luXSIsIl9fcmVhY3RDb250YWluZXIkajhkMmF2aDVreWciLCJvbmVuZGVkIiw1MjY0LjYwMDAwMDAwMTQ5LCIxNzBkYzBiMC1lMWViLTRhYTEtYTZiMC05Nzc1ZWIwNGJhMmEiLCIiLDgsMTc3MzgwOTYyMzExOC4xLDAsMCwwLDAsMCwwLDBd\"}" + } + ) + const body = await response.text() + return { + oaiScCookie6: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === 'oai-sc').split("=")[1].split(";")[0].trim(), + prepareToken1: JSON.parse(body)["prepare_token"] + } + } + async function executeRequest0278({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) { + console.log("Executing request 0278") + const response = await fetch( + `https://${origins}/backend-api/models?iim=${attributeAriaExpanded}&is_gizmo=${attributeAriaExpanded}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "chatgpt-account-id": accountCookie, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/models", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/models", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; oai-asli=a2109958-0f9f-4169-a59b-a51e809c3a8e; _cfuvid=${cfuvidCookie3}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; __cf_bm=${cfBmCookie4}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; _account=${accountCookie}; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0280({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) { + console.log("Executing request 0280") + const response = await fetch( + `https://${origins}/backend-api/gizmos/snorlax/sidebar?owned_only=${variable4}&conversations_per_gizmo=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "chatgpt-account-id": accountCookie, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/gizmos/snorlax/sidebar", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/gizmos/snorlax/sidebar", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; oai-asli=a2109958-0f9f-4169-a59b-a51e809c3a8e; _cfuvid=${cfuvidCookie3}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; __cf_bm=${cfBmCookie4}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; _account=${accountCookie}; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + variable42: response.headers.get("content-length") + } + } + async function executeRequest0280({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) { + console.log("Executing request 0280") + const response = await fetch( + `https://${origins}/backend-api/conversation/init`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "chatgpt-account-id": accountCookie, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/conversation/init", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/conversation/init", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "content-type": attributeType, + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; oai-asli=a2109958-0f9f-4169-a59b-a51e809c3a8e; _cfuvid=${cfuvidCookie3}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; __cf_bm=${cfBmCookie4}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; _account=${accountCookie}; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid` + }, + body: JSON.stringify( + { + "gizmo_id": null, + "requested_default_model": null, + "conversation_id": null, + "timezone_offset_min": "-480" + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0281({ + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) { + console.log("Executing request 0281") + const response = await fetch( + `https://${origins}/backend-api/gizmos/bootstrap?limit=${statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "chatgpt-account-id": accountCookie, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/gizmos/bootstrap", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/gizmos/bootstrap", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; oai-asli=a2109958-0f9f-4169-a59b-a51e809c3a8e; _cfuvid=${cfuvidCookie3}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; __cf_bm=${cfBmCookie4}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; _account=${accountCookie}; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + variable38: response.headers.get("content-length") + } + } + async function executeRequest0281({ + variable12, + statsigpayloadLayerConfigs3850010910ValuePlusGracePeriodDays, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) { + console.log("Executing request 0281") + const response = await fetch( + `https://${origins}/backend-api/conversations?offset=${variable12}&limit=${statsigpayloadLayerConfigs3850010910ValuePlusGracePeriodDays}&order=updated&is_archived=${attributeAriaExpanded}&is_starred=${attributeAriaExpanded}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "chatgpt-account-id": accountCookie, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/conversations", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/conversations", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; oai-asli=a2109958-0f9f-4169-a59b-a51e809c3a8e; _cfuvid=${cfuvidCookie3}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; __cf_bm=${cfBmCookie4}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; _account=${accountCookie}; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + variable57: response.headers.get("content-length") + } + } + async function executeRequest0282({ + statsigpayloadDynamicConfigs216497991ValueOutdatedRoomBootstrapMessagesCount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) { + console.log("Executing request 0282") + const response = await fetch( + `https://${origins}/backend-api/pins?limit=${statsigpayloadDynamicConfigs216497991ValueOutdatedRoomBootstrapMessagesCount}&item_type=conversation`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "chatgpt-account-id": accountCookie, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/pins", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/pins", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; oai-asli=a2109958-0f9f-4169-a59b-a51e809c3a8e; _cfuvid=${cfuvidCookie3}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; __cf_bm=${cfBmCookie4}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; _account=${accountCookie}; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0282({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + attributeContent, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) { + console.log("Executing request 0282") + const response = await fetch( + `https://${origins}/backend-api/calpico/${attributeContent}/rooms/summary?limit=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&include_pinned=${variable4}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "chatgpt-account-id": accountCookie, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/calpico/chatgpt/rooms/summary", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/calpico/chatgpt/rooms/summary", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; oai-asli=a2109958-0f9f-4169-a59b-a51e809c3a8e; _cfuvid=${cfuvidCookie3}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; __cf_bm=${cfBmCookie4}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; _account=${accountCookie}; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0282({ + statsigpayloadDynamicConfigs1967546325ValueGdrivepercentage, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + sessionUserId, + statsigpayloadLayerConfigs109457ValueOnboardingStyle + }) { + console.log("Executing request 0282") + const response = await fetch( + `https://${origins}/backend-api/aip/connectors/links/list_accessible`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "oai-product-sku": "SLURM", + "chatgpt-account-id": accountCookie, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/aip/connectors/links/list_accessible", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/aip/connectors/links/list_accessible", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "content-type": attributeType, + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; oai-asli=a2109958-0f9f-4169-a59b-a51e809c3a8e; _cfuvid=${cfuvidCookie3}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; __cf_bm=${cfBmCookie4}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; _account=${accountCookie}; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid` + }, + body: JSON.stringify( + { + "principals": [ + { + "type": "USER", + "id": sessionUserId + } + ], + "link_refresh_strategy": statsigpayloadLayerConfigs109457ValueOnboardingStyle + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0283({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + sessionUserId + }) { + console.log("Executing request 0283") + const response = await fetch( + `https://${origins}/backend-api/aip/connectors/list_accessible?skip_actions=${variable4}&external_logos=${variable4}`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "oai-product-sku": "SLURM", + "chatgpt-account-id": accountCookie, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/aip/connectors/list_accessible", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/aip/connectors/list_accessible", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "content-type": attributeType, + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; oai-asli=a2109958-0f9f-4169-a59b-a51e809c3a8e; _cfuvid=${cfuvidCookie3}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; __cf_bm=${cfBmCookie4}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; _account=${accountCookie}; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid` + }, + body: JSON.stringify( + { + "principals": [ + { + "type": "USER", + "id": sessionUserId + } + ] + } + ) + } + ) + const body = await response.text() + return { + connectorsBrandingPrivacyPolicyV: new URL(JSON.parse(body)["connectors"][82]["branding"]["privacy_policy"]).search, + connectorsBrandingWebsite: new URL(JSON.parse(body)["connectors"][21]["branding"]["website"]).pathname, + connectorsBrandingWebsite1: new URL(JSON.parse(body)["connectors"][6]["branding"]["website"]).pathname, + connectorsBrandingTermsOfService: new URL(JSON.parse(body)["connectors"][235]["branding"]["terms_of_service"]).pathname, + connectorsKeywordsForDiscovery: JSON.parse(body)["connectors"][47]["keywords_for_discovery"][2], + connectorsKeywordsForDiscovery1: JSON.parse(body)["connectors"][47]["keywords_for_discovery"][1], + connectorsSupportedAuthOidcScopesSupported: new URL(JSON.parse(body)["connectors"][231]["supported_auth"][0]["oidc_scopes_supported"][46]).pathname, + connectorsBrandingTermsOfService1: new URL(JSON.parse(body)["connectors"][82]["branding"]["terms_of_service"]).pathname, + connectorsSupportedAuthTokenUrl: new URL(JSON.parse(body)["connectors"][110]["supported_auth"][0]["token_url"]).pathname, + connectorsSuggestionConfigImageUrl: new URL(JSON.parse(body)["connectors"][199]["suggestion_config"]["image_url"]).pathname, + connectorsBrandingPrivacyPolicy: new URL(JSON.parse(body)["connectors"][211]["branding"]["privacy_policy"]).pathname, + connectorsBrandingTermsOfService2: new URL(JSON.parse(body)["connectors"][214]["branding"]["terms_of_service"]).pathname, + connectorsSupportedAuthOidcScopesSupported1: new URL(JSON.parse(body)["connectors"][231]["supported_auth"][0]["oidc_scopes_supported"][30]).pathname, + connectorsBrandingWebsite2: new URL(JSON.parse(body)["connectors"][226]["branding"]["website"]).hostname, + connectorsSupportedAuthOidcUserinfoEndpoint: new URL(JSON.parse(body)["connectors"][1]["supported_auth"][0]["oidc_userinfo_endpoint"]).pathname, + connectorsLinkParamsSchemaType: JSON.parse(body)["connectors"][10]["link_params_schema"]["type"], + connectorsBrandingPrivacyPolicy1: new URL(JSON.parse(body)["connectors"][74]["branding"]["privacy_policy"]).pathname, + connectorsBrandingPrivacyPolicy2: new URL(JSON.parse(body)["connectors"][151]["branding"]["privacy_policy"]).pathname, + connectorsSupportedAuthOidcScopesSupported2: JSON.parse(body)["connectors"][71]["supported_auth"][0]["oidc_scopes_supported"][11], + connectorsSupportedAuthAuthorizationUrl: new URL(JSON.parse(body)["connectors"][1]["supported_auth"][0]["authorization_url"]).pathname, + connectorsKeywordsForDiscovery2: JSON.parse(body)["connectors"][83]["keywords_for_discovery"][1], + connectorsBrandingPrivacyPolicy3: new URL(JSON.parse(body)["connectors"][98]["branding"]["privacy_policy"]).pathname, + connectorsSupportedAuthScopesSupported: JSON.parse(body)["connectors"][2]["supported_auth"][0]["scopes_supported"][3] + } + } + async function executeRequest0284({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + connectorsBrandingWebsite, + variable26 + }) { + console.log("Executing request 0284") + const response = await fetch( + `https://${origins}/backend-api/beacons/${connectorsBrandingWebsite}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "cache-control": variable26, + "chatgpt-account-id": accountCookie, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/beacons/home", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/beacons/home", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; _cfuvid=${cfuvidCookie3}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; __cf_bm=${cfBmCookie4}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; _account=${accountCookie}; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + variable43: response.headers.get("content-length") + } + } + async function executeRequest0284({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) { + console.log("Executing request 0284") + const response = await fetch( + `https://${origins}/backend-api/connectors/check??connector_names=gdrive&connector_names=o365_personal&connector_names=o365_business`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "chatgpt-account-id": accountCookie, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/connectors/check", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/connectors/check", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; oai-asli=a2109958-0f9f-4169-a59b-a51e809c3a8e; _cfuvid=${cfuvidCookie3}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; __cf_bm=${cfBmCookie4}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; _account=${accountCookie}; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0284({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + connectorsBrandingWebsite1 + }) { + console.log("Executing request 0284") + const response = await fetch( + `https://${origins}/backend-api/${connectorsBrandingWebsite1}/sources_dropdown`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "chatgpt-account-id": accountCookie, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/apps/sources_dropdown", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/apps/sources_dropdown", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; oai-asli=a2109958-0f9f-4169-a59b-a51e809c3a8e; _cfuvid=${cfuvidCookie3}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; __cf_bm=${cfBmCookie4}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; _account=${accountCookie}; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + modesDrlegacyCapabilitiesConnectMore: JSON.parse(body)["modes"]["drLegacy"]["capabilities"]["connect_more"] + } + } + async function executeRequest0284({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) { + console.log("Executing request 0284") + const response = await fetch( + `https://${origins}/backend-api/settings/voices`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "chatgpt-account-id": accountCookie, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/settings/voices", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/settings/voices", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; oai-asli=a2109958-0f9f-4169-a59b-a51e809c3a8e; _cfuvid=${cfuvidCookie3}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; __cf_bm=${cfBmCookie4}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; _account=${accountCookie}; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0284({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + connectorsBrandingTermsOfService + }) { + console.log("Executing request 0284") + const response = await fetch( + `https://${origins}/backend-api/${connectorsBrandingTermsOfService}/bootstrap`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "chatgpt-account-id": accountCookie, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/images/bootstrap", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/images/bootstrap", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; _cfuvid=${cfuvidCookie3}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; __cf_bm=${cfBmCookie4}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; _account=${accountCookie}; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0285({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) { + console.log("Executing request 0285") + const response = await fetch( + `https://${origins}/backend-api/client/strings`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "chatgpt-account-id": accountCookie, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/client/strings", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/client/strings", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; oai-asli=a2109958-0f9f-4169-a59b-a51e809c3a8e; _cfuvid=${cfuvidCookie3}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; __cf_bm=${cfBmCookie4}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; _account=${accountCookie}; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0286({ + attributeWidth, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) { + console.log("Executing request 0286") + const response = await fetch( + `https://${origins}/backend-api/amphora/notifications?limit=${attributeWidth}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "chatgpt-account-id": accountCookie, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/amphora/notifications", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/amphora/notifications", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; _cfuvid=${cfuvidCookie3}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; __cf_bm=${cfBmCookie4}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; _account=${accountCookie}; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0288({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) { + console.log("Executing request 0288") + const response = await fetch( + `https://${origins}/backend-api/user_surveys/active`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "chatgpt-account-id": accountCookie, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/user_surveys/active", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/user_surveys/active", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; _cfuvid=${cfuvidCookie3}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; __cf_bm=${cfBmCookie4}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; _account=${accountCookie}; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0289({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + object + }) { + console.log("Executing request 0289") + const response = await fetch( + `https://${origins}/backend-api/celsius/ws/${object}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "chatgpt-account-id": accountCookie, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/celsius/ws/user", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/celsius/ws/user", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; _cfuvid=${cfuvidCookie3}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; __cf_bm=${cfBmCookie4}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; _account=${accountCookie}; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0290({ + variable12, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + eligibleAnnouncements1, + cfBmCookie5, + cfuvidCookie6 + }) { + console.log("Executing request 0290") + const response = await fetch( + `https://${origins}/backend-api/settings/announcement_viewed?announcement_id=${eligibleAnnouncements1}`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "chatgpt-account-id": accountCookie, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/settings/announcement_viewed", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/settings/announcement_viewed", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; _account=${accountCookie}; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid; __cf_bm=${cfBmCookie5}; _cfuvid=${cfuvidCookie6}` + } + } + ) + const body = await response.text() + return { + cfBmCookie6: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '__cf_bm').split("=")[1].split(";")[0].trim(), + cfuvidCookie7: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '_cfuvid').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0290({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) { + console.log("Executing request 0290") + const response = await fetch( + `https://${origins}/backend-api/checkout_pricing_config/countries`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "chatgpt-account-id": accountCookie, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/checkout_pricing_config/countries", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/checkout_pricing_config/countries", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; _cfuvid=${cfuvidCookie3}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; __cf_bm=${cfBmCookie4}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; _account=${accountCookie}; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0291({ + variable12, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + cfBmCookie5, + cfuvidCookie6, + eligibleAnnouncements + }) { + console.log("Executing request 0291") + const response = await fetch( + `https://${origins}/backend-api/settings/announcement_viewed?announcement_id=${eligibleAnnouncements}`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "chatgpt-account-id": accountCookie, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/settings/announcement_viewed", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/settings/announcement_viewed", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; _account=${accountCookie}; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid; __cf_bm=${cfBmCookie5}; _cfuvid=${cfuvidCookie6}` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0292({ + variable12, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + cfBmCookie5, + cfuvidCookie6, + eligibleAnnouncements4 + }) { + console.log("Executing request 0292") + const response = await fetch( + `https://${origins}/backend-api/settings/announcement_viewed?announcement_id=${eligibleAnnouncements4}`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "chatgpt-account-id": accountCookie, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/settings/announcement_viewed", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/settings/announcement_viewed", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; _account=${accountCookie}; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid; __cf_bm=${cfBmCookie5}; _cfuvid=${cfuvidCookie6}` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0292({ + variable12, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + cfBmCookie5, + cfuvidCookie6, + eligibleAnnouncements2 + }) { + console.log("Executing request 0292") + const response = await fetch( + `https://${origins}/backend-api/settings/announcement_viewed?announcement_id=${eligibleAnnouncements2}`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "chatgpt-account-id": accountCookie, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/settings/announcement_viewed", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/settings/announcement_viewed", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; _account=${accountCookie}; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid; __cf_bm=${cfBmCookie5}; _cfuvid=${cfuvidCookie6}` + } + } + ) + const body = await response.text() + return { + cfBmCookie10: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '__cf_bm').split("=")[1].split(";")[0].trim(), + cfuvidCookie12: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '_cfuvid').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0293({ + variable12, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + cfBmCookie5, + cfuvidCookie6, + eligibleAnnouncements3 + }) { + console.log("Executing request 0293") + const response = await fetch( + `https://${origins}/backend-api/settings/announcement_viewed?announcement_id=${eligibleAnnouncements3}`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "chatgpt-account-id": accountCookie, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/settings/announcement_viewed", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/settings/announcement_viewed", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; _account=${accountCookie}; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid; __cf_bm=${cfBmCookie5}; _cfuvid=${cfuvidCookie6}` + } + } + ) + const body = await response.text() + return { + cfBmCookie11: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '__cf_bm').split("=")[1].split(";")[0].trim(), + cfuvidCookie13: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '_cfuvid').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0294({ + variable12, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + cfBmCookie5, + cfuvidCookie6, + eligibleAnnouncements5 + }) { + console.log("Executing request 0294") + const response = await fetch( + `https://${origins}/backend-api/settings/announcement_viewed?announcement_id=${eligibleAnnouncements5}`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "chatgpt-account-id": accountCookie, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/settings/announcement_viewed", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/settings/announcement_viewed", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; _account=${accountCookie}; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid; __cf_bm=${cfBmCookie5}; _cfuvid=${cfuvidCookie6}` + } + } + ) + const body = await response.text() + return { + cfBmCookie12: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '__cf_bm').split("=")[1].split(";")[0].trim(), + cfuvidCookie14: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '_cfuvid').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0295({ + variable12, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + cfBmCookie5, + cfuvidCookie6, + eligibleAnnouncements6 + }) { + console.log("Executing request 0295") + const response = await fetch( + `https://${origins}/backend-api/settings/announcement_viewed?announcement_id=${eligibleAnnouncements6}`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "chatgpt-account-id": accountCookie, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/settings/announcement_viewed", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/settings/announcement_viewed", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; _account=${accountCookie}; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid; __cf_bm=${cfBmCookie5}; _cfuvid=${cfuvidCookie6}` + } + } + ) + const body = await response.text() + return { + cfBmCookie13: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '__cf_bm').split("=")[1].split(";")[0].trim(), + cfuvidCookie15: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '_cfuvid').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0296({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + cfBmCookie5, + cfuvidCookie6, + connectorsKeywordsForDiscovery, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue + }) { + console.log("Executing request 0296") + const response = await fetch( + `https://${origins}/backend-api/${connectorsKeywordsForDiscovery}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/tasks", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/tasks", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid; __cf_bm=${cfBmCookie5}; _cfuvid=${cfuvidCookie6}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0297({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + urlAudience, + evaluatedKeysStableid, + accountCookie, + variable24, + secureNextAuthSessionTokenCookie1, + cfBmCookie5, + cfuvidCookie6, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + connectorsKeywordsForDiscovery1 + }) { + console.log("Executing request 0297") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/${connectorsKeywordsForDiscovery1}/oai/settings`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; _account=${accountCookie}; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid; __cf_bm=${cfBmCookie5}; _cfuvid=${cfuvidCookie6}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0298({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + cfBmCookie5, + cfuvidCookie6, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue + }) { + console.log("Executing request 0298") + const response = await fetch( + `https://${origins}/backend-api/memories?exclusive_to_gizmo=${attributeAriaExpanded}&include_memory_entries=${attributeAriaExpanded}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/memories", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/memories", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid; __cf_bm=${cfBmCookie5}; _cfuvid=${cfuvidCookie6}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}` + } + } + ) + const body = await response.text() + return { + cfuvidCookie9: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '_cfuvid').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0300({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + cfBmCookie5, + cfuvidCookie6, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + attributeRole, + voicesVoice, + statsigpayloadLayerConfigs4112645001ValueOutline + }) { + console.log("Executing request 0300") + const response = await fetch( + `https://${origins}/realtime/${attributeRole}`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/realtime/status", + "oai-device-id": evaluatedKeysStableid, + "openai-sentinel-proof-token": "gAAAAACWzQwMDAsIldlZCBNYXIgMTggMjAyNiAxMjo1Mzo1MCBHTVQrMDgwMCAo5Lit5Zu95qCH5YeG5pe26Ze0KSIsNDI5NDk2NzI5NiwxLCJNb3ppbGxhLzUuMCAoTWFjaW50b3NoOyBJbnRlbCBNYWMgT1MgWCAxMF8xNV83KSBBcHBsZVdlYktpdC81MzcuMzYgKEtIVE1MLCBsaWtlIEdlY2tvKSBDaHJvbWUvMTQ1LjAuMC4wIFNhZmFyaS81MzcuMzYiLCJodHRwczovL2Nvbm5lY3QuZmFjZWJvb2submV0L2VuX1VTL2ZiZXZlbnRzLmpzIiwicHJvZC01YjJiYmUzNzcyOGUxMzJjM2U5YzFkZTUwY2Y5NjIzMDlhMDM1OTc0IiwiemgtQ04iLCJ6aC1DTix6aCIsNTEsInJlZ2lzdGVyUHJvdG9jb2xIYW5kbGVy4oiSZnVuY3Rpb24gcmVnaXN0ZXJQcm90b2NvbEhhbmRsZXIoKSB7IFtuYXRpdmUgY29kZV0gfSIsIl9fcmVhY3RDb250YWluZXIkajhkMmF2aDVreWciLCIkUlYiLDcwMjIuNzAwMDAwMDAyOTgsIjE3MGRjMGIwLWUxZWItNGFhMS1hNmIwLTk3NzVlYjA0YmEyYSIsIiIsOCwxNzczODA5NjIzMTE4LjEsMCwwLDAsMCwwLDAsMF0=~S", + "x-openai-target-route": "/realtime/status", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "content-type": attributeType, + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid; __cf_bm=${cfBmCookie5}; _cfuvid=${cfuvidCookie6}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}` + }, + body: JSON.stringify( + { + "conversation_id": null, + "requested_voice_mode": "advanced", + "gizmo_id": null, + "voice": voicesVoice, + "requested_default_model": statsigpayloadLayerConfigs4112645001ValueOutline, + "timezone_offset_min": "-480", + "nonce": evaluatedKeysStableid, + "voice_status_request_id": "02DA0059-24E3-1E13-09A4-000ABE5F33A0" + } + ) + } + ) + const body = await response.text() + return { + cfBmCookie8: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '__cf_bm').split("=")[1].split(";")[0].trim(), + cfuvidCookie10: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '_cfuvid').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0300({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + statsigpayloadDynamicConfigs3685705952ValueSms, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie6, + cfBmCookie6, + cfuvidCookie7 + }) { + console.log("Executing request 0300") + const response = await fetch( + `https://${origins}/backend-api/checkout_pricing_config/configs/${statsigpayloadDynamicConfigs3685705952ValueSms}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/checkout_pricing_config/configs/US", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/checkout_pricing_config/configs/{country_code}", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-sc=${oaiScCookie6}; oai-gn=; _dd_s=aid; __cf_bm=${cfBmCookie6}; _cfuvid=${cfuvidCookie7}` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0301({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie6, + cfBmCookie7, + cfuvidCookie8, + prepareToken1 + }) { + console.log("Executing request 0301") + const response = await fetch( + `https://${origins}/backend-api/sentinel/chat-requirements/finalize`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/sentinel/chat-requirements/finalize", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/sentinel/chat-requirements/finalize", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "content-type": attributeType, + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; __cf_bm=${cfBmCookie7}; _cfuvid=${cfuvidCookie8}; oai-sc=${oaiScCookie6}; oai-gn=` + }, + body: JSON.stringify( + { + "prepare_token": prepareToken1, + "proofofwork": "gAAAAABWzQwMDAsIldlZCBNYXIgMTggMjAyNiAxMjo1Mzo1MSBHTVQrMDgwMCAo5Lit5Zu95qCH5YeG5pe26Ze0KSIsNDI5NDk2NzI5NiwxOCwiTW96aWxsYS81LjAgKE1hY2ludG9zaDsgSW50ZWwgTWFjIE9TIFggMTBfMTVfNykgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzE0NS4wLjAuMCBTYWZhcmkvNTM3LjM2IiwiaHR0cHM6Ly9jb25uZWN0LmZhY2Vib29rLm5ldC9lbl9VUy9mYmV2ZW50cy5qcyIsInByb2QtNWIyYmJlMzc3MjhlMTMyYzNlOWMxZGU1MGNmOTYyMzA5YTAzNTk3NCIsInpoLUNOIiwiemgtQ04semgiLDEsImtleWJvYXJk4oiSW29iamVjdCBLZXlib2FyZF0iLCJfX3JlYWN0Q29udGFpbmVyJGo4ZDJhdmg1a3lnIiwib25jb250ZXh0bG9zdCIsODI5Ny4xMDAwMDAwMDE0OSwiMTcwZGMwYjAtZTFlYi00YWExLWE2YjAtOTc3NWViMDRiYTJhIiwiIiw4LDE3NzM4MDk2MjMxMTguMSwwLDAsMCwwLDAsMCwwXQ==~S", + "turnstile": "SBoYABkBAAwOFXJQd1V1cltqd3UHfWxDenpwSWV/ck9JUhUfGhsHGQMNDA4GAw8dAwMBCBcFAR8aGQcZBAsMDgUFDxgYFQMWGAYVCRpgcFBGd3p5ChEUDAYEHQsYFg0RWWxER2QJRmFhdkt7UlsCWm92blF9dmJnZQsbUGN2THdyZQt5b1NlQhoCFgUHFhgBFQkaYXBmRnVqUwoRFAwNDx0OHxYNEX15TG9hfmQGZF9ATGZmWGFMYmFpYHhQVnV9eGNgZld7Zgd1YHZYcXVqH3J7YUBKV29UDWxjYVdcfXIGaW5CQ3h7fXhjYGZISmNhYmFtYlNhXUVcXmQJQmFiZUhsYQZqXmwFU2FdRVxeZAlCYWJlSGxhBmpZDBgVBwoABAERAgxndUNof1htUm5mWFNmCEplc3IMaHZQB11pdmFgbEUNU2QLWlBlAnZIZk9cbWxlenB7b31gZVN4bmUCUBliWwZZaFMHd35vTGFibmRmZl56d2VPXG1sQ1RVf0UFVWQJVn9WX35mZgZydWpTYnt+b0xUZlReUmVYeXh3ZlhZb3VUVX9CWFNmCEplc3IMaHZQB11pdmF3bXhuZWQLSlBvWHpIcWZ6W29xWA4aAhYCBBYaFg0RYGhYf3QJdHBkdQhMbAZ5dEhicWBgdm51V21kfGJ0XHRiW2FcfWJxaV57BWB0fkZnYmJ+eGYHfXRvYVNwbXtAeWFUG3BjdlxMY29lYnwFX2BuHURnZFRCY2RUcmZhW3lzemJAaW1FTFZhVBtmY2VISmNxAnRvBFNgah5Mf2RUbHVxe354YnFxYHkFR3dwWQRRd3lgYnZhW2h2QFB2aENicXl/X3RkCXRVcWZISmFPCmB6BQdqbUVcUmFARmVgZQ1WYAd9anZycXZbRUN0ZAl0VXEDAWtmB3JgemJPZGocTHBmbl5jcQJMZmFcdm52Ym1kYWhiVmFVG2JidmphYmFhdEwGfnJiaENuVwhsQ3F1CW9iXFd0fAV6aWloBVNhCRtXYV1+SmFPA3JpZQd1en9fUnd5f3Bxdn54bF9LYnZfZXZwaGZnYQhgXmBmVHxRBktifVp1ZGofBHRlCVpVb2Z6b3NbcWB2cW1gYB9YVmZuY1FkA0x2ZmFpdW9YQ2RvRlBnYX1KdXEDYnhmf1dqdmJbVmlrQHtmcEZQYFh+eGZhV2p/cnlYb0JMe2VUdHZRZnpvZmJcbX9iYVZwaFhSYX1/V2ADfk9jYWlaeVhDdV1CbkNkCUJ8b2Vib21cfXR9BV9RW3hYdmRUZHZVWwB3ZnJXYnlfU1ZubG5TYn50ZmF2TFxsW1BvZkN6fHl/AFFxeRZ1dHJyTGJbXGB6BGV7aWxQfGZueHNvAAl8ZQdXan9yeXZwH0BnZQkXY3ECTGZhXHZudmJtZGFoYlZhVRtiYnZqYWJhYXRMBn5yYmhDblcIbENxS1x5dWZ1W31DfnBwSUNRcXl/UXNxYWphZQZiemVue3BJU1RmaXtwdEsNfXZAcVt9dkNSYGhMe2R9f1JhAwFKc3F5cXZfVGpqH1hWZm14fGECSBdjb3Fgf3F1YGseTABhfXxjYXZyHGJbAm99BG1beX8JChEUDAYAHQkXFg0Re1kJChEUDAwOHQoZFg0Re1kJChEUDAMHHQgZFg0RdURTQn5CawkVHxoaDRkDDQwOFWB6XmNxVAhqcnZLdmhlXHJwWVdVdm0XfGJ2dkxzX2J+akwHcX9vZXhyeRZWcHFuTGxiV2x2BFRSfm9hdXtpHndxWHZNZ3ZEd2pDfn95Rm5xZFQXc2ZxbWR3ZWpZalNien5ZV3ZxUH95YV9QZmBydWJoZVxycG8EbXFQf3lgdXJ4YHZEd2wEAw4aAhYDBRYbAxUJGm91dnJ5b3V2cnlvdXZyeW91dnJ5b3V2choCFg8KFhwNFQkIAAwPAwEfDQ8EDR4GBAsKGgMbEQ8WGg4HGhQWeHdxW3p2DgUMGBUFCgADAxECWkZCVhQMAQAdCwwOQ0FNSxgVAg0ABg8RAgxQcVd6ewVDZH9pUFZleh5tdV1uZmUGYXRmZQoOGgIWBAMWHgcVCRpNWm1DXWZ9Y3Z/F3FlAgFKdV9hCkhsDlpbfFAca25eYmBLdl9nBkNseF9Hf2pJBGNWbhtxYAJhd21AZmB3BEdxf2xQWmVUH3FiX3p8Z3ECa3hMXwdte2J2Zm1oVX9UBRMWGxELGxoEARoUFmADQE9mcmJyaENxa2AffnpgbXxwf2VMbGNlVAUMGBUACAAFBhECDHdADgUMSQ==" + } + ) + } + ) + const body = await response.text() + return { + oaiScCookie7: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === 'oai-sc').split("=")[1].split(";")[0].trim(), + cfuvidCookie11: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '_cfuvid').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0302({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + urlAudience, + evaluatedKeysStableid, + accountCookie, + variable24, + secureNextAuthSessionTokenCookie1, + cfBmCookie5, + cfuvidCookie6, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + connectorsKeywordsForDiscovery1 + }) { + console.log("Executing request 0302") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/${connectorsKeywordsForDiscovery1}/oai/settings`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; _account=${accountCookie}; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid; __cf_bm=${cfBmCookie5}; _cfuvid=${cfuvidCookie6}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}` + } + } + ) + const body = await response.text() + return { + cfBmCookie9: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '__cf_bm').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0303({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + object, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie6, + cfBmCookie6, + cfuvidCookie7 + }) { + console.log("Executing request 0303") + const response = await fetch( + `https://${origins}/backend-api/settings/${object}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/settings/user", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/settings/user", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-sc=${oaiScCookie6}; oai-gn=; _dd_s=aid; __cf_bm=${cfBmCookie6}; _cfuvid=${cfuvidCookie7}` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0305({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + url4, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + cfBmCookie5, + cfuvidCookie6, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue + }) { + console.log("Executing request 0305") + const response = await fetch( + `https://${origins}/backend-api/${url4}/domain-density-eligibility`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/accounts/domain-density-eligibility", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/accounts/domain-density-eligibility", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; oai-sc=${oaiScCookie1}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; _dd_s=aid; __cf_bm=${cfBmCookie5}; _cfuvid=${cfuvidCookie6}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0306({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + userGroups, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie6, + statsigpayloadDynamicConfigs2850107578ValueOnboardingCardImageUrl, + cfuvidCookie9 + }) { + console.log("Executing request 0306") + const response = await fetch( + `https://${origins}/backend-api/${statsigpayloadDynamicConfigs2850107578ValueOnboardingCardImageUrl}/interests`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/onboarding/interests", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/onboarding/interests", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "content-type": attributeType, + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-sc=${oaiScCookie6}; oai-gn=; _dd_s=aid; _cfuvid=${cfuvidCookie9}; __cf_bm=XOCZMEUnoMiHF7eFdQAyvxVSnEHLWviQx0JtWHOaRGE-1773809639.0576246-1.0.1.1-cG.oTICW9Txr3rTwigWAl9TvhjGid07shYCIwfQX5UTb5q51M3BVaYJClTbIZFKEmkN6N1gB5HqnnPunICfS2YQLCZQI_ZEnwxElxR4ruEJNqplhXdpWdZcJYSyLbRn1` + }, + body: JSON.stringify( + { + "chain": userGroups, + "main_usages": userGroups + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0307({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie6, + cfBmCookie8, + cfuvidCookie10 + }) { + console.log("Executing request 0307") + const response = await fetch( + `https://${origins}/backend-api/checkout_pricing_config/countries`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/checkout_pricing_config/countries", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/checkout_pricing_config/countries", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-sc=${oaiScCookie6}; oai-gn=; _dd_s=aid; __cf_bm=${cfBmCookie8}; _cfuvid=${cfuvidCookie10}` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0307({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + userGroups, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie6, + statsigpayloadDynamicConfigs2850107578ValueOnboardingCardImageUrl, + cfuvidCookie9 + }) { + console.log("Executing request 0307") + const response = await fetch( + `https://${origins}/backend-api/${statsigpayloadDynamicConfigs2850107578ValueOnboardingCardImageUrl}/steps`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/onboarding/steps", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/onboarding/steps", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "content-type": attributeType, + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-sc=${oaiScCookie6}; oai-gn=; _dd_s=aid; _cfuvid=${cfuvidCookie9}; __cf_bm=XOCZMEUnoMiHF7eFdQAyvxVSnEHLWviQx0JtWHOaRGE-1773809639.0576246-1.0.1.1-cG.oTICW9Txr3rTwigWAl9TvhjGid07shYCIwfQX5UTb5q51M3BVaYJClTbIZFKEmkN6N1gB5HqnnPunICfS2YQLCZQI_ZEnwxElxR4ruEJNqplhXdpWdZcJYSyLbRn1` + }, + body: JSON.stringify( + { + "main_usages": userGroups, + "exclude_feature_steps": attributeAriaExpanded + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0310({ + variable12, + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs1504865540ValueMaxFileSizeMb, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + url4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie6, + cfBmCookie8, + cfuvidCookie10, + connectorsSupportedAuthOidcScopesSupported + }) { + console.log("Executing request 0310") + const response = await fetch( + `https://${origins}/backend-api/${url4}/${accountCookie}/${connectorsSupportedAuthOidcScopesSupported}?offset=${variable12}&limit=${statsigpayloadDynamicConfigs1504865540ValueMaxFileSizeMb}&query=`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/accounts/9b62de65-4103-487f-ac20-02e2030f03df/users", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/accounts/{account_id}/users", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-sc=${oaiScCookie6}; oai-gn=; _dd_s=aid; __cf_bm=${cfBmCookie8}; _cfuvid=${cfuvidCookie10}` + } + } + ) + const body = await response.text() + return { + variable62: response.headers.get("content-length") + } + } + async function executeRequest0314({ + currencyConfigPromosBusinessOneDollarAmount, + adsSegmentId, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + origins2, + variable5, + statsigpayloadDynamicConfigs217573384Value, + attributeContent, + userGroups, + secureNextAuthCallbackUrlCookie1, + url1, + urlAudience, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + sessionUserId, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + connectorsBrandingTermsOfService1, + oaiScCookie7, + cfuvidCookie11, + cfBmCookie9, + authstatus2, + categoriesSubscriptionLevel + }) { + console.log("Executing request 0314") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/${connectorsBrandingTermsOfService1}`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "oai-device-id": evaluatedKeysStableid, + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "content-type": modelsProductFeaturesAttachmentsAcceptedMimeTypes, + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-gn=; _dd_s=aid; oai-sc=${oaiScCookie7}; _cfuvid=${cfuvidCookie11}; __cf_bm=${cfBmCookie9}` + }, + body: JSON.stringify( + { + "timestamp": "2026-03-18T04:54:01.612Z", + "integrations": { + "Segment.io": variable4 + }, + "type": "page", + "properties": { + "path": origins2, + "referrer": `https://${url1}${origins2}`, + "search": origins2, + "title": variable5, + "url": `https://${origins}${origins2}##pricing`, + "hash": "#pricing" + }, + "context": { + "page": { + "path": origins2, + "referrer": `https://${url1}${origins2}`, + "search": origins2, + "title": variable5, + "url": `https://${origins}${origins2}##pricing`, + "hash": "#pricing" + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": "145" + }, + { + "brand": "Chromium", + "version": "145" + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locale": clientLocale, + "library": { + "name": "analytics.js", + "version": "npm:next-1.81.1" + }, + "campaign": statsigpayloadDynamicConfigs217573384Value, + "timezone": "Asia/Shanghai", + "app_name": attributeContent, + "app_version": "5b2bbe37728e132c3e9c1de50cf962309a035974", + "browser_locale": clientLocale, + "device_id": evaluatedKeysStableid, + "auth_status": authstatus2, + "user_traits": { + "plan_type": categoriesSubscriptionLevel, + "workspace_id": null, + "workspace_type": null, + "is_openai_internal": attributeAriaExpanded, + "ads_segment_id": adsSegmentId + }, + "is_business_ip2": variable4 + }, + "messageId": "ajs-next-1773809641612-0a36a136-8b7e-439d-90a2-959608de9b55", + "anonymousId": "9ce3c08e-d150-4dc3-a95f-d963fa1339f8", + "writeKey": "oai", + "userId": sessionUserId, + "sentAt": "2026-03-18T04:54:01.616Z", + "_metadata": { + "bundled": [ + "Segment.io" + ], + "unbundled": userGroups, + "bundledIds": userGroups + } + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0315({ + currencyConfigPromosBusinessOneDollarAmount, + adsSegmentId, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + origins2, + variable5, + statsigpayloadDynamicConfigs217573384Value, + attributeContent, + userGroups, + secureNextAuthCallbackUrlCookie1, + secureNextAuthCallbackUrlCookie2, + url1, + urlAudience, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + sessionUserId, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + connectorsBrandingTermsOfService1, + oaiScCookie7, + cfuvidCookie11, + cfBmCookie9, + authstatus2, + categoriesSubscriptionLevel + }) { + console.log("Executing request 0315") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/${connectorsBrandingTermsOfService1}`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "oai-device-id": evaluatedKeysStableid, + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "content-type": modelsProductFeaturesAttachmentsAcceptedMimeTypes, + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-gn=; _dd_s=aid; oai-sc=${oaiScCookie7}; _cfuvid=${cfuvidCookie11}; __cf_bm=${cfBmCookie9}` + }, + body: JSON.stringify( + { + "timestamp": "2026-03-18T04:54:01.611Z", + "integrations": { + "Segment.io": variable4 + }, + "type": "page", + "properties": { + "path": origins2, + "referrer": `https://${url1}${origins2}`, + "search": origins2, + "title": variable5, + "url": secureNextAuthCallbackUrlCookie2, + "hash": "" + }, + "context": { + "page": { + "path": origins2, + "referrer": `https://${url1}${origins2}`, + "search": origins2, + "title": variable5, + "url": secureNextAuthCallbackUrlCookie2, + "hash": "" + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": "145" + }, + { + "brand": "Chromium", + "version": "145" + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locale": clientLocale, + "library": { + "name": "analytics.js", + "version": "npm:next-1.81.1" + }, + "campaign": statsigpayloadDynamicConfigs217573384Value, + "timezone": "Asia/Shanghai", + "app_name": attributeContent, + "app_version": "5b2bbe37728e132c3e9c1de50cf962309a035974", + "browser_locale": clientLocale, + "device_id": evaluatedKeysStableid, + "auth_status": authstatus2, + "user_traits": { + "plan_type": categoriesSubscriptionLevel, + "workspace_id": null, + "workspace_type": null, + "is_openai_internal": attributeAriaExpanded, + "ads_segment_id": adsSegmentId + }, + "is_business_ip2": variable4 + }, + "messageId": "ajs-next-1773809641611-f79c0a36-a136-4b7e-839d-50a2959608de", + "anonymousId": "9ce3c08e-d150-4dc3-a95f-d963fa1339f8", + "writeKey": "oai", + "userId": sessionUserId, + "sentAt": "2026-03-18T04:54:01.615Z", + "_metadata": { + "bundled": [ + "Segment.io" + ], + "unbundled": userGroups, + "bundledIds": userGroups + } + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0317({ + currencyConfigPromosBusinessOneDollarAmount, + adsSegmentId, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + origins2, + variable5, + attributeContent, + userGroups, + secureNextAuthCallbackUrlCookie1, + secureNextAuthCallbackUrlCookie2, + url1, + urlAudience, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + sessionUserId, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie7, + cfuvidCookie11, + cfBmCookie9, + authstatus2, + categoriesSubscriptionLevel + }) { + console.log("Executing request 0317") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/i`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "oai-device-id": evaluatedKeysStableid, + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "content-type": modelsProductFeaturesAttachmentsAcceptedMimeTypes, + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-gn=; _dd_s=aid; oai-sc=${oaiScCookie7}; _cfuvid=${cfuvidCookie11}; __cf_bm=${cfBmCookie9}` + }, + body: JSON.stringify( + { + "timestamp": "2026-03-18T04:54:01.612Z", + "integrations": { + "Segment.io": variable4 + }, + "type": "identify", + "userId": sessionUserId, + "traits": { + "plan_type": categoriesSubscriptionLevel, + "workspace_id": null, + "workspace_type": null, + "is_openai_internal": attributeAriaExpanded, + "ads_segment_id": adsSegmentId + }, + "context": { + "page": { + "path": origins2, + "referrer": `https://${url1}${origins2}`, + "search": "", + "title": variable5, + "url": secureNextAuthCallbackUrlCookie2 + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": "145" + }, + { + "brand": "Chromium", + "version": "145" + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locale": clientLocale, + "library": { + "name": "analytics.js", + "version": "npm:next-1.81.1" + }, + "timezone": "Asia/Shanghai", + "app_name": attributeContent, + "app_version": "5b2bbe37728e132c3e9c1de50cf962309a035974", + "browser_locale": clientLocale, + "device_id": evaluatedKeysStableid, + "auth_status": authstatus2, + "user_traits": { + "plan_type": categoriesSubscriptionLevel, + "workspace_id": null, + "workspace_type": null, + "is_openai_internal": attributeAriaExpanded, + "ads_segment_id": adsSegmentId + }, + "is_business_ip2": variable4 + }, + "messageId": "ajs-next-1773809641612-a1368b7e-439d-40a2-9596-08de9b550d3f", + "anonymousId": "9ce3c08e-d150-4dc3-a95f-d963fa1339f8", + "writeKey": "oai", + "sentAt": "2026-03-18T04:54:01.616Z", + "_metadata": { + "bundled": [ + "Segment.io" + ], + "unbundled": userGroups, + "bundledIds": userGroups + } + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0319({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + statsigpayloadDynamicConfigs3685705952ValueSms, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie7, + cfuvidCookie11, + cfBmCookie9 + }) { + console.log("Executing request 0319") + const response = await fetch( + `https://${origins}/backend-api/checkout_pricing_config/configs/${statsigpayloadDynamicConfigs3685705952ValueSms}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/checkout_pricing_config/configs/US", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/checkout_pricing_config/configs/{country_code}", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-gn=; _dd_s=aid; oai-sc=${oaiScCookie7}; _cfuvid=${cfuvidCookie11}; __cf_bm=${cfBmCookie9}` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0319({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + object, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie6, + cfBmCookie6, + cfuvidCookie7 + }) { + console.log("Executing request 0319") + const response = await fetch( + `https://${origins}/backend-api/settings/${object}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/settings/user", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/settings/user", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-sc=${oaiScCookie6}; oai-gn=; _dd_s=aid; __cf_bm=${cfBmCookie6}; _cfuvid=${cfuvidCookie7}` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0320({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie7, + cfuvidCookie11, + cfBmCookie9 + }) { + console.log("Executing request 0320") + const response = await fetch( + `https://${origins}/backend-api/subscriptions/has_app_store_subscription_in_billing_retry`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/subscriptions/has_app_store_subscription_in_billing_retry", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/subscriptions/has_app_store_subscription_in_billing_retry", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-gn=; oai-sc=${oaiScCookie7}; _cfuvid=${cfuvidCookie11}; __cf_bm=${cfBmCookie9}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809643$j60$l0$h0; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + cfuvidCookie16: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '_cfuvid').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0322({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + object, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie6, + cfBmCookie10, + cfuvidCookie12 + }) { + console.log("Executing request 0322") + const response = await fetch( + `https://${origins}/backend-api/settings/${object}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/settings/user", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/settings/user", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-sc=${oaiScCookie6}; oai-gn=; _dd_s=aid; __cf_bm=${cfBmCookie10}; _cfuvid=${cfuvidCookie12}` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0327({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + object, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie6, + cfBmCookie10, + cfuvidCookie12 + }) { + console.log("Executing request 0327") + const response = await fetch( + `https://${origins}/backend-api/settings/${object}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/settings/user", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/settings/user", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-sc=${oaiScCookie6}; oai-gn=; _dd_s=aid; __cf_bm=${cfBmCookie10}; _cfuvid=${cfuvidCookie12}` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0328({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + object, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie6, + cfBmCookie11, + cfuvidCookie13 + }) { + console.log("Executing request 0328") + const response = await fetch( + `https://${origins}/backend-api/settings/${object}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/settings/user", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/settings/user", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-sc=${oaiScCookie6}; oai-gn=; _dd_s=aid; __cf_bm=${cfBmCookie11}; _cfuvid=${cfuvidCookie13}` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0329({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + object, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie6, + cfBmCookie12, + cfuvidCookie14 + }) { + console.log("Executing request 0329") + const response = await fetch( + `https://${origins}/backend-api/settings/${object}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/settings/user", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/settings/user", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-sc=${oaiScCookie6}; oai-gn=; _dd_s=aid; __cf_bm=${cfBmCookie12}; _cfuvid=${cfuvidCookie14}` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0330({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + object, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie6, + cfBmCookie13, + cfuvidCookie15 + }) { + console.log("Executing request 0330") + const response = await fetch( + `https://${origins}/backend-api/settings/${object}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/settings/user", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/settings/user", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809546$j53$l0$h0; oai-hlib=${variable4}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-sc=${oaiScCookie6}; oai-gn=; _dd_s=aid; __cf_bm=${cfBmCookie13}; _cfuvid=${cfuvidCookie15}` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0333({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + variable14, + variable24, + secureNextAuthSessionTokenCookie1, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie7, + cfuvidCookie16 + }) { + console.log("Executing request 0333") + const response = await fetch( + `https://${origins}/backend-api/sentinel/frame.html??sv=20260219f9f6`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"macOS\"", + "upgrade-insecure-requests": currencyConfigPromosBusinessOneDollarAmount, + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "navigate", + "sec-fetch-user": "?1", + "sec-fetch-dest": variable14, + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-gn=; oai-sc=${oaiScCookie7}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809643$j60$l0$h0; _cfuvid=${cfuvidCookie16}; _dd_s=aid; __cf_bm=aSH7._FJSr2PFrbO8t1Qf3cPNlnH.pC_fzFP52_wOpg-1773809651.0747118-1.0.1.1-7TPD4myeHlvDlAocCOyMVIRACNPLg3S4PLB8yBE6ZLMlDqTsK_nS5Zl4yI7ssa8qGztCfhqa080JGp3PkatIjlBbJbWk661.O1ugNwW_haDj3TrvHYu5g7d.y_kIIjgU` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0334({ + variable12, + attributeAriaExpanded, + origins, + variable4, + origins2, + statsigpayloadDynamicConfigs217573384Value, + url1, + variable24 + }) { + console.log("Executing request 0334") + const response = await fetch( + "https://test-drive-20-1053047382554.us-central1.run.app/events?cee=no", + { + method: "POST", + headers: { + "host": "test-drive-20-1053047382554.us-central1.run.app", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "text/plain;charset=UTF-8", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "sec-fetch-storage-access": "active", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: JSON.stringify( + { + "event_name": "AddToCart", + "fb.dynamic_product_ads": statsigpayloadDynamicConfigs217573384Value, + "custom_data": { + "fbclid": "" + }, + "event_id": "ob3_plugin-set_7ad87ed7d0dfb4fe8c7d5f938f550d902186907fef25d496d906c150e6bf8636", + "fb.pixel_id": "1105138088231444", + "fb.advanced_matching": statsigpayloadDynamicConfigs217573384Value, + "website_context": { + "location": `https://${origins}${origins2}##pricing`, + "referrer": `https://${url1}${origins2}`, + "isInIFrame": attributeAriaExpanded + }, + "fb.data_processing_options": { + "dataProcessingOptions": [ + "LDU" + ], + "dataProcessingOptionsCountry": variable12, + "dataProcessingOptionsState": variable12 + }, + "fb.fbp": "fb.1.1773809654765.70493485518132342", + "event_meta_info": { + "experiment_detail": { + "name": "CEE_STRONG_PII", + "is_exposed": attributeAriaExpanded, + "is_in_control": attributeAriaExpanded, + "is_in_treatment": variable4 + } + } + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0337({ + variable12, + attributeAriaExpanded, + origins, + variable4, + origins2, + statsigpayloadDynamicConfigs217573384Value, + url1, + variable24 + }) { + console.log("Executing request 0337") + const response = await fetch( + "https://test-drive-20-1053047382554.us-central1.run.app/events?cee=no", + { + method: "POST", + headers: { + "host": "test-drive-20-1053047382554.us-central1.run.app", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "text/plain;charset=UTF-8", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "sec-fetch-storage-access": "active", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: JSON.stringify( + { + "event_name": "AddToWishlist", + "fb.dynamic_product_ads": statsigpayloadDynamicConfigs217573384Value, + "custom_data": { + "fbclid": "" + }, + "event_id": "ob3_plugin-set_68ec356857fc6bf36cb7377829949155340b35c0c620f2cda7407374ce42bb76", + "fb.pixel_id": "1105138088231444", + "fb.advanced_matching": statsigpayloadDynamicConfigs217573384Value, + "website_context": { + "location": `https://${origins}${origins2}##pricing`, + "referrer": `https://${url1}${origins2}`, + "isInIFrame": attributeAriaExpanded + }, + "fb.data_processing_options": { + "dataProcessingOptions": [ + "LDU" + ], + "dataProcessingOptionsCountry": variable12, + "dataProcessingOptionsState": variable12 + }, + "fb.fbp": "fb.1.1773809654765.70493485518132342", + "event_meta_info": { + "experiment_detail": { + "name": "CEE_STRONG_PII", + "is_exposed": attributeAriaExpanded, + "is_in_control": variable4, + "is_in_treatment": attributeAriaExpanded + } + } + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0338({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + secureNextAuthSessionTokenCookie1, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie7, + cfuvidCookie16 + }) { + console.log("Executing request 0338") + const response = await fetch( + `https://${origins}/backend-api/sentinel/req`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "text/plain;charset=UTF-8", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//chatgpt.com/backend-api/sentinel/frame.html?sv=20260219f9f6", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-gn=; oai-sc=${oaiScCookie7}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809643$j60$l0$h0; _cfuvid=${cfuvidCookie16}; _dd_s=aid; __cf_bm=aSH7._FJSr2PFrbO8t1Qf3cPNlnH.pC_fzFP52_wOpg-1773809651.0747118-1.0.1.1-7TPD4myeHlvDlAocCOyMVIRACNPLg3S4PLB8yBE6ZLMlDqTsK_nS5Zl4yI7ssa8qGztCfhqa080JGp3PkatIjlBbJbWk661.O1ugNwW_haDj3TrvHYu5g7d.y_kIIjgU; _gcl_au=1.1.1190047189.1773809654; _fbp=fb.1.1773809654765.70493485518132342` + }, + body: JSON.stringify( + { + "p": "gAAAAACWzQwMDAsIldlZCBNYXIgMTggMjAyNiAxMjo1NDoxNCBHTVQrMDgwMCAo5Lit5Zu95qCH5YeG5pe26Ze0KSIsNDI5NDk2NzI5NiwyLCJNb3ppbGxhLzUuMCAoTWFjaW50b3NoOyBJbnRlbCBNYWMgT1MgWCAxMF8xNV83KSBBcHBsZVdlYktpdC81MzcuMzYgKEtIVE1MLCBsaWtlIEdlY2tvKSBDaHJvbWUvMTQ1LjAuMC4wIFNhZmFyaS81MzcuMzYiLCJodHRwczovL2NoYXRncHQuY29tL2JhY2tlbmQtYXBpL3NlbnRpbmVsL3Nkay5qcyIsInByb2QtNWIyYmJlMzc3MjhlMTMyYzNlOWMxZGU1MGNmOTYyMzA5YTAzNTk3NCIsInpoLUNOIiwiemgtQ04semgiLDE4LCJhcHBOYW1l4oiSTmV0c2NhcGUiLCJfX3JlYWN0Q29udGFpbmVyJGo4ZDJhdmg1a3lnIiwib25wbGF5IiwzMTA2OS43MDAwMDAwMDI5OCwiMDU3Y2RlNzQtODJjOC00ZmI5LTk2Y2MtZGEzMGI5MDQ4YjhmIiwiIiw4LDE3NzM4MDk2MjMxMTguMSwwLDAsMCwwLDAsMCwwXQ==~S", + "id": evaluatedKeysStableid, + "flow": "chatgpt_checkout" + } + ) + } + ) + const body = await response.text() + return { + oaiScCookie8: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === 'oai-sc').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0340({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + statsigpayloadDynamicConfigs217573384Value, + attributeContent, + statsigpayloadDynamicConfigs3685705952ValueSms, + secureNextAuthCallbackUrlCookie1, + statsigpayloadFeatureGates6102981RuleId, + evaluatedKeysStableid, + variable24, + secureNextAuthSessionTokenCookie1, + eligibleAnnouncements1, + eligibleAnnouncements, + eligibleAnnouncements4, + eligibleAnnouncements2, + eligibleAnnouncements3, + eligibleAnnouncements5, + eligibleAnnouncements6, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + cfuvidCookie16, + oaiScCookie8, + accounts9b62de654103487fAc2002e2030f03dfFeatures, + statsigpayloadDynamicConfigs3685705952ValueWhatsapp, + track, + cluster + }) { + console.log("Executing request 0340") + const response = await fetch( + `https://${origins}/ces/statsc/flush`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/ces/statsc/flush", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/statsc/flush", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "content-type": attributeType, + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-gn=; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809643$j60$l0$h0; _cfuvid=${cfuvidCookie16}; _dd_s=aid; __cf_bm=aSH7._FJSr2PFrbO8t1Qf3cPNlnH.pC_fzFP52_wOpg-1773809651.0747118-1.0.1.1-7TPD4myeHlvDlAocCOyMVIRACNPLg3S4PLB8yBE6ZLMlDqTsK_nS5Zl4yI7ssa8qGztCfhqa080JGp3PkatIjlBbJbWk661.O1ugNwW_haDj3TrvHYu5g7d.y_kIIjgU; _gcl_au=1.1.1190047189.1773809654; _fbp=fb.1.1773809654765.70493485518132342; oai-sc=${oaiScCookie8}` + }, + body: JSON.stringify( + { + "counters": [ + { + "namespace": statsigpayloadFeatureGates6102981RuleId, + "metric": "chatgpt_sidebar_show", + "tags": { + "key": "type", + "value": "slideover" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": accounts9b62de654103487fAc2002e2030f03dfFeatures, + "metric": "splashScreenV2.greeting_shown_web", + "tags": statsigpayloadDynamicConfigs217573384Value, + "value": statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount + }, + { + "namespace": "ws", + "metric": "pubsub.init", + "tags": statsigpayloadDynamicConfigs217573384Value, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": "segment", + "metric": "json_analytics_event_tracked", + "tags": { + "platform": "web", + "event_name": "Sidebar Show", + "appName": attributeContent, + "appVersion": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": "segment", + "metric": "analytics_event_tracked", + "tags": { + "platform": "web", + "event_name": "access_flow_success", + "app_name": attributeContent, + "app_version": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": "segment", + "metric": "json_analytics_event_tracked", + "tags": { + "platform": "web", + "event_name": "Locale Loaded", + "appName": attributeContent, + "appVersion": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": "segment", + "metric": "json_analytics_event_tracked", + "tags": { + "platform": "web", + "event_name": "chatgpt_page_load_ttfi", + "appName": attributeContent, + "appVersion": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": statsigpayloadFeatureGates6102981RuleId, + "metric": "chatgpt.announcement_shown", + "tags": { + "id": eligibleAnnouncements1, + "type": "announcement" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": statsigpayloadFeatureGates6102981RuleId, + "metric": "chatgpt.announcement_shown", + "tags": { + "id": eligibleAnnouncements4, + "type": "announcement" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": statsigpayloadFeatureGates6102981RuleId, + "metric": "chatgpt.announcement_shown", + "tags": { + "id": eligibleAnnouncements, + "type": "announcement" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": statsigpayloadFeatureGates6102981RuleId, + "metric": "chatgpt.announcement_shown", + "tags": { + "id": eligibleAnnouncements2, + "type": "announcement" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": statsigpayloadFeatureGates6102981RuleId, + "metric": "chatgpt.announcement_shown", + "tags": { + "id": eligibleAnnouncements3, + "type": "announcement" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": statsigpayloadFeatureGates6102981RuleId, + "metric": "chatgpt.announcement_shown", + "tags": { + "id": eligibleAnnouncements5, + "type": "announcement" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": statsigpayloadFeatureGates6102981RuleId, + "metric": "chatgpt.announcement_shown", + "tags": { + "id": eligibleAnnouncements6, + "type": "announcement" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": "segment", + "metric": "ClientEventsServiceLogger.initialize.start", + "tags": { + "appName": attributeContent, + "appVersion": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": "segment", + "metric": "AnalyticsLogger.initialize.start", + "tags": { + "app_name": attributeContent, + "app_version": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": "segment", + "metric": "json_analytics_event_tracked", + "tags": { + "platform": "web", + "event_name": "Thread Header Upgrade Pill Button Shown", + "appName": attributeContent, + "appVersion": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount + }, + { + "namespace": accounts9b62de654103487fAc2002e2030f03dfFeatures, + "metric": "splashScreenV2.greeting_cookie_name_set_web", + "tags": statsigpayloadDynamicConfigs217573384Value, + "value": statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount + }, + { + "namespace": statsigpayloadFeatureGates6102981RuleId, + "metric": "chatgpt_account_payment_modal_show", + "tags": { + "location": "sidebar profile", + "navigationType": "PUSH", + "initialTab": "business", + "initialCountrySelectorCountry": statsigpayloadDynamicConfigs3685705952ValueSms, + "selectedCountry": "", + "selectedCurrency": "", + "userCountry": statsigpayloadDynamicConfigs3685705952ValueSms, + "isCountrySelectorEnabled": variable4, + "highlightedPlan": "team" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": "segment", + "metric": "json_analytics_event_tracked", + "tags": { + "platform": "web", + "event_name": "Account Pay: Account Payment Modal Show", + "appName": attributeContent, + "appVersion": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": "segment", + "metric": "json_analytics_event_tracked", + "tags": { + "platform": "web", + "event_name": "Thread Header Upgrade Pill Button Clicked", + "appName": attributeContent, + "appVersion": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": "segment", + "metric": "json_analytics_event_tracked", + "tags": { + "platform": "web", + "event_name": "Account Pay: Business Tab Viewed 5 Seconds", + "appName": attributeContent, + "appVersion": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": "ws", + "metric": "pubsub.fetch-socket-url.success", + "tags": statsigpayloadDynamicConfigs217573384Value, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": "segment", + "metric": "AnalyticsLogger.initialize.success", + "tags": { + "app_name": attributeContent, + "app_version": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": "segment", + "metric": "json_analytics_event_tracked", + "tags": { + "platform": "web", + "event_name": "Onboarding Step Shown", + "appName": attributeContent, + "appVersion": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": "segment", + "metric": "json_analytics_event_tracked", + "tags": { + "platform": "web", + "event_name": "Onboarding Shown", + "appName": attributeContent, + "appVersion": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount + }, + { + "namespace": "segment", + "metric": "analytics_event_tracked", + "tags": { + "platform": "web", + "event_name": "chatgpt_upsell_or_modal_shown", + "app_name": attributeContent, + "app_version": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount + }, + { + "namespace": "segment", + "metric": "ClientEventsServiceLogger.initialize.success", + "tags": { + "appName": attributeContent, + "appVersion": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": "segment", + "metric": "json_analytics_event_tracked", + "tags": { + "platform": "web", + "event_name": "Account Pay: Account Payment Modal Toggle Clicked", + "appName": attributeContent, + "appVersion": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": "segment", + "metric": "json_analytics_event_tracked", + "tags": { + "platform": "web", + "event_name": "Account Pay: Prefetch Checkout Session", + "appName": attributeContent, + "appVersion": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": "segment", + "metric": "analytics_event_tracked", + "tags": { + "platform": "web", + "event_name": "chatgpt_checkout_prepare_checkout_session", + "app_name": attributeContent, + "app_version": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": "segment", + "metric": "json_analytics_event_tracked", + "tags": { + "platform": "web", + "event_name": "Account Pay: Payment Checkout Clicked", + "appName": attributeContent, + "appVersion": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": "segment", + "metric": "json_analytics_event_tracked", + "tags": { + "platform": "web", + "event_name": "Account Pay: Using Prefetched Checkout Session", + "appName": attributeContent, + "appVersion": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + } + ], + "histograms": [ + { + "namespace": statsigpayloadFeatureGates6102981RuleId, + "metric": "web.vitals.fcp", + "tags": { + "country": statsigpayloadDynamicConfigs3685705952ValueSms, + "continent": statsigpayloadDynamicConfigs3685705952ValueWhatsapp, + "device": "desktop", + "track": track, + "cluster": cluster + }, + "values": [ + "4576" + ] + }, + { + "namespace": statsigpayloadFeatureGates6102981RuleId, + "metric": "web.vitals.ttfb", + "tags": { + "country": statsigpayloadDynamicConfigs3685705952ValueSms, + "continent": statsigpayloadDynamicConfigs3685705952ValueWhatsapp, + "device": "desktop", + "track": track, + "cluster": cluster + }, + "values": [ + "4438.60000000149" + ] + }, + { + "namespace": statsigpayloadFeatureGates6102981RuleId, + "metric": "web.vitals.lcp", + "tags": { + "country": statsigpayloadDynamicConfigs3685705952ValueSms, + "continent": statsigpayloadDynamicConfigs3685705952ValueWhatsapp, + "device": "desktop", + "track": track, + "cluster": cluster + }, + "values": [ + "4576" + ] + } + ], + "client_type": "web" + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0341({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + urlAudience, + evaluatedKeysStableid, + variable24, + secureNextAuthSessionTokenCookie1, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + cfuvidCookie16, + oaiScCookie8 + }) { + console.log("Executing request 0341") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/telemetry/intake??ddforward=%2Fapi%2Fv2%2Flogs%3Fddsource%3Dbrowser%26dd-api-key%3Dpub1f79f8ac903a5872ae5f53026d20a77c%26dd-evp-origin-version%3D6.22.0%26dd-evp-origin%3Dbrowser%26dd-request-id%3D7c5c96ac-4132-4576-9802-b967ff03efab`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "text/plain;charset=UTF-8", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-gn=; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809643$j60$l0$h0; _cfuvid=${cfuvidCookie16}; _dd_s=aid; __cf_bm=aSH7._FJSr2PFrbO8t1Qf3cPNlnH.pC_fzFP52_wOpg-1773809651.0747118-1.0.1.1-7TPD4myeHlvDlAocCOyMVIRACNPLg3S4PLB8yBE6ZLMlDqTsK_nS5Zl4yI7ssa8qGztCfhqa080JGp3PkatIjlBbJbWk661.O1ugNwW_haDj3TrvHYu5g7d.y_kIIjgU; _gcl_au=1.1.1190047189.1773809654; _fbp=fb.1.1773809654765.70493485518132342; oai-sc=${oaiScCookie8}` + }, + body: "{\"view\":{\"referrer\":\"https://auth.openai.com/\",\"url\":\"https://chatgpt.com/\"},\"service\":\"chatgpt-web\",\"session_id\":\"799e0f97-a21b-42fe-adde-1c2eac75c706\",\"session\":{\"id\":\"799e0f97-a21b-42fe-adde-1c2eac75c706\"},\"usr\":{\"user_id\":\"user-sbaSmtrYfhjzbgsAV7Wd6CwC\",\"account_plan_type\":\"free\",\"workspace_id\":\"9b62de65-4103-487f-ac20-02e2030f03df\",\"residency_region\":\"no_constraint\",\"compute_residency\":\"no_constraint\",\"anonymous_id\":\"45ead1a9-904d-460d-ae4f-bd6045b8d46f\"},\"track\":\"stable\",\"is_electron_desktop_app\":false,\"date\":1773809628583,\"message\":\"pubsub.init\",\"status\":\"info\",\"origin\":\"logger\",\"logger\":{\"name\":\"pubsub-client\"},\"oai\":{\"skip_upstream\":true},\"ddtags\":\"sdk_version:6.22.0,env:prod,service:chatgpt-web,version:5b2bbe37728e132c3e9c1de50cf962309a035974\"}\n{\"view\":{\"referrer\":\"https://auth.openai.com/\",\"url\":\"https://chatgpt.com/#pricing\"},\"service\":\"chatgpt-web\",\"session_id\":\"799e0f97-a21b-42fe-adde-1c2eac75c706\",\"session\":{\"id\":\"799e0f97-a21b-42fe-adde-1c2eac75c706\"},\"usr\":{\"user_id\":\"user-sbaSmtrYfhjzbgsAV7Wd6CwC\",\"account_plan_type\":\"free\",\"workspace_id\":\"9b62de65-4103-487f-ac20-02e2030f03df\",\"residency_region\":\"no_constraint\",\"compute_residency\":\"no_constraint\",\"anonymous_id\":\"45ead1a9-904d-460d-ae4f-bd6045b8d46f\"},\"track\":\"stable\",\"is_electron_desktop_app\":false,\"date\":1773809637696,\"message\":\"pubsub.fetch-socket-url\",\"status\":\"info\",\"origin\":\"logger\",\"logger\":{\"name\":\"pubsub-client\"},\"oai\":{\"skip_upstream\":true},\"ddtags\":\"sdk_version:6.22.0,env:prod,service:chatgpt-web,version:5b2bbe37728e132c3e9c1de50cf962309a035974\"}\n{\"view\":{\"referrer\":\"https://auth.openai.com/\",\"url\":\"https://chatgpt.com/#pricing\"},\"service\":\"chatgpt-web\",\"session_id\":\"799e0f97-a21b-42fe-adde-1c2eac75c706\",\"session\":{\"id\":\"799e0f97-a21b-42fe-adde-1c2eac75c706\"},\"usr\":{\"user_id\":\"user-sbaSmtrYfhjzbgsAV7Wd6CwC\",\"account_plan_type\":\"free\",\"workspace_id\":\"9b62de65-4103-487f-ac20-02e2030f03df\",\"residency_region\":\"no_constraint\",\"compute_residency\":\"no_constraint\",\"anonymous_id\":\"45ead1a9-904d-460d-ae4f-bd6045b8d46f\"},\"track\":\"stable\",\"is_electron_desktop_app\":false,\"date\":1773809639506,\"message\":\"pubsub.connected\",\"status\":\"info\",\"origin\":\"logger\",\"logger\":{\"name\":\"pubsub-client\"},\"connection_type\":\"initial\",\"topic_count\":3,\"topics\":[{\"topic_id\":\"calpico-chatgpt\",\"state\":\"Subscribing\",\"has_offset\":false,\"has_ever_subscribed\":true,\"was_disconnected\":false},{\"topic_id\":\"conversations\",\"state\":\"Subscribing\",\"has_offset\":false,\"has_ever_subscribed\":true,\"was_disconnected\":false},{\"topic_id\":\"app_notifications\",\"state\":\"Subscribing\",\"has_offset\":false,\"has_ever_subscribed\":true,\"was_disconnected\":false}],\"subscribing_topic_ids\":[\"calpico-chatgpt\",\"conversations\",\"app_notifications\"],\"oai\":{\"skip_upstream\":true},\"ddtags\":\"sdk_version:6.22.0,env:prod,service:chatgpt-web,version:5b2bbe37728e132c3e9c1de50cf962309a035974\"}" + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0345({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + statsigpayloadDynamicConfigs3685705952ValueSms, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + cfuvidCookie16, + oaiScCookie8, + accounts9b62de654103487fAc2002e2030f03dfEligiblePromoCampaignsPlusMetadataPlanName, + currencyConfigSymbolCode, + accounts9b62de654103487fAc2002e2030f03dfEligiblePromoCampaignsPlusId + }) { + console.log("Executing request 0345") + const response = await fetch( + `https://${origins}/backend-api/payments/checkout`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "openai-sentinel-token": "{\"p\"\"gAAAAABWzQwMDAsIldlZCBNYXIgMTggMjAyNiAxMjo1NDoxNyBHTVQrMDgwMCAo5Lit5Zu95qCH5YeG5pe26Ze0KSIsNDI5NDk2NzI5Niw2OSwiTW96aWxsYS81LjAgKE1hY2ludG9zaDsgSW50ZWwgTWFjIE9TIFggMTBfMTVfNykgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzE0NS4wLjAuMCBTYWZhcmkvNTM3LjM2IiwiaHR0cHM6Ly93d3cuZ29vZ2xldGFnbWFuYWdlci5jb20vZ3RhZy9qcz9pZD1BVy0xNjY3OTk2NTU5MSZjeD1jJmd0bT00ZTYzZzEiLCJwcm9kLTViMmJiZTM3NzI4ZTEzMmMzZTljMWRlNTBjZjk2MjMwOWEwMzU5NzQiLCJ6aC1DTiIsInpoLUNOLHpoIiwzMCwibWF4VG91Y2hQb2ludHPiiJIwIiwiX19yZWFjdENvbnRhaW5lciRqOGQyYXZoNWt5ZyIsIm9uc2VsZWN0c3RhcnQiLDMzOTkyLjkwMDAwMDAwNTk2LCIwNTdjZGU3NC04MmM4LTRmYjktOTZjYy1kYTMwYjkwNDhiOGYiLCIiLDgsMTc3MzgwOTYyMzExOC4xLDAsMCwwLDAsMCwwLDBd~S\",\"t\"\"ThoWBRsAGhQVd3QFExUZFwEdGQQXAgxzZAgFDBsXAQwADgwXAgx6T2BNYWNWCBoCFQYNFhcPFw8aY110QHdvCggXFAwGAxsOHBUPF2xGR2VkbnxUY31US2Jgc2lqdgV9eW8DUHJASmJhXgFLYG0EXHwGd1FpfFhgd19rcnZ0cXhhcHtifAZBAG1oAlRzaRZxc3RAeWYEZ2p/WntUanxYYHd5e21yXgl3YGNFc09bf3NpeHZ4cWlNdXN0QEhic01efFx4bXxZXFR0T3ttcllUS2Jgc2lqdgV9eW8DUHJASnFgY2J9YG1zXHZce1F+WX5WdAhJChcZGhcPGwINDA0XY1RCeW0EeU9jYwRrfE9deWxobVhifVZUV1l2SmJZZ257XG8AXW91XGBpG0NkfWFPdmBCemwGc1F/b35sdGlFUnd3X2x2d1lqaXFnV3BvVGx3aV57d2RtaXRwUnBsW3NQeXtld2N9XlRgWX13YAVzYn8Gd35geG13bX5Kdmd3VE9gYFZheHJjfGB8X1FjfVoOYFl6TFNecwp/cnNkYh9HYGBUH31gWUwZY2NsWnhbZ1dqQn5UZH1ae2dnUGlgXgxTeXJzflwfcVFtCGR6YHBiHlVdWV97ZnsCb3ZmVHF+QW53Y35/c11GWW9mZHxwfFh3cWkXfnJZanl0XQFZbGZRUXBvVHJ3bhpSd3N+enEEBGJ5XFFgbB4PbG1uaFNkBEhmZmR/V3tbb2BbeENycm5KZ21dSHtkcwB9aVxve2xrZWJnCWhSZARAT2FYXW92cVlRa0BhYGIJdHtnZ1Rpb2AMfnhbBWJsHnl3ZwloemRefk1hBXd9aXJvUW9FeVZiCRdTcgdIe2AFBGF/cUF4eUl+cHFpVn5xUk9rdHdae2p2ZHpwb25vYlRCf3JZfk1vdH9teHFvZGtWX3RnVB9Ucl5idmBtBFl/YlFda2gOU2EJXn1nfWpEcwZZbG8Eb2VafFB4Y08aVGAEeWpzZHh8bHZgeXlZent0VBpzY1lhZnR0eHBsBnR+cElmc2BPSVNgBHVPbwVRdnlxWmNsaF9UZG1aVmdjamhxcH9vfFxzDG5FeWRnCXRnYgdcf29eQX58Bnd+XUICbGB6fHljWWJKb2Rze3xbd355HmVtY39ac2QFXF1vXm9cegZRU2B2bV90VRd8dG1ibVJCcHd4QHh+a0J+cXR6e1Z3Um1pcWdaaG9beGNsH2Z9d2p7UndjeWZ0dwVwe0BgeWtCclRnU2hTZAR6d3FgBGF5BkFRbHt5VGcIXXRic2pNcQUMcHxibG1seG1zVn1sUm1eXH9kBwx8aWFFb2pWX2BnbUZTcnNiSmBjRVJ2YXdja1ZfdGdUH1RyXmJ2YG0EWX9iUV1raA5TYQlefWd9akRzBllsbwRvZVp8Q3JkbkJWZ3NAfXFZBGt8XG9naXhbRG1+WXZ3UnFjdF1Sf2xmBXlwRkNiY35acGBdSG9kBUF+aXJvVGwcZWxkbV4EYGMJSGZeTWl8WWdAf3l1Z3QLWm1Rd1djYF1SfnthdHp/Vlh3d3lJU3JSfWBzBVJZeHFsfnBGWHN3CR5Ud0JhaG9dAX17YXhtbHhfV2QJH1Rnc2psYmBzYmlxBGdge3lUZwhrdGJzak1xBQxwfGJsbWlCbXJkb0ZnYHN6G2EFDGxNYWd4a1ZDb2N9WlZWXglsb2NNYnhxWURrH3FkZwhee2dnVHlhcFFreQdwY2x4X31nCR90Y15+f290e317cW9+ax56b2JUQn9yc2poZHMFYXZhZ3lZQgJyYn5oU2dzenxTBXdueVtnfmtCAldgVVp/YAR6dmBjTUF5B3N+blZDVGN+a3VjXm5oZEJzbXlbQWJrH2V3YlNeWWJtYk9hWUVremJzQWBFZWRibnxEY1lMTG9jTVBsdVl5b0Jtd2dUaH1yYGJsYGBNWntwRWdrRlxwdF9rVHRkaWh2dwVwaWFFb2pWX2BnbUZTcnN+f2BZQWl0W3d4b0ICV2BTXXRjc2p5YnBGYX9yb1FgbEdyYwlCDmJefmZuYF1edgcMVGt7ZQVsTxcCYEJ2HGMHBWFqcVZ6cGh5ZHRPHnN0QmlodEJ4fGpmf1B5H21id09Jc3dCXH90XQF9bGF4fHB4eWFyVHh1YAR6dGRCf2F4cUJtbB5Tc2dQSlZjXn5/ZFlFYX9vTWJaeF9XZG4fYGQHemhkBUFaeW9Rb2loW2RnChpUFxkaHwQbBQsMDRd0eW92dHR5b3Z0dHlvdnR0eW92dHR5b3YXGRoWAhsGAAwNBRsBGQUCAgwYDgIHARwPDAEOAhUGBBYZDhcPGmBzfEB3emIIFxQMAwMbCBkVDxd6b1AIFxQMBgIbDRwVDxd+HE9tZwlsQGZZQHdlQg1hTGFvV28fU1RzCEpmYmBXdmVgUWB2W399aXhxeWd6eFZtUg1tYARzXH1xAFdtaEB6fQhKZmJgSEtgBHxhbWFnYV5rX1xiflpkYGNIbWJjdF5sBmdhXmtfXGJ+WmRgY0htYmN0WQwbFwYLAAQDFwIMc2QIBQwbFwwIAAQDFwIMY11Fb2hmDXN+b096c08Wdn1CaXRxBQxwewdzUX9GZnR0UF12c1JtYHV0WlppT1FRYHtTZG1ta1ZzdGFvcGdFWXlyYG15Rm5yd1BFVm1zDX1vYEJ1amZ8dn5GbmV3Tx59fXRxdHEERXp/B3NUbn9Ae3FpTXZ0XW50YnMAWWhmDXNqfwoIFxQMAwUbDR0VDxdge09UZwh3Z3NCfntvY2d1fWJRd38fQ3diUEFgZnNAS2FZTW99ZggIGgIVBgYWGgYXDxpMX0VFb2hHZmN9XW9Tc0xMdndgYmgEY2VuZk9XYX1aVXNNU292UlFXDEo=\",\"c\"\"gAAAAABpui_4c_tWZsJmAw335jUTAYNDDvxozhsm2t7zgB2iIXQLCO-L5ZxtmjN0UDNMd9Mb4piGKBD_UmSPE3_CLFkoCxyI6VFfUO6xR_IhHe0XhCwHat1hGtSYK8mA48htGD_oBngi5huBBDexMkuMmP1O3AgnfIlFrwLkAmNDBxH1JN2e84J7-eTreJfoDtBK6c5wyROcXKWD_njyWHkRcbANCZVVtUMn2tM6k7tAlcCjkEiYLrTuqEpsICRLOBxirik6qa61ijdt7OzaIuGSPpi00tF2RpkF_PAjtrHOH32klAZy57lJnCbgtzfxAb0mZk8xCuHFfQdO07Hz_Yvs2aJ-xLS0NY2wZa7Mx8dxwx5wsh_WzV8UTx4Gto0Gbxah8C0E9Z46rH77zbVxw4kC2wbahQFeIlEEqcu11kbQ4zClOFoQnlL8eCOYgutaBRAP-97oQGHsLB4M6W5lXT6gxwez1FAyyF827cNXJnTYImycZ1YeGOXnSc14tNjdlkFKBleywusby4_n40RwT5vgmSOaJfWTcrtqmknw99urXzXejlE9z_USRHQoIB30WUCMx9AiX4bM4XLZnm-p5ii8RTkagD-gTTuWl6LjWgmn9Z8sL5hKAPEJOtuI03vak3nQw-KbcWGH0oF7PuC8Q6TpH5m0Koo61ovyfsXl-CRQTdH1b1nDkfwZhmvbktoTl4-_5aEZMFXbm9TfxMzQSsodbnLavJirGLOSdg21XWNWAQM8AltKjSOpxDTf20v2Tp0ckoIShFFCXI2g_MxOeuvmaEjYrCdnn6R_8uq3bMCuxFRKJGc8cwr_vdTz8UFQiuuwNyAAvQqCVgY1InQVsTOCEBYfNBQ-xUmQt3Katb_gR_qoOyX6QIMzoMFn6nONLevLrkNaOoiP19NIaq8dSpNS4LZ-OEjj8TuemD8GPGYq9Bh-GLE6dg1gDkK6jWIx1IZiqFHPh_dhNtIhPSX59Klb_3lttB4Z9mu3XNeIXHcaf2PRkAhB4loQoINu7rhmzdWnrIzT2LUc124qGaGv44TkW1w1qVBWmICzQ6iC0zcRLqOFPNeB8EhEV04crhLS9S7gqJjlfLdT_cEoHss4tl4IM1q9viUsawxfzojwp1AQuHqgvtac6fzpWk70LsEX6wS3-ap7Yyzt7aEMsPNw5RkdPW2CSKQ7mNxgsFlwATBegzmWlWqCeAasRykok_WXgyS6gHV9MkTldBm10YGc7RZVZiZNAMPFhOKZWw7M29349zPXBpyPOeAqO8u1PwEpBdzAr2_glgVf13Jgmv4dfRrvNi-NE7j5ofL9NFdUWcPQ-HmmyPzbBlRSudc_yoo9OjVYkeY_S90UxBqPWqK9lj28mslWtU2UmLtH0PiUELPRUQvS_Gx_xPvHvmzaLcm5xoO32QCGxKZLwxeOyK1j1bDGd3P1GBPVA-FB5uPBQgNPsRuoFKqNFKtDHp2FaoLsTrFEzZejf-Vg4HbZbg_3xFYWYLRuPrcnu2pqyYnAZjvX-z276DP-34rmXq4OMQtUT5kUAi_xfCxUab1cR4yYrocdk3ZjQjjfKTmvi1vKL5F_JQzIuYUsnzrH2Du35C0f1nc_9_Cdiz12JH1nvYjKWlZKU5CmUWeLHrY-zyAkhwk1RztJ6V6lPWtZMRKsQherB7GWph4vN2DONIZXe30WWvCgT9NICjaTKlTSw8PmJnaWfcK3eu9U-QC8OUdc9hVZZmplo3zvIvgCaVeJVbTIsGbvJZMyfC-LYZusdbr61s0H91AV0PRnQg3YlM2Al3qB9uwzcDm2oHL0-C-JqCJj7FK6ujWUfYCNNZf70NtGXuYBVVj-tE2WeEmO_hhB2Nl4Qhv0VzxThwk8-zpPFE6GEeeCHG4jrhYW6Narr5bmcsCZZPbnngcCfSIEn48-m4ZhGwUadSQOiG5ipd668WMNYA4p4fAJ_Qo0HJsdxwBHQDttBBHdQk12KnA=\",\"id\"\"2b5a57b5-2e0d-4cd3-910c-e00d9bc2c517\",\"flow\"\"chatgpt_checkout\"}", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/payments/checkout", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/payments/checkout", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "content-type": attributeType, + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-gn=; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809643$j60$l0$h0; _cfuvid=${cfuvidCookie16}; _dd_s=aid; __cf_bm=aSH7._FJSr2PFrbO8t1Qf3cPNlnH.pC_fzFP52_wOpg-1773809651.0747118-1.0.1.1-7TPD4myeHlvDlAocCOyMVIRACNPLg3S4PLB8yBE6ZLMlDqTsK_nS5Zl4yI7ssa8qGztCfhqa080JGp3PkatIjlBbJbWk661.O1ugNwW_haDj3TrvHYu5g7d.y_kIIjgU; _gcl_au=1.1.1190047189.1773809654; _fbp=fb.1.1773809654765.70493485518132342; oai-sc=${oaiScCookie8}` + }, + body: JSON.stringify( + { + "plan_name": accounts9b62de654103487fAc2002e2030f03dfEligiblePromoCampaignsPlusMetadataPlanName, + "billing_details": { + "country": statsigpayloadDynamicConfigs3685705952ValueSms, + "currency": currencyConfigSymbolCode + }, + "promo_campaign": { + "promo_campaign_id": accounts9b62de654103487fAc2002e2030f03dfEligiblePromoCampaignsPlusId, + "is_coupon_from_query_param": attributeAriaExpanded + }, + "prefetch": variable4, + "checkout_ui_mode": "custom" + } + ) + } + ) + const body = await response.text() + return { + cfuvidCookie17: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '_cfuvid').split("=")[1].split(";")[0].trim(), + processorEntity: JSON.parse(body)["processor_entity"], + checkoutSessionId: JSON.parse(body)["checkout_session_id"], + publishableKey: JSON.parse(body)["publishable_key"], + checkoutProvider: JSON.parse(body)["checkout_provider"] + } + } + async function executeRequest0348({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + secureNextAuthSessionTokenCookie1, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie8, + cfuvidCookie17 + }) { + console.log("Executing request 0348") + const response = await fetch( + `https://${origins}/backend-api/sentinel/req`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "text/plain;charset=UTF-8", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//chatgpt.com/backend-api/sentinel/frame.html?sv=20260219f9f6", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie1}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-gn=; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809643$j60$l0$h0; _dd_s=aid; __cf_bm=aSH7._FJSr2PFrbO8t1Qf3cPNlnH.pC_fzFP52_wOpg-1773809651.0747118-1.0.1.1-7TPD4myeHlvDlAocCOyMVIRACNPLg3S4PLB8yBE6ZLMlDqTsK_nS5Zl4yI7ssa8qGztCfhqa080JGp3PkatIjlBbJbWk661.O1ugNwW_haDj3TrvHYu5g7d.y_kIIjgU; _gcl_au=1.1.1190047189.1773809654; _fbp=fb.1.1773809654765.70493485518132342; oai-sc=${oaiScCookie8}; _cfuvid=${cfuvidCookie17}` + }, + body: JSON.stringify( + { + "p": "gAAAAACWzQwMDAsIldlZCBNYXIgMTggMjAyNiAxMjo1NDoxNCBHTVQrMDgwMCAo5Lit5Zu95qCH5YeG5pe26Ze0KSIsNDI5NDk2NzI5NiwyLCJNb3ppbGxhLzUuMCAoTWFjaW50b3NoOyBJbnRlbCBNYWMgT1MgWCAxMF8xNV83KSBBcHBsZVdlYktpdC81MzcuMzYgKEtIVE1MLCBsaWtlIEdlY2tvKSBDaHJvbWUvMTQ1LjAuMC4wIFNhZmFyaS81MzcuMzYiLCJodHRwczovL2NoYXRncHQuY29tL2JhY2tlbmQtYXBpL3NlbnRpbmVsL3Nkay5qcyIsInByb2QtNWIyYmJlMzc3MjhlMTMyYzNlOWMxZGU1MGNmOTYyMzA5YTAzNTk3NCIsInpoLUNOIiwiemgtQ04semgiLDE4LCJhcHBOYW1l4oiSTmV0c2NhcGUiLCJfX3JlYWN0Q29udGFpbmVyJGo4ZDJhdmg1a3lnIiwib25wbGF5IiwzMTA2OS43MDAwMDAwMDI5OCwiMDU3Y2RlNzQtODJjOC00ZmI5LTk2Y2MtZGEzMGI5MDQ4YjhmIiwiIiw4LDE3NzM4MDk2MjMxMTguMSwwLDAsMCwwLDAsMCwwXQ==~S", + "id": evaluatedKeysStableid, + "flow": "chatgpt_checkout" + } + ) + } + ) + const body = await response.text() + return { + oaiScCookie9: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === 'oai-sc').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0351({ + variable12, + attributeAriaExpanded, + origins, + variable4, + origins2, + statsigpayloadDynamicConfigs217573384Value, + url1, + variable24, + processorEntity, + checkoutSessionId + }) { + console.log("Executing request 0351") + const response = await fetch( + "https://test-drive-20-1053047382554.us-central1.run.app/events?cee=no", + { + method: "POST", + headers: { + "host": "test-drive-20-1053047382554.us-central1.run.app", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "text/plain;charset=UTF-8", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "sec-fetch-storage-access": "active", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: JSON.stringify( + { + "event_name": "PageView", + "fb.dynamic_product_ads": statsigpayloadDynamicConfigs217573384Value, + "custom_data": statsigpayloadDynamicConfigs217573384Value, + "event_id": "ob3_plugin-set_9bd36e05de33350780c7700ad89eb5afe72167eec7d5e284b63737cacd8bd50e", + "fb.pixel_id": "1105138088231444", + "fb.advanced_matching": statsigpayloadDynamicConfigs217573384Value, + "website_context": { + "location": `https://${origins}/checkout/${processorEntity}/${checkoutSessionId}`, + "referrer": `https://${url1}${origins2}`, + "isInIFrame": attributeAriaExpanded + }, + "fb.data_processing_options": { + "dataProcessingOptions": [ + "LDU" + ], + "dataProcessingOptionsCountry": variable12, + "dataProcessingOptionsState": variable12 + }, + "fb.fbp": "fb.1.1773809654765.70493485518132342", + "event_meta_info": { + "experiment_detail": { + "name": "CEE_STRONG_PII", + "is_exposed": attributeAriaExpanded, + "is_in_control": variable4, + "is_in_treatment": attributeAriaExpanded + } + } + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0352({ + currencyConfigPromosBusinessOneDollarAmount, + adsSegmentId, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + origins2, + variable5, + statsigpayloadDynamicConfigs217573384Value, + attributeContent, + userGroups, + secureNextAuthCallbackUrlCookie1, + url1, + urlAudience, + evaluatedKeysStableid, + sessionAccesstoken, + sessionUserId, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + connectorsBrandingTermsOfService1, + authstatus2, + categoriesSubscriptionLevel, + cfuvidCookie17, + processorEntity, + checkoutSessionId, + oaiScCookie9 + }) { + console.log("Executing request 0352") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/${connectorsBrandingTermsOfService1}`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "oai-device-id": evaluatedKeysStableid, + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "content-type": modelsProductFeaturesAttachmentsAcceptedMimeTypes, + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//chatgpt.com/checkout/openai_llc/cs_live_a1XaCvZCoIEesvGS7aFlnPORQaFoV8h19Ihj8OnyIZUodOtCkd3hWY4gVM", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-gn=; _dd_s=aid; _gcl_au=1.1.1190047189.1773809654; _fbp=fb.1.1773809654765.70493485518132342; _cfuvid=${cfuvidCookie17}; __Secure-next-auth.session-token=eyJhbGciOiJkaXIiLCJlbmMiOiJBMjU2R0NNIn0..CV1dsn7cCCMutGK-.FMKxs-4nT9MVzKKlCP-64qV39c3_8aL-Tgk2zCSAJSFBN8wB_PuS4xVJGi3wQsaIxDzbEgTt8Vf3S9lgbrI9IW4kj9-b6fogWdgWVE-__cVw6JKVnq2PNBgfsTr5fJSyjJ9_6A2sO3vLZRiedDMQ90nyu1wwzMRds87SD5M-7TAA1zxyLSSL0tpkh14F6_6fhALoWeYwOdAZYhZat_mdqhEprpyee-KC4uwF7wNWKOpIWRMZPWA-9WBnS-mTV1uWm-YOunStvtq1GznvS5bP3nL00jGzwqZp2P91rxLFzOGD55SGKxnXKfD4P7-u5qTI5zXKPOPMKBkhE-5CsFplEXXJfuA-hHgeJxr_uAuKgpDQ0Tq7TrP_smN0ozZ7Xm6uZGriV3Aud1yZqvLxZ5B_Kdxs2x8YrFoht-JKRPG7bzbtXKMNfN5x_bs90UzibHNcgLVOm-iAl5EmkQjTQaIi1jKUYc7IVwqO0Hiv8dOynMJCOZmXJaPtmQVg6F44Pze5_db5Bxuuw3PXNuwt_AN1eqE7DlEEkIzEG9ruJipkNM0YPWgxg792AWJBc7d0pC8Z8M5ie1JbZ7FOSYRzERVFBDN3TkYqrtQ6F9EKK814h7716W62LffWZ3JsUd3JFH1Z6UXpJGlSA3Ux8S4pixj6Tbg-AdJq04k_hBYlVEKgDmPhOxlAM_SgRIP8QxUS5TLT_kwLqAvJnIMsQjp-A-oDWh_6zLgKZc0vcmsxvQzFM5IT-xKA1cB9fjdPu_HZDB2qjmj4OKYJkn21E9M-OEckzYARPmE2_jsFVLA8uggCf4C4o3EGnMEoNlUei_zAlh1Ui-SEnIoHdlo5D7T3smPKCvoVxUcyleiR1xKMPml889m1IPWB4kB3yEnlX-aA6_Vb-B4f_TwNRaFUimWxRZi-1rk1A3Z3wMKnP1whvvmsXbLimHcefQj34bDNwWWpVtwGnDw0UQUFrzxgCK2WkPX0yaxhNExXDR9Yt78CDQhhqGhOFgqLFScLVzxS5DU6mwkgeosrUViw4TEUR8QB30y6Pgv3e8SrIDQSuBMBAIpwQzUYp6Cy7CACJP2BMAViLcGghtBUtyHYROInzABWLI6OHVcsU0t9uOfXcf-qKaJei0C-BfU4iw0t7fTNszuxKiNR4m8Xm4RJWKwWfhPdvaOEqbnr40CqQ6i93ENZisXfCjK0hOfA10ml19ebW0YXsEUHAfYrb0WoCvMfH8Bxorn6lc_xwA9stHvcTw4uMISuqLAq1ik4MOXAZ_3ARNmhgzoAk3atqDNe7m5W4MiDDQ_qAXeR2BZlNavEbyQEvf0wbsBOOWn5G4g-mdWjIpHDel9iTaCsMfD4Y2PLHO4598FGGuaL7viK70U4AJ33mNVtuVtBRr_-LLO2wefymIZVvdW4ou3jeauFTywXWEbmZoLjWVh_hV6CtMMuJw6equcEpkA4Lv1PcuUo_ft7o29Z3tpXxWdTGOtbrD_-DINQ9YVaaP7MAcDVnkbu_-d6tS14wTXwNQxYpLJpCjjBo21A7D9iresRGJ5eSb8iyY9ghigeoEyakzL8wcW08L34GcHYREWZPb2XJQUbNOxz4LLNpJ0XzRWbHbIVn7I67o_uDbKzAOFLtoUsqTFnwBWumBNNDdF7UZEHWS168cxeyduZVesyc5fdY9bZrS-6rDThFIoHOaLMKteEnex61SkRwXKj01y256WJqRan4_isaUdgCCSX8_dmg_tZI6W54U2UQ6fcZzL37OTfXps-Q_Shhdl8lZAs4GCwgBZyA69LFJOoR0vx6g1Z-g0euyjm9_6dzPJsGoQu2SvCv9x0KUXIx2fkG2oJIG0IrDO4Aw6sTioFSE2GvqC13qh470dcSYvrSjKJCqB8XM90-8ZZ3TM2ZeYWvTcZi9kG4wVK3TOpuVk_sdswNyd6t0hY9Yyg9Z3bvNCRfVguqyRqbKtFiIlGIdou_3-Sk3YLUutC27N19NyGFi6o7aGYnFhxZMXlMJvzapwIOuG2elfPnLMvVZLyJh9gJBsmmIu1_CfZ_7tV3gEmO3dPkvD96eJlUNvucabgGqz7hNovhbMvJjH7x-AKu-GwycJBcEwJ7btABj9oT9yube0-P8C-AcTmU6XOLOCz8Tk4m4_-B-kJnpaHmw4Qd1zRvkItsPnL87DyDtpuBhemK62YbEH08aC71taj42IH02INSVkPlAoceOYVTaPA1bKHH8lYyPTRU7bNnyt91lc7KJFhQe9Kb5FEuESj9GaiEi91XEEtwTYTyTPlVPEJmRm1VIkzZxaLfY2P9bttWRTByMT3ECjeayW2WHLtjrwCAMOJgrNoQDsXx6srfvkoAOTJ8TkAhMJLKJ6vt_nM9XAtMkWhASmWthDpHoRWHRZMryYNZQZdgwHUjCksy1GvLlMjYG-II7nryDyMUhdKvX-d0erq5xpUzNXb7DXd4OfjWW4nr_6_DpHVzU2LE6Zo2lKWjYGdTvXdaCA9u4dij5cNkNc2H-Ryd29goqwTbLqieU1r44VB_7zpQtJRGUJaoRzIPMb3AbEEqKdxlUk7N80s0vfkCFzS429Vj5DafZJfOsVDx50kywrVATiNe9hp_gsiNSu7wqjwfUe4x_YRg-5_f6d7chU9dRIZvTxO97XWcioH36xJzpGbNYhWnkOkoNLhBjvoyCCkcgd94mUBE_FiWXvc6uFFdL1eWQCQpDQxO-9hXPJ-mo3Ji33G7qrJ7cCLcS17Zvhz1SOkRL2B2Hb2cl5D7LBO5S0OjnzK1PUhuOG4yL_PlWv7-GvbyPzQ0gnu-qWSKGyc5yJgrpKbxVX4Sl9cBh-xI3VVWYzz2LklhgaRYHJl3Gt9W9v5pUuW2e1-dPhZjhioZCnnkOXPwC5JwjY_BOSprt1NMy1ydW61-FAfVdTnNTwPG67lN-wSrYuoRkDQ8diydqmvcRepYL8ZM0dc5v07ZUT3wWfuGGsTioO1mfG9ZFoT0K8nepd7EaJEhyl2gWli2qvXK8p8NAcB9FZgCEqih22E1xtZbOw561qCoXT9St77h40BIWbFW30p5oEeZ-yIO0X7zYhabaVsf0tfE5FWpvQVkFoZulEqE2QNiJr3qVslWJFfrANUUIQx6YSzWHCojnRZfo85G11PxX0E1gsApwQxwNqiv1TUjYyICvZdXMyX08BeMlW2BvPSSZaxutcZ_grwciT-ValyADAH3rC9lXGp88zg28-zUAavGQdO4r03mSPBHnK84FGZ-eAJ6ogy-08ftWJjIUFV5AEYsOelYaRGyZwQJEBoOVIpl2mM6232Sfo9to8BTv4Wx7IslecAboeXw00Bv9d9_vPJIy9w8ZbjhqCduPbWxu0zuQN79iuUJF0YHZYOuj_z4ZxO1jm-gQH-fuD2jZoZNMxlURO7Ot5islt0U1ayqPi7XgbJUSck1OtsJNqfM2tYpw_CXeygByjedYVmvaPbfj0QUKHjLqm1UQBDyuzTynoAT3-5I3PLpgcMJ832n4fX1YyKAoLW5xiIXfE4t4KuyZGmteAwXaJJy9Bl57Rjl1OFT59l1SH975d2aLpavqs1d0Mc6fDMWiyKdF0MRDm5ajHBkas4jOaLSvbc93UzNLfvq-bARZvN_3a4iJCt2uQ_qcw-ca5d5D2kvQ5B5mQt1iglA_OK-kJ88ZCZZ9d9pONV4VkA8L-bg7NbfKu_XS2rJPvToH062omCYsp74t3FbmfkMkCoVWVGGWejW-8lcEoWWiE.BWb0NEloxK6cZq3AsvdqLA; oai-sc=${oaiScCookie9}; __cf_bm=1l6pQ_R.kPEvkwomx8JnvpjNrHg0nQtztQ4W5gwaMFI-1773809664.4441342-1.0.1.1-Sb9TtYqSqH8k6o5NB7e1wiK.Fem_J2BtDWJ0Ebm0psNAL.q2v9uiTdEl1GZ6RQ4p2mmUUdoUDi_XoYCM9FiK1mB.7EifLuzCyBU9oc03uA121bf.IqacrCRlSoM3ZJ8k; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809664$j39$l0$h0` + }, + body: JSON.stringify( + { + "timestamp": "2026-03-18T04:54:24.851Z", + "integrations": { + "Segment.io": variable4 + }, + "type": "page", + "properties": { + "path": "/checkout/openai_llc/cs_live_a1XaCvZCoIEesvGS7aFlnPORQaFoV8h19Ihj8OnyIZUodOtCkd3hWY4gVM", + "referrer": `https://${url1}${origins2}`, + "search": origins2, + "title": variable5, + "url": `https://${origins}/checkout/${processorEntity}/${checkoutSessionId}`, + "hash": "" + }, + "context": { + "page": { + "path": "/checkout/openai_llc/cs_live_a1XaCvZCoIEesvGS7aFlnPORQaFoV8h19Ihj8OnyIZUodOtCkd3hWY4gVM", + "referrer": `https://${url1}${origins2}`, + "search": origins2, + "title": variable5, + "url": `https://${origins}/checkout/${processorEntity}/${checkoutSessionId}`, + "hash": "" + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": "145" + }, + { + "brand": "Chromium", + "version": "145" + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locale": clientLocale, + "library": { + "name": "analytics.js", + "version": "npm:next-1.81.1" + }, + "campaign": statsigpayloadDynamicConfigs217573384Value, + "timezone": "Asia/Shanghai", + "app_name": attributeContent, + "app_version": "5b2bbe37728e132c3e9c1de50cf962309a035974", + "browser_locale": clientLocale, + "device_id": evaluatedKeysStableid, + "auth_status": authstatus2, + "user_traits": { + "plan_type": categoriesSubscriptionLevel, + "workspace_id": null, + "workspace_type": null, + "is_openai_internal": attributeAriaExpanded, + "ads_segment_id": adsSegmentId + }, + "is_business_ip2": variable4 + }, + "messageId": "ajs-next-1773809664851-885ef2fe-1427-4a69-b2bd-fea6345fd2fd", + "userId": sessionUserId, + "anonymousId": "9ce3c08e-d150-4dc3-a95f-d963fa1339f8", + "writeKey": "oai", + "sentAt": "2026-03-18T04:54:24.858Z", + "_metadata": { + "bundled": [ + "Segment.io" + ], + "unbundled": userGroups, + "bundledIds": userGroups + } + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0356({ + currencyConfigPromosBusinessOneDollarAmount, + variable14, + variable24, + connectorsSupportedAuthTokenUrl + }) { + console.log("Executing request 0356") + const response = await fetch( + `https://js.stripe.com/${connectorsSupportedAuthTokenUrl}/controller-with-preconnect-901076984ba827cd19c77ca3408b62ec.html`, + { + method: "GET", + headers: { + "host": "js.stripe.com", + "connection": "keep-alive", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"macOS\"", + "upgrade-insecure-requests": currencyConfigPromosBusinessOneDollarAmount, + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "navigate", + "sec-fetch-dest": variable14, + "sec-fetch-storage-access": "active", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + } + } + ) + const body = await response.text() + return { + variable33: response.headers.get("content-length"), + attributeSrc: new URL(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[0].childNodes[4].getAttribute("src")).pathname, + attributeHref9: new URL(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[0].childNodes[1].getAttribute("href")).hostname, + attributeHref10: new URL(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[0].childNodes[0].getAttribute("href")).hostname, + variable29: response.headers.get("server"), + variable98: response.headers.get("origin-agent-cluster") + } + } + async function executeRequest0357({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + secureNextAuthCallbackUrlCookie1, + urlAudience, + evaluatedKeysStableid, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + cfuvidCookie17, + oaiScCookie9, + connectorsSuggestionConfigImageUrl + }) { + console.log("Executing request 0357") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/${connectorsSuggestionConfigImageUrl}`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": modelsProductFeaturesAttachmentsAcceptedMimeTypes, + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//chatgpt.com/checkout/openai_llc/cs_live_a1XaCvZCoIEesvGS7aFlnPORQaFoV8h19Ihj8OnyIZUodOtCkd3hWY4gVM", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-gn=; _dd_s=aid; _gcl_au=1.1.1190047189.1773809654; _fbp=fb.1.1773809654765.70493485518132342; _cfuvid=${cfuvidCookie17}; __Secure-next-auth.session-token=eyJhbGciOiJkaXIiLCJlbmMiOiJBMjU2R0NNIn0..CV1dsn7cCCMutGK-.FMKxs-4nT9MVzKKlCP-64qV39c3_8aL-Tgk2zCSAJSFBN8wB_PuS4xVJGi3wQsaIxDzbEgTt8Vf3S9lgbrI9IW4kj9-b6fogWdgWVE-__cVw6JKVnq2PNBgfsTr5fJSyjJ9_6A2sO3vLZRiedDMQ90nyu1wwzMRds87SD5M-7TAA1zxyLSSL0tpkh14F6_6fhALoWeYwOdAZYhZat_mdqhEprpyee-KC4uwF7wNWKOpIWRMZPWA-9WBnS-mTV1uWm-YOunStvtq1GznvS5bP3nL00jGzwqZp2P91rxLFzOGD55SGKxnXKfD4P7-u5qTI5zXKPOPMKBkhE-5CsFplEXXJfuA-hHgeJxr_uAuKgpDQ0Tq7TrP_smN0ozZ7Xm6uZGriV3Aud1yZqvLxZ5B_Kdxs2x8YrFoht-JKRPG7bzbtXKMNfN5x_bs90UzibHNcgLVOm-iAl5EmkQjTQaIi1jKUYc7IVwqO0Hiv8dOynMJCOZmXJaPtmQVg6F44Pze5_db5Bxuuw3PXNuwt_AN1eqE7DlEEkIzEG9ruJipkNM0YPWgxg792AWJBc7d0pC8Z8M5ie1JbZ7FOSYRzERVFBDN3TkYqrtQ6F9EKK814h7716W62LffWZ3JsUd3JFH1Z6UXpJGlSA3Ux8S4pixj6Tbg-AdJq04k_hBYlVEKgDmPhOxlAM_SgRIP8QxUS5TLT_kwLqAvJnIMsQjp-A-oDWh_6zLgKZc0vcmsxvQzFM5IT-xKA1cB9fjdPu_HZDB2qjmj4OKYJkn21E9M-OEckzYARPmE2_jsFVLA8uggCf4C4o3EGnMEoNlUei_zAlh1Ui-SEnIoHdlo5D7T3smPKCvoVxUcyleiR1xKMPml889m1IPWB4kB3yEnlX-aA6_Vb-B4f_TwNRaFUimWxRZi-1rk1A3Z3wMKnP1whvvmsXbLimHcefQj34bDNwWWpVtwGnDw0UQUFrzxgCK2WkPX0yaxhNExXDR9Yt78CDQhhqGhOFgqLFScLVzxS5DU6mwkgeosrUViw4TEUR8QB30y6Pgv3e8SrIDQSuBMBAIpwQzUYp6Cy7CACJP2BMAViLcGghtBUtyHYROInzABWLI6OHVcsU0t9uOfXcf-qKaJei0C-BfU4iw0t7fTNszuxKiNR4m8Xm4RJWKwWfhPdvaOEqbnr40CqQ6i93ENZisXfCjK0hOfA10ml19ebW0YXsEUHAfYrb0WoCvMfH8Bxorn6lc_xwA9stHvcTw4uMISuqLAq1ik4MOXAZ_3ARNmhgzoAk3atqDNe7m5W4MiDDQ_qAXeR2BZlNavEbyQEvf0wbsBOOWn5G4g-mdWjIpHDel9iTaCsMfD4Y2PLHO4598FGGuaL7viK70U4AJ33mNVtuVtBRr_-LLO2wefymIZVvdW4ou3jeauFTywXWEbmZoLjWVh_hV6CtMMuJw6equcEpkA4Lv1PcuUo_ft7o29Z3tpXxWdTGOtbrD_-DINQ9YVaaP7MAcDVnkbu_-d6tS14wTXwNQxYpLJpCjjBo21A7D9iresRGJ5eSb8iyY9ghigeoEyakzL8wcW08L34GcHYREWZPb2XJQUbNOxz4LLNpJ0XzRWbHbIVn7I67o_uDbKzAOFLtoUsqTFnwBWumBNNDdF7UZEHWS168cxeyduZVesyc5fdY9bZrS-6rDThFIoHOaLMKteEnex61SkRwXKj01y256WJqRan4_isaUdgCCSX8_dmg_tZI6W54U2UQ6fcZzL37OTfXps-Q_Shhdl8lZAs4GCwgBZyA69LFJOoR0vx6g1Z-g0euyjm9_6dzPJsGoQu2SvCv9x0KUXIx2fkG2oJIG0IrDO4Aw6sTioFSE2GvqC13qh470dcSYvrSjKJCqB8XM90-8ZZ3TM2ZeYWvTcZi9kG4wVK3TOpuVk_sdswNyd6t0hY9Yyg9Z3bvNCRfVguqyRqbKtFiIlGIdou_3-Sk3YLUutC27N19NyGFi6o7aGYnFhxZMXlMJvzapwIOuG2elfPnLMvVZLyJh9gJBsmmIu1_CfZ_7tV3gEmO3dPkvD96eJlUNvucabgGqz7hNovhbMvJjH7x-AKu-GwycJBcEwJ7btABj9oT9yube0-P8C-AcTmU6XOLOCz8Tk4m4_-B-kJnpaHmw4Qd1zRvkItsPnL87DyDtpuBhemK62YbEH08aC71taj42IH02INSVkPlAoceOYVTaPA1bKHH8lYyPTRU7bNnyt91lc7KJFhQe9Kb5FEuESj9GaiEi91XEEtwTYTyTPlVPEJmRm1VIkzZxaLfY2P9bttWRTByMT3ECjeayW2WHLtjrwCAMOJgrNoQDsXx6srfvkoAOTJ8TkAhMJLKJ6vt_nM9XAtMkWhASmWthDpHoRWHRZMryYNZQZdgwHUjCksy1GvLlMjYG-II7nryDyMUhdKvX-d0erq5xpUzNXb7DXd4OfjWW4nr_6_DpHVzU2LE6Zo2lKWjYGdTvXdaCA9u4dij5cNkNc2H-Ryd29goqwTbLqieU1r44VB_7zpQtJRGUJaoRzIPMb3AbEEqKdxlUk7N80s0vfkCFzS429Vj5DafZJfOsVDx50kywrVATiNe9hp_gsiNSu7wqjwfUe4x_YRg-5_f6d7chU9dRIZvTxO97XWcioH36xJzpGbNYhWnkOkoNLhBjvoyCCkcgd94mUBE_FiWXvc6uFFdL1eWQCQpDQxO-9hXPJ-mo3Ji33G7qrJ7cCLcS17Zvhz1SOkRL2B2Hb2cl5D7LBO5S0OjnzK1PUhuOG4yL_PlWv7-GvbyPzQ0gnu-qWSKGyc5yJgrpKbxVX4Sl9cBh-xI3VVWYzz2LklhgaRYHJl3Gt9W9v5pUuW2e1-dPhZjhioZCnnkOXPwC5JwjY_BOSprt1NMy1ydW61-FAfVdTnNTwPG67lN-wSrYuoRkDQ8diydqmvcRepYL8ZM0dc5v07ZUT3wWfuGGsTioO1mfG9ZFoT0K8nepd7EaJEhyl2gWli2qvXK8p8NAcB9FZgCEqih22E1xtZbOw561qCoXT9St77h40BIWbFW30p5oEeZ-yIO0X7zYhabaVsf0tfE5FWpvQVkFoZulEqE2QNiJr3qVslWJFfrANUUIQx6YSzWHCojnRZfo85G11PxX0E1gsApwQxwNqiv1TUjYyICvZdXMyX08BeMlW2BvPSSZaxutcZ_grwciT-ValyADAH3rC9lXGp88zg28-zUAavGQdO4r03mSPBHnK84FGZ-eAJ6ogy-08ftWJjIUFV5AEYsOelYaRGyZwQJEBoOVIpl2mM6232Sfo9to8BTv4Wx7IslecAboeXw00Bv9d9_vPJIy9w8ZbjhqCduPbWxu0zuQN79iuUJF0YHZYOuj_z4ZxO1jm-gQH-fuD2jZoZNMxlURO7Ot5islt0U1ayqPi7XgbJUSck1OtsJNqfM2tYpw_CXeygByjedYVmvaPbfj0QUKHjLqm1UQBDyuzTynoAT3-5I3PLpgcMJ832n4fX1YyKAoLW5xiIXfE4t4KuyZGmteAwXaJJy9Bl57Rjl1OFT59l1SH975d2aLpavqs1d0Mc6fDMWiyKdF0MRDm5ajHBkas4jOaLSvbc93UzNLfvq-bARZvN_3a4iJCt2uQ_qcw-ca5d5D2kvQ5B5mQt1iglA_OK-kJ88ZCZZ9d9pONV4VkA8L-bg7NbfKu_XS2rJPvToH062omCYsp74t3FbmfkMkCoVWVGGWejW-8lcEoWWiE.BWb0NEloxK6cZq3AsvdqLA; oai-sc=${oaiScCookie9}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809665$j38$l0$h0; __cf_bm=t2NbpHvSPl3V.1z8MZBOi65twAXaiR45c9d4E15eL1c-1773809665.1175745-1.0.1.1-pOYmOJNmihr_hw4XqKr63NhGzDQ.b2GgyRTpp8uFpY8JxO53J1mNiP1N8I5C3QhF8z40gV4usho1WL2GnU_5HoWN4kLYnUMfwIJ0lT_ScE2FLHxJCqPK3UI98ZXjI8.C` + }, + body: JSON.stringify( + { + "series": [ + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + } + ] + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0358({ + currencyConfigPromosBusinessOneDollarAmount, + variable14, + variable24, + connectorsSupportedAuthTokenUrl + }) { + console.log("Executing request 0358") + const response = await fetch( + `https://js.stripe.com/${connectorsSupportedAuthTokenUrl}/m-outer-3437aaddcdf6922d623e172c2d6f9278.html`, + { + method: "GET", + headers: { + "host": "js.stripe.com", + "connection": "keep-alive", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"macOS\"", + "upgrade-insecure-requests": currencyConfigPromosBusinessOneDollarAmount, + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "navigate", + "sec-fetch-dest": variable14, + "sec-fetch-storage-access": "active", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0360({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + secureNextAuthCallbackUrlCookie1, + urlAudience, + evaluatedKeysStableid, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + cfuvidCookie17, + oaiScCookie9, + connectorsSuggestionConfigImageUrl + }) { + console.log("Executing request 0360") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/${connectorsSuggestionConfigImageUrl}`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": modelsProductFeaturesAttachmentsAcceptedMimeTypes, + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//chatgpt.com/checkout/openai_llc/cs_live_a1XaCvZCoIEesvGS7aFlnPORQaFoV8h19Ihj8OnyIZUodOtCkd3hWY4gVM", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-gn=; _dd_s=aid; _gcl_au=1.1.1190047189.1773809654; _fbp=fb.1.1773809654765.70493485518132342; _cfuvid=${cfuvidCookie17}; __Secure-next-auth.session-token=eyJhbGciOiJkaXIiLCJlbmMiOiJBMjU2R0NNIn0..CV1dsn7cCCMutGK-.FMKxs-4nT9MVzKKlCP-64qV39c3_8aL-Tgk2zCSAJSFBN8wB_PuS4xVJGi3wQsaIxDzbEgTt8Vf3S9lgbrI9IW4kj9-b6fogWdgWVE-__cVw6JKVnq2PNBgfsTr5fJSyjJ9_6A2sO3vLZRiedDMQ90nyu1wwzMRds87SD5M-7TAA1zxyLSSL0tpkh14F6_6fhALoWeYwOdAZYhZat_mdqhEprpyee-KC4uwF7wNWKOpIWRMZPWA-9WBnS-mTV1uWm-YOunStvtq1GznvS5bP3nL00jGzwqZp2P91rxLFzOGD55SGKxnXKfD4P7-u5qTI5zXKPOPMKBkhE-5CsFplEXXJfuA-hHgeJxr_uAuKgpDQ0Tq7TrP_smN0ozZ7Xm6uZGriV3Aud1yZqvLxZ5B_Kdxs2x8YrFoht-JKRPG7bzbtXKMNfN5x_bs90UzibHNcgLVOm-iAl5EmkQjTQaIi1jKUYc7IVwqO0Hiv8dOynMJCOZmXJaPtmQVg6F44Pze5_db5Bxuuw3PXNuwt_AN1eqE7DlEEkIzEG9ruJipkNM0YPWgxg792AWJBc7d0pC8Z8M5ie1JbZ7FOSYRzERVFBDN3TkYqrtQ6F9EKK814h7716W62LffWZ3JsUd3JFH1Z6UXpJGlSA3Ux8S4pixj6Tbg-AdJq04k_hBYlVEKgDmPhOxlAM_SgRIP8QxUS5TLT_kwLqAvJnIMsQjp-A-oDWh_6zLgKZc0vcmsxvQzFM5IT-xKA1cB9fjdPu_HZDB2qjmj4OKYJkn21E9M-OEckzYARPmE2_jsFVLA8uggCf4C4o3EGnMEoNlUei_zAlh1Ui-SEnIoHdlo5D7T3smPKCvoVxUcyleiR1xKMPml889m1IPWB4kB3yEnlX-aA6_Vb-B4f_TwNRaFUimWxRZi-1rk1A3Z3wMKnP1whvvmsXbLimHcefQj34bDNwWWpVtwGnDw0UQUFrzxgCK2WkPX0yaxhNExXDR9Yt78CDQhhqGhOFgqLFScLVzxS5DU6mwkgeosrUViw4TEUR8QB30y6Pgv3e8SrIDQSuBMBAIpwQzUYp6Cy7CACJP2BMAViLcGghtBUtyHYROInzABWLI6OHVcsU0t9uOfXcf-qKaJei0C-BfU4iw0t7fTNszuxKiNR4m8Xm4RJWKwWfhPdvaOEqbnr40CqQ6i93ENZisXfCjK0hOfA10ml19ebW0YXsEUHAfYrb0WoCvMfH8Bxorn6lc_xwA9stHvcTw4uMISuqLAq1ik4MOXAZ_3ARNmhgzoAk3atqDNe7m5W4MiDDQ_qAXeR2BZlNavEbyQEvf0wbsBOOWn5G4g-mdWjIpHDel9iTaCsMfD4Y2PLHO4598FGGuaL7viK70U4AJ33mNVtuVtBRr_-LLO2wefymIZVvdW4ou3jeauFTywXWEbmZoLjWVh_hV6CtMMuJw6equcEpkA4Lv1PcuUo_ft7o29Z3tpXxWdTGOtbrD_-DINQ9YVaaP7MAcDVnkbu_-d6tS14wTXwNQxYpLJpCjjBo21A7D9iresRGJ5eSb8iyY9ghigeoEyakzL8wcW08L34GcHYREWZPb2XJQUbNOxz4LLNpJ0XzRWbHbIVn7I67o_uDbKzAOFLtoUsqTFnwBWumBNNDdF7UZEHWS168cxeyduZVesyc5fdY9bZrS-6rDThFIoHOaLMKteEnex61SkRwXKj01y256WJqRan4_isaUdgCCSX8_dmg_tZI6W54U2UQ6fcZzL37OTfXps-Q_Shhdl8lZAs4GCwgBZyA69LFJOoR0vx6g1Z-g0euyjm9_6dzPJsGoQu2SvCv9x0KUXIx2fkG2oJIG0IrDO4Aw6sTioFSE2GvqC13qh470dcSYvrSjKJCqB8XM90-8ZZ3TM2ZeYWvTcZi9kG4wVK3TOpuVk_sdswNyd6t0hY9Yyg9Z3bvNCRfVguqyRqbKtFiIlGIdou_3-Sk3YLUutC27N19NyGFi6o7aGYnFhxZMXlMJvzapwIOuG2elfPnLMvVZLyJh9gJBsmmIu1_CfZ_7tV3gEmO3dPkvD96eJlUNvucabgGqz7hNovhbMvJjH7x-AKu-GwycJBcEwJ7btABj9oT9yube0-P8C-AcTmU6XOLOCz8Tk4m4_-B-kJnpaHmw4Qd1zRvkItsPnL87DyDtpuBhemK62YbEH08aC71taj42IH02INSVkPlAoceOYVTaPA1bKHH8lYyPTRU7bNnyt91lc7KJFhQe9Kb5FEuESj9GaiEi91XEEtwTYTyTPlVPEJmRm1VIkzZxaLfY2P9bttWRTByMT3ECjeayW2WHLtjrwCAMOJgrNoQDsXx6srfvkoAOTJ8TkAhMJLKJ6vt_nM9XAtMkWhASmWthDpHoRWHRZMryYNZQZdgwHUjCksy1GvLlMjYG-II7nryDyMUhdKvX-d0erq5xpUzNXb7DXd4OfjWW4nr_6_DpHVzU2LE6Zo2lKWjYGdTvXdaCA9u4dij5cNkNc2H-Ryd29goqwTbLqieU1r44VB_7zpQtJRGUJaoRzIPMb3AbEEqKdxlUk7N80s0vfkCFzS429Vj5DafZJfOsVDx50kywrVATiNe9hp_gsiNSu7wqjwfUe4x_YRg-5_f6d7chU9dRIZvTxO97XWcioH36xJzpGbNYhWnkOkoNLhBjvoyCCkcgd94mUBE_FiWXvc6uFFdL1eWQCQpDQxO-9hXPJ-mo3Ji33G7qrJ7cCLcS17Zvhz1SOkRL2B2Hb2cl5D7LBO5S0OjnzK1PUhuOG4yL_PlWv7-GvbyPzQ0gnu-qWSKGyc5yJgrpKbxVX4Sl9cBh-xI3VVWYzz2LklhgaRYHJl3Gt9W9v5pUuW2e1-dPhZjhioZCnnkOXPwC5JwjY_BOSprt1NMy1ydW61-FAfVdTnNTwPG67lN-wSrYuoRkDQ8diydqmvcRepYL8ZM0dc5v07ZUT3wWfuGGsTioO1mfG9ZFoT0K8nepd7EaJEhyl2gWli2qvXK8p8NAcB9FZgCEqih22E1xtZbOw561qCoXT9St77h40BIWbFW30p5oEeZ-yIO0X7zYhabaVsf0tfE5FWpvQVkFoZulEqE2QNiJr3qVslWJFfrANUUIQx6YSzWHCojnRZfo85G11PxX0E1gsApwQxwNqiv1TUjYyICvZdXMyX08BeMlW2BvPSSZaxutcZ_grwciT-ValyADAH3rC9lXGp88zg28-zUAavGQdO4r03mSPBHnK84FGZ-eAJ6ogy-08ftWJjIUFV5AEYsOelYaRGyZwQJEBoOVIpl2mM6232Sfo9to8BTv4Wx7IslecAboeXw00Bv9d9_vPJIy9w8ZbjhqCduPbWxu0zuQN79iuUJF0YHZYOuj_z4ZxO1jm-gQH-fuD2jZoZNMxlURO7Ot5islt0U1ayqPi7XgbJUSck1OtsJNqfM2tYpw_CXeygByjedYVmvaPbfj0QUKHjLqm1UQBDyuzTynoAT3-5I3PLpgcMJ832n4fX1YyKAoLW5xiIXfE4t4KuyZGmteAwXaJJy9Bl57Rjl1OFT59l1SH975d2aLpavqs1d0Mc6fDMWiyKdF0MRDm5ajHBkas4jOaLSvbc93UzNLfvq-bARZvN_3a4iJCt2uQ_qcw-ca5d5D2kvQ5B5mQt1iglA_OK-kJ88ZCZZ9d9pONV4VkA8L-bg7NbfKu_XS2rJPvToH062omCYsp74t3FbmfkMkCoVWVGGWejW-8lcEoWWiE.BWb0NEloxK6cZq3AsvdqLA; oai-sc=${oaiScCookie9}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809665$j38$l0$h0; __cf_bm=t2NbpHvSPl3V.1z8MZBOi65twAXaiR45c9d4E15eL1c-1773809665.1175745-1.0.1.1-pOYmOJNmihr_hw4XqKr63NhGzDQ.b2GgyRTpp8uFpY8JxO53J1mNiP1N8I5C3QhF8z40gV4usho1WL2GnU_5HoWN4kLYnUMfwIJ0lT_ScE2FLHxJCqPK3UI98ZXjI8.C` + }, + body: JSON.stringify( + { + "series": [ + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + } + ] + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0360({ + currencyConfigPromosBusinessOneDollarAmount, + variable14 + }) { + console.log("Executing request 0360") + const response = await fetch( + "https://m.stripe.network/inner.html", + { + method: "GET", + headers: { + "host": "m.stripe.network", + "connection": "keep-alive", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"macOS\"", + "upgrade-insecure-requests": currencyConfigPromosBusinessOneDollarAmount, + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "navigate", + "sec-fetch-dest": variable14, + "sec-fetch-storage-access": "active", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0361({ + attributeType, + connectorsSupportedAuthTokenUrl + }) { + console.log("Executing request 0361") + const response = await fetch( + `https://js.stripe.com/${connectorsSupportedAuthTokenUrl}/.deploy_status_henson.json`, + { + method: "GET", + headers: { + "host": "js.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/v3/controller-with-preconnect-901076984ba827cd19c77ca3408b62ec.html", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + } + } + ) + const body = await response.text() + return { + variable36: response.headers.get("age") + } + } + async function executeRequest0362({ + attributeType, + connectorsSupportedAuthTokenUrl, + attributeSrc, + connectorsBrandingPrivacyPolicy + }) { + console.log("Executing request 0362") + const response = await fetch( + `https://js.stripe.com/${connectorsSupportedAuthTokenUrl}/${attributeSrc}/${connectorsBrandingPrivacyPolicy}/countries_zh-e858bf02fb850b7ff9ee3398d38af18c.json`, + { + method: "GET", + headers: { + "host": "js.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/v3/controller-with-preconnect-901076984ba827cd19c77ca3408b62ec.html", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0363({ + attributeType, + origins, + attributeHref9 + }) { + console.log("Executing request 0363") + const response = await fetch( + `https://${attributeHref9}/link/get-cookie?referrer_host=${origins}`, + { + method: "GET", + headers: { + "host": attributeHref9, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "sec-fetch-storage-access": "active", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + } + } + ) + const body = await response.text() + return { + variable50: response.headers.get("content-length") + } + } + async function executeRequest0364({ + attributeType, + connectorsSupportedAuthTokenUrl, + attributeSrc, + connectorsBrandingPrivacyPolicy + }) { + console.log("Executing request 0364") + const response = await fetch( + `https://js.stripe.com/${connectorsSupportedAuthTokenUrl}/${attributeSrc}/${connectorsBrandingPrivacyPolicy}/zh-934a54726e9271c2364ac8777758de43.json`, + { + method: "GET", + headers: { + "host": "js.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/v3/controller-with-preconnect-901076984ba827cd19c77ca3408b62ec.html", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0365({ + attributeType, + urlAudience, + checkoutSessionId, + attributeHref10 + }) { + console.log("Executing request 0365") + const response = await fetch( + `https://${attributeHref10}/${urlAudience}/payment_pages/${checkoutSessionId}/init`, + { + method: "POST", + headers: { + "host": attributeHref10, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: "browser_locale=zh-CN&browser_timezone=Asia%2FShanghai&elements_session_client[client_betas][0]=custom_checkout_server_updates_1&elements_session_client[client_betas][1]=custom_checkout_manual_approval_1&elements_session_client[elements_init_source]=custom_checkout&elements_session_client[referrer_host]=chatgpt.com&elements_session_client[stripe_js_id]=e9ea369f-4f2d-4a53-b21a-1abbc01b2820&elements_session_client[locale]=zh-CN&elements_session_client[is_aggregation_expected]=false&key=pk_live_51HOrSwC6h1nxGoI3lTAgRjYVrz4dU3fVOabyCcKR3pbEJguCVAlqCxdxCUvoRh1XWwRacViovU3kLKvpkjh7IqkW00iXQsjo3n&_stripe_version=2025-03-31.basil%3B+checkout_server_update_beta%3Dv1%3B+checkout_manual_approval_preview%3Dv1" + } + ) + const body = await response.text() + return { + state: JSON.parse(body)["state"], + configId: JSON.parse(body)["config_id"], + id: JSON.parse(body)["id"], + accountSettingsAccountId: JSON.parse(body)["account_settings"]["account_id"], + uiMode: JSON.parse(body)["ui_mode"], + taxContextTaxIdCollectionRequired: JSON.parse(body)["tax_context"]["tax_id_collection_required"], + locale: JSON.parse(body)["locale"], + currency: JSON.parse(body)["currency"], + orderedPaymentMethodTypes: JSON.parse(body)["ordered_payment_method_types"][1], + orderedPaymentMethodTypes1: JSON.parse(body)["ordered_payment_method_types"][2], + variable40: response.headers.get("original-request"), + object2: JSON.parse(body)["object"], + mode: JSON.parse(body)["mode"], + experimentsDataExperimentAssignmentsCheckoutEnableRealTimeTaxIdVerificationExperiment: JSON.parse(body)["experiments_data"]["experiment_assignments"]["checkout_enable_real_time_tax_id_verification_experiment"], + experimentsDataExperimentAssignmentsOcsBuyerXpCplCurrencySymbolOptimization: JSON.parse(body)["experiments_data"]["experiment_assignments"]["ocs_buyer_xp_cpl_currency_symbol_optimization"], + siteKey: JSON.parse(body)["site_key"], + linkSettingsHcaptchaSiteKey: JSON.parse(body)["link_settings"]["hcaptcha_site_key"], + linkSettingsLinkMode: JSON.parse(body)["link_settings"]["link_mode"], + accountSettingsBrandingBackgroundColor: JSON.parse(body)["account_settings"]["branding"]["background_color"], + variable106: response.headers.get("stripe-version"), + returnUrl: JSON.parse(body)["return_url"], + returnUrl1: new URL(JSON.parse(body)["return_url"]).pathname, + returnUrl2: new URL(JSON.parse(body)["return_url"]).pathname, + returnUrl3: new URL(JSON.parse(body)["return_url"]).search + } + } + async function executeRequest0366({ + currencyConfigPromosBusinessOneDollarAmount, + variable14, + variable24, + connectorsSupportedAuthTokenUrl, + state + }) { + console.log("Executing request 0366") + const response = await fetch( + `https://js.stripe.com/${connectorsSupportedAuthTokenUrl}/elements-inner-payment-324e9873459c3ffc122774bd048c7b8e.html`, + { + method: "GET", + headers: { + "host": "js.stripe.com", + "connection": "keep-alive", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"macOS\"", + "upgrade-insecure-requests": currencyConfigPromosBusinessOneDollarAmount, + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "navigate", + "sec-fetch-dest": variable14, + "sec-fetch-storage-access": state, + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0367({ + attributeType, + urlAudience, + attributeHref10 + }) { + console.log("Executing request 0367") + const response = await fetch( + `https://${attributeHref10}/${urlAudience}/elements/sessions??client_betas[0]=custom_checkout_server_updates_1&client_betas[1]=custom_checkout_manual_approval_1&deferred_intent[mode]=subscription&deferred_intent[amount]=0&deferred_intent[currency]=usd&deferred_intent[setup_future_usage]=off_session&deferred_intent[payment_method_types][0]=card¤cy=usd&key=pk_live_51HOrSwC6h1nxGoI3lTAgRjYVrz4dU3fVOabyCcKR3pbEJguCVAlqCxdxCUvoRh1XWwRacViovU3kLKvpkjh7IqkW00iXQsjo3n&_stripe_version=2025-03-31.basil%3B+checkout_server_update_beta%3Dv1%3B+checkout_manual_approval_preview%3Dv1&elements_init_source=custom_checkout&referrer_host=chatgpt.com&stripe_js_id=e9ea369f-4f2d-4a53-b21a-1abbc01b2820&locale=zh&type=deferred_intent&checkout_session_id=cs_live_a1XaCvZCoIEesvGS7aFlnPORQaFoV8h19Ihj8OnyIZUodOtCkd3hWY4gVM`, + { + method: "GET", + headers: { + "host": attributeHref10, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + } + } + ) + const body = await response.text() + return { + sessionId: JSON.parse(body)["session_id"], + configId1: JSON.parse(body)["config_id"], + experimentsDataArbId: JSON.parse(body)["experiments_data"]["arb_id"], + variable52: response.headers.get("request-id"), + linkSettingsLinkDisabledReasonsPaymentElementPaymentMethodMode: JSON.parse(body)["link_settings"]["link_disabled_reasons"]["payment_element_payment_method_mode"][0], + experimentsDataExperimentAssignmentsLinkGlobalHoldbackAa: JSON.parse(body)["experiments_data"]["experiment_assignments"]["link_global_holdback_aa"], + prefillSelectorsDefaultValuesEmail: JSON.parse(body)["prefill_selectors"]["default_values"]["email"][0], + prefillSelectorsDefaultValuesEmail1: JSON.parse(body)["prefill_selectors"]["default_values"]["email"][1], + prefillSelectorsDefaultValuesEmail2: JSON.parse(body)["prefill_selectors"]["default_values"]["email"][2], + prefillSelectorsDefaultValuesEmail3: JSON.parse(body)["prefill_selectors"]["default_values"]["email"][3], + prefillSelectorsDefaultValuesEmail4: JSON.parse(body)["prefill_selectors"]["default_values"]["email"][4], + prefillSelectorsDefaultValuesEmail5: JSON.parse(body)["prefill_selectors"]["default_values"]["email"][5], + prefillSelectorsDefaultValuesEmail6: JSON.parse(body)["prefill_selectors"]["default_values"]["email"][6], + prefillSelectorsDefaultValuesEmail7: JSON.parse(body)["prefill_selectors"]["default_values"]["email"][7], + prefillSelectorsDefaultValuesEmail8: JSON.parse(body)["prefill_selectors"]["default_values"]["email"][8], + prefillSelectorsDefaultValuesEmail9: JSON.parse(body)["prefill_selectors"]["default_values"]["email"][9], + passiveCaptchaSiteKey: JSON.parse(body)["passive_captcha"]["site_key"], + linkSettingsLinkBrand: JSON.parse(body)["link_settings"]["link_brand"], + linkSettingsLinkHcaptchaRqdata: JSON.parse(body)["link_settings"]["link_hcaptcha_rqdata"] + } + } + async function executeRequest0367({ + currencyConfigPromosBusinessOneDollarAmount, + variable14, + variable24, + connectorsSupportedAuthTokenUrl, + state + }) { + console.log("Executing request 0367") + const response = await fetch( + `https://js.stripe.com/${connectorsSupportedAuthTokenUrl}/elements-inner-address-42dd6dc47a945942734be25a97a9e063.html`, + { + method: "GET", + headers: { + "host": "js.stripe.com", + "connection": "keep-alive", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"macOS\"", + "upgrade-insecure-requests": currencyConfigPromosBusinessOneDollarAmount, + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "navigate", + "sec-fetch-dest": variable14, + "sec-fetch-storage-access": state, + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0367({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable28, + variable29 + }) { + console.log("Executing request 0367") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${currencyConfigPromosBusinessOneDollarAmount}&events=${JSON.stringify( + [ + { + "event_name": "elements.link.init", + "created": "1773809674527", + "batching_enabled": variable4, + "event_count": currencyConfigPromosBusinessOneDollarAmount, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "cc04d858-5121-4a83-9eed-5744b5a1e48e", + "team_identifier": "t_6", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "link_api_client": variable4, + "publishable_key": publishableKey, + "key": publishableKey, + "request_surface": "web_elements_controller", + "livemode": variable4, + "routing": variable28, + "session_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "browser_storage_strategies": "sessionStorage localStorage httpCookie", + "deploy_status_time_to_fetch_ms": "629", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX" + } + ] + )}` + } + ) + const body = await response.text() + return { + variable84: response.headers.get("access-control-allow-methods") + } + } + async function executeRequest0368({ + currencyConfigPromosBusinessOneDollarAmount, + variable14, + connectorsSupportedAuthTokenUrl, + state + }) { + console.log("Executing request 0368") + const response = await fetch( + `https://js.stripe.com/${connectorsSupportedAuthTokenUrl}/hcaptcha-invisible-c1f070656d4bd6686b247c0e7e0046db.html`, + { + method: "GET", + headers: { + "host": "js.stripe.com", + "connection": "keep-alive", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"macOS\"", + "upgrade-insecure-requests": currencyConfigPromosBusinessOneDollarAmount, + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "navigate", + "sec-fetch-dest": variable14, + "sec-fetch-storage-access": state, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0370({ + variable12, + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs2179180337ValueMaxAttempts, + variable32, + attributeWidth, + statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + statsigpayloadLayerConfigs817522959ValueChatgptInstantAnswersDynamicConfigLabradorFetcherConfigPromptMatchRejectsPromptTooLong, + variable33, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + statsigpayloadDynamicConfigs3317473948ValueModelSlugMaxPollingDurationsO1Pro, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary + }) { + console.log("Executing request 0370") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs2179180337ValueMaxAttempts}&events=${JSON.stringify( + [ + { + "event_name": "elements.controller.load", + "created": "1773809674529", + "batching_enabled": variable4, + "event_count": currencyConfigPromosBusinessOneDollarAmount, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "4a52cc87-63d6-42d3-8bf8-a0975d12b22a", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "frame_width": statsigpayloadDynamicConfigs3317473948ValueModelSlugMaxPollingDurationsO1Pro, + "controller_count": currencyConfigPromosBusinessOneDollarAmount, + "has_link_auth": attributeAriaExpanded + }, + { + "event_name": "elements.light_experiment_exposure", + "created": "1773809668787", + "batching_enabled": variable4, + "event_count": statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "7f758c4e-0f44-4c5b-ae43-9dcd1183d4bf", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "frame_width": statsigpayloadDynamicConfigs3317473948ValueModelSlugMaxPollingDurationsO1Pro, + "dimensions-os": "MacOS", + "dimensions-browserFamily": derivedFieldsBrowsername, + "dimensions-deviceType": "desktop", + "population": "0.05", + "version_id": currencyConfigPromosBusinessOneDollarAmount, + "is_qualified": attributeAriaExpanded, + "variant": statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary, + "token": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "experiment_retrieved": "sjs_light_experiment_react_version_17", + "project": "stripe-js" + }, + { + "event_name": "elements.init_payment_page", + "created": "1773809674533", + "batching_enabled": variable4, + "event_count": statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "2c9206f7-b719-4e8e-bd64-6debc477f930", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "frame_width": statsigpayloadDynamicConfigs3317473948ValueModelSlugMaxPollingDurationsO1Pro, + "auto_logged": variable4 + }, + { + "event_name": "elements.init_timings", + "created": "1773809674531", + "batching_enabled": variable4, + "event_count": statsigpayloadDynamicConfigs2179180337ValueMaxAttempts, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "06256641-2939-40b9-9dd7-087631887f77", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "frame_width": statsigpayloadDynamicConfigs3317473948ValueModelSlugMaxPollingDurationsO1Pro, + "element": "outer", + "match_frame": variable4, + "until_first_create": attributeWidth, + "until_first_load": "5768", + "stripe_create_duration": "5748", + "stripe_js_init_duration": variable32, + "stripe_js_load_duration": "9680", + "resource_timings-stripe.js-raw_size": "944882", + "resource_timings-stripe.js-transfer_size": "219280", + "resource_timings-stripe.js-duration": "3913", + "resource_timings-controller-with-preconnect.html-raw_size": variable33, + "resource_timings-controller-with-preconnect.html-transfer_size": "1045", + "resource_timings-controller-with-preconnect.html-duration": "1670", + "resource_timings-custom-checkout.js-raw_size": "298483", + "resource_timings-custom-checkout.js-transfer_size": "76318", + "resource_timings-custom-checkout.js-duration": "2374", + "resource_timings-m-outer.html-raw_size": statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + "resource_timings-m-outer.html-transfer_size": statsigpayloadLayerConfigs817522959ValueChatgptInstantAnswersDynamicConfigLabradorFetcherConfigPromptMatchRejectsPromptTooLong, + "resource_timings-m-outer.html-duration": "1032", + "controller_init_delay": variable12, + "controller_init_strategy": "eager", + "controller-resource_timings-shared.js-raw_size": "866291", + "controller-resource_timings-shared.js-transfer_size": "186485", + "controller-resource_timings-shared.js-duration": "1990", + "controller-resource_timings-controller-with-preconnect.js-raw_size": "1329257", + "controller-resource_timings-controller-with-preconnect.js-transfer_size": "296616", + "controller-resource_timings-controller-with-preconnect.js-duration": "3962" + } + ] + )}` + } + ) + const body = await response.text() + return { + variable51: response.headers.get("x-stripe-server-rpc-duration-micros") + } + } + async function executeRequest0371({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + attributeWidth, + 20, + variable36, + 22, + systemHintsLogoAttributeWidth, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray + }) { + console.log("Executing request 0371") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&events=${JSON.stringify( + [ + { + "event_name": "elements.register_event_listener", + "created": "1773809676900", + "batching_enabled": variable4, + "event_count": attributeWidth, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "f6217f7a-1cc8-4e1f-b098-b2bf18cd2ed8", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "frame_width": "1185", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "name": "change" + }, + { + "event_name": "elements.register_event_listener", + "created": "1773809676900", + "batching_enabled": variable4, + "event_count": 20, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "d8302bcc-472a-4b6e-b83b-d8b0fc6f6156", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "frame_width": "1185", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "name": "__private_do_not_use_spm_change" + }, + { + "event_name": "elements.register_event_listener", + "created": "1773809676900", + "batching_enabled": variable4, + "event_count": variable36, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "df2240e7-1fae-4724-beb6-68bcafb24a76", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "frame_width": "1185", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "name": "__private_do_not_use_spm_update_address" + }, + { + "event_name": "elements.register_event_listener", + "created": "1773809676900", + "batching_enabled": variable4, + "event_count": 22, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "eb2b898c-39b9-44c9-93ce-fdb2ca8514e9", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "frame_width": "1185", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "name": "__private_do_not_use_spm_remove" + }, + { + "event_name": "elements.mount", + "created": "1773809676900", + "batching_enabled": variable4, + "event_count": systemHintsLogoAttributeWidth, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "444d834f-0a38-4a6c-b893-f1167c61dc34", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "frame_width": "1185", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad", + "is_mounted_in_iframe": attributeAriaExpanded, + "can_access_top": variable4, + "exclude_from_detectors": attributeAriaExpanded + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0372({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueOutdatedRoomBootstrapMessagesCount, + statsigpayloadDynamicConfigs3165814200ValueMaxRetryCount, + variable38, + statsigpayloadLayerConfigs1092897457ValueMaxCommitConversationStalenessDays, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + statsigpayloadDynamicConfigs3317473948ValueModelSlugMaxPollingDurationsO1Pro, + attributeType, + attributeAriaExpanded, + variable4, + statsigpayloadDynamicConfigs3685705952ValueSms, + urlAudience, + statsigpayloadLayerConfigs4112645001ValueOutline, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + id, + accountSettingsAccountId, + uiMode, + taxContextTaxIdCollectionRequired, + locale, + currency, + orderedPaymentMethodTypes + }) { + console.log("Executing request 0372") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&events=${JSON.stringify( + [ + { + "event_name": "elements.custom_checkout.init_success", + "created": "1773809676882", + "batching_enabled": variable4, + "event_count": statsigpayloadDynamicConfigs216497991ValueOutdatedRoomBootstrapMessagesCount, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "0ec7fcfc-27aa-487d-a8ae-677e1c422fe7", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "frame_width": statsigpayloadDynamicConfigs3317473948ValueModelSlugMaxPollingDurationsO1Pro, + "baseVersion": urlAudience, + "betaVersions": "server_updates_1 manual_approval_1", + "sdkVersion": "v1_server_updates_1_manual_approval_1", + "checkoutSessionId": checkoutSessionId, + "paymentPage": id, + "livemode": variable4, + "merchant": accountSettingsAccountId, + "uiMode": uiMode + }, + { + "event_name": "elements.create", + "created": "1773809676892", + "batching_enabled": variable4, + "event_count": "11", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "d5ee63a9-aad2-4f1d-98d0-3076ea52dfe2", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "frame_width": "1185", + "options-fields-billingDetails-name": statsigpayloadLayerConfigs4112645001ValueOutline, + "options-fields-billingDetails-email": taxContextTaxIdCollectionRequired, + "options-fields-billingDetails-phone": statsigpayloadLayerConfigs4112645001ValueOutline, + "options-fields-billingDetails-address-country": taxContextTaxIdCollectionRequired, + "options-fields-billingDetails-address-postalCode": taxContextTaxIdCollectionRequired, + "options-fields-billingDetails-address-state": taxContextTaxIdCollectionRequired, + "options-fields-billingDetails-address-city": taxContextTaxIdCollectionRequired, + "options-fields-billingDetails-address-line1": taxContextTaxIdCollectionRequired, + "options-fields-billingDetails-address-line2": taxContextTaxIdCollectionRequired, + "options-terms-card": taxContextTaxIdCollectionRequired, + "options-layout-type": "tabs", + "options-wallets-applePay": statsigpayloadLayerConfigs4112645001ValueOutline, + "options-wallets-googlePay": taxContextTaxIdCollectionRequired, + "options-wallets-link": statsigpayloadLayerConfigs4112645001ValueOutline, + "options-betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "options-componentName": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "options-groupId": "elements-d20c72de-2563-403f-b2b0-f08145f405e3-3822", + "options-locale": locale, + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.preload_consumer_lookup", + "created": "1773809676925", + "batching_enabled": variable4, + "event_count": statsigpayloadDynamicConfigs3165814200ValueMaxRetryCount, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "e559d270-3f15-423d-810c-6ca7c3997263", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "frame_width": "1185", + "auto_logged": variable4 + }, + { + "event_name": "elements.pr.options", + "created": "1773809676897", + "batching_enabled": variable4, + "event_count": variable38, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "3670f3eb-82b4-4ee1-b138-6093366a35bc", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "frame_width": "1185", + "options-country": statsigpayloadDynamicConfigs3685705952ValueSms, + "options-currency": currency, + "options-requestPayerEmail": attributeAriaExpanded, + "options-requestPayerName": variable4, + "options-requestPayerPhone": attributeAriaExpanded, + "options-disableWallets": "browserCard link googlePay", + "options-applePay-usesAutomaticReloadPaymentRequest": attributeAriaExpanded, + "options-applePay-usesDeferredPaymentRequest": attributeAriaExpanded, + "options-applePay-usesRecurringPaymentRequest": attributeAriaExpanded, + "options-applePay-usesCardFunding": attributeAriaExpanded, + "usesButtonElement": attributeAriaExpanded + }, + { + "event_name": "elements.invalid_payment_method_type", + "created": "1773809676897", + "batching_enabled": variable4, + "event_count": statsigpayloadLayerConfigs1092897457ValueMaxCommitConversationStalenessDays, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "c1107f18-09ac-4cf8-8612-2c011ddeaf9f", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "frame_width": "1185", + "paymentMethodType": orderedPaymentMethodTypes, + "reason": "apple_pay_session_not_available" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0372({ + currencyConfigPromosBusinessOneDollarAmount, + origins2, + variable14, + state, + attributeHref8 + }) { + console.log("Executing request 0372") + const response = await fetch( + `https://b.stripecdn.com/stripethirdparty-srv/${attributeHref8}/v32.1/HCaptchaInvisible.html?id=77033ec1-a16c-4c06-9e0c-634120728f96&origin=https://js.stripe.com${origins2}`, + { + method: "GET", + headers: { + "host": "b.stripecdn.com", + "connection": "keep-alive", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"macOS\"", + "upgrade-insecure-requests": currencyConfigPromosBusinessOneDollarAmount, + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "navigate", + "sec-fetch-dest": variable14, + "sec-fetch-storage-access": state, + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + } + } + ) + const body = await response.text() + return { + variable56: response.headers.get("age") + } + } + async function executeRequest0373({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs3230069703ValueExpiryseconds, + attributeWidth1, + variable32, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + orderedPaymentMethodTypes1 + }) { + console.log("Executing request 0373") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&events=${JSON.stringify( + [ + { + "event_name": "elements.pr.query_strategy", + "created": "1773809676897", + "batching_enabled": variable4, + "event_count": statsigpayloadDynamicConfigs3230069703ValueExpiryseconds, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "1d841120-0fc4-4866-abab-39165c119f9d", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "frame_width": "1185", + "queryStrategy": "", + "usesButtonElement": attributeAriaExpanded + }, + { + "event_name": "elements.pr.can_make_payment", + "created": "1773809676898", + "batching_enabled": variable4, + "event_count": attributeWidth1, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "d925f8ab-ed8a-47da-bc72-16ff0ccdc34b", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "frame_width": "1185", + "usesButtonElement": attributeAriaExpanded, + "requestShipping": attributeAriaExpanded + }, + { + "event_name": "elements.invalid_payment_method_type", + "created": "1773809676898", + "batching_enabled": variable4, + "event_count": "17", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "f3904b65-19d0-42e5-bc3c-7f02a7e8952e", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "frame_width": "1185", + "paymentMethodType": orderedPaymentMethodTypes1, + "reason": "wallet_disallowed_from_options" + }, + { + "event_name": "elements.dispatch_before_store", + "created": "1773809676930", + "batching_enabled": variable4, + "event_count": "18", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "c4898137-b6f7-4d9a-8035-5e6753fd13b2", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "frame_width": "1185" + }, + { + "event_name": "elements.update_elements_options", + "created": "1773809676930", + "batching_enabled": variable4, + "event_count": variable32, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "c7c29060-35c4-45d5-9bd7-b5be3767ae57", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "frame_width": "1185", + "auto_logged": variable4 + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0373({ + variable12, + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueSidebarPaginationPageSize, + statsigpayloadDynamicConfigs349489989ValueOneCharacterAnimationDurationMs, + 7, + statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + statsigpayloadDynamicConfigs3317473948ValueModelSlugMaxPollingDurationsO1Pro, + attributeType, + attributeAriaExpanded, + variable4, + urlAudience, + checkoutSessionId, + attributeHref10, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary, + configId, + id, + locale, + currency, + variable40, + emailDomainType, + object2, + mode, + connectorsSupportedAuthOidcScopesSupported1, + checkoutProvider + }) { + console.log("Executing request 0373") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&events=${JSON.stringify( + [ + { + "event_name": "rum.stripejs", + "created": "1773809676874", + "batching_enabled": variable4, + "event_count": statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + "event_id": "a5e63c03-d3e6-4c4a-a815-05692f55c264", + "team_identifier": "t_7", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "requestId": variable40, + "tokenType": emailDomainType, + "url": `https://${attributeHref10}/${urlAudience}/payment_pages/${checkoutSessionId}/init`, + "status": statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + "start": "1773809674534", + "end": "1773809676874", + "resourceTiming[startTime]": "5748", + "resourceTiming[duration]": "2338.6", + "resourceTiming[redirectStart]": variable12, + "resourceTiming[redirectEnd]": variable12, + "resourceTiming[fetchStart]": "5748", + "resourceTiming[domainLookupStart]": "5748", + "resourceTiming[domainLookupEnd]": "5748", + "resourceTiming[connectStart]": "5748", + "resourceTiming[connectEnd]": "5748", + "resourceTiming[secureConnectionStart]": "5748", + "resourceTiming[requestStart]": "5748.5", + "resourceTiming[responseStart]": "8085.8", + "resourceTiming[responseEnd]": "8086.6", + "paymentUserAgent": "stripe.js/5e596c82e6; stripe-js-v3/5e596c82e6" + }, + { + "event_name": "elements.init_payment_page.success", + "created": "1773809676876", + "batching_enabled": variable4, + "event_count": statsigpayloadDynamicConfigs216497991ValueSidebarPaginationPageSize, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "334f3667-bbe3-4260-a25f-a8b0e1c7d380", + "team_identifier": "t_0", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "frame_width": statsigpayloadDynamicConfigs3317473948ValueModelSlugMaxPollingDurationsO1Pro, + "object_id": id, + "object_kind": object2, + "object_type": "undefined", + "object_livemode": variable4 + }, + { + "event_name": "elements.light_experiment_exposure", + "created": "1773809676879", + "batching_enabled": variable4, + "event_count": statsigpayloadDynamicConfigs349489989ValueOneCharacterAnimationDurationMs, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "1f7cfdf6-2dc6-4046-b2e9-c430e329766d", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "frame_width": statsigpayloadDynamicConfigs3317473948ValueModelSlugMaxPollingDurationsO1Pro, + "dimensions-os": "MacOS", + "dimensions-browserFamily": derivedFieldsBrowsername, + "dimensions-deviceType": "desktop", + "population": currencyConfigPromosBusinessOneDollarAmount, + "version_id": currencyConfigPromosBusinessOneDollarAmount, + "is_qualified": variable4, + "variant": statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary, + "token": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "experiment_retrieved": "sjs_light_experiment_link_ewcs_prewarm_experiment_v2", + "project": "stripe-js" + }, + { + "event_name": "elements.elements", + "created": "1773809676881", + "batching_enabled": variable4, + "event_count": 7, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "25f34943-1e05-4a4a-bc16-7e23ea45e53d", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "frame_width": statsigpayloadDynamicConfigs3317473948ValueModelSlugMaxPollingDurationsO1Pro, + "options-locale": locale, + "options-paymentMethodCreation": "manual", + "options-mode": mode, + "options-amount": variable12, + "options-paymentMethodTypes": connectorsSupportedAuthOidcScopesSupported1, + "options-currency": currency, + "options-appearance-theme": checkoutProvider, + "options-appearance-labels": "floating", + "options-appearance-variables": "", + "options-appearance-rules": "", + "stripeJsOptions-developerTools-assistant-enabled": variable4 + }, + { + "event_name": "elements.setup_store_for_elements_group", + "created": "1773809676884", + "batching_enabled": variable4, + "event_count": "9", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "25d37822-fd5f-4322-b6b5-264f6acc19f2", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "frame_width": statsigpayloadDynamicConfigs3317473948ValueModelSlugMaxPollingDurationsO1Pro, + "auto_logged": variable4 + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0373({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs1504865540ValueMaxFileSizeMb, + variable42, + variable43, + statsigpayloadLayerConfigs3850010910ValuePlusGracePeriodDays, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + locale, + statsigpayloadLayerConfigs3680755560ValuePriorityArray1 + }) { + console.log("Executing request 0373") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&events=${JSON.stringify( + [ + { + "event_name": "elements.create", + "created": "1773809676910", + "batching_enabled": variable4, + "event_count": statsigpayloadDynamicConfigs1504865540ValueMaxFileSizeMb, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "5cc0796a-6e67-47a9-821d-e1d6860951d2", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "frame_width": "1185", + "options-betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "options-componentName": statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + "options-groupId": "elements-d20c72de-2563-403f-b2b0-f08145f405e3-3822", + "options-locale": locale, + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + "element_mode": "billing", + "element_id": "address-d9ee1043-0a90-48b6-8819-70ba036e9e21" + }, + { + "event_name": "elements.register_event_listener", + "created": "1773809676911", + "batching_enabled": variable4, + "event_count": variable42, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "ba2cf077-0971-429a-9869-b7604b868705", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "frame_width": "1185", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + "name": "__private_do_not_use_spm_update_address" + }, + { + "event_name": "elements.register_event_listener", + "created": "1773809676911", + "batching_enabled": variable4, + "event_count": variable43, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "affe9b93-e74c-434e-9e11-2e9ca5ab718b", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "frame_width": "1185", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + "name": "change" + }, + { + "event_name": "elements.register_event_listener", + "created": "1773809676911", + "batching_enabled": variable4, + "event_count": statsigpayloadLayerConfigs3850010910ValuePlusGracePeriodDays, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "be739030-acb4-44f6-aa9a-4d91365402fb", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "frame_width": "1185", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + "name": "change" + }, + { + "event_name": "elements.mount", + "created": "1773809676912", + "batching_enabled": variable4, + "event_count": "29", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "0bb54804-da55-4995-b3a5-ac67c9331928", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "frame_width": "1185", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + "element_mode": "billing", + "element_id": "address-d9ee1043-0a90-48b6-8819-70ba036e9e21", + "is_mounted_in_iframe": attributeAriaExpanded, + "can_access_top": variable4, + "exclude_from_detectors": attributeAriaExpanded + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0374({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs2943229081ValueVoiceUsedWithinPastDays, + variable22, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + urlAudience, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + id, + accountSettingsAccountId, + uiMode, + statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + connectorsBrandingWebsite2, + statsigpayloadDynamicConfigs2281575548ValueSafetyUrl + }) { + console.log("Executing request 0374") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&events=${JSON.stringify( + [ + { + "event_name": "elements.custom_checkout.change_appearance", + "created": "1773809676916", + "batching_enabled": variable4, + "event_count": statsigpayloadDynamicConfigs2943229081ValueVoiceUsedWithinPastDays, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "49485bb7-4823-4515-a93a-b61d054fdc47", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "frame_width": "1185", + "baseVersion": urlAudience, + "betaVersions": "server_updates_1 manual_approval_1", + "sdkVersion": "v1_server_updates_1_manual_approval_1", + "checkoutSessionId": checkoutSessionId, + "paymentPage": id, + "livemode": variable4, + "merchant": accountSettingsAccountId, + "uiMode": uiMode + }, + { + "event_name": "elements.update_elements_options", + "created": "1773809676940", + "batching_enabled": variable4, + "event_count": "31", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "b43d2f89-36d7-4363-b3d6-8b8e8d818e1e", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "frame_width": "1185", + "auto_logged": variable4 + }, + { + "event_name": "elements.register_app_info", + "created": "1773809676941", + "batching_enabled": variable4, + "event_count": variable22, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "f0054694-3570-4cc2-a5a5-187f8da423d0", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "frame_width": "1185", + "app_info_raw": "react-stripe-js", + "app_info_url": `https://${connectorsBrandingWebsite2}/${statsigpayloadDynamicConfigs2281575548ValueSafetyUrl}/stripe-js/react`, + "app_info_version": "3.10.0" + }, + { + "event_name": "elements.register_event_listener", + "created": "1773809676918", + "batching_enabled": variable4, + "event_count": "33", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "a7c2779b-1e71-4f8e-bedb-02892c94c2d7", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "frame_width": "1185", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "name": "change" + }, + { + "event_name": "elements.register_event_listener", + "created": "1773809676918", + "batching_enabled": variable4, + "event_count": "34", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "11dd1139-2859-4904-b04d-5daa00f4c648", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "frame_width": "1185", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + "name": "change" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0375({ + currencyConfigPromosBusinessOneDollarAmount, + variable48, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + currency, + sessionId, + configId1, + experimentsDataArbId + }) { + console.log("Executing request 0375") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${currencyConfigPromosBusinessOneDollarAmount}&events=${JSON.stringify( + [ + { + "event_name": "elements.experiment_exposure", + "created": "1773809677666", + "batching_enabled": variable4, + "event_count": variable48, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "4d83b976-9da2-4137-8b3f-b1c8b7d6fcbe", + "team_identifier": "t_0", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "frame_width": "1185", + "experiment_retrieved": "elements_human_security", + "arb_id": experimentsDataArbId, + "assignment_group": statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary, + "is_assigned": variable4, + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0376({ + variable12, + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + attributeWidth, + variable50, + statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + variable51, + attributeType, + attributeAriaExpanded, + variable4, + urlAudience, + statsigpayloadLayerConfigs109457ValueOnboardingStyle, + checkoutSessionId, + attributeHref10, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + emailDomainType, + variable52, + linkSettingsLinkDisabledReasonsPaymentElementPaymentMethodMode + }) { + console.log("Executing request 0376") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&events=${JSON.stringify( + [ + { + "event_name": "elements.pr.can_make_payment_response", + "created": "1773809676918", + "batching_enabled": variable4, + "event_count": variable50, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "b1602e88-2e9d-4b9c-bc37-8d871c112b66", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "frame_width": "1185", + "cached": attributeAriaExpanded, + "duration": attributeWidth, + "amount": variable12, + "currency": currency, + "usesButtonElement": attributeAriaExpanded, + "requestShipping": attributeAriaExpanded + }, + { + "event_name": "elements.appearance.change", + "created": "1773809676924", + "batching_enabled": variable4, + "event_count": "36", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "79262591-baa4-4e24-9b9e-f4ed309f385d", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "frame_width": "1185", + "config-theme": attributeAriaExpanded, + "config-labels": attributeAriaExpanded, + "config-variables": attributeAriaExpanded, + "config-rules": attributeAriaExpanded + }, + { + "event_name": "elements.metricscontroller.timings", + "created": "1773809677264", + "batching_enabled": variable4, + "event_count": "37", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "4df673ac-a502-46e8-bf0d-3862627462ab", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "frame_width": "1185", + "timeout": attributeAriaExpanded, + "delta": variable51, + "afs": variable4, + "isCheckout": attributeAriaExpanded, + "isGuacamole": attributeAriaExpanded + }, + { + "event_name": "rum.stripejs", + "created": "1773809677661", + "batching_enabled": variable4, + "event_count": "38", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + "event_id": "278b9d2c-fe59-4ca2-a9a2-9a73b54908de", + "team_identifier": "t_7", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "requestId": variable52, + "tokenType": emailDomainType, + "url": `https://${attributeHref10}/${urlAudience}/elements/sessions`, + "status": statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + "start": "1773809676886", + "end": "1773809677661", + "resourceTiming[startTime]": "8099.7", + "resourceTiming[duration]": "767.6", + "resourceTiming[redirectStart]": variable12, + "resourceTiming[redirectEnd]": variable12, + "resourceTiming[fetchStart]": "8099.7", + "resourceTiming[domainLookupStart]": "8099.7", + "resourceTiming[domainLookupEnd]": "8099.7", + "resourceTiming[connectStart]": "8099.7", + "resourceTiming[connectEnd]": "8099.7", + "resourceTiming[secureConnectionStart]": "8099.7", + "resourceTiming[requestStart]": "8100.1", + "resourceTiming[responseStart]": "8865.1", + "resourceTiming[responseEnd]": "8867.3", + "paymentUserAgent": "stripe.js/5e596c82e6; stripe-js-v3/5e596c82e6" + }, + { + "event_name": "elements.link.settings.opt_in_and_disabled_reasons", + "created": "1773809677663", + "batching_enabled": variable4, + "event_count": "39", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "fc969612-316a-46c4-89fa-02480ee5f70c", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "frame_width": "1185", + "response_merchant_id": accountSettingsAccountId, + "default_opt_in": statsigpayloadLayerConfigs109457ValueOnboardingStyle, + "payment_element_passthrough_mode": "", + "payment_element_payment_method_mode": linkSettingsLinkDisabledReasonsPaymentElementPaymentMethodMode + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0376({ + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadLayerConfigs2128165686ValueProductsHeapWeight, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + currency, + sessionId, + configId1, + experimentsDataArbId, + experimentsDataExperimentAssignmentsCheckoutEnableRealTimeTaxIdVerificationExperiment, + experimentsDataExperimentAssignmentsOcsBuyerXpCplCurrencySymbolOptimization, + experimentsDataExperimentAssignmentsLinkGlobalHoldbackAa + }) { + console.log("Executing request 0376") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount}&events=${JSON.stringify( + [ + { + "event_name": "elements.retrieve_elements_session.success", + "created": "1773809677664", + "batching_enabled": variable4, + "event_count": statsigpayloadLayerConfigs2128165686ValueProductsHeapWeight, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "e79e97f7-d702-4a36-b42c-4b5d1fcf766a", + "team_identifier": "t_0", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "frame_width": "1185", + "object_id": "undefined", + "object_kind": "undefined", + "object_type": "undefined", + "object_livemode": variable4, + "experiments-elements_amex_cvc_completion_event": statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary, + "experiments-elements_card_brand_icons": statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary, + "experiments-elements_consumer_session_link_timeout": statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary, + "experiments-elements_hcaptcha_init_timeout": statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary, + "experiments-elements_hcaptcha_signals": statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary, + "experiments-elements_human_security": statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary, + "experiments-elements_payment_element_input_labels": statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary, + "experiments-elements_progressive_cursor_v3": statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary, + "experiments-elements_recompute_appearance_api_styles": statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary, + "experiments-elements_remove_pe_initializer": statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary, + "experiments-link_ab_test": statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary, + "experiments-link_ab_test_aa": statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary, + "experiments-link_blue_line_opt_in": experimentsDataExperimentAssignmentsCheckoutEnableRealTimeTaxIdVerificationExperiment, + "experiments-link_blue_line_opt_in_aa": experimentsDataExperimentAssignmentsOcsBuyerXpCplCurrencySymbolOptimization, + "experiments-link_dl_pe_email": statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary, + "experiments-link_dl_pe_email_aa": statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary, + "experiments-link_dl_pe_email_v2": statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary, + "experiments-link_global_holdback_aa": experimentsDataExperimentAssignmentsLinkGlobalHoldbackAa, + "experiments-link_in_prb_rtl_enablement": experimentsDataExperimentAssignmentsCheckoutEnableRealTimeTaxIdVerificationExperiment, + "experiments-link_in_prb_rtl_enablement_aa": experimentsDataExperimentAssignmentsOcsBuyerXpCplCurrencySymbolOptimization, + "experiments-meta_holdback": statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary, + "experiments-ocs_buyer_xp_elements_clover_collect_postal_code": statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary, + "experiments-ocs_buyer_xp_elements_link_ptm_ece_ordering_fix_holdback": statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary, + "experiments-paypal_payment_handler": statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary + }, + { + "event_name": "elements.experiment_exposure", + "created": "1773809677665", + "batching_enabled": variable4, + "event_count": "41", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "2de9665b-6ea7-4a16-8a5f-198b4502f0c1", + "team_identifier": "t_0", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "frame_width": "1185", + "experiment_retrieved": "elements_hcaptcha_init_timeout", + "arb_id": experimentsDataArbId, + "assignment_group": statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary, + "is_assigned": variable4, + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0376({ + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs2179180337ValueMaxAttempts, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable28, + variable29 + }) { + console.log("Executing request 0376") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs2179180337ValueMaxAttempts}&events=${JSON.stringify( + [ + { + "event_name": "elements.link.get_http_cookie.success", + "created": "1773809676344", + "batching_enabled": variable4, + "event_count": statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "f84c11e5-12b6-4851-a0c3-9b44854c4a9c", + "team_identifier": "t_6", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "link_api_client": variable4, + "publishable_key": publishableKey, + "key": publishableKey, + "request_surface": "web_elements_controller", + "livemode": variable4, + "routing": variable28, + "session_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "browser_storage_strategies": "sessionStorage localStorage httpCookie", + "deploy_status_time_to_fetch_ms": "629", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elapsed_time": "1809" + }, + { + "event_name": "elements.link.browser_storage.get.success", + "created": "1773809676345", + "batching_enabled": variable4, + "event_count": statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "936579b2-72ac-4e3c-8fae-cd9aca81b8c8", + "team_identifier": "t_6", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "link_api_client": variable4, + "publishable_key": publishableKey, + "key": publishableKey, + "request_surface": "web_elements_controller", + "livemode": variable4, + "routing": variable28, + "session_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "browser_storage_strategies": "sessionStorage localStorage httpCookie", + "deploy_status_time_to_fetch_ms": "629", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX" + }, + { + "event_name": "elements.link.browser_storage.get.success", + "created": "1773809676886", + "batching_enabled": variable4, + "event_count": statsigpayloadDynamicConfigs2179180337ValueMaxAttempts, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "1d1db26f-38e8-409f-b050-0dbcb2108ef6", + "team_identifier": "t_6", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "link_api_client": variable4, + "publishable_key": publishableKey, + "key": publishableKey, + "request_surface": "web_elements_controller", + "livemode": variable4, + "routing": variable28, + "session_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "browser_storage_strategies": "sessionStorage localStorage httpCookie", + "deploy_status_time_to_fetch_ms": "629", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX" + }, + { + "event_name": "elements.link.attempt_log_in.using_email.pre_warm.start", + "created": "1773809676926", + "batching_enabled": variable4, + "event_count": statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "ce69715b-248d-4145-93f2-59bd11cffc69", + "team_identifier": "t_6", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "link_api_client": variable4, + "publishable_key": publishableKey, + "key": publishableKey, + "request_surface": "web_elements_controller", + "livemode": variable4, + "routing": variable28, + "session_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "browser_storage_strategies": "sessionStorage localStorage httpCookie", + "deploy_status_time_to_fetch_ms": "629", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0377({ + currencyConfigPromosBusinessOneDollarAmount, + variable14, + variable24, + connectorsSupportedAuthTokenUrl, + state + }) { + console.log("Executing request 0377") + const response = await fetch( + `https://js.stripe.com/${connectorsSupportedAuthTokenUrl}/google-maps-inner-f35ca440f0442e08466c58a66c17aa67.html`, + { + method: "GET", + headers: { + "host": "js.stripe.com", + "connection": "keep-alive", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"macOS\"", + "upgrade-insecure-requests": currencyConfigPromosBusinessOneDollarAmount, + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "navigate", + "sec-fetch-dest": variable14, + "sec-fetch-storage-access": state, + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0378({ + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary, + configId, + accountSettingsAccountId, + currency, + statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + sessionId, + configId1, + experimentsDataArbId, + experimentsDataExperimentAssignmentsCheckoutEnableRealTimeTaxIdVerificationExperiment + }) { + console.log("Executing request 0378") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount}&events=${JSON.stringify( + [ + { + "event_name": "elements.loader_ui_resolved", + "created": "1773809680173", + "batching_enabled": variable4, + "event_count": "55", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "d16c266f-b9f4-447a-b69b-fdcc95d11acc", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "frame_width": "1185", + "variant": experimentsDataExperimentAssignmentsCheckoutEnableRealTimeTaxIdVerificationExperiment, + "start": "53794", + "delay": "3262" + }, + { + "event_name": "elements.link.not_logged_in_with_auth_session_client_secret", + "created": "1773809680192", + "batching_enabled": variable4, + "event_count": "56", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "339b2ac1-dea2-46ec-b034-396ec259fed0", + "team_identifier": "t_0", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "frame_width": "1185" + }, + { + "event_name": "elements.experiment_exposure", + "created": "1773809680193", + "batching_enabled": variable4, + "event_count": "57", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "f8d4b476-1390-4e90-8b5d-3f4620d0d9bc", + "team_identifier": "t_0", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "frame_width": "494", + "experiment_retrieved": "elements_recompute_appearance_api_styles", + "assignment_group": statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary, + "arb_id": experimentsDataArbId, + "dimensions-appearance_configured": variable4, + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + "element_mode": "billing", + "element_id": "address-d9ee1043-0a90-48b6-8819-70ba036e9e21" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0378({ + variable12, + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + variable56, + variable57, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary, + configId, + accountSettingsAccountId, + locale, + currency, + emailDomainType, + sessionId, + configId1, + experimentsDataArbId + }) { + console.log("Executing request 0378") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount}&events=${JSON.stringify( + [ + { + "event_name": "elements.resolved_session_locale", + "created": "1773809677666", + "batching_enabled": variable4, + "event_count": variable56, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "16f5731f-7453-491e-b690-602d69d348de", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "frame_width": "1185", + "input_locale": locale, + "resolved_locale": locale + }, + { + "event_name": "elements.experiment_exposure", + "created": "1773809677673", + "batching_enabled": variable4, + "event_count": variable57, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "17fd8999-5af8-439b-8ff9-8e89f0c02519", + "team_identifier": "t_0", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "frame_width": variable12, + "experiment_retrieved": "link_ab_test", + "arb_id": experimentsDataArbId, + "assignment_group": statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary, + "dimensions-intent_type": "deferred_intent_subscription", + "dimensions-dvs_provided": "", + "dimensions-is_returning_link_user": attributeAriaExpanded, + "dimensions-recognition_type": emailDomainType, + "dimensions-is_link_holdback_manager": variable4, + "is_assigned": variable4, + "element": "" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0378({ + variable12, + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + connectorsBrandingPrivacyPolicyV, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + locale, + currency, + mode, + connectorsSupportedAuthOidcScopesSupported1, + checkoutProvider, + sessionId, + configId1, + prefillSelectorsDefaultValuesEmail, + prefillSelectorsDefaultValuesEmail1, + prefillSelectorsDefaultValuesEmail2, + prefillSelectorsDefaultValuesEmail3, + prefillSelectorsDefaultValuesEmail4, + prefillSelectorsDefaultValuesEmail5, + prefillSelectorsDefaultValuesEmail6, + prefillSelectorsDefaultValuesEmail7, + prefillSelectorsDefaultValuesEmail8, + prefillSelectorsDefaultValuesEmail9 + }) { + console.log("Executing request 0378") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&events=${JSON.stringify( + [ + { + "event_name": "elements.link.attempt_log_in.store_elements_group.start", + "created": "1773809677674", + "batching_enabled": variable4, + "event_count": "45", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "075321c8-4859-4c75-9eac-a1ffbae5476a", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "frame_width": "1185" + }, + { + "event_name": "elements.link.global_holdback.lookup_failure", + "created": "1773809677677", + "batching_enabled": variable4, + "event_count": connectorsBrandingPrivacyPolicyV, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "0a040870-9617-4c6f-b176-534765642c28", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "frame_width": "1185" + }, + { + "event_name": "elements.update", + "created": "1773809677679", + "batching_enabled": variable4, + "event_count": "47", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "a6d21cef-1c0f-446d-bd7f-798deb745049", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "frame_width": "1185", + "options-locale": locale, + "options-disallowedCardBrands": "", + "options-mode": mode, + "options-amount": variable12, + "options-paymentMethodTypes": connectorsSupportedAuthOidcScopesSupported1, + "options-currency": currency + }, + { + "event_name": "elements.update", + "created": "1773809677679", + "batching_enabled": variable4, + "event_count": "48", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "3582dd81-fa5c-4892-a79f-4e7c27b78afa", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "frame_width": "1185", + "options-appearance-theme": checkoutProvider, + "options-appearance-labels": "floating", + "options-appearance-variables": "", + "options-appearance-rules": "" + }, + { + "event_name": "elements.link.no_code_default_values.recall", + "created": "1773809677978", + "batching_enabled": variable4, + "event_count": "49", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "bfc97ca7-95b7-4d26-ab12-a8366a5ae4d9", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "frame_width": "1185", + "results": JSON.stringify( + [ + { + "selector": prefillSelectorsDefaultValuesEmail, + "result": "not_found", + "selectorSource": "l3", + "atTime": "load" + }, + { + "selector": prefillSelectorsDefaultValuesEmail1, + "result": "not_found", + "selectorSource": "l3", + "atTime": "load" + }, + { + "selector": prefillSelectorsDefaultValuesEmail2, + "result": "not_found", + "selectorSource": "l3", + "atTime": "load" + }, + { + "selector": prefillSelectorsDefaultValuesEmail3, + "result": "not_found", + "selectorSource": "l3", + "atTime": "load" + }, + { + "selector": prefillSelectorsDefaultValuesEmail4, + "result": "not_found", + "selectorSource": "l3", + "atTime": "load" + }, + { + "selector": prefillSelectorsDefaultValuesEmail5, + "result": "not_found", + "selectorSource": "l3", + "atTime": "load" + }, + { + "selector": prefillSelectorsDefaultValuesEmail6, + "result": "not_found", + "selectorSource": "l3", + "atTime": "load" + }, + { + "selector": prefillSelectorsDefaultValuesEmail7, + "result": "not_found", + "selectorSource": "l3", + "atTime": "load" + }, + { + "selector": prefillSelectorsDefaultValuesEmail8, + "result": "not_found", + "selectorSource": "l3", + "atTime": "load" + }, + { + "selector": prefillSelectorsDefaultValuesEmail9, + "result": "not_found", + "selectorSource": "l3", + "atTime": "load" + } + ] + ), + "executionTime": statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0379({ + currencyConfigPromosBusinessOneDollarAmount, + variable14, + variable24, + connectorsSupportedAuthTokenUrl, + state + }) { + console.log("Executing request 0379") + const response = await fetch( + `https://js.stripe.com/${connectorsSupportedAuthTokenUrl}/elements-inner-autocomplete-suggestions-341a9f812f43b1435385402113503a3c.html`, + { + method: "GET", + headers: { + "host": "js.stripe.com", + "connection": "keep-alive", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"macOS\"", + "upgrade-insecure-requests": currencyConfigPromosBusinessOneDollarAmount, + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "navigate", + "sec-fetch-dest": variable14, + "sec-fetch-storage-access": state, + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + } + } + ) + const body = await response.text() + return { + variable92: response.headers.get("age") + } + } + async function executeRequest0380({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs916292397ValueMaxImpressions, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + sessionId, + configId1 + }) { + console.log("Executing request 0380") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&events=${JSON.stringify( + [ + { + "event_name": "elements.initialize_passive_captcha_trigger.timeout", + "created": "1773809678974", + "batching_enabled": variable4, + "event_count": statsigpayloadDynamicConfigs916292397ValueMaxImpressions, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "7fdfd22d-e4ed-446a-9b62-b3d3eb376e39", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "frame_width": "1185" + }, + { + "event_name": "elements.event.load", + "created": "1773809680134", + "batching_enabled": variable4, + "event_count": "51", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "c0880e5d-b227-4c83-909a-676e72ae106d", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + "element_mode": "billing", + "element_id": "address-d9ee1043-0a90-48b6-8819-70ba036e9e21" + }, + { + "event_name": "elements.get_elements_state", + "created": "1773809680149", + "batching_enabled": variable4, + "event_count": "52", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "00215574-e4ab-4c1d-9123-f839af3be504", + "team_identifier": "t_0", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "frame_width": "1185" + }, + { + "event_name": "elements.get_appearance_variables", + "created": "1773809680150", + "batching_enabled": variable4, + "event_count": "53", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "c30e37c4-9fba-42a5-a3fe-9ba31e7b91a8", + "team_identifier": "t_0", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "frame_width": "1185" + }, + { + "event_name": "elements.set_appearance_stylesheet", + "created": "1773809680168", + "batching_enabled": variable4, + "event_count": "54", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "443fefea-9319-4395-a319-cd4ba1a49f0a", + "team_identifier": "t_0", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "frame_width": "1185" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0381({ + systemHintsLogoAttributeFill, + urlAudience + }) { + console.log("Executing request 0381") + const response = await fetch( + `https://content-autofill.googleapis.com/${urlAudience}/pages/ChVDaHJvbWUvMTQ1LjAuNzYzMi4xMTkSSgkwZhFUMdV1zhIFDZRU-s8SBQ2gedmmEgUN4PWg3xIFDXdBImcSBQ2cDn0zEgUNkWGVThIFDToMhvISBQ3PBHnYIZN-Wgl2SINUEkoJ7vsbgZX5vX8SBQ2UVPrPEgUNoHnZphIFDeD1oN8SBQ13QSJnEgUNnA59MxIFDZFhlU4SBQ06DIbyEgUNzwR52CGTfloJdkiDVBi3qcoB??alt=proto`, + { + method: "GET", + headers: { + "host": "content-autofill.googleapis.com", + "connection": "keep-alive", + "x-goog-encode-response-if-executable": "base64", + "x-goog-api-key": "AIzaSyDr2UxVnv_U85AbhhY8XSHSIavUW0DC-sY", + "x-client-data": "CJe2yQEIpbbJAQipncoBCIziygEIlqHLAQiGoM0BCKKhzwEI0bDPAQjQsc8BCKa2zwEI1rfPAQjkuM8BCMK5zwEY7IXPARiKqc8B", + "sec-fetch-site": systemHintsLogoAttributeFill, + "sec-fetch-mode": "no-cors", + "sec-fetch-dest": "empty", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + } + } + ) + const body = await response.text() + return { + variable78: response.headers.get("content-length") + } + } + async function executeRequest0381({ + variable12, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + variable62, + statsigpayloadDynamicConfigs3689744552ValueLookbackDays, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + sessionId, + configId1 + }) { + console.log("Executing request 0381") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&events=${JSON.stringify( + [ + { + "event_name": "elements.appearance.border_adjust", + "created": "1773809680206", + "batching_enabled": variable4, + "event_count": variable62, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "c14dd8c6-2ce5-4a9e-8203-7b878176f46e", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + "element_mode": "billing", + "element_id": "address-d9ee1043-0a90-48b6-8819-70ba036e9e21" + }, + { + "event_name": "elements.event.ready", + "created": "1773809680207", + "batching_enabled": variable4, + "event_count": "59", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "9bb7fde2-e3e2-43da-bcb3-c86da23059ae", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + "element_mode": "billing", + "element_id": "address-d9ee1043-0a90-48b6-8819-70ba036e9e21" + }, + { + "event_name": "elements.appearance.border_adjust", + "created": "1773809680220", + "batching_enabled": variable4, + "event_count": statsigpayloadDynamicConfigs3689744552ValueLookbackDays, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "fbcb2a56-601b-449d-8659-60a36707e342", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + "element_mode": "billing", + "element_id": "address-d9ee1043-0a90-48b6-8819-70ba036e9e21" + }, + { + "event_name": "elements.parent_visible", + "created": "1773809680209", + "batching_enabled": variable4, + "event_count": "61", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "e873f806-453e-404a-8869-c1d2d99c0829", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "frame_width": "1185", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray1 + }, + { + "event_name": "elements.timings", + "created": "1773809680665", + "batching_enabled": variable4, + "event_count": "62", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "c0f7d8da-e091-4d28-a7d2-04bd56b7b203", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "frame_width": "494", + "dom_loading": "744", + "dom_interactive": "748", + "dom_complete": "3752", + "since_sjs_load": "11445", + "since_stripe_create": "11425", + "since_group_create": "3327", + "since_store": "2529", + "since_create": "3298", + "since_mount": "3294", + "since_load": "71", + "since_loaderstart": "34", + "since_custom_checkout_init": "11417", + "since_custom_checkout_sdk_create": "11416", + "since_custom_checkout_sdk_ready": "3325", + "since_page_load": "57088", + "loader_enabled": variable4, + "since_fetch": "3294", + "resource_timings-phone-numbers-lib.js-duration": variable12, + "resource_timings-phone-numbers-lib.js-transfer_size": variable12, + "resource_timings-phone-numbers-lib.js-tcp_handshake_duration": variable12, + "resource_timings-phone-numbers-lib.js-dns_lookup_duration": variable12, + "resource_timings-phone-numbers-lib.js-redirect_duration": "", + "resource_timings-phone-numbers-lib.js-request_duration": variable12, + "resource_timings-phone-numbers-lib.js-response_duration": variable12, + "resource_timings-phone-numbers-lib.js-tls_negotiation_duration": variable12, + "resource_timings-phone-numbers-lib.js-fetch_duration": variable12, + "resource_timings-phone-numbers-lib.js-service_worker_duration": "", + "resource_timings-phone-numbers-lib.js-raw_size": "2780", + "resource_timings-phone-numbers-lib.js-compressed": attributeAriaExpanded, + "resource_timings-phone-numbers-lib.js-cached_locally": variable4, + "resource_timings-phone-numbers-lib.js-next_hop_protocol": "http/1.1", + "resource_timings-phone-numbers-lib.js-is_http3": attributeAriaExpanded, + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + "element_mode": "billing", + "element_id": "address-d9ee1043-0a90-48b6-8819-70ba036e9e21" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0382({ + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadDynamicConfigs216497991ValueSidebarPaginationPageSize, + statsigpayloadDynamicConfigs349489989ValueOneCharacterAnimationDurationMs, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable28, + variable29 + }) { + console.log("Executing request 0382") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount}&events=${JSON.stringify( + [ + { + "event_name": "elements.link.attempt_log_in_using_stored_credentials.start", + "created": "1773809680191", + "batching_enabled": variable4, + "event_count": statsigpayloadDynamicConfigs216497991ValueSidebarPaginationPageSize, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "0e60067e-dd68-4d63-80b8-65f7f120f8c3", + "team_identifier": "t_6", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "link_api_client": variable4, + "publishable_key": publishableKey, + "key": publishableKey, + "request_surface": "web_elements_controller", + "livemode": variable4, + "routing": variable28, + "session_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "browser_storage_strategies": "sessionStorage localStorage httpCookie", + "deploy_status_time_to_fetch_ms": "629", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX" + }, + { + "event_name": "elements.link.attempt_log_in.using_email.no_credentials.start", + "created": "1773809680191", + "batching_enabled": variable4, + "event_count": statsigpayloadDynamicConfigs349489989ValueOneCharacterAnimationDurationMs, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "5569d002-5345-4f16-b85b-12174434f6cf", + "team_identifier": "t_6", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "link_api_client": variable4, + "publishable_key": publishableKey, + "key": publishableKey, + "request_surface": "web_elements_controller", + "livemode": variable4, + "routing": variable28, + "session_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "browser_storage_strategies": "sessionStorage localStorage httpCookie", + "deploy_status_time_to_fetch_ms": "629", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0382({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + sessionId, + configId1 + }) { + console.log("Executing request 0382") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${currencyConfigPromosBusinessOneDollarAmount}&events=${JSON.stringify( + [ + { + "event_name": "elements.update_payment_page", + "created": "1773809680688", + "batching_enabled": variable4, + "event_count": "63", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "4e36c530-ff7b-4b62-91c4-6cae98e03c98", + "team_identifier": "t_0", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "frame_width": "1185", + "auto_logged": variable4 + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0382({ + currencyConfigPromosBusinessOneDollarAmount, + origins2, + variable14, + state, + attributeHref8 + }) { + console.log("Executing request 0382") + const response = await fetch( + `https://b.stripecdn.com/stripethirdparty-srv/${attributeHref8}/v32.1/GoogleMaps.html?id=e3ca2640-7500-477c-8203-85f612f9a359&origin=https://js.stripe.com${origins2}`, + { + method: "GET", + headers: { + "host": "b.stripecdn.com", + "connection": "keep-alive", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"macOS\"", + "upgrade-insecure-requests": currencyConfigPromosBusinessOneDollarAmount, + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "navigate", + "sec-fetch-dest": variable14, + "sec-fetch-storage-access": state, + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0383({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + 7, + statsigpayloadDynamicConfigs216497991ValueOutdatedRoomBootstrapMessagesCount, + statsigpayloadDynamicConfigs3165814200ValueMaxRetryCount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable28, + variable29 + }) { + console.log("Executing request 0383") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&events=${JSON.stringify( + [ + { + "event_name": "elements.link.attempt_log_in_using_stored_credentials.start", + "created": "1773809682358", + "batching_enabled": variable4, + "event_count": 7, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "6af9033b-1ecd-4d8a-92b6-d8c168e63ac7", + "team_identifier": "t_6", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "link_api_client": variable4, + "publishable_key": publishableKey, + "key": publishableKey, + "request_surface": "web_elements_controller", + "livemode": variable4, + "routing": variable28, + "session_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "browser_storage_strategies": "sessionStorage localStorage httpCookie", + "deploy_status_time_to_fetch_ms": "629", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX" + }, + { + "event_name": "elements.link.attempt_log_in.using_email.no_credentials.start", + "created": "1773809682359", + "batching_enabled": variable4, + "event_count": "9", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "fa585f42-9193-4db4-be80-2bb426694ff6", + "team_identifier": "t_6", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "link_api_client": variable4, + "publishable_key": publishableKey, + "key": publishableKey, + "request_surface": "web_elements_controller", + "livemode": variable4, + "routing": variable28, + "session_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "browser_storage_strategies": "sessionStorage localStorage httpCookie", + "deploy_status_time_to_fetch_ms": "629", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX" + }, + { + "event_name": "elements.link.attempt_log_in_using_stored_credentials.start", + "created": "1773809682375", + "batching_enabled": variable4, + "event_count": statsigpayloadDynamicConfigs216497991ValueOutdatedRoomBootstrapMessagesCount, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "92b277fa-0073-4a81-a703-a8a0a6c71bbb", + "team_identifier": "t_6", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "link_api_client": variable4, + "publishable_key": publishableKey, + "key": publishableKey, + "request_surface": "web_elements_controller", + "livemode": variable4, + "routing": variable28, + "session_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "browser_storage_strategies": "sessionStorage localStorage httpCookie", + "deploy_status_time_to_fetch_ms": "629", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX" + }, + { + "event_name": "elements.link.attempt_log_in.using_email.no_credentials.start", + "created": "1773809682375", + "batching_enabled": variable4, + "event_count": "11", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "4862a534-22be-4f51-8518-944fcbb60209", + "team_identifier": "t_6", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "link_api_client": variable4, + "publishable_key": publishableKey, + "key": publishableKey, + "request_surface": "web_elements_controller", + "livemode": variable4, + "routing": variable28, + "session_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "browser_storage_strategies": "sessionStorage localStorage httpCookie", + "deploy_status_time_to_fetch_ms": "629", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX" + }, + { + "event_name": "elements.link.attempt_log_in.using_email.start", + "created": "1773809682375", + "batching_enabled": variable4, + "event_count": statsigpayloadDynamicConfigs3165814200ValueMaxRetryCount, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "15a8f1b9-049a-469c-8528-38a242709c76", + "team_identifier": "t_6", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "link_api_client": variable4, + "publishable_key": publishableKey, + "key": publishableKey, + "request_surface": "web_elements_controller", + "livemode": variable4, + "routing": variable28, + "session_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "browser_storage_strategies": "sessionStorage localStorage httpCookie", + "deploy_status_time_to_fetch_ms": "629", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0384({ + attributeType, + urlAudience, + checkoutSessionId, + attributeHref10 + }) { + console.log("Executing request 0384") + const response = await fetch( + `https://${attributeHref10}/${urlAudience}/payment_pages/${checkoutSessionId}`, + { + method: "POST", + headers: { + "host": attributeHref10, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: "tax_region[country]=US&elements_session_client[client_betas][0]=custom_checkout_server_updates_1&elements_session_client[client_betas][1]=custom_checkout_manual_approval_1&elements_session_client[elements_init_source]=custom_checkout&elements_session_client[referrer_host]=chatgpt.com&elements_session_client[session_id]=elements_session_1aCZ5XSL21u&elements_session_client[stripe_js_id]=e9ea369f-4f2d-4a53-b21a-1abbc01b2820&elements_session_client[locale]=zh&elements_session_client[is_aggregation_expected]=false&client_attribution_metadata[merchant_integration_additional_elements][0]=payment&client_attribution_metadata[merchant_integration_additional_elements][1]=address&key=pk_live_51HOrSwC6h1nxGoI3lTAgRjYVrz4dU3fVOabyCcKR3pbEJguCVAlqCxdxCUvoRh1XWwRacViovU3kLKvpkjh7IqkW00iXQsjo3n&_stripe_version=2025-03-31.basil%3B+checkout_server_update_beta%3Dv1%3B+checkout_manual_approval_preview%3Dv1" + } + ) + const body = await response.text() + return { + variable68: response.headers.get("original-request") + } + } + async function executeRequest0385({ + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadLayerConfigs684023316ValueMemoryAlmostFullThreshold, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + currency, + sessionId, + configId1, + experimentsDataArbId + }) { + console.log("Executing request 0385") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount}&events=${JSON.stringify( + [ + { + "event_name": "elements.link.payment_element.integration_type", + "created": "1773809682396", + "batching_enabled": variable4, + "event_count": "79", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "f6cc0128-6c35-444a-bbcf-9858cd43e4fa", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "request_surface": "web_link_authentication_in_payment_element", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.experiment_exposure", + "created": "1773809682402", + "batching_enabled": variable4, + "event_count": statsigpayloadLayerConfigs684023316ValueMemoryAlmostFullThreshold, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "f00fa867-a82b-43fa-894b-c6d4fa90aab0", + "team_identifier": "t_0", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "experiment_retrieved": "elements_card_brand_icons", + "assignment_group": statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary, + "arb_id": experimentsDataArbId, + "dimensions-layout_type_payment_element": "tabs", + "dimensions-card_only_payment_element": variable4, + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0385({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + currency, + sessionId, + configId1, + siteKey, + passiveCaptchaSiteKey, + linkSettingsHcaptchaSiteKey + }) { + console.log("Executing request 0385") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&events=${JSON.stringify( + [ + { + "event_name": "elements.captcha.passive.init", + "created": "1773809682288", + "batching_enabled": variable4, + "event_count": "64", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "50439fe6-fdbe-4d65-9c36-856820b0e3c4", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "frame_width": "1185", + "duration": "5390", + "site_key": siteKey + }, + { + "event_name": "elements.captcha.passive.init", + "created": "1773809682288", + "batching_enabled": variable4, + "event_count": "65", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "951e1faa-357c-4f7f-8905-3cfe9b273979", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "frame_width": "1185", + "duration": "3314", + "site_key": passiveCaptchaSiteKey + }, + { + "event_name": "elements.captcha.passive.init", + "created": "1773809682288", + "batching_enabled": variable4, + "event_count": "66", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "e1c707f1-7021-44c5-83ff-4d6a233d25bc", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "frame_width": "1185", + "duration": "3314", + "site_key": linkSettingsHcaptchaSiteKey + }, + { + "event_name": "elements.event.load", + "created": "1773809682323", + "batching_enabled": variable4, + "event_count": "67", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "8f1b774d-d729-4c99-9567-905b8fa900d3", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.get_elements_state", + "created": "1773809682335", + "batching_enabled": variable4, + "event_count": "68", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "364efea1-9896-4c30-8d36-6a6ab4ccc147", + "team_identifier": "t_0", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "frame_width": "1185" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0385({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadLayerConfigs1368081792ValueTatortotContextualUpsellFrequencyWindowLengthHours, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + currency, + sessionId, + configId1, + linkSettingsLinkMode + }) { + console.log("Executing request 0385") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&events=${JSON.stringify( + [ + { + "event_name": "elements.get_appearance_variables", + "created": "1773809682336", + "batching_enabled": variable4, + "event_count": "69", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "0aa0c405-8a03-4926-88e5-e6edeb43b6ea", + "team_identifier": "t_0", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "frame_width": "1185" + }, + { + "event_name": "elements.appearance.border_adjust", + "created": "1773809682354", + "batching_enabled": variable4, + "event_count": "70", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "59f14a52-82e5-4b01-80ce-b4c0353fc1b5", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.link.not_logged_in_with_auth_session_client_secret", + "created": "1773809682359", + "batching_enabled": variable4, + "event_count": "71", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "2c65713c-4ede-4a4b-acbd-28ca2cda477b", + "team_identifier": "t_0", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "frame_width": "1185" + }, + { + "event_name": "elements.appearance.border_adjust", + "created": "1773809682367", + "batching_enabled": variable4, + "event_count": statsigpayloadLayerConfigs1368081792ValueTatortotContextualUpsellFrequencyWindowLengthHours, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "3b0d9d34-ba92-4cfa-b049-09b9b231759a", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.link.enabled", + "created": "1773809682373", + "batching_enabled": variable4, + "event_count": "73", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "2b4d5775-7dfd-45f5-8495-f77a709c05d4", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "frame_width": "494", + "mode": linkSettingsLinkMode, + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0386({ + systemHintsLogoAttributeFill, + urlAudience + }) { + console.log("Executing request 0386") + const response = await fetch( + `https://content-autofill.googleapis.com/${urlAudience}/pages/ChVDaHJvbWUvMTQ1LjAuNzYzMi4xMTkSPAk-Xhv_EyUWxxIFDVNaR8USBQ2_JFKQEgUNU1pHxRIFDb8kUpASBQ1TWkfFEgUNvyRSkCEiX-CUHHxCsBi3qcoB??alt=proto`, + { + method: "GET", + headers: { + "host": "content-autofill.googleapis.com", + "connection": "keep-alive", + "x-goog-encode-response-if-executable": "base64", + "x-goog-api-key": "AIzaSyDr2UxVnv_U85AbhhY8XSHSIavUW0DC-sY", + "x-client-data": "CJe2yQEIpbbJAQipncoBCIziygEIlqHLAQiGoM0BCKKhzwEI0bDPAQjQsc8BCKa2zwEI1rfPAQjkuM8BCMK5zwEY7IXPARiKqc8B", + "sec-fetch-site": systemHintsLogoAttributeFill, + "sec-fetch-mode": "no-cors", + "sec-fetch-dest": "empty", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0387({ + urlAudience, + statsigpayloadLayerConfigs1803944755ValueExpressServerDeliveryMechanism + }) { + console.log("Executing request 0387") + const response = await fetch( + `https://newassets.hcaptcha.com/captcha/${urlAudience}/6ae4a3c801c9d99b7e0b591e01eb3ddc17b34400/${statsigpayloadLayerConfigs1803944755ValueExpressServerDeliveryMechanism}/i18n/zh.json`, + { + method: "GET", + headers: { + "host": "newassets.hcaptcha.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//b.stripecdn.com", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//b.stripecdn.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0388({ + statsigpayloadDynamicConfigs3165814200ValueMinRetryInterval, + attributeType, + variable4, + urlAudience, + oaiClientAuthSessionCookieUsernameValue, + attributeHref10, + publishableKey, + statsigpayloadDynamicConfigs349697204ValueChangelogUrl + }) { + console.log("Executing request 0388") + const response = await fetch( + `https://${attributeHref10}/${urlAudience}/consumers/sessions/lookup`, + { + method: "POST", + headers: { + "host": attributeHref10, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "accept-language": statsigpayloadDynamicConfigs349697204ValueChangelogUrl, + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd" + }, + body: `request_surface=web_elements_controller&email_address=${oaiClientAuthSessionCookieUsernameValue}&email_source=default_value&session_id=e9ea369f-4f2d-4a53-b21a-1abbc01b2820&key=${publishableKey}&do_not_log_consumer_funnel_event=${variable4}` + } + ) + const body = await response.text() + return { + variable72: response.headers.get("original-request") + } + } + async function executeRequest0388({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + statsigpayloadDynamicConfigs3685705952ValueSms, + statsigpayloadLayerConfigs109457ValueOnboardingStyle, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + currency, + sessionId, + configId1 + }) { + console.log("Executing request 0388") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&events=${JSON.stringify( + [ + { + "event_name": "elements.link.sign_up.info", + "created": "1773809682411", + "batching_enabled": variable4, + "event_count": "81", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "f043c827-b68c-4128-b1ec-6cb4a6ec6e5f", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "has_default_values_phone": attributeAriaExpanded, + "has_default_values_email": variable4, + "has_default_values_name": attributeAriaExpanded, + "has_lae_mounted": attributeAriaExpanded, + "link_default_opt_in_setting": statsigpayloadLayerConfigs109457ValueOnboardingStyle, + "buyer_detected_country": statsigpayloadDynamicConfigs3685705952ValueSms, + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.link.sign_up.enabled_by_billing_country", + "created": "1773809682412", + "batching_enabled": variable4, + "event_count": "82", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "d29596a2-c470-4f5c-a650-e487c89a1d4f", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.event.ready", + "created": "1773809682415", + "batching_enabled": variable4, + "event_count": "83", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "ae671451-cb65-483d-a86f-8f883192aa9f", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "ordered_payment_method_types_and_wallets": "card apple_pay google_pay card_wallet_link", + "exclude_from_detectors": attributeAriaExpanded, + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.get_elements_state", + "created": "1773809682416", + "batching_enabled": variable4, + "event_count": "84", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "425d9af3-1dc8-4ad7-93bb-11f18c4322b5", + "team_identifier": "t_0", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185" + }, + { + "event_name": "elements.link_holdback_update_from_payment_default_values", + "created": "1773809682417", + "batching_enabled": variable4, + "event_count": "85", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "520fcbed-64ce-4844-89fc-19caf43d9ed6", + "team_identifier": "t_0", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0388({ + systemHintsLogoAttributeFill, + urlAudience + }) { + console.log("Executing request 0388") + const response = await fetch( + `https://content-autofill.googleapis.com/${urlAudience}/pages/ChVDaHJvbWUvMTQ1LjAuNzYzMi4xMTkSewn5NlMBPIsGrBIFDbYmeQQSBQ04O5XGEgUNzUWTKxIFDT1fEakSBQ2RYZVOEgUNkWGVThIFDZFhlU4SBQ2UVPrPEgUNoHnZphIFDeD1oN8SBQ13QSJnEgUNnA59MxIFDZFhlU4SBQ06DIbyEgUNzwR52CF71u8qoh041BIuCY63x132OriMEgUNtiZ5BBIFDTg7lcYSBQ3NRZMrEgUNPV8RqSF71u8qoh041BInCRhhCdjlMUG9EgUNkWGVThIFDZFhlU4SBQ2RYZVOIXvW7yqiHTjUEkoJ7vsbgZX5vX8SBQ2UVPrPEgUNoHnZphIFDeD1oN8SBQ13QSJnEgUNnA59MxIFDZFhlU4SBQ06DIbyEgUNzwR52CF71u8qoh041Bi3qcoB??alt=proto`, + { + method: "GET", + headers: { + "host": "content-autofill.googleapis.com", + "connection": "keep-alive", + "x-goog-encode-response-if-executable": "base64", + "x-goog-api-key": "AIzaSyDr2UxVnv_U85AbhhY8XSHSIavUW0DC-sY", + "x-client-data": "CJe2yQEIpbbJAQipncoBCIziygEIlqHLAQiGoM0BCKKhzwEI0bDPAQjQsc8BCKa2zwEI1rfPAQjkuM8BCMK5zwEY7IXPARiKqc8B", + "sec-fetch-site": systemHintsLogoAttributeFill, + "sec-fetch-mode": "no-cors", + "sec-fetch-dest": "empty", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0389({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + variable38, + statsigpayloadLayerConfigs1092897457ValueMaxCommitConversationStalenessDays, + statsigpayloadDynamicConfigs3230069703ValueExpiryseconds, + attributeWidth1, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable28, + variable29 + }) { + console.log("Executing request 0389") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&events=${JSON.stringify( + [ + { + "event_name": "elements.link.lookup_cache.hit", + "created": "1773809682376", + "batching_enabled": variable4, + "event_count": variable38, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "f34c7c8a-947a-45a3-83ec-ce2696a69b23", + "team_identifier": "t_6", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "link_api_client": variable4, + "publishable_key": publishableKey, + "key": publishableKey, + "request_surface": "web_elements_controller", + "livemode": variable4, + "routing": variable28, + "session_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "browser_storage_strategies": "sessionStorage localStorage httpCookie", + "deploy_status_time_to_fetch_ms": "629", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX" + }, + { + "event_name": "elements.link.attempt_log_in_using_stored_credentials.start", + "created": "1773809682491", + "batching_enabled": variable4, + "event_count": statsigpayloadLayerConfigs1092897457ValueMaxCommitConversationStalenessDays, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "916c391a-f0d1-45cd-89c7-a0ad2f8c1bb7", + "team_identifier": "t_6", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "link_api_client": variable4, + "publishable_key": publishableKey, + "key": publishableKey, + "request_surface": "web_elements_controller", + "livemode": variable4, + "routing": variable28, + "session_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "browser_storage_strategies": "sessionStorage localStorage httpCookie", + "deploy_status_time_to_fetch_ms": "629", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX" + }, + { + "event_name": "elements.link.attempt_log_in.using_email.no_credentials.start", + "created": "1773809682492", + "batching_enabled": variable4, + "event_count": statsigpayloadDynamicConfigs3230069703ValueExpiryseconds, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "7439219c-d1bf-4263-b374-30ae7ea6690d", + "team_identifier": "t_6", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "link_api_client": variable4, + "publishable_key": publishableKey, + "key": publishableKey, + "request_surface": "web_elements_controller", + "livemode": variable4, + "routing": variable28, + "session_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "browser_storage_strategies": "sessionStorage localStorage httpCookie", + "deploy_status_time_to_fetch_ms": "629", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX" + }, + { + "event_name": "elements.link.attempt_log_in.using_email.start", + "created": "1773809682492", + "batching_enabled": variable4, + "event_count": attributeWidth1, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "3a55d972-3879-43e3-87c3-3f124ca5e2c1", + "team_identifier": "t_6", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "link_api_client": variable4, + "publishable_key": publishableKey, + "key": publishableKey, + "request_surface": "web_elements_controller", + "livemode": variable4, + "routing": variable28, + "session_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "browser_storage_strategies": "sessionStorage localStorage httpCookie", + "deploy_status_time_to_fetch_ms": "629", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX" + }, + { + "event_name": "elements.link.lookup_cache.hit", + "created": "1773809682492", + "batching_enabled": variable4, + "event_count": "17", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "ea1a0584-1a07-4be7-8648-61c816e57cca", + "team_identifier": "t_6", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "link_api_client": variable4, + "publishable_key": publishableKey, + "key": publishableKey, + "request_surface": "web_elements_controller", + "livemode": variable4, + "routing": variable28, + "session_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "browser_storage_strategies": "sessionStorage localStorage httpCookie", + "deploy_status_time_to_fetch_ms": "629", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0390({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadLayerConfigs817522959ValueChatgptInstantAnswersDynamicConfigLabradorFetcherConfigRetrievalCandidateCount, + variable65, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + locale, + currency, + connectorsSupportedAuthOidcScopesSupported1, + sessionId, + configId1 + }) { + console.log("Executing request 0390") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&events=${JSON.stringify( + [ + { + "event_name": "elements.appearance.border_adjust", + "created": "1773809682392", + "batching_enabled": variable4, + "event_count": "74", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "50588a61-c5fd-429d-9ca3-bd64797e527d", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.upe.tabs.rendered", + "created": "1773809682393", + "batching_enabled": variable4, + "event_count": statsigpayloadLayerConfigs817522959ValueChatgptInstantAnswersDynamicConfigLabradorFetcherConfigRetrievalCandidateCount, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "3f1fb553-fbd7-40b8-935c-db088784080f", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.upe.payment_method_order_data", + "created": "1773809682394", + "batching_enabled": variable4, + "event_count": "76", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "bbfce038-7590-4899-a8eb-82778765b605", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "frame_width": "494", + "payment_method_order": connectorsSupportedAuthOidcScopesSupported1, + "locale": locale, + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.link.klarna_in_link.experiment.unavailable", + "created": "1773809682394", + "batching_enabled": variable4, + "event_count": variable65, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "8e5f0e5a-42e8-4d06-b4bc-c215aef0164b", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "frame_width": "494", + "reason": "klarna_unavailable", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.link.default_integration", + "created": "1773809682395", + "batching_enabled": variable4, + "event_count": "78", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "40193380-1473-4d4e-8a3b-dd2a8ca51354", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0390({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3 + }) { + console.log("Executing request 0390") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount}&events=${JSON.stringify( + [ + { + "event_name": "link_funnel.payment_surface_rendered", + "created": "1773809682431", + "batching_enabled": variable4, + "event_count": currencyConfigPromosBusinessOneDollarAmount, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "6fd7c60b-0ac9-4c9a-a3b8-f5a336832146", + "team_identifier": "t_6", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "referrer": secureNextAuthCallbackUrlCookie3, + "public_key": publishableKey, + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "isSafariPrivateMode": attributeAriaExpanded, + "deploy_status_time_to_fetch_ms": "114", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "surface": "payment-element" + }, + { + "event_name": "link_funnel.link_server_side_enablement", + "created": "1773809682431", + "batching_enabled": variable4, + "event_count": statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "a927546c-640a-4d8c-b809-424bac7afe1a", + "team_identifier": "t_6", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "referrer": secureNextAuthCallbackUrlCookie3, + "public_key": publishableKey, + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "isSafariPrivateMode": attributeAriaExpanded, + "deploy_status_time_to_fetch_ms": "114", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "surface": "payment-element", + "enabled": variable4 + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0390({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + statsigpayloadDynamicConfigs489084288ValueOptions, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + currency, + emailDomainType, + sessionId, + configId1, + experimentsDataArbId + }) { + console.log("Executing request 0390") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&events=${JSON.stringify( + [ + { + "event_name": "elements.upe.default_values", + "created": "1773809682418", + "batching_enabled": variable4, + "event_count": "86", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "7e8ed67f-4901-43eb-8a2e-c4aa7529bf24", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "linkDefaultValuesSource": "merchant", + "acss_debit-name": attributeAriaExpanded, + "acss_debit-email": variable4, + "afterpay_clearpay-name": attributeAriaExpanded, + "afterpay_clearpay-email": variable4, + "afterpay_clearpay-shippingAsBilling": attributeAriaExpanded, + "afterpay_clearpay-country": attributeAriaExpanded, + "afterpay_clearpay-addressLine1": attributeAriaExpanded, + "afterpay_clearpay-addressLine2": attributeAriaExpanded, + "afterpay_clearpay-locality": attributeAriaExpanded, + "afterpay_clearpay-administrativeArea": attributeAriaExpanded, + "afterpay_clearpay-postalCode": attributeAriaExpanded, + "au_becs_debit-auBsb": attributeAriaExpanded, + "au_becs_debit-auBankAccountNumber": attributeAriaExpanded, + "au_becs_debit-name": attributeAriaExpanded, + "au_becs_debit-email": variable4, + "bacs_debit-name": attributeAriaExpanded, + "bacs_debit-email": variable4, + "bacs_debit-sortCode": attributeAriaExpanded, + "bacs_debit-accountNumber": attributeAriaExpanded, + "bacs_debit-shippingAsBilling": attributeAriaExpanded, + "bacs_debit-termsConfirmation": attributeAriaExpanded, + "bacs_debit-country": attributeAriaExpanded, + "bacs_debit-addressLine1": attributeAriaExpanded, + "bacs_debit-addressLine2": attributeAriaExpanded, + "bacs_debit-locality": attributeAriaExpanded, + "bacs_debit-administrativeArea": attributeAriaExpanded, + "bacs_debit-postalCode": attributeAriaExpanded, + "bancontact-name": attributeAriaExpanded, + "bancontact-email": variable4, + "blik-email": variable4, + "blik-code": attributeAriaExpanded, + "boleto-name": attributeAriaExpanded, + "boleto-email": variable4, + "boleto-taxId": attributeAriaExpanded, + "boleto-shippingAsBilling": attributeAriaExpanded, + "boleto-country": attributeAriaExpanded, + "boleto-addressLine1": attributeAriaExpanded, + "boleto-addressLine2": attributeAriaExpanded, + "boleto-locality": attributeAriaExpanded, + "boleto-administrativeArea": attributeAriaExpanded, + "boleto-postalCode": attributeAriaExpanded, + "card-number": attributeAriaExpanded, + "card-expiry": attributeAriaExpanded, + "card-cvc": attributeAriaExpanded, + "card-country": attributeAriaExpanded, + "card-postalCode": attributeAriaExpanded, + "card-name": attributeAriaExpanded, + "card-linkLegalName": attributeAriaExpanded, + "card-linkEmail": variable4, + "card-linkMobilePhone": attributeAriaExpanded, + "card-linkDefaultFormattedMobilePhone": attributeAriaExpanded, + "card-linkDefaultFormattedMobilePhoneCountry": attributeAriaExpanded, + "card-linkMobilePhoneCountry": attributeAriaExpanded, + "card-linkEmailOtpVerificationPhone": attributeAriaExpanded, + "card-linkEmailOtpVerificationPhoneCountry": attributeAriaExpanded, + "card-linkOptIn": attributeAriaExpanded, + "card-linkOptInTouched": attributeAriaExpanded, + "card-linkOptInDefaultsNonUS": attributeAriaExpanded, + "card-linkOptInIsVisibleFromFormChange": attributeAriaExpanded, + "card-linkAutofillPromptOptIn": attributeAriaExpanded, + "card-shippingAsBilling": attributeAriaExpanded, + "card-installmentPlan": attributeAriaExpanded, + "card-network": attributeAriaExpanded, + "card-setAsDefaultSavedPayment": attributeAriaExpanded, + "card-savePayment": attributeAriaExpanded, + "fpx-accountHolderType": variable4, + "fpx-bank": attributeAriaExpanded, + "id_bank_transfer-bank": attributeAriaExpanded, + "id_bank_transfer-name": attributeAriaExpanded, + "id_bank_transfer-email": variable4, + "ideal-name": attributeAriaExpanded, + "ideal-email": variable4, + "konbini-name": attributeAriaExpanded, + "konbini-email": variable4, + "konbini-phoneNumber": attributeAriaExpanded, + "pay_by_bank-bank": attributeAriaExpanded, + "pay_by_bank-bankCountry": attributeAriaExpanded, + "mb_way-phoneNumber": attributeAriaExpanded, + "mb_way-phoneCountry": variable4, + "nz_bank_account-name": attributeAriaExpanded, + "nz_bank_account-email": variable4, + "nz_bank_account-accountHolderName": attributeAriaExpanded, + "nz_bank_account-accountHolderNameOptional": attributeAriaExpanded, + "nz_bank_account-bankName": attributeAriaExpanded, + "nz_bank_account-accountNumber": attributeAriaExpanded, + "nz_bank_account-mandateAuthority": attributeAriaExpanded, + "nz_bank_account-mandateSignature": attributeAriaExpanded, + "saved-name": attributeAriaExpanded, + "saved-email": variable4, + "saved-number": attributeAriaExpanded, + "saved-expiry": attributeAriaExpanded, + "saved-cvc": attributeAriaExpanded, + "saved-country": attributeAriaExpanded, + "saved-postalCode": attributeAriaExpanded, + "saved-shippingAsBilling": attributeAriaExpanded, + "saved-network": attributeAriaExpanded, + "saved-bacsTermsConfirmation": attributeAriaExpanded, + "saved-nzBankAccountMandateAuthority": attributeAriaExpanded, + "saved-nzBankAccountMandateSignature": attributeAriaExpanded, + "sepa_debit-name": attributeAriaExpanded, + "sepa_debit-email": variable4, + "sepa_debit-iban": attributeAriaExpanded, + "sepa_debit-shippingAsBilling": attributeAriaExpanded, + "sepa_debit-country": attributeAriaExpanded, + "sepa_debit-addressLine1": attributeAriaExpanded, + "sepa_debit-addressLine2": attributeAriaExpanded, + "sepa_debit-locality": attributeAriaExpanded, + "sepa_debit-administrativeArea": attributeAriaExpanded, + "sepa_debit-postalCode": attributeAriaExpanded, + "sofort-name": attributeAriaExpanded, + "sofort-email": variable4, + "sofort-country": attributeAriaExpanded, + "link-bank": attributeAriaExpanded, + "link-linkAutofillPromptOptIn": attributeAriaExpanded, + "link-linkEmail": variable4, + "link-linkLegalName": attributeAriaExpanded, + "link-postalCode": attributeAriaExpanded, + "link-country": attributeAriaExpanded, + "link-shippingAsBilling": attributeAriaExpanded, + "link_card_brand-bank": attributeAriaExpanded, + "link_card_brand-linkAutofillPromptOptIn": attributeAriaExpanded, + "link_card_brand-linkEmail": variable4, + "link_card_brand-linkLegalName": attributeAriaExpanded, + "link_card_brand-postalCode": attributeAriaExpanded, + "link_card_brand-country": attributeAriaExpanded, + "link_card_brand-shippingAsBilling": attributeAriaExpanded, + "link_br_pix-linkEmail": variable4, + "link_br_pix-linkLegalName": attributeAriaExpanded, + "link_br_pix-linkMobilePhone": attributeAriaExpanded, + "link_br_pix-linkMobilePhoneCountry": attributeAriaExpanded, + "link_br_pix-taxId": attributeAriaExpanded, + "link_crypto-linkEmail": variable4, + "link_crypto-linkMobilePhone": attributeAriaExpanded, + "link_crypto-linkMobilePhoneCountry": attributeAriaExpanded, + "link_sepa_bank_account-linkEmail": variable4, + "link_sepa_bank_account-linkMobilePhone": attributeAriaExpanded, + "link_sepa_bank_account-linkMobilePhoneCountry": attributeAriaExpanded, + "link_sepa_bank_account-name": attributeAriaExpanded, + "link_sepa_bank_account-birthdate": attributeAriaExpanded, + "link_sepa_bank_account-shippingAsBilling": variable4, + "link_sepa_bank_account-country": attributeAriaExpanded, + "link_sepa_bank_account-addressLine1": attributeAriaExpanded, + "link_sepa_bank_account-addressLine2": attributeAriaExpanded, + "link_sepa_bank_account-locality": attributeAriaExpanded, + "link_sepa_bank_account-administrativeArea": attributeAriaExpanded, + "link_sepa_bank_account-postalCode": attributeAriaExpanded, + "link_klarna-linkEmail": variable4, + "link_klarna-linkMobilePhone": attributeAriaExpanded, + "link_klarna-linkMobilePhoneCountry": attributeAriaExpanded, + "link_klarna-linkOptInCheckboxChecked": attributeAriaExpanded, + "payto-name": attributeAriaExpanded, + "payto-email": attributeAriaExpanded, + "payto-payId": attributeAriaExpanded, + "payto-accountNumber": attributeAriaExpanded, + "payto-bsbNumber": attributeAriaExpanded, + "payto-usePayId": attributeAriaExpanded, + "pix-name": attributeAriaExpanded, + "pix-email": variable4, + "pix-taxId": attributeAriaExpanded, + "pix-country": attributeAriaExpanded, + "pix-addressLine1": attributeAriaExpanded, + "pix-addressLine2": attributeAriaExpanded, + "pix-locality": attributeAriaExpanded, + "pix-administrativeArea": attributeAriaExpanded, + "pix-postalCode": attributeAriaExpanded, + "rechnung-email": attributeAriaExpanded, + "rechnung-name": attributeAriaExpanded, + "rechnung-birthdate": attributeAriaExpanded, + "rechnung-country": attributeAriaExpanded, + "rechnung-addressLine1": attributeAriaExpanded, + "rechnung-addressLine2": attributeAriaExpanded, + "rechnung-locality": attributeAriaExpanded, + "rechnung-administrativeArea": attributeAriaExpanded, + "rechnung-postalCode": attributeAriaExpanded, + "rechnung-phoneNumber": attributeAriaExpanded, + "rechnung-phoneCountry": variable4, + "rechnung-shippingAsBilling": variable4, + "upi-vpa": attributeAriaExpanded, + "upi-name": attributeAriaExpanded, + "upi-country": attributeAriaExpanded, + "upi-addressLine1": attributeAriaExpanded, + "upi-addressLine2": attributeAriaExpanded, + "upi-locality": attributeAriaExpanded, + "upi-administrativeArea": attributeAriaExpanded, + "upi-postalCode": attributeAriaExpanded, + "upi-shippingAsBilling": variable4, + "us_bank_account-name": attributeAriaExpanded, + "us_bank_account-email": variable4, + "us_bank_account-bank": attributeAriaExpanded, + "us_bank_account-accountHolderType": variable4, + "us_bank_account-accountType": variable4, + "us_bank_account-routingNumber": attributeAriaExpanded, + "us_bank_account-accountNumber": attributeAriaExpanded, + "us_bank_account-confirmAccountNumber": attributeAriaExpanded, + "us_bank_account-setAsDefaultSavedPayment": attributeAriaExpanded, + "us_bank_account-savePayment": attributeAriaExpanded, + "us_bank_account-linkLegalName": attributeAriaExpanded, + "klarna-name": attributeAriaExpanded, + "klarna-email": variable4, + "klarna-country": attributeAriaExpanded, + "billie-name": attributeAriaExpanded, + "billie-email": variable4, + "bizum-name": attributeAriaExpanded, + "bizum-email": variable4, + "capchase_pay-name": attributeAriaExpanded, + "capchase_pay-email": variable4, + "kriya-name": attributeAriaExpanded, + "kriya-email": variable4, + "mondu-name": attributeAriaExpanded, + "mondu-email": variable4, + "ng_wallet-name": attributeAriaExpanded, + "ng_wallet-email": variable4, + "paypay-name": attributeAriaExpanded, + "paypay-email": variable4, + "samsung_pay-name": attributeAriaExpanded, + "samsung_pay-email": variable4, + "satispay-name": attributeAriaExpanded, + "satispay-email": variable4, + "sequra-name": attributeAriaExpanded, + "sequra-email": variable4, + "scalapay-name": attributeAriaExpanded, + "scalapay-email": variable4, + "vipps-name": attributeAriaExpanded, + "vipps-email": variable4, + "paypal-name": attributeAriaExpanded, + "paypal-email": variable4, + "giropay-name": attributeAriaExpanded, + "giropay-email": variable4, + "alipay-name": attributeAriaExpanded, + "alipay-email": variable4, + "grabpay-name": attributeAriaExpanded, + "grabpay-email": variable4, + "mobilepay-name": attributeAriaExpanded, + "mobilepay-email": variable4, + "multibanco-name": attributeAriaExpanded, + "multibanco-email": variable4, + "oxxo-name": attributeAriaExpanded, + "oxxo-email": variable4, + "paynow-name": attributeAriaExpanded, + "paynow-email": variable4, + "promptpay-name": attributeAriaExpanded, + "promptpay-email": variable4, + "demo_pay-name": attributeAriaExpanded, + "demo_pay-email": variable4, + "revolut_pay-name": attributeAriaExpanded, + "revolut_pay-email": variable4, + "gopay-name": attributeAriaExpanded, + "gopay-email": variable4, + "shopeepay-name": attributeAriaExpanded, + "shopeepay-email": variable4, + "qris-name": attributeAriaExpanded, + "qris-email": variable4, + "sunbit-name": attributeAriaExpanded, + "sunbit-email": variable4, + "wechat_pay-name": attributeAriaExpanded, + "wechat_pay-email": variable4, + "wero-name": attributeAriaExpanded, + "wero-email": variable4, + "customer_balance-name": attributeAriaExpanded, + "customer_balance-email": variable4, + "eps-name": attributeAriaExpanded, + "eps-email": variable4, + "p24-name": attributeAriaExpanded, + "p24-email": variable4, + "zip-name": attributeAriaExpanded, + "zip-email": variable4, + "south_korea_market-name": attributeAriaExpanded, + "south_korea_market-email": variable4, + "kr_card-name": attributeAriaExpanded, + "kr_card-email": variable4, + "kr_market-name": attributeAriaExpanded, + "kr_market-email": variable4, + "amazon_pay-name": attributeAriaExpanded, + "amazon_pay-email": variable4, + "alma-name": attributeAriaExpanded, + "alma-email": variable4, + "ng_market-name": attributeAriaExpanded, + "ng_market-email": variable4, + "twint-name": attributeAriaExpanded, + "twint-email": variable4, + "crypto-name": attributeAriaExpanded, + "crypto-email": variable4, + "cashapp-name": attributeAriaExpanded, + "cashapp-email": variable4, + "kakao_pay-name": attributeAriaExpanded, + "kakao_pay-email": variable4, + "naver_pay-name": attributeAriaExpanded, + "naver_pay-email": variable4, + "payco-name": attributeAriaExpanded, + "payco-email": variable4, + "ng_bank-name": attributeAriaExpanded, + "ng_bank-email": variable4, + "ng_bank_transfer-name": attributeAriaExpanded, + "ng_bank_transfer-email": variable4, + "ng_card-name": attributeAriaExpanded, + "ng_card-email": variable4, + "ng_ussd-name": attributeAriaExpanded, + "ng_ussd-email": variable4, + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.link.ab_test.exposure_update", + "created": "1773809682423", + "batching_enabled": variable4, + "event_count": "87", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "2b42c8fb-87db-4a3f-bf9d-6ba8ac7bedcc", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "intent_type": "deferred_intent_subscription", + "dvs_provided": statsigpayloadDynamicConfigs489084288ValueOptions, + "is_returning_link_user": attributeAriaExpanded, + "recognition_type": emailDomainType, + "is_link_holdback_manager": variable4, + "arb_id": experimentsDataArbId + }, + { + "event_name": "elements.update_elements_options", + "created": "1773809682426", + "batching_enabled": variable4, + "event_count": "88", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "81a45cee-36d9-4295-aeef-f8b07a5b5f19", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "auto_logged": variable4 + }, + { + "event_name": "elements.update", + "created": "1773809682378", + "batching_enabled": variable4, + "event_count": "89", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "4600980c-e528-469b-9a5c-0e1df2274334", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.upe.default_values.update", + "created": "1773809682428", + "batching_enabled": variable4, + "event_count": "90", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "fbdd28bc-89bb-4486-b4d1-c086ffadce68", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "billingDetails": variable4, + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0390({ + variable12, + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + variable38, + variable56, + variable64, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + locale, + currency, + mode, + connectorsSupportedAuthOidcScopesSupported1, + sessionId, + configId1 + }) { + console.log("Executing request 0390") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&events=${JSON.stringify( + [ + { + "event_name": "elements.pr.update", + "created": "1773809682379", + "batching_enabled": variable4, + "event_count": "91", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "fdd96958-8854-4534-b65b-c4a91dc73b2c", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "usesButtonElement": attributeAriaExpanded, + "requestShipping": attributeAriaExpanded + }, + { + "event_name": "elements.timings", + "created": "1773809682431", + "batching_enabled": variable4, + "event_count": "92", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "de99fa00-6a59-45d3-866b-db91086c25f7", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "dom_loading": "356", + "dom_interactive": "360", + "dom_complete": "5423", + "since_sjs_load": "13632", + "since_stripe_create": "13612", + "since_group_create": "5514", + "since_store": "4716", + "since_create": "5503", + "since_mount": "5494", + "since_load": "69", + "since_loaderstart": "39", + "since_link_consumer_session_ready": variable56, + "since_link_default_integration_ready": variable38, + "link_consumer_session_ready": "5451", + "link_default_integration_ready": "5481", + "since_custom_checkout_init": "13605", + "since_custom_checkout_sdk_create": "13604", + "since_custom_checkout_sdk_ready": "5513", + "since_page_load": "59277", + "loader_enabled": variable4, + "since_fetch": "5493", + "resource_timings-elements-inner-payment.js-duration": "5012", + "resource_timings-elements-inner-payment.js-transfer_size": "626976", + "resource_timings-elements-inner-payment.js-tcp_handshake_duration": variable12, + "resource_timings-elements-inner-payment.js-dns_lookup_duration": variable12, + "resource_timings-elements-inner-payment.js-redirect_duration": "", + "resource_timings-elements-inner-payment.js-request_duration": "4966", + "resource_timings-elements-inner-payment.js-response_duration": "45", + "resource_timings-elements-inner-payment.js-tls_negotiation_duration": statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + "resource_timings-elements-inner-payment.js-fetch_duration": "5012", + "resource_timings-elements-inner-payment.js-service_worker_duration": "", + "resource_timings-elements-inner-payment.js-raw_size": "2185938", + "resource_timings-elements-inner-payment.js-compressed": attributeAriaExpanded, + "resource_timings-elements-inner-payment.js-cached_locally": attributeAriaExpanded, + "resource_timings-elements-inner-payment.js-next_hop_protocol": "http/1.1", + "resource_timings-elements-inner-payment.js-is_http3": attributeAriaExpanded, + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.parent_visible", + "created": "1773809682427", + "batching_enabled": variable4, + "event_count": variable64, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "b41bb283-0e47-49c9-9e5f-561497074dc8", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray + }, + { + "event_name": "elements.update", + "created": "1773809682428", + "batching_enabled": variable4, + "event_count": "94", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "cca07650-701f-4dad-9140-cf4c2e55b6bc", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "options-locale": locale, + "options-disallowedCardBrands": "", + "options-mode": mode, + "options-amount": variable12, + "options-paymentMethodTypes": connectorsSupportedAuthOidcScopesSupported1, + "options-currency": currency + }, + { + "event_name": "elements.appearance.border_adjust", + "created": "1773809682480", + "batching_enabled": variable4, + "event_count": "95", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "56c72f2e-a5ef-4e08-8a53-2e8332b598b2", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0391({ + systemHintsLogoAttributeFill + }) { + console.log("Executing request 0391") + const response = await fetch( + "https://android.clients.google.com/c2dm/register3", + { + method: "POST", + headers: { + "host": "android.clients.google.com", + "connection": "keep-alive", + "authorization": "AidLogin 48414557928291861127629698221106001664", + "content-type": "application/x-www-form-urlencoded", + "sec-fetch-site": systemHintsLogoAttributeFill, + "sec-fetch-mode": "no-cors", + "sec-fetch-dest": "empty", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: "app=com.google.android.gms&device=4841455792829186112&sender=745476177629" + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0392({ + variable12, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + locale, + currency, + mode, + connectorsSupportedAuthOidcScopesSupported1, + sessionId, + configId1 + }) { + console.log("Executing request 0392") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&events=${JSON.stringify( + [ + { + "event_name": "elements.update_elements_options", + "created": "1773809683918", + "batching_enabled": variable4, + "event_count": "106", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "f4d6d333-822e-40b0-a5c6-b853a9fba89f", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "auto_logged": variable4 + }, + { + "event_name": "elements.update", + "created": "1773809683917", + "batching_enabled": variable4, + "event_count": "107", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "bfc8c541-299e-474e-a209-99a843086a3e", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.upe.default_values.update", + "created": "1773809683919", + "batching_enabled": variable4, + "event_count": "108", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "aed878b0-9368-49e3-be8d-463a0f61b46d", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "billingDetails": variable4, + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.update", + "created": "1773809683919", + "batching_enabled": variable4, + "event_count": "109", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "27eb3dd9-e627-4e73-b71e-92eb73e0e073", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "options-locale": locale, + "options-disallowedCardBrands": "", + "options-mode": mode, + "options-amount": variable12, + "options-paymentMethodTypes": connectorsSupportedAuthOidcScopesSupported1, + "options-currency": currency + }, + { + "event_name": "elements.link.default_integration", + "created": "1773809683935", + "batching_enabled": variable4, + "event_count": "110", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "79924d14-da16-4d75-9d4e-d1ebd450c290", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0393({ + currencyConfigPromosBusinessOneDollarAmount, + urlAudience, + variable14, + state, + statsigpayloadLayerConfigs1803944755ValueExpressServerDeliveryMechanism + }) { + console.log("Executing request 0393") + const response = await fetch( + `https://newassets.hcaptcha.com/captcha/${urlAudience}/6ae4a3c801c9d99b7e0b591e01eb3ddc17b34400/${statsigpayloadLayerConfigs1803944755ValueExpressServerDeliveryMechanism}/hcaptcha.html`, + { + method: "GET", + headers: { + "host": "newassets.hcaptcha.com", + "connection": "keep-alive", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"macOS\"", + "upgrade-insecure-requests": currencyConfigPromosBusinessOneDollarAmount, + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "navigate", + "sec-fetch-dest": variable14, + "sec-fetch-storage-access": state, + "referer": "https//b.stripecdn.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": "__cf_bm=HEJ47TYdjlyPjg36Q23_obXJAwcU8dV3txz39IARFcs-1773809680-1.0.1.1-sPLPxPlDTBv0g835.F024M4K3JwnTE7V7AmDfy01IhUy3oyZ7RVRwECQUfOJCx2jsIVJ_JPInkWy1OMKPrBA8LoblqULi1QzQThoF7xXwBo" + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0394({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs349489989ValueOneCharacterAnimationDurationMs, + statsigpayloadDynamicConfigs1967546325ValueGdrivepercentage, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + currency, + sessionId, + configId1, + accountSettingsBrandingBackgroundColor + }) { + console.log("Executing request 0394") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&events=${JSON.stringify( + [ + { + "event_name": "elements.upe.merchant_page_properties.success", + "created": "1773809682481", + "batching_enabled": variable4, + "event_count": "96", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "1ffc17e7-e504-47b4-8835-924e43a3685b", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "numberOfNodesTraversed": statsigpayloadDynamicConfigs349489989ValueOneCharacterAnimationDurationMs, + "merchantBackgroundColor": "rgb(255, 255, 255)", + "merchantTextColor": "rgb(13, 13, 13)", + "appearanceBackgroundColor": accountSettingsBrandingBackgroundColor, + "appearanceTextColor": "#101828", + "appearanceSecondaryTextColor": "#505b71", + "merchantBackgroundColorIsDark": attributeAriaExpanded, + "merchantTextColorIsDark": variable4, + "merchantTextAgainstMerchantBackground-contrastRatio": "19.444444444444443", + "merchantTextAgainstMerchantBackground-isReadable": variable4, + "appearanceTextAgainstMerchantBackground-contrastRatio": "17.796610169491526", + "appearanceTextAgainstMerchantBackground-isReadable": variable4, + "appearanceSecondaryTextAgainstMerchantBackground-contrastRatio": "6.818181818181818", + "appearanceSecondaryTextAgainstMerchantBackground-isReadable": variable4, + "merchantBackgroundEqualToAppearanceBackground": variable4, + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.link.default_integration", + "created": "1773809682482", + "batching_enabled": variable4, + "event_count": "97", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "57934d62-ad78-4dde-b2df-53ef4e5c2134", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.link.payment_element.integration_type", + "created": "1773809682483", + "batching_enabled": variable4, + "event_count": "98", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "082e1998-8e8f-49d6-ac82-87c17f3f9129", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "request_surface": "web_link_authentication_in_payment_element", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.link_holdback_update_from_payment_default_values", + "created": "1773809682489", + "batching_enabled": variable4, + "event_count": "99", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "24679f79-b30a-4b44-8d8c-0bfed4cd920b", + "team_identifier": "t_0", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185" + }, + { + "event_name": "elements.upe.default_values", + "created": "1773809682489", + "batching_enabled": variable4, + "event_count": statsigpayloadDynamicConfigs1967546325ValueGdrivepercentage, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "f5c9bfef-9b3c-463d-95f7-899e54926ef6", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "linkDefaultValuesSource": "merchantUpdate", + "acss_debit-name": attributeAriaExpanded, + "acss_debit-email": variable4, + "afterpay_clearpay-name": attributeAriaExpanded, + "afterpay_clearpay-email": variable4, + "afterpay_clearpay-shippingAsBilling": attributeAriaExpanded, + "afterpay_clearpay-country": attributeAriaExpanded, + "afterpay_clearpay-addressLine1": attributeAriaExpanded, + "afterpay_clearpay-addressLine2": attributeAriaExpanded, + "afterpay_clearpay-locality": attributeAriaExpanded, + "afterpay_clearpay-administrativeArea": attributeAriaExpanded, + "afterpay_clearpay-postalCode": attributeAriaExpanded, + "au_becs_debit-auBsb": attributeAriaExpanded, + "au_becs_debit-auBankAccountNumber": attributeAriaExpanded, + "au_becs_debit-name": attributeAriaExpanded, + "au_becs_debit-email": variable4, + "bacs_debit-name": attributeAriaExpanded, + "bacs_debit-email": variable4, + "bacs_debit-sortCode": attributeAriaExpanded, + "bacs_debit-accountNumber": attributeAriaExpanded, + "bacs_debit-shippingAsBilling": attributeAriaExpanded, + "bacs_debit-termsConfirmation": attributeAriaExpanded, + "bacs_debit-country": attributeAriaExpanded, + "bacs_debit-addressLine1": attributeAriaExpanded, + "bacs_debit-addressLine2": attributeAriaExpanded, + "bacs_debit-locality": attributeAriaExpanded, + "bacs_debit-administrativeArea": attributeAriaExpanded, + "bacs_debit-postalCode": attributeAriaExpanded, + "bancontact-name": attributeAriaExpanded, + "bancontact-email": variable4, + "blik-email": variable4, + "blik-code": attributeAriaExpanded, + "boleto-name": attributeAriaExpanded, + "boleto-email": variable4, + "boleto-taxId": attributeAriaExpanded, + "boleto-shippingAsBilling": attributeAriaExpanded, + "boleto-country": attributeAriaExpanded, + "boleto-addressLine1": attributeAriaExpanded, + "boleto-addressLine2": attributeAriaExpanded, + "boleto-locality": attributeAriaExpanded, + "boleto-administrativeArea": attributeAriaExpanded, + "boleto-postalCode": attributeAriaExpanded, + "card-number": attributeAriaExpanded, + "card-expiry": attributeAriaExpanded, + "card-cvc": attributeAriaExpanded, + "card-country": attributeAriaExpanded, + "card-postalCode": attributeAriaExpanded, + "card-name": attributeAriaExpanded, + "card-linkLegalName": attributeAriaExpanded, + "card-linkEmail": variable4, + "card-linkMobilePhone": attributeAriaExpanded, + "card-linkDefaultFormattedMobilePhone": attributeAriaExpanded, + "card-linkDefaultFormattedMobilePhoneCountry": attributeAriaExpanded, + "card-linkMobilePhoneCountry": attributeAriaExpanded, + "card-linkEmailOtpVerificationPhone": attributeAriaExpanded, + "card-linkEmailOtpVerificationPhoneCountry": attributeAriaExpanded, + "card-linkOptIn": attributeAriaExpanded, + "card-linkOptInTouched": attributeAriaExpanded, + "card-linkOptInDefaultsNonUS": attributeAriaExpanded, + "card-linkOptInIsVisibleFromFormChange": attributeAriaExpanded, + "card-linkAutofillPromptOptIn": attributeAriaExpanded, + "card-shippingAsBilling": attributeAriaExpanded, + "card-installmentPlan": attributeAriaExpanded, + "card-network": attributeAriaExpanded, + "card-setAsDefaultSavedPayment": attributeAriaExpanded, + "card-savePayment": attributeAriaExpanded, + "fpx-accountHolderType": variable4, + "fpx-bank": attributeAriaExpanded, + "id_bank_transfer-bank": attributeAriaExpanded, + "id_bank_transfer-name": attributeAriaExpanded, + "id_bank_transfer-email": variable4, + "ideal-name": attributeAriaExpanded, + "ideal-email": variable4, + "konbini-name": attributeAriaExpanded, + "konbini-email": variable4, + "konbini-phoneNumber": attributeAriaExpanded, + "pay_by_bank-bank": attributeAriaExpanded, + "pay_by_bank-bankCountry": attributeAriaExpanded, + "mb_way-phoneNumber": attributeAriaExpanded, + "mb_way-phoneCountry": variable4, + "nz_bank_account-name": attributeAriaExpanded, + "nz_bank_account-email": variable4, + "nz_bank_account-accountHolderName": attributeAriaExpanded, + "nz_bank_account-accountHolderNameOptional": attributeAriaExpanded, + "nz_bank_account-bankName": attributeAriaExpanded, + "nz_bank_account-accountNumber": attributeAriaExpanded, + "nz_bank_account-mandateAuthority": attributeAriaExpanded, + "nz_bank_account-mandateSignature": attributeAriaExpanded, + "saved-name": attributeAriaExpanded, + "saved-email": variable4, + "saved-number": attributeAriaExpanded, + "saved-expiry": attributeAriaExpanded, + "saved-cvc": attributeAriaExpanded, + "saved-country": attributeAriaExpanded, + "saved-postalCode": attributeAriaExpanded, + "saved-shippingAsBilling": attributeAriaExpanded, + "saved-network": attributeAriaExpanded, + "saved-bacsTermsConfirmation": attributeAriaExpanded, + "saved-nzBankAccountMandateAuthority": attributeAriaExpanded, + "saved-nzBankAccountMandateSignature": attributeAriaExpanded, + "sepa_debit-name": attributeAriaExpanded, + "sepa_debit-email": variable4, + "sepa_debit-iban": attributeAriaExpanded, + "sepa_debit-shippingAsBilling": attributeAriaExpanded, + "sepa_debit-country": attributeAriaExpanded, + "sepa_debit-addressLine1": attributeAriaExpanded, + "sepa_debit-addressLine2": attributeAriaExpanded, + "sepa_debit-locality": attributeAriaExpanded, + "sepa_debit-administrativeArea": attributeAriaExpanded, + "sepa_debit-postalCode": attributeAriaExpanded, + "sofort-name": attributeAriaExpanded, + "sofort-email": variable4, + "sofort-country": attributeAriaExpanded, + "link-bank": attributeAriaExpanded, + "link-linkAutofillPromptOptIn": attributeAriaExpanded, + "link-linkEmail": variable4, + "link-linkLegalName": attributeAriaExpanded, + "link-postalCode": attributeAriaExpanded, + "link-country": attributeAriaExpanded, + "link-shippingAsBilling": attributeAriaExpanded, + "link_card_brand-bank": attributeAriaExpanded, + "link_card_brand-linkAutofillPromptOptIn": attributeAriaExpanded, + "link_card_brand-linkEmail": variable4, + "link_card_brand-linkLegalName": attributeAriaExpanded, + "link_card_brand-postalCode": attributeAriaExpanded, + "link_card_brand-country": attributeAriaExpanded, + "link_card_brand-shippingAsBilling": attributeAriaExpanded, + "link_br_pix-linkEmail": variable4, + "link_br_pix-linkLegalName": attributeAriaExpanded, + "link_br_pix-linkMobilePhone": attributeAriaExpanded, + "link_br_pix-linkMobilePhoneCountry": attributeAriaExpanded, + "link_br_pix-taxId": attributeAriaExpanded, + "link_crypto-linkEmail": variable4, + "link_crypto-linkMobilePhone": attributeAriaExpanded, + "link_crypto-linkMobilePhoneCountry": attributeAriaExpanded, + "link_sepa_bank_account-linkEmail": variable4, + "link_sepa_bank_account-linkMobilePhone": attributeAriaExpanded, + "link_sepa_bank_account-linkMobilePhoneCountry": attributeAriaExpanded, + "link_sepa_bank_account-name": attributeAriaExpanded, + "link_sepa_bank_account-birthdate": attributeAriaExpanded, + "link_sepa_bank_account-shippingAsBilling": variable4, + "link_sepa_bank_account-country": attributeAriaExpanded, + "link_sepa_bank_account-addressLine1": attributeAriaExpanded, + "link_sepa_bank_account-addressLine2": attributeAriaExpanded, + "link_sepa_bank_account-locality": attributeAriaExpanded, + "link_sepa_bank_account-administrativeArea": attributeAriaExpanded, + "link_sepa_bank_account-postalCode": attributeAriaExpanded, + "link_klarna-linkEmail": variable4, + "link_klarna-linkMobilePhone": attributeAriaExpanded, + "link_klarna-linkMobilePhoneCountry": attributeAriaExpanded, + "link_klarna-linkOptInCheckboxChecked": attributeAriaExpanded, + "payto-name": attributeAriaExpanded, + "payto-email": attributeAriaExpanded, + "payto-payId": attributeAriaExpanded, + "payto-accountNumber": attributeAriaExpanded, + "payto-bsbNumber": attributeAriaExpanded, + "payto-usePayId": attributeAriaExpanded, + "pix-name": attributeAriaExpanded, + "pix-email": variable4, + "pix-taxId": attributeAriaExpanded, + "pix-country": attributeAriaExpanded, + "pix-addressLine1": attributeAriaExpanded, + "pix-addressLine2": attributeAriaExpanded, + "pix-locality": attributeAriaExpanded, + "pix-administrativeArea": attributeAriaExpanded, + "pix-postalCode": attributeAriaExpanded, + "rechnung-email": attributeAriaExpanded, + "rechnung-name": attributeAriaExpanded, + "rechnung-birthdate": attributeAriaExpanded, + "rechnung-country": attributeAriaExpanded, + "rechnung-addressLine1": attributeAriaExpanded, + "rechnung-addressLine2": attributeAriaExpanded, + "rechnung-locality": attributeAriaExpanded, + "rechnung-administrativeArea": attributeAriaExpanded, + "rechnung-postalCode": attributeAriaExpanded, + "rechnung-phoneNumber": attributeAriaExpanded, + "rechnung-phoneCountry": variable4, + "rechnung-shippingAsBilling": variable4, + "upi-vpa": attributeAriaExpanded, + "upi-name": attributeAriaExpanded, + "upi-country": attributeAriaExpanded, + "upi-addressLine1": attributeAriaExpanded, + "upi-addressLine2": attributeAriaExpanded, + "upi-locality": attributeAriaExpanded, + "upi-administrativeArea": attributeAriaExpanded, + "upi-postalCode": attributeAriaExpanded, + "upi-shippingAsBilling": variable4, + "us_bank_account-name": attributeAriaExpanded, + "us_bank_account-email": variable4, + "us_bank_account-bank": attributeAriaExpanded, + "us_bank_account-accountHolderType": variable4, + "us_bank_account-accountType": variable4, + "us_bank_account-routingNumber": attributeAriaExpanded, + "us_bank_account-accountNumber": attributeAriaExpanded, + "us_bank_account-confirmAccountNumber": attributeAriaExpanded, + "us_bank_account-setAsDefaultSavedPayment": attributeAriaExpanded, + "us_bank_account-savePayment": attributeAriaExpanded, + "us_bank_account-linkLegalName": attributeAriaExpanded, + "klarna-name": attributeAriaExpanded, + "klarna-email": variable4, + "klarna-country": attributeAriaExpanded, + "billie-name": attributeAriaExpanded, + "billie-email": variable4, + "bizum-name": attributeAriaExpanded, + "bizum-email": variable4, + "capchase_pay-name": attributeAriaExpanded, + "capchase_pay-email": variable4, + "kriya-name": attributeAriaExpanded, + "kriya-email": variable4, + "mondu-name": attributeAriaExpanded, + "mondu-email": variable4, + "ng_wallet-name": attributeAriaExpanded, + "ng_wallet-email": variable4, + "paypay-name": attributeAriaExpanded, + "paypay-email": variable4, + "samsung_pay-name": attributeAriaExpanded, + "samsung_pay-email": variable4, + "satispay-name": attributeAriaExpanded, + "satispay-email": variable4, + "sequra-name": attributeAriaExpanded, + "sequra-email": variable4, + "scalapay-name": attributeAriaExpanded, + "scalapay-email": variable4, + "vipps-name": attributeAriaExpanded, + "vipps-email": variable4, + "paypal-name": attributeAriaExpanded, + "paypal-email": variable4, + "giropay-name": attributeAriaExpanded, + "giropay-email": variable4, + "alipay-name": attributeAriaExpanded, + "alipay-email": variable4, + "grabpay-name": attributeAriaExpanded, + "grabpay-email": variable4, + "mobilepay-name": attributeAriaExpanded, + "mobilepay-email": variable4, + "multibanco-name": attributeAriaExpanded, + "multibanco-email": variable4, + "oxxo-name": attributeAriaExpanded, + "oxxo-email": variable4, + "paynow-name": attributeAriaExpanded, + "paynow-email": variable4, + "promptpay-name": attributeAriaExpanded, + "promptpay-email": variable4, + "demo_pay-name": attributeAriaExpanded, + "demo_pay-email": variable4, + "revolut_pay-name": attributeAriaExpanded, + "revolut_pay-email": variable4, + "gopay-name": attributeAriaExpanded, + "gopay-email": variable4, + "shopeepay-name": attributeAriaExpanded, + "shopeepay-email": variable4, + "qris-name": attributeAriaExpanded, + "qris-email": variable4, + "sunbit-name": attributeAriaExpanded, + "sunbit-email": variable4, + "wechat_pay-name": attributeAriaExpanded, + "wechat_pay-email": variable4, + "wero-name": attributeAriaExpanded, + "wero-email": variable4, + "customer_balance-name": attributeAriaExpanded, + "customer_balance-email": variable4, + "eps-name": attributeAriaExpanded, + "eps-email": variable4, + "p24-name": attributeAriaExpanded, + "p24-email": variable4, + "zip-name": attributeAriaExpanded, + "zip-email": variable4, + "south_korea_market-name": attributeAriaExpanded, + "south_korea_market-email": variable4, + "kr_card-name": attributeAriaExpanded, + "kr_card-email": variable4, + "kr_market-name": attributeAriaExpanded, + "kr_market-email": variable4, + "amazon_pay-name": attributeAriaExpanded, + "amazon_pay-email": variable4, + "alma-name": attributeAriaExpanded, + "alma-email": variable4, + "ng_market-name": attributeAriaExpanded, + "ng_market-email": variable4, + "twint-name": attributeAriaExpanded, + "twint-email": variable4, + "crypto-name": attributeAriaExpanded, + "crypto-email": variable4, + "cashapp-name": attributeAriaExpanded, + "cashapp-email": variable4, + "kakao_pay-name": attributeAriaExpanded, + "kakao_pay-email": variable4, + "naver_pay-name": attributeAriaExpanded, + "naver_pay-email": variable4, + "payco-name": attributeAriaExpanded, + "payco-email": variable4, + "ng_bank-name": attributeAriaExpanded, + "ng_bank-email": variable4, + "ng_bank_transfer-name": attributeAriaExpanded, + "ng_bank_transfer-email": variable4, + "ng_card-name": attributeAriaExpanded, + "ng_card-email": variable4, + "ng_ussd-name": attributeAriaExpanded, + "ng_ussd-email": variable4, + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0395({ + variable12, + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + urlAudience, + checkoutSessionId, + attributeHref10, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + id, + accountSettingsAccountId, + currency, + emailDomainType, + object2, + connectorsSupportedAuthOidcScopesSupported1, + statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + sessionId, + configId1, + variable68 + }) { + console.log("Executing request 0395") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&events=${JSON.stringify( + [ + { + "event_name": "elements.pr.update", + "created": "1773809682493", + "batching_enabled": variable4, + "event_count": "101", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "72224f24-3e86-4d07-80fa-09c234eb2c4e", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "usesButtonElement": attributeAriaExpanded, + "requestShipping": attributeAriaExpanded + }, + { + "event_name": "elements.appearance.border_adjust", + "created": "1773809682535", + "batching_enabled": variable4, + "event_count": "102", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "78e819d6-3707-4f73-a825-4c534e30f247", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + "element_mode": "billing", + "element_id": "address-d9ee1043-0a90-48b6-8819-70ba036e9e21" + }, + { + "event_name": "elements.upe.initial_displayed_payment_methods", + "created": "1773809683520", + "batching_enabled": variable4, + "event_count": "103", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "06384d95-5f6e-4274-b607-0468620d222a", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "hidden_payment_methods": "", + "visible_payment_methods": connectorsSupportedAuthOidcScopesSupported1, + "is_automatic_payment_methods": variable4, + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "rum.stripejs", + "created": "1773809683912", + "batching_enabled": variable4, + "event_count": "104", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + "event_id": "62eae492-294c-4d5a-826a-f205ae15e21d", + "team_identifier": "t_7", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "requestId": variable68, + "tokenType": emailDomainType, + "url": `https://${attributeHref10}/${urlAudience}/payment_pages/${checkoutSessionId}`, + "status": statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + "start": "1773809680688", + "end": "1773809683912", + "resourceTiming[startTime]": "11902.3", + "resourceTiming[duration]": "3223", + "resourceTiming[redirectStart]": variable12, + "resourceTiming[redirectEnd]": variable12, + "resourceTiming[fetchStart]": "11902.3", + "resourceTiming[domainLookupStart]": "11902.3", + "resourceTiming[domainLookupEnd]": "11902.3", + "resourceTiming[connectStart]": "11902.3", + "resourceTiming[connectEnd]": "11902.3", + "resourceTiming[secureConnectionStart]": "11902.3", + "resourceTiming[requestStart]": "11902.9", + "resourceTiming[responseStart]": "15123.5", + "resourceTiming[responseEnd]": "15125.3", + "paymentUserAgent": "stripe.js/5e596c82e6; stripe-js-v3/5e596c82e6" + }, + { + "event_name": "elements.update_payment_page.success", + "created": "1773809683913", + "batching_enabled": variable4, + "event_count": "105", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "837c3f49-bab9-4b31-b0c4-83e2265b5902", + "team_identifier": "t_0", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "object_id": id, + "object_kind": object2, + "object_type": "undefined", + "object_livemode": variable4, + "usingPaymentFormElement": attributeAriaExpanded + } + ] + )}` + } + ) + const body = await response.text() + return { + variable76: response.headers.get("x-stripe-server-rpc-duration-micros") + } + } + async function executeRequest0396({ + statsigpayloadDynamicConfigs2179180337ValueMaxAttempts, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + currency, + sessionId, + configId1 + }) { + console.log("Executing request 0396") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs2179180337ValueMaxAttempts}&events=${JSON.stringify( + [ + { + "event_name": "elements.link.payment_element.integration_type", + "created": "1773809683936", + "batching_enabled": variable4, + "event_count": "111", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "a721d316-fe9c-4ec9-9ecf-d81017841f2d", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "request_surface": "web_link_authentication_in_payment_element", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.link_holdback_update_from_payment_default_values", + "created": "1773809683943", + "batching_enabled": variable4, + "event_count": "112", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "56e4adbb-d678-47e9-844c-f74656b9de51", + "team_identifier": "t_0", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185" + }, + { + "event_name": "elements.upe.default_values", + "created": "1773809683944", + "batching_enabled": variable4, + "event_count": "113", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "1678f64d-a63d-4629-91e1-213ea72bb0d8", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "linkDefaultValuesSource": "merchantUpdate", + "acss_debit-name": attributeAriaExpanded, + "acss_debit-email": variable4, + "afterpay_clearpay-name": attributeAriaExpanded, + "afterpay_clearpay-email": variable4, + "afterpay_clearpay-shippingAsBilling": attributeAriaExpanded, + "afterpay_clearpay-country": attributeAriaExpanded, + "afterpay_clearpay-addressLine1": attributeAriaExpanded, + "afterpay_clearpay-addressLine2": attributeAriaExpanded, + "afterpay_clearpay-locality": attributeAriaExpanded, + "afterpay_clearpay-administrativeArea": attributeAriaExpanded, + "afterpay_clearpay-postalCode": attributeAriaExpanded, + "au_becs_debit-auBsb": attributeAriaExpanded, + "au_becs_debit-auBankAccountNumber": attributeAriaExpanded, + "au_becs_debit-name": attributeAriaExpanded, + "au_becs_debit-email": variable4, + "bacs_debit-name": attributeAriaExpanded, + "bacs_debit-email": variable4, + "bacs_debit-sortCode": attributeAriaExpanded, + "bacs_debit-accountNumber": attributeAriaExpanded, + "bacs_debit-shippingAsBilling": attributeAriaExpanded, + "bacs_debit-termsConfirmation": attributeAriaExpanded, + "bacs_debit-country": attributeAriaExpanded, + "bacs_debit-addressLine1": attributeAriaExpanded, + "bacs_debit-addressLine2": attributeAriaExpanded, + "bacs_debit-locality": attributeAriaExpanded, + "bacs_debit-administrativeArea": attributeAriaExpanded, + "bacs_debit-postalCode": attributeAriaExpanded, + "bancontact-name": attributeAriaExpanded, + "bancontact-email": variable4, + "blik-email": variable4, + "blik-code": attributeAriaExpanded, + "boleto-name": attributeAriaExpanded, + "boleto-email": variable4, + "boleto-taxId": attributeAriaExpanded, + "boleto-shippingAsBilling": attributeAriaExpanded, + "boleto-country": attributeAriaExpanded, + "boleto-addressLine1": attributeAriaExpanded, + "boleto-addressLine2": attributeAriaExpanded, + "boleto-locality": attributeAriaExpanded, + "boleto-administrativeArea": attributeAriaExpanded, + "boleto-postalCode": attributeAriaExpanded, + "card-number": attributeAriaExpanded, + "card-expiry": attributeAriaExpanded, + "card-cvc": attributeAriaExpanded, + "card-country": attributeAriaExpanded, + "card-postalCode": attributeAriaExpanded, + "card-name": attributeAriaExpanded, + "card-linkLegalName": attributeAriaExpanded, + "card-linkEmail": variable4, + "card-linkMobilePhone": attributeAriaExpanded, + "card-linkDefaultFormattedMobilePhone": attributeAriaExpanded, + "card-linkDefaultFormattedMobilePhoneCountry": attributeAriaExpanded, + "card-linkMobilePhoneCountry": attributeAriaExpanded, + "card-linkEmailOtpVerificationPhone": attributeAriaExpanded, + "card-linkEmailOtpVerificationPhoneCountry": attributeAriaExpanded, + "card-linkOptIn": attributeAriaExpanded, + "card-linkOptInTouched": attributeAriaExpanded, + "card-linkOptInDefaultsNonUS": attributeAriaExpanded, + "card-linkOptInIsVisibleFromFormChange": attributeAriaExpanded, + "card-linkAutofillPromptOptIn": attributeAriaExpanded, + "card-shippingAsBilling": attributeAriaExpanded, + "card-installmentPlan": attributeAriaExpanded, + "card-network": attributeAriaExpanded, + "card-setAsDefaultSavedPayment": attributeAriaExpanded, + "card-savePayment": attributeAriaExpanded, + "fpx-accountHolderType": variable4, + "fpx-bank": attributeAriaExpanded, + "id_bank_transfer-bank": attributeAriaExpanded, + "id_bank_transfer-name": attributeAriaExpanded, + "id_bank_transfer-email": variable4, + "ideal-name": attributeAriaExpanded, + "ideal-email": variable4, + "konbini-name": attributeAriaExpanded, + "konbini-email": variable4, + "konbini-phoneNumber": attributeAriaExpanded, + "pay_by_bank-bank": attributeAriaExpanded, + "pay_by_bank-bankCountry": attributeAriaExpanded, + "mb_way-phoneNumber": attributeAriaExpanded, + "mb_way-phoneCountry": variable4, + "nz_bank_account-name": attributeAriaExpanded, + "nz_bank_account-email": variable4, + "nz_bank_account-accountHolderName": attributeAriaExpanded, + "nz_bank_account-accountHolderNameOptional": attributeAriaExpanded, + "nz_bank_account-bankName": attributeAriaExpanded, + "nz_bank_account-accountNumber": attributeAriaExpanded, + "nz_bank_account-mandateAuthority": attributeAriaExpanded, + "nz_bank_account-mandateSignature": attributeAriaExpanded, + "saved-name": attributeAriaExpanded, + "saved-email": variable4, + "saved-number": attributeAriaExpanded, + "saved-expiry": attributeAriaExpanded, + "saved-cvc": attributeAriaExpanded, + "saved-country": attributeAriaExpanded, + "saved-postalCode": attributeAriaExpanded, + "saved-shippingAsBilling": attributeAriaExpanded, + "saved-network": attributeAriaExpanded, + "saved-bacsTermsConfirmation": attributeAriaExpanded, + "saved-nzBankAccountMandateAuthority": attributeAriaExpanded, + "saved-nzBankAccountMandateSignature": attributeAriaExpanded, + "sepa_debit-name": attributeAriaExpanded, + "sepa_debit-email": variable4, + "sepa_debit-iban": attributeAriaExpanded, + "sepa_debit-shippingAsBilling": attributeAriaExpanded, + "sepa_debit-country": attributeAriaExpanded, + "sepa_debit-addressLine1": attributeAriaExpanded, + "sepa_debit-addressLine2": attributeAriaExpanded, + "sepa_debit-locality": attributeAriaExpanded, + "sepa_debit-administrativeArea": attributeAriaExpanded, + "sepa_debit-postalCode": attributeAriaExpanded, + "sofort-name": attributeAriaExpanded, + "sofort-email": variable4, + "sofort-country": attributeAriaExpanded, + "link-bank": attributeAriaExpanded, + "link-linkAutofillPromptOptIn": attributeAriaExpanded, + "link-linkEmail": variable4, + "link-linkLegalName": attributeAriaExpanded, + "link-postalCode": attributeAriaExpanded, + "link-country": attributeAriaExpanded, + "link-shippingAsBilling": attributeAriaExpanded, + "link_card_brand-bank": attributeAriaExpanded, + "link_card_brand-linkAutofillPromptOptIn": attributeAriaExpanded, + "link_card_brand-linkEmail": variable4, + "link_card_brand-linkLegalName": attributeAriaExpanded, + "link_card_brand-postalCode": attributeAriaExpanded, + "link_card_brand-country": attributeAriaExpanded, + "link_card_brand-shippingAsBilling": attributeAriaExpanded, + "link_br_pix-linkEmail": variable4, + "link_br_pix-linkLegalName": attributeAriaExpanded, + "link_br_pix-linkMobilePhone": attributeAriaExpanded, + "link_br_pix-linkMobilePhoneCountry": attributeAriaExpanded, + "link_br_pix-taxId": attributeAriaExpanded, + "link_crypto-linkEmail": variable4, + "link_crypto-linkMobilePhone": attributeAriaExpanded, + "link_crypto-linkMobilePhoneCountry": attributeAriaExpanded, + "link_sepa_bank_account-linkEmail": variable4, + "link_sepa_bank_account-linkMobilePhone": attributeAriaExpanded, + "link_sepa_bank_account-linkMobilePhoneCountry": attributeAriaExpanded, + "link_sepa_bank_account-name": attributeAriaExpanded, + "link_sepa_bank_account-birthdate": attributeAriaExpanded, + "link_sepa_bank_account-shippingAsBilling": variable4, + "link_sepa_bank_account-country": attributeAriaExpanded, + "link_sepa_bank_account-addressLine1": attributeAriaExpanded, + "link_sepa_bank_account-addressLine2": attributeAriaExpanded, + "link_sepa_bank_account-locality": attributeAriaExpanded, + "link_sepa_bank_account-administrativeArea": attributeAriaExpanded, + "link_sepa_bank_account-postalCode": attributeAriaExpanded, + "link_klarna-linkEmail": variable4, + "link_klarna-linkMobilePhone": attributeAriaExpanded, + "link_klarna-linkMobilePhoneCountry": attributeAriaExpanded, + "link_klarna-linkOptInCheckboxChecked": attributeAriaExpanded, + "payto-name": attributeAriaExpanded, + "payto-email": attributeAriaExpanded, + "payto-payId": attributeAriaExpanded, + "payto-accountNumber": attributeAriaExpanded, + "payto-bsbNumber": attributeAriaExpanded, + "payto-usePayId": attributeAriaExpanded, + "pix-name": attributeAriaExpanded, + "pix-email": variable4, + "pix-taxId": attributeAriaExpanded, + "pix-country": attributeAriaExpanded, + "pix-addressLine1": attributeAriaExpanded, + "pix-addressLine2": attributeAriaExpanded, + "pix-locality": attributeAriaExpanded, + "pix-administrativeArea": attributeAriaExpanded, + "pix-postalCode": attributeAriaExpanded, + "rechnung-email": attributeAriaExpanded, + "rechnung-name": attributeAriaExpanded, + "rechnung-birthdate": attributeAriaExpanded, + "rechnung-country": attributeAriaExpanded, + "rechnung-addressLine1": attributeAriaExpanded, + "rechnung-addressLine2": attributeAriaExpanded, + "rechnung-locality": attributeAriaExpanded, + "rechnung-administrativeArea": attributeAriaExpanded, + "rechnung-postalCode": attributeAriaExpanded, + "rechnung-phoneNumber": attributeAriaExpanded, + "rechnung-phoneCountry": variable4, + "rechnung-shippingAsBilling": variable4, + "upi-vpa": attributeAriaExpanded, + "upi-name": attributeAriaExpanded, + "upi-country": attributeAriaExpanded, + "upi-addressLine1": attributeAriaExpanded, + "upi-addressLine2": attributeAriaExpanded, + "upi-locality": attributeAriaExpanded, + "upi-administrativeArea": attributeAriaExpanded, + "upi-postalCode": attributeAriaExpanded, + "upi-shippingAsBilling": variable4, + "us_bank_account-name": attributeAriaExpanded, + "us_bank_account-email": variable4, + "us_bank_account-bank": attributeAriaExpanded, + "us_bank_account-accountHolderType": variable4, + "us_bank_account-accountType": variable4, + "us_bank_account-routingNumber": attributeAriaExpanded, + "us_bank_account-accountNumber": attributeAriaExpanded, + "us_bank_account-confirmAccountNumber": attributeAriaExpanded, + "us_bank_account-setAsDefaultSavedPayment": attributeAriaExpanded, + "us_bank_account-savePayment": attributeAriaExpanded, + "us_bank_account-linkLegalName": attributeAriaExpanded, + "klarna-name": attributeAriaExpanded, + "klarna-email": variable4, + "klarna-country": attributeAriaExpanded, + "billie-name": attributeAriaExpanded, + "billie-email": variable4, + "bizum-name": attributeAriaExpanded, + "bizum-email": variable4, + "capchase_pay-name": attributeAriaExpanded, + "capchase_pay-email": variable4, + "kriya-name": attributeAriaExpanded, + "kriya-email": variable4, + "mondu-name": attributeAriaExpanded, + "mondu-email": variable4, + "ng_wallet-name": attributeAriaExpanded, + "ng_wallet-email": variable4, + "paypay-name": attributeAriaExpanded, + "paypay-email": variable4, + "samsung_pay-name": attributeAriaExpanded, + "samsung_pay-email": variable4, + "satispay-name": attributeAriaExpanded, + "satispay-email": variable4, + "sequra-name": attributeAriaExpanded, + "sequra-email": variable4, + "scalapay-name": attributeAriaExpanded, + "scalapay-email": variable4, + "vipps-name": attributeAriaExpanded, + "vipps-email": variable4, + "paypal-name": attributeAriaExpanded, + "paypal-email": variable4, + "giropay-name": attributeAriaExpanded, + "giropay-email": variable4, + "alipay-name": attributeAriaExpanded, + "alipay-email": variable4, + "grabpay-name": attributeAriaExpanded, + "grabpay-email": variable4, + "mobilepay-name": attributeAriaExpanded, + "mobilepay-email": variable4, + "multibanco-name": attributeAriaExpanded, + "multibanco-email": variable4, + "oxxo-name": attributeAriaExpanded, + "oxxo-email": variable4, + "paynow-name": attributeAriaExpanded, + "paynow-email": variable4, + "promptpay-name": attributeAriaExpanded, + "promptpay-email": variable4, + "demo_pay-name": attributeAriaExpanded, + "demo_pay-email": variable4, + "revolut_pay-name": attributeAriaExpanded, + "revolut_pay-email": variable4, + "gopay-name": attributeAriaExpanded, + "gopay-email": variable4, + "shopeepay-name": attributeAriaExpanded, + "shopeepay-email": variable4, + "qris-name": attributeAriaExpanded, + "qris-email": variable4, + "sunbit-name": attributeAriaExpanded, + "sunbit-email": variable4, + "wechat_pay-name": attributeAriaExpanded, + "wechat_pay-email": variable4, + "wero-name": attributeAriaExpanded, + "wero-email": variable4, + "customer_balance-name": attributeAriaExpanded, + "customer_balance-email": variable4, + "eps-name": attributeAriaExpanded, + "eps-email": variable4, + "p24-name": attributeAriaExpanded, + "p24-email": variable4, + "zip-name": attributeAriaExpanded, + "zip-email": variable4, + "south_korea_market-name": attributeAriaExpanded, + "south_korea_market-email": variable4, + "kr_card-name": attributeAriaExpanded, + "kr_card-email": variable4, + "kr_market-name": attributeAriaExpanded, + "kr_market-email": variable4, + "amazon_pay-name": attributeAriaExpanded, + "amazon_pay-email": variable4, + "alma-name": attributeAriaExpanded, + "alma-email": variable4, + "ng_market-name": attributeAriaExpanded, + "ng_market-email": variable4, + "twint-name": attributeAriaExpanded, + "twint-email": variable4, + "crypto-name": attributeAriaExpanded, + "crypto-email": variable4, + "cashapp-name": attributeAriaExpanded, + "cashapp-email": variable4, + "kakao_pay-name": attributeAriaExpanded, + "kakao_pay-email": variable4, + "naver_pay-name": attributeAriaExpanded, + "naver_pay-email": variable4, + "payco-name": attributeAriaExpanded, + "payco-email": variable4, + "ng_bank-name": attributeAriaExpanded, + "ng_bank-email": variable4, + "ng_bank_transfer-name": attributeAriaExpanded, + "ng_bank_transfer-email": variable4, + "ng_card-name": attributeAriaExpanded, + "ng_card-email": variable4, + "ng_ussd-name": attributeAriaExpanded, + "ng_ussd-email": variable4, + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.pr.update", + "created": "1773809683948", + "batching_enabled": variable4, + "event_count": "114", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "cec4a604-7858-4673-9086-689d418536f2", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "usesButtonElement": attributeAriaExpanded, + "requestShipping": attributeAriaExpanded + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0397({ + variable12, + currencyConfigPromosBusinessOneDollarAmount, + 7, + statsigpayloadDynamicConfigs3689744552ValueLookbackDays, + statsigpayloadLayerConfigs1368081792ValueTatortotContextualUpsellFrequencyWindowLengthHours, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + variable14, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + sessionId, + configId1, + variable70, + modesDrlegacyCapabilitiesConnectMore, + statsigpayloadLayerConfigs817522959ValueChatgptInstantAnswersDynamicConfigLabradorFetcherConfigAnnThreshold, + linkSettingsLinkBrand, + statsigpayloadDynamicConfigs2850107578ValueAndroidLargeFontScaleThreshold, + statsigpayloadDynamicConfigs2842273360ValueMinVisibleFraction, + statsigpayloadLayerConfigs817522959ValueChatgptInstantAnswersDynamicConfigAutoEvalSamplingRate + }) { + console.log("Executing request 0397") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${currencyConfigPromosBusinessOneDollarAmount}&events=${JSON.stringify( + [ + { + "event_name": "elements.performance_timeline", + "created": "1773809683980", + "batching_enabled": variable4, + "event_count": "115", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "1496c957-14c4-4fe3-a357-6a7e14e9a867", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "time_origin": "1773809623118", + "timeline": JSON.stringify( + { + "e9ea369f-4f2d-4a53-b21a-1abbc01b2820": { + "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b": { + "__null__": { + "__null__": { + "outer": [ + { + "k": "long-animation-frame", + "t": "4453.3", + "d": "81.6", + "n": "long-animation-frame" + }, + { + "k": "long-animation-frame", + "t": "5056.4", + "d": "118.6", + "n": "long-animation-frame", + "i": "[redacted]" + }, + { + "k": "longtask", + "t": "5065.4", + "d": "105", + "n": "self", + "i": "[redacted]" + }, + { + "k": "long-animation-frame", + "t": "5374.3", + "d": "138", + "n": "long-animation-frame", + "i": "[redacted]" + }, + { + "k": "longtask", + "t": "5374.3", + "d": "97", + "n": "self", + "i": "[redacted]" + }, + { + "k": "long-animation-frame", + "t": "5513.4", + "d": "112", + "n": "long-animation-frame", + "i": "[redacted]" + }, + { + "k": "longtask", + "t": "5515.1", + "d": "110", + "n": "self", + "i": "[redacted]" + }, + { + "k": "long-animation-frame", + "t": "7009.9", + "d": "61.6", + "n": "long-animation-frame", + "i": "[redacted]" + }, + { + "k": "long-animation-frame", + "t": "17469.7", + "d": "270.7", + "n": "long-animation-frame", + "i": "[redacted]" + }, + { + "k": "longtask", + "t": "17664.3", + "d": statsigpayloadLayerConfigs1368081792ValueTatortotContextualUpsellFrequencyWindowLengthHours, + "n": "self", + "i": "[redacted]" + }, + { + "k": "long-animation-frame", + "t": "17773.1", + "d": "416.6", + "n": "long-animation-frame" + }, + { + "k": "long-animation-frame", + "t": "21473.5", + "d": "52", + "n": "long-animation-frame", + "i": "[redacted]" + }, + { + "k": "longtask", + "t": "21473.5", + "d": "51", + "n": "self", + "i": "[redacted]" + }, + { + "k": "long-animation-frame", + "t": "27217.6", + "d": "61.9", + "n": "long-animation-frame", + "i": "[redacted]" + }, + { + "k": "longtask", + "t": "27217.6", + "d": "61", + "n": "self", + "i": "[redacted]" + }, + { + "k": "resource", + "t": "45668.6", + "d": "1670.1", + "n": "controller-with-preconnect.html", + "dt": "", + "it": variable14 + }, + { + "k": "mark", + "t": "45670.9", + "d": variable12, + "n": "init" + }, + { + "k": "mark", + "t": "45672.5", + "d": variable12, + "n": "custom_checkout_sdk_start" + }, + { + "k": "measure", + "t": "45672.8", + "d": "8087.4", + "n": "pre_clover_ewcs_setup" + }, + { + "k": "measure", + "t": "45672.8", + "d": "0.7", + "n": "fetch_client_secret" + }, + { + "k": "resource", + "t": "45673", + "d": "2374.3", + "n": "custom-checkout.js", + "dt": "", + "it": variable70 + }, + { + "k": "measure", + "t": "45673.6", + "d": "8086.6", + "n": "payment_page_init_controller_action" + }, + { + "k": "resource", + "t": "46667.5", + "d": "1032", + "n": "m-outer.html", + "dt": "", + "it": variable14 + }, + { + "k": "mark", + "t": "53764.1", + "d": variable12, + "n": "custom_checkout_sdk_ready" + }, + { + "k": "mark", + "t": "53773.6", + "d": variable12, + "n": "create-element-payment" + }, + { + "k": "resource", + "t": "53781.3", + "d": "1293.7", + "n": "hcaptcha-invisible.html", + "dt": "", + "it": variable14 + }, + { + "k": "mark", + "t": "53781.9", + "d": variable12, + "n": "elements-update" + }, + { + "k": "mark", + "t": "53782.3", + "d": variable12, + "n": "mount-element-payment" + }, + { + "k": "resource", + "t": "53782.9", + "d": "356.1", + "n": "elements-inner-payment.html", + "dt": "", + "it": variable14 + }, + { + "k": "mark", + "t": "53791.8", + "d": variable12, + "n": "create-element-address" + }, + { + "k": "mark", + "t": "53793.8", + "d": variable12, + "n": "mount-element-address" + }, + { + "k": "resource", + "t": "53794.8", + "d": "747.5", + "n": "elements-inner-address.html", + "dt": "", + "it": variable14 + }, + { + "k": "mark", + "t": "53798.3", + "d": variable12, + "n": "elements-update" + }, + { + "k": "resource", + "t": "56415.5", + "d": "1118.8", + "n": "trusted-types-checker.js", + "dt": "", + "it": variable70 + }, + { + "k": "resource", + "t": "57071.1", + "d": "1171.6", + "n": "google-maps-inner.html", + "dt": "", + "it": variable14 + }, + { + "k": "resource", + "t": "57075", + "d": "1371", + "n": "elements-inner-autocomplete-suggestions.html", + "dt": "", + "it": variable14 + }, + { + "k": "mark", + "t": "59259.8", + "d": variable12, + "n": "elements-update" + }, + { + "k": "long-animation-frame", + "t": "59486.4", + "d": "75.7", + "n": "long-animation-frame" + } + ], + "controller-with-preconnect.html": [ + { + "k": "visibility-state", + "t": "45668.5", + "d": variable12, + "n": modesDrlegacyCapabilitiesConnectMore + }, + { + "k": "resource", + "t": "47348.7", + "d": "1990.2", + "n": "shared.js", + "dt": "", + "it": variable70 + }, + { + "k": "resource", + "t": "47348.8", + "d": "3962.1", + "n": "controller-with-preconnect.js", + "dt": "", + "it": variable70 + }, + { + "k": "longtask", + "t": "51325.4", + "d": "86", + "n": "self" + }, + { + "k": "measure", + "t": "51401.3", + "d": "10.6", + "n": "controller_app_constructor" + }, + { + "k": "resource", + "t": "51409.6", + "d": "626.4", + "n": ".deploy_status_henson.json", + "dt": "", + "it": "fetch" + }, + { + "k": "resource", + "t": "51411.1", + "d": "961.7", + "n": "stripe-cookies.js", + "dt": "", + "it": variable70 + }, + { + "k": "resource", + "t": "51411.7", + "d": "626.8", + "n": ".deploy_status_henson.json", + "dt": "cache", + "it": "fetch" + }, + { + "k": "resource", + "t": "51414.6", + "d": "955.5", + "n": "countries_zh.json", + "dt": "", + "it": "fetch" + }, + { + "k": "resource", + "t": "51414.8", + "d": "2025.6", + "n": "zh.json", + "dt": "", + "it": "fetch" + }, + { + "k": "resource", + "t": "51416.5", + "d": "2338.6", + "n": "/v1/payment_pages/cs_live_a1XaCvZCoIEesvGS7aFlnPORQaFoV8h19Ihj8OnyIZUodOtCkd3hWY4gVM/init", + "dt": "", + "it": "fetch" + }, + { + "k": "resource", + "t": "51417.6", + "d": "1807.3", + "n": "/link/get-cookie", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "53043.9", + "d": "1501.1", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "53045.4", + "d": "2493.2", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "53767.4", + "d": "2712.9", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "53768.2", + "d": "767.6", + "n": "/v1/elements/sessions", + "dt": "", + "it": "fetch" + }, + { + "k": "resource", + "t": "53810.1", + "d": "2189.6", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "53813.7", + "d": "2666.4", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "53817", + "d": "1920.5", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "53818.4", + "d": "3723.1", + "n": "5906.js", + "dt": "", + "it": variable70 + }, + { + "k": "resource", + "t": "53818.4", + "d": "3152.7", + "n": "phone-numbers-lib.js", + "dt": "", + "it": variable70 + }, + { + "k": "resource", + "t": "54855.5", + "d": "2684.1", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "55540.1", + "d": "940.3", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "55748.1", + "d": "1222.2", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "56002.3", + "d": "1536.2", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "56481.1", + "d": "1058.3", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "56481.2", + "d": "490.8", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "56481.3", + "d": "1962.5", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "56481.6", + "d": "1963.6", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "57051.1", + "d": "2061.4", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "57540.7", + "d": "901.2", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "57548.6", + "d": "1584.7", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "58856.8", + "d": "884.8", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "58857.4", + "d": "884.4", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "59313.1", + "d": statsigpayloadLayerConfigs817522959ValueChatgptInstantAnswersDynamicConfigLabradorFetcherConfigAnnThreshold, + "n": ".deploy_status_henson.json", + "dt": "cache", + "it": "fetch" + } + ], + "google-maps-inner.html": [ + { + "k": "resource", + "t": "58246.6", + "d": "872.7", + "n": "google-maps-inner.js", + "dt": "", + "it": variable70 + }, + { + "k": "resource", + "t": "58246.6", + "d": variable12, + "n": "shared.js", + "dt": "cache", + "it": variable70 + }, + { + "k": "resource", + "t": "59145.5", + "d": "596.8", + "n": "/stripethirdparty-srv/assets/v32.1/GoogleMaps.html", + "dt": "", + "it": variable14 + } + ] + } + }, + "elements-d20c72de-2563-403f-b2b0-f08145f405e3-3822": { + "__null__": { + "outer": [ + { + "k": "mark", + "t": "53762.7", + "d": variable12, + "n": "elements-group" + }, + { + "k": "measure", + "t": "53763.5", + "d": "797.3", + "n": "setup_store_controller_action" + } + ], + "controller-with-preconnect.html": [ + { + "k": "measure", + "t": "53767.4", + "d": "789.9", + "n": "setup_store_for_elements_group" + }, + { + "k": "measure", + "t": "53814", + "d": "745.3", + "n": "update_elements_options" + }, + { + "k": "measure", + "t": "53822.7", + "d": "736.7", + "n": "update_elements_options" + }, + { + "k": "measure", + "t": "59309.5", + "d": "0.4", + "n": "update_elements_options" + } + ] + }, + "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad": { + "elements-inner-payment.html_payment": [ + { + "k": "measure", + "t": "53783.8", + "d": "5494", + "n": "payment_element_mount", + "m": { + "isAccessoryFrameRendering": attributeAriaExpanded, + "elementsInitSource": "custom_checkout", + "version": "basil" + } + }, + { + "k": "resource", + "t": "54143.1", + "d": variable12, + "n": "shared.js", + "dt": "cache", + "it": variable70 + }, + { + "k": "resource", + "t": "54143.2", + "d": "5012.2", + "n": "elements-inner-payment.js", + "dt": "", + "it": variable70 + }, + { + "k": "resource", + "t": "54143.3", + "d": "2339.1", + "n": "elements-inner-payment.css", + "dt": "", + "it": linkSettingsLinkBrand + }, + { + "k": "long-animation-frame", + "t": "54143.5", + "d": "2341.4", + "n": "long-animation-frame" + }, + { + "k": "measure", + "t": "59202.9", + "d": "1.4", + "n": "payment_frame_setup" + }, + { + "k": "resource", + "t": "59203.6", + "d": "1.9", + "n": "countries_zh.json", + "dt": "cache", + "it": "fetch" + }, + { + "k": "resource", + "t": "59203.7", + "d": statsigpayloadDynamicConfigs2850107578ValueAndroidLargeFontScaleThreshold, + "n": "zh.json", + "dt": "cache", + "it": "fetch" + }, + { + "k": "measure", + "t": "59205.5", + "d": "59.1", + "n": "payment_element_setup" + }, + { + "k": "measure", + "t": "59206.1", + "d": "17.4", + "n": "elements_state_provider" + }, + { + "k": "measure", + "t": "59233.6", + "d": "0.3", + "n": "consumer_session_wrapper" + }, + { + "k": "measure", + "t": "59233.7", + "d": "0.2", + "n": "consumer_session_wrapper_modal" + }, + { + "k": "measure", + "t": "59233.7", + "d": variable12, + "n": "consumer_session_wrapper_session" + }, + { + "k": "measure", + "t": "59247.3", + "d": "16.8", + "n": "link_default_integration" + }, + { + "k": "measure", + "t": "59247.7", + "d": "0.2", + "n": "link_default_integration_partnerships" + }, + { + "k": "measure", + "t": "59247.9", + "d": "16.2", + "n": "link_default_integration_email" + }, + { + "k": "long-animation-frame", + "t": "59259.4", + "d": "53.1", + "n": "long-animation-frame", + "i": "shared.js::TimerHandler:setTimeout" + }, + { + "k": "measure", + "t": "59264.6", + "d": "12.7", + "n": "payment_element_view_render" + }, + { + "k": "long-animation-frame", + "t": "59312.6", + "d": "65.1", + "n": "long-animation-frame", + "i": "shared.js::TimerHandler:setTimeout" + }, + { + "k": "longtask", + "t": "59315.3", + "d": statsigpayloadDynamicConfigs3689744552ValueLookbackDays, + "n": "self" + }, + { + "k": "long-animation-frame", + "t": "59486.2", + "d": "75.4", + "n": "long-animation-frame" + } + ], + "controller-with-preconnect.html": [ + { + "k": "measure", + "t": "59218.7", + "d": statsigpayloadDynamicConfigs2842273360ValueMinVisibleFraction, + "n": "get_elements_state" + }, + { + "k": "measure", + "t": "59298.7", + "d": "2.8", + "n": "get_elements_state" + } + ] + }, + "address-d9ee1043-0a90-48b6-8819-70ba036e9e21": { + "elements-inner-address.html_address": [ + { + "k": "measure", + "t": "53795.8", + "d": "3294", + "n": "address_element_mount", + "m": { + "isAccessoryFrameRendering": attributeAriaExpanded, + "elementsInitSource": "custom_checkout", + "version": "basil" + } + }, + { + "k": "resource", + "t": "54541", + "d": "2436.7", + "n": "elements-inner-address.js", + "dt": "", + "it": variable70 + }, + { + "k": "resource", + "t": "54541", + "d": variable12, + "n": "shared.js", + "dt": "cache", + "it": variable70 + }, + { + "k": "resource", + "t": "54541.1", + "d": "1198.2", + "n": "elements-inner-address.css", + "dt": "", + "it": linkSettingsLinkBrand + }, + { + "k": "long-animation-frame", + "t": "54541.4", + "d": "1206.3", + "n": "long-animation-frame", + "i": "shared.js" + }, + { + "k": "resource", + "t": "57011.3", + "d": "531.9", + "n": "5906.js", + "dt": "cache", + "it": variable70 + }, + { + "k": "resource", + "t": "57011.3", + "d": variable12, + "n": "phone-numbers-lib.js", + "dt": "cache", + "it": variable70 + }, + { + "k": "measure", + "t": "57016.5", + "d": "36", + "n": "elements_state_provider" + }, + { + "k": "resource", + "t": "57055.6", + "d": "1.9", + "n": "zh.json", + "dt": "cache", + "it": "fetch" + }, + { + "k": "resource", + "t": "57063.2", + "d": "1.1", + "n": "countries_zh.json", + "dt": "cache", + "it": "fetch" + }, + { + "k": "measure", + "t": "57067.2", + "d": "8.1", + "n": "consumer_session_wrapper" + }, + { + "k": "measure", + "t": "57067.2", + "d": 7, + "n": "consumer_session_wrapper_session" + }, + { + "k": "measure", + "t": "57067.3", + "d": statsigpayloadLayerConfigs817522959ValueChatgptInstantAnswersDynamicConfigAutoEvalSamplingRate, + "n": "consumer_session_wrapper_modal" + }, + { + "k": "long-animation-frame", + "t": "57156.7", + "d": "61.3", + "n": "long-animation-frame" + } + ], + "controller-with-preconnect.html": [ + { + "k": "measure", + "t": "57032.3", + "d": currencyConfigPromosBusinessOneDollarAmount, + "n": "get_elements_state" + } + ] + } + } + } + } + } + ), + "supported_types": "[\"long-animation-frame\",\"longtask\",\"mark\",\"measure\",\"resource\",\"visibility-state\"]", + "address_element_mount": "3294", + "payment_element_mount": "5494", + "element_ids": "[\"address-d9ee1043-0a90-48b6-8819-70ba036e9e21\",\"payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad\"]" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0397({ + variable12, + currencyConfigPromosBusinessOneDollarAmount, + attributeType, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + state, + siteKey + }) { + console.log("Executing request 0397") + const response = await fetch( + `https://api.hcaptcha.com/checksiteconfig?v=6ae4a3c801c9d99b7e0b591e01eb3ddc17b34400&host=b.stripecdn.com&sitekey=${siteKey}&sc=${currencyConfigPromosBusinessOneDollarAmount}&swa=${currencyConfigPromosBusinessOneDollarAmount}&spst=${currencyConfigPromosBusinessOneDollarAmount}`, + { + method: "POST", + headers: { + "host": "api.hcaptcha.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": modelsProductFeaturesAttachmentsAcceptedMimeTypes, + "sec-ch-ua-mobile": "?0", + "origin": "https//newassets.hcaptcha.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "sec-fetch-storage-access": state, + "referer": "https//newassets.hcaptcha.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": "__cf_bm=HEJ47TYdjlyPjg36Q23_obXJAwcU8dV3txz39IARFcs-1773809680-1.0.1.1-sPLPxPlDTBv0g835.F024M4K3JwnTE7V7AmDfy01IhUy3oyZ7RVRwECQUfOJCx2jsIVJ_JPInkWy1OMKPrBA8LoblqULi1QzQThoF7xXwBo" + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0397({ + variable12, + currencyConfigPromosBusinessOneDollarAmount, + attributeType, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + state, + passiveCaptchaSiteKey + }) { + console.log("Executing request 0397") + const response = await fetch( + `https://api.hcaptcha.com/checksiteconfig?v=6ae4a3c801c9d99b7e0b591e01eb3ddc17b34400&host=b.stripecdn.com&sitekey=${passiveCaptchaSiteKey}&sc=${currencyConfigPromosBusinessOneDollarAmount}&swa=${currencyConfigPromosBusinessOneDollarAmount}&spst=${currencyConfigPromosBusinessOneDollarAmount}`, + { + method: "POST", + headers: { + "host": "api.hcaptcha.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": modelsProductFeaturesAttachmentsAcceptedMimeTypes, + "sec-ch-ua-mobile": "?0", + "origin": "https//newassets.hcaptcha.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "sec-fetch-storage-access": state, + "referer": "https//newassets.hcaptcha.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": "__cf_bm=HEJ47TYdjlyPjg36Q23_obXJAwcU8dV3txz39IARFcs-1773809680-1.0.1.1-sPLPxPlDTBv0g835.F024M4K3JwnTE7V7AmDfy01IhUy3oyZ7RVRwECQUfOJCx2jsIVJ_JPInkWy1OMKPrBA8LoblqULi1QzQThoF7xXwBo" + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0398({ + variable12, + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs2179180337ValueMaxAttempts, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueSidebarPaginationPageSize, + variable38, + 22, + variable42, + variable57, + statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + variable33, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + systemHintsLogoAttributeFill, + variable4, + userGroups, + statsigpayloadDynamicConfigs489084288ValueOptions, + urlAudience, + checkoutSessionId, + connectorsSupportedAuthTokenUrl, + attributeHref10, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + emailDomainType, + sessionId, + configId1, + experimentsDataArbId, + variable72 + }) { + console.log("Executing request 0398") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs2179180337ValueMaxAttempts}&events=${JSON.stringify( + [ + { + "event_name": "elements.performance_summary", + "created": "1773809683981", + "batching_enabled": variable4, + "event_count": "116", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "241fa5f1-326c-4367-84a2-37f9231ef727", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "time_origin": "1773809623118", + "summaries": JSON.stringify( + [ + { + "name": "payment_element_mount", + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad", + "start_time": "53784", + "duration": "5494", + "summary": { + "duration": "5529", + "source_event": "", + "processing_start_time": variable12, + "processing_duration": "5529", + "longest_request_url": "elements-inner-payment.js", + "longest_request_start_time": "359", + "longest_request_duration": "5012", + "last_completed_request_url": "countries_zh.json", + "last_completed_request_start_time": "5420", + "last_completed_request_duration": statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + "last_frame_start_time": "5476", + "last_frame_duration": "53", + "last_frame_blocking": variable12, + "last_frame_working": "52", + "last_frame_pre_layout": variable12, + "last_frame_style_and_layout": currencyConfigPromosBusinessOneDollarAmount, + "last_frame_forced_style_and_layout": statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + "total_time_idle": "102", + "total_time_network": "5389", + "total_time_bottleneck": "103", + "total_time_events": variable12, + "total_time_blocking": variable12, + "total_time_working": "3660", + "total_time_pre_layout": variable12, + "total_time_style_and_layout": statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + "total_time_forced_style_and_layout": statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + "total_long_animation_frames": statsigpayloadDynamicConfigs2179180337ValueMaxAttempts, + "total_long_tasks": variable12, + "total_events": variable12, + "total_long_events": variable12, + "total_resources_api": statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + "total_resources_asset": statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + "total_resources_embed": statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + "total_resources_script": "11", + "total_resources_other": variable12, + "total_resources_ignored": "17", + "bottlenecks": [ + { + "name": "/v1/elements/sessions", + "entry_type": "resource", + "start_time": "-16", + "duration": "768", + "total_time_bottleneck": variable38, + "bottleneck_ranges": [ + { + "start_time": "-16", + "duration": variable38 + } + ] + }, + { + "name": "elements-inner-payment.js", + "entry_type": "resource", + "start_time": "359", + "duration": "5012", + "total_time_bottleneck": "36", + "bottleneck_ranges": [ + { + "start_time": "5336", + "duration": "36" + } + ] + }, + { + "name": "countries_zh.json", + "entry_type": "resource", + "start_time": "5420", + "duration": statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + "total_time_bottleneck": variable12, + "bottleneck_ranges": [ + { + "start_time": "5420", + "duration": variable12 + }, + { + "start_time": "5421", + "duration": variable12 + } + ] + }, + { + "name": "long-animation-frame", + "entry_type": "long-animation-frame", + "start_time": "5476", + "duration": "53", + "total_time_bottleneck": "53", + "bottleneck_ranges": [ + { + "start_time": "5476", + "duration": "53" + } + ] + } + ], + "idle_entries": [ + { + "start_time": "5372", + "duration": "48", + "name": "idle", + "entry_type": "measure" + }, + { + "start_time": "5422", + "duration": "54", + "name": "idle", + "entry_type": "measure" + } + ], + "long_events": userGroups + }, + "decomposition": { + "error": "Error populating node - found multiple relevant entries for node - update_elements_options (expected 1)", + "version": "v3_ewcs_pre_clover", + "duration": "5494" + } + }, + { + "name": "address_element_mount", + "element_id": "address-d9ee1043-0a90-48b6-8819-70ba036e9e21", + "start_time": "53796", + "duration": "3294", + "summary": { + "duration": "3294", + "source_event": "", + "processing_start_time": variable12, + "processing_duration": "3294", + "longest_request_url": "phone-numbers-lib.js", + "longest_request_start_time": 22, + "longest_request_duration": "3153", + "last_completed_request_url": "countries_zh.json", + "last_completed_request_start_time": "3267", + "last_completed_request_duration": currencyConfigPromosBusinessOneDollarAmount, + "last_frame_start_time": "746", + "last_frame_duration": "1206", + "last_frame_blocking": variable12, + "last_frame_working": "1206", + "last_frame_pre_layout": variable12, + "last_frame_style_and_layout": variable12, + "last_frame_forced_style_and_layout": variable12, + "total_time_idle": "109", + "total_time_network": "3212", + "total_time_bottleneck": "1246", + "total_time_events": variable12, + "total_time_blocking": variable12, + "total_time_working": "3547", + "total_time_pre_layout": variable12, + "total_time_style_and_layout": currencyConfigPromosBusinessOneDollarAmount, + "total_time_forced_style_and_layout": variable12, + "total_long_animation_frames": statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + "total_long_tasks": variable12, + "total_events": variable12, + "total_long_events": variable12, + "total_resources_api": statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + "total_resources_asset": statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + "total_resources_embed": statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + "total_resources_script": statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + "total_resources_other": variable12, + "total_resources_ignored": "9", + "bottlenecks": [ + { + "name": "/v1/elements/sessions", + "entry_type": "resource", + "start_time": "-28", + "duration": "768", + "total_time_bottleneck": variable38, + "bottleneck_ranges": [ + { + "start_time": "-28", + "duration": variable38 + } + ] + }, + { + "name": "elements-inner-address.js", + "entry_type": "resource", + "start_time": variable33, + "duration": "2437", + "total_time_bottleneck": "1230", + "bottleneck_ranges": [ + { + "start_time": variable33, + "duration": variable12 + }, + { + "start_time": "1952", + "duration": "1230" + } + ] + }, + { + "name": "zh.json", + "entry_type": "resource", + "start_time": "3260", + "duration": statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + "total_time_bottleneck": statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + "bottleneck_ranges": [ + { + "start_time": "3260", + "duration": statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount + } + ] + }, + { + "name": "countries_zh.json", + "entry_type": "resource", + "start_time": "3267", + "duration": currencyConfigPromosBusinessOneDollarAmount, + "total_time_bottleneck": currencyConfigPromosBusinessOneDollarAmount, + "bottleneck_ranges": [ + { + "start_time": "3267", + "duration": currencyConfigPromosBusinessOneDollarAmount + } + ] + } + ], + "idle_entries": [ + { + "start_time": "3182", + "duration": "34", + "name": "idle", + "entry_type": "measure" + }, + { + "start_time": "3216", + "duration": variable57, + "name": "idle", + "entry_type": "measure" + }, + { + "start_time": "3262", + "duration": statsigpayloadDynamicConfigs216497991ValueSidebarPaginationPageSize, + "name": "idle", + "entry_type": "measure" + }, + { + "start_time": "3269", + "duration": variable42, + "name": "idle", + "entry_type": "measure" + } + ], + "long_events": userGroups + }, + "decomposition": { + "error": "Element address is unsupported", + "version": connectorsSupportedAuthTokenUrl, + "duration": "3294" + } + } + ] + ), + "supported_types": "[\"long-animation-frame\",\"longtask\",\"mark\",\"measure\",\"resource\",\"visibility-state\"]", + "address_element_mount": "3294", + "payment_element_mount": "5494", + "element_ids": "[\"address-d9ee1043-0a90-48b6-8819-70ba036e9e21\",\"payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad\"]", + "performance_reporter_ms": statsigpayloadDynamicConfigs216497991ValueSidebarPaginationPageSize + }, + { + "event_name": "rum.stripejs", + "created": "1773809684950", + "batching_enabled": variable4, + "event_count": "117", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + "event_id": "99de1b8a-61f1-4595-aced-95de241a2703", + "team_identifier": "t_7", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "requestId": variable72, + "tokenType": emailDomainType, + "url": `https://${attributeHref10}/${urlAudience}/consumers/sessions/lookup`, + "status": statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + "start": "1773809682426", + "end": "1773809684950", + "resourceTiming[startTime]": "13639.6", + "resourceTiming[duration]": "2523.5", + "resourceTiming[redirectStart]": variable12, + "resourceTiming[redirectEnd]": variable12, + "resourceTiming[fetchStart]": "13639.6", + "resourceTiming[domainLookupStart]": "13639.6", + "resourceTiming[domainLookupEnd]": "13639.6", + "resourceTiming[connectStart]": "13640", + "resourceTiming[connectEnd]": "14085.1", + "resourceTiming[secureConnectionStart]": "14081.9", + "resourceTiming[requestStart]": "14085.4", + "resourceTiming[responseStart]": "16160.6", + "resourceTiming[responseEnd]": "16163.1", + "paymentUserAgent": "stripe.js/5e596c82e6; stripe-js-v3/5e596c82e6" + }, + { + "event_name": "elements.link.global_holdback.lookup_success", + "created": "1773809684951", + "batching_enabled": variable4, + "event_count": "118", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "a0de1349-50b6-4350-bb1c-79f29f659289", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "request_id": variable72, + "consumer_account_id": emailDomainType + }, + { + "event_name": "elements.link.ab_test.exposure_update", + "created": "1773809684953", + "batching_enabled": variable4, + "event_count": "119", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "6d06a5b4-64e8-4a23-8fa9-2b94f2111f85", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "intent_type": "deferred_intent_subscription", + "dvs_provided": statsigpayloadDynamicConfigs489084288ValueOptions, + "is_returning_link_user": attributeAriaExpanded, + "recognition_type": systemHintsLogoAttributeFill, + "is_link_holdback_manager": variable4, + "arb_id": experimentsDataArbId + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0400({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + sessionId, + configId1 + }) { + console.log("Executing request 0400") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&events=${JSON.stringify( + [ + { + "event_name": "elements.event.load", + "created": "1773809686645", + "batching_enabled": variable4, + "event_count": "120", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "147975d2-5fdb-4a28-b3a0-da456c9ab8b4", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "element": "autocompleteSuggestions", + "element_mode": "billing", + "element_id": "address-d9ee1043-0a90-48b6-8819-70ba036e9e21" + }, + { + "event_name": "elements.get_elements_state", + "created": "1773809686653", + "batching_enabled": variable4, + "event_count": "121", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "ae2219b4-3f9b-418b-be93-cd80077939cd", + "team_identifier": "t_0", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185" + }, + { + "event_name": "elements.appearance.border_adjust", + "created": "1773809686687", + "batching_enabled": variable4, + "event_count": "122", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "f4a8f948-c253-4f51-af8e-7175ae43d1a3", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "element": "autocompleteSuggestions", + "element_mode": "billing", + "element_id": "address-d9ee1043-0a90-48b6-8819-70ba036e9e21" + }, + { + "event_name": "elements.event.ready", + "created": "1773809686688", + "batching_enabled": variable4, + "event_count": "123", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "42446f94-db4f-4a18-8f21-d738bf78b212", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "element": "autocompleteSuggestions", + "element_mode": "billing", + "element_id": "address-d9ee1043-0a90-48b6-8819-70ba036e9e21" + }, + { + "event_name": "elements.timings", + "created": "1773809686688", + "batching_enabled": variable4, + "event_count": "124", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "8355b27c-a23d-43c0-bd8d-e7acb8fdf043", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "dom_loading": "1372", + "dom_interactive": "1374", + "dom_complete": "6453", + "since_sjs_load": "17925", + "since_stripe_create": "17906", + "since_group_create": "9808", + "since_create": "9778", + "since_mount": "41", + "since_custom_checkout_init": "17898", + "since_custom_checkout_sdk_create": "17897", + "since_custom_checkout_sdk_ready": "9806", + "loader_enabled": attributeAriaExpanded, + "since_fetch": "6495", + "element": "autocompleteSuggestions", + "element_mode": "billing", + "element_id": "address-d9ee1043-0a90-48b6-8819-70ba036e9e21" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0401({ + variable12, + currencyConfigPromosBusinessOneDollarAmount, + attributeType, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + state, + linkSettingsHcaptchaSiteKey + }) { + console.log("Executing request 0401") + const response = await fetch( + `https://api2.hcaptcha.com/checksiteconfig?v=6ae4a3c801c9d99b7e0b591e01eb3ddc17b34400&host=b.stripecdn.com&sitekey=${linkSettingsHcaptchaSiteKey}&sc=${currencyConfigPromosBusinessOneDollarAmount}&swa=${currencyConfigPromosBusinessOneDollarAmount}&spst=${currencyConfigPromosBusinessOneDollarAmount}&r=${currencyConfigPromosBusinessOneDollarAmount}`, + { + method: "POST", + headers: { + "host": "api2.hcaptcha.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": modelsProductFeaturesAttachmentsAcceptedMimeTypes, + "sec-ch-ua-mobile": "?0", + "origin": "https//newassets.hcaptcha.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "sec-fetch-storage-access": state, + "referer": "https//newassets.hcaptcha.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": "__cf_bm=HEJ47TYdjlyPjg36Q23_obXJAwcU8dV3txz39IARFcs-1773809680-1.0.1.1-sPLPxPlDTBv0g835.F024M4K3JwnTE7V7AmDfy01IhUy3oyZ7RVRwECQUfOJCx2jsIVJ_JPInkWy1OMKPrBA8LoblqULi1QzQThoF7xXwBo" + } + } + ) + const body = await response.text() + return { + cflbCookie6: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '__cflb').split("=")[1].split(";")[0].trim(), + c: JSON.parse(body)["c"] + } + } + async function executeRequest0402({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + attributeContent, + userGroups, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + cfuvidCookie17, + oaiScCookie9 + }) { + console.log("Executing request 0402") + const response = await fetch( + `https://${origins}/ces/statsc/flush`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/ces/statsc/flush", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/statsc/flush", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "content-type": attributeType, + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//chatgpt.com/checkout/openai_llc/cs_live_a1XaCvZCoIEesvGS7aFlnPORQaFoV8h19Ihj8OnyIZUodOtCkd3hWY4gVM", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-gn=; _gcl_au=1.1.1190047189.1773809654; _fbp=fb.1.1773809654765.70493485518132342; _cfuvid=${cfuvidCookie17}; __Secure-next-auth.session-token=eyJhbGciOiJkaXIiLCJlbmMiOiJBMjU2R0NNIn0..CV1dsn7cCCMutGK-.FMKxs-4nT9MVzKKlCP-64qV39c3_8aL-Tgk2zCSAJSFBN8wB_PuS4xVJGi3wQsaIxDzbEgTt8Vf3S9lgbrI9IW4kj9-b6fogWdgWVE-__cVw6JKVnq2PNBgfsTr5fJSyjJ9_6A2sO3vLZRiedDMQ90nyu1wwzMRds87SD5M-7TAA1zxyLSSL0tpkh14F6_6fhALoWeYwOdAZYhZat_mdqhEprpyee-KC4uwF7wNWKOpIWRMZPWA-9WBnS-mTV1uWm-YOunStvtq1GznvS5bP3nL00jGzwqZp2P91rxLFzOGD55SGKxnXKfD4P7-u5qTI5zXKPOPMKBkhE-5CsFplEXXJfuA-hHgeJxr_uAuKgpDQ0Tq7TrP_smN0ozZ7Xm6uZGriV3Aud1yZqvLxZ5B_Kdxs2x8YrFoht-JKRPG7bzbtXKMNfN5x_bs90UzibHNcgLVOm-iAl5EmkQjTQaIi1jKUYc7IVwqO0Hiv8dOynMJCOZmXJaPtmQVg6F44Pze5_db5Bxuuw3PXNuwt_AN1eqE7DlEEkIzEG9ruJipkNM0YPWgxg792AWJBc7d0pC8Z8M5ie1JbZ7FOSYRzERVFBDN3TkYqrtQ6F9EKK814h7716W62LffWZ3JsUd3JFH1Z6UXpJGlSA3Ux8S4pixj6Tbg-AdJq04k_hBYlVEKgDmPhOxlAM_SgRIP8QxUS5TLT_kwLqAvJnIMsQjp-A-oDWh_6zLgKZc0vcmsxvQzFM5IT-xKA1cB9fjdPu_HZDB2qjmj4OKYJkn21E9M-OEckzYARPmE2_jsFVLA8uggCf4C4o3EGnMEoNlUei_zAlh1Ui-SEnIoHdlo5D7T3smPKCvoVxUcyleiR1xKMPml889m1IPWB4kB3yEnlX-aA6_Vb-B4f_TwNRaFUimWxRZi-1rk1A3Z3wMKnP1whvvmsXbLimHcefQj34bDNwWWpVtwGnDw0UQUFrzxgCK2WkPX0yaxhNExXDR9Yt78CDQhhqGhOFgqLFScLVzxS5DU6mwkgeosrUViw4TEUR8QB30y6Pgv3e8SrIDQSuBMBAIpwQzUYp6Cy7CACJP2BMAViLcGghtBUtyHYROInzABWLI6OHVcsU0t9uOfXcf-qKaJei0C-BfU4iw0t7fTNszuxKiNR4m8Xm4RJWKwWfhPdvaOEqbnr40CqQ6i93ENZisXfCjK0hOfA10ml19ebW0YXsEUHAfYrb0WoCvMfH8Bxorn6lc_xwA9stHvcTw4uMISuqLAq1ik4MOXAZ_3ARNmhgzoAk3atqDNe7m5W4MiDDQ_qAXeR2BZlNavEbyQEvf0wbsBOOWn5G4g-mdWjIpHDel9iTaCsMfD4Y2PLHO4598FGGuaL7viK70U4AJ33mNVtuVtBRr_-LLO2wefymIZVvdW4ou3jeauFTywXWEbmZoLjWVh_hV6CtMMuJw6equcEpkA4Lv1PcuUo_ft7o29Z3tpXxWdTGOtbrD_-DINQ9YVaaP7MAcDVnkbu_-d6tS14wTXwNQxYpLJpCjjBo21A7D9iresRGJ5eSb8iyY9ghigeoEyakzL8wcW08L34GcHYREWZPb2XJQUbNOxz4LLNpJ0XzRWbHbIVn7I67o_uDbKzAOFLtoUsqTFnwBWumBNNDdF7UZEHWS168cxeyduZVesyc5fdY9bZrS-6rDThFIoHOaLMKteEnex61SkRwXKj01y256WJqRan4_isaUdgCCSX8_dmg_tZI6W54U2UQ6fcZzL37OTfXps-Q_Shhdl8lZAs4GCwgBZyA69LFJOoR0vx6g1Z-g0euyjm9_6dzPJsGoQu2SvCv9x0KUXIx2fkG2oJIG0IrDO4Aw6sTioFSE2GvqC13qh470dcSYvrSjKJCqB8XM90-8ZZ3TM2ZeYWvTcZi9kG4wVK3TOpuVk_sdswNyd6t0hY9Yyg9Z3bvNCRfVguqyRqbKtFiIlGIdou_3-Sk3YLUutC27N19NyGFi6o7aGYnFhxZMXlMJvzapwIOuG2elfPnLMvVZLyJh9gJBsmmIu1_CfZ_7tV3gEmO3dPkvD96eJlUNvucabgGqz7hNovhbMvJjH7x-AKu-GwycJBcEwJ7btABj9oT9yube0-P8C-AcTmU6XOLOCz8Tk4m4_-B-kJnpaHmw4Qd1zRvkItsPnL87DyDtpuBhemK62YbEH08aC71taj42IH02INSVkPlAoceOYVTaPA1bKHH8lYyPTRU7bNnyt91lc7KJFhQe9Kb5FEuESj9GaiEi91XEEtwTYTyTPlVPEJmRm1VIkzZxaLfY2P9bttWRTByMT3ECjeayW2WHLtjrwCAMOJgrNoQDsXx6srfvkoAOTJ8TkAhMJLKJ6vt_nM9XAtMkWhASmWthDpHoRWHRZMryYNZQZdgwHUjCksy1GvLlMjYG-II7nryDyMUhdKvX-d0erq5xpUzNXb7DXd4OfjWW4nr_6_DpHVzU2LE6Zo2lKWjYGdTvXdaCA9u4dij5cNkNc2H-Ryd29goqwTbLqieU1r44VB_7zpQtJRGUJaoRzIPMb3AbEEqKdxlUk7N80s0vfkCFzS429Vj5DafZJfOsVDx50kywrVATiNe9hp_gsiNSu7wqjwfUe4x_YRg-5_f6d7chU9dRIZvTxO97XWcioH36xJzpGbNYhWnkOkoNLhBjvoyCCkcgd94mUBE_FiWXvc6uFFdL1eWQCQpDQxO-9hXPJ-mo3Ji33G7qrJ7cCLcS17Zvhz1SOkRL2B2Hb2cl5D7LBO5S0OjnzK1PUhuOG4yL_PlWv7-GvbyPzQ0gnu-qWSKGyc5yJgrpKbxVX4Sl9cBh-xI3VVWYzz2LklhgaRYHJl3Gt9W9v5pUuW2e1-dPhZjhioZCnnkOXPwC5JwjY_BOSprt1NMy1ydW61-FAfVdTnNTwPG67lN-wSrYuoRkDQ8diydqmvcRepYL8ZM0dc5v07ZUT3wWfuGGsTioO1mfG9ZFoT0K8nepd7EaJEhyl2gWli2qvXK8p8NAcB9FZgCEqih22E1xtZbOw561qCoXT9St77h40BIWbFW30p5oEeZ-yIO0X7zYhabaVsf0tfE5FWpvQVkFoZulEqE2QNiJr3qVslWJFfrANUUIQx6YSzWHCojnRZfo85G11PxX0E1gsApwQxwNqiv1TUjYyICvZdXMyX08BeMlW2BvPSSZaxutcZ_grwciT-ValyADAH3rC9lXGp88zg28-zUAavGQdO4r03mSPBHnK84FGZ-eAJ6ogy-08ftWJjIUFV5AEYsOelYaRGyZwQJEBoOVIpl2mM6232Sfo9to8BTv4Wx7IslecAboeXw00Bv9d9_vPJIy9w8ZbjhqCduPbWxu0zuQN79iuUJF0YHZYOuj_z4ZxO1jm-gQH-fuD2jZoZNMxlURO7Ot5islt0U1ayqPi7XgbJUSck1OtsJNqfM2tYpw_CXeygByjedYVmvaPbfj0QUKHjLqm1UQBDyuzTynoAT3-5I3PLpgcMJ832n4fX1YyKAoLW5xiIXfE4t4KuyZGmteAwXaJJy9Bl57Rjl1OFT59l1SH975d2aLpavqs1d0Mc6fDMWiyKdF0MRDm5ajHBkas4jOaLSvbc93UzNLfvq-bARZvN_3a4iJCt2uQ_qcw-ca5d5D2kvQ5B5mQt1iglA_OK-kJ88ZCZZ9d9pONV4VkA8L-bg7NbfKu_XS2rJPvToH062omCYsp74t3FbmfkMkCoVWVGGWejW-8lcEoWWiE.BWb0NEloxK6cZq3AsvdqLA; oai-sc=${oaiScCookie9}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809665$j38$l0$h0; __cf_bm=t2NbpHvSPl3V.1z8MZBOi65twAXaiR45c9d4E15eL1c-1773809665.1175745-1.0.1.1-pOYmOJNmihr_hw4XqKr63NhGzDQ.b2GgyRTpp8uFpY8JxO53J1mNiP1N8I5C3QhF8z40gV4usho1WL2GnU_5HoWN4kLYnUMfwIJ0lT_ScE2FLHxJCqPK3UI98ZXjI8.C; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _dd_s=aid` + }, + body: JSON.stringify( + { + "counters": [ + { + "namespace": "segment", + "metric": "json_analytics_event_tracked", + "tags": { + "platform": "web", + "event_name": "Account Pay: Navigating to Payment Checkout", + "appName": attributeContent, + "appVersion": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": "segment", + "metric": "analytics_event_tracked", + "tags": { + "platform": "web", + "event_name": "chatgpt_checkout_navigate_to_checkout", + "app_name": attributeContent, + "app_version": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": "segment", + "metric": "json_analytics_event_tracked", + "tags": { + "platform": "web", + "event_name": "Account Pay: Account Payment Modal Time Spent", + "appName": attributeContent, + "appVersion": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": "segment", + "metric": "json_analytics_event_tracked", + "tags": { + "platform": "web", + "event_name": "Checkout Page Loading Time Spent MS", + "appName": attributeContent, + "appVersion": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": "segment", + "metric": "analytics_event_tracked", + "tags": { + "platform": "web", + "event_name": "chatgpt_checkout_page_shown", + "app_name": attributeContent, + "app_version": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": "segment", + "metric": "json_analytics_event_tracked", + "tags": { + "platform": "web", + "event_name": "Inhouse Checkout: Stripe Loading Time Spent MS", + "appName": attributeContent, + "appVersion": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + } + ], + "histograms": userGroups, + "client_type": "web" + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0403({ + systemHintsLogoAttributeFill, + urlAudience + }) { + console.log("Executing request 0403") + const response = await fetch( + `https://content-autofill.googleapis.com/${urlAudience}/pages/ChVDaHJvbWUvMTQ1LjAuNzYzMi4xMTkSPAkIMhbQHVZG_hIFDVNaR8USBQ2_JFKQEgUNU1pHxRIFDb8kUpASBQ1TWkfFEgUNvyRSkCE7QgnP4aR9ThI8CT5eG_8TJRbHEgUNU1pHxRIFDb8kUpASBQ1TWkfFEgUNvyRSkBIFDVNaR8USBQ2_JFKQITtCCc_hpH1OGLepygE=??alt=proto`, + { + method: "GET", + headers: { + "host": "content-autofill.googleapis.com", + "connection": "keep-alive", + "x-goog-encode-response-if-executable": "base64", + "x-goog-api-key": "AIzaSyDr2UxVnv_U85AbhhY8XSHSIavUW0DC-sY", + "x-client-data": "CJe2yQEIpbbJAQipncoBCIziygEIlqHLAQiGoM0BCKKhzwEI0bDPAQjQsc8BCKa2zwEI1rfPAQjkuM8BCMK5zwEY7IXPARiKqc8B", + "sec-fetch-site": systemHintsLogoAttributeFill, + "sec-fetch-mode": "no-cors", + "sec-fetch-dest": "empty", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0404({ + variable12, + currencyConfigPromosBusinessOneDollarAmount, + 7, + statsigpayloadDynamicConfigs3689744552ValueLookbackDays, + statsigpayloadLayerConfigs1368081792ValueTatortotContextualUpsellFrequencyWindowLengthHours, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + variable14, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + sessionId, + configId1, + variable70, + modesDrlegacyCapabilitiesConnectMore, + statsigpayloadLayerConfigs817522959ValueChatgptInstantAnswersDynamicConfigLabradorFetcherConfigAnnThreshold, + linkSettingsLinkBrand, + statsigpayloadDynamicConfigs2850107578ValueAndroidLargeFontScaleThreshold, + statsigpayloadDynamicConfigs2842273360ValueMinVisibleFraction, + statsigpayloadLayerConfigs817522959ValueChatgptInstantAnswersDynamicConfigAutoEvalSamplingRate + }) { + console.log("Executing request 0404") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${currencyConfigPromosBusinessOneDollarAmount}&events=${JSON.stringify( + [ + { + "event_name": "elements.performance_timeline", + "created": "1773809692976", + "batching_enabled": variable4, + "event_count": "125", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "97303482-aff8-4002-a77b-436be6ccff9d", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "time_origin": "1773809623118", + "timeline": JSON.stringify( + { + "e9ea369f-4f2d-4a53-b21a-1abbc01b2820": { + "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b": { + "__null__": { + "__null__": { + "outer": [ + { + "k": "long-animation-frame", + "t": "4453.3", + "d": "81.6", + "n": "long-animation-frame" + }, + { + "k": "long-animation-frame", + "t": "5056.4", + "d": "118.6", + "n": "long-animation-frame", + "i": "[redacted]" + }, + { + "k": "longtask", + "t": "5065.4", + "d": "105", + "n": "self", + "i": "[redacted]" + }, + { + "k": "long-animation-frame", + "t": "5374.3", + "d": "138", + "n": "long-animation-frame", + "i": "[redacted]" + }, + { + "k": "longtask", + "t": "5374.3", + "d": "97", + "n": "self", + "i": "[redacted]" + }, + { + "k": "long-animation-frame", + "t": "5513.4", + "d": "112", + "n": "long-animation-frame", + "i": "[redacted]" + }, + { + "k": "longtask", + "t": "5515.1", + "d": "110", + "n": "self", + "i": "[redacted]" + }, + { + "k": "long-animation-frame", + "t": "7009.9", + "d": "61.6", + "n": "long-animation-frame", + "i": "[redacted]" + }, + { + "k": "long-animation-frame", + "t": "17469.7", + "d": "270.7", + "n": "long-animation-frame", + "i": "[redacted]" + }, + { + "k": "longtask", + "t": "17664.3", + "d": statsigpayloadLayerConfigs1368081792ValueTatortotContextualUpsellFrequencyWindowLengthHours, + "n": "self", + "i": "[redacted]" + }, + { + "k": "long-animation-frame", + "t": "17773.1", + "d": "416.6", + "n": "long-animation-frame" + }, + { + "k": "long-animation-frame", + "t": "21473.5", + "d": "52", + "n": "long-animation-frame", + "i": "[redacted]" + }, + { + "k": "longtask", + "t": "21473.5", + "d": "51", + "n": "self", + "i": "[redacted]" + }, + { + "k": "long-animation-frame", + "t": "27217.6", + "d": "61.9", + "n": "long-animation-frame", + "i": "[redacted]" + }, + { + "k": "longtask", + "t": "27217.6", + "d": "61", + "n": "self", + "i": "[redacted]" + }, + { + "k": "resource", + "t": "45668.6", + "d": "1670.1", + "n": "controller-with-preconnect.html", + "dt": "", + "it": variable14 + }, + { + "k": "mark", + "t": "45670.9", + "d": variable12, + "n": "init" + }, + { + "k": "mark", + "t": "45672.5", + "d": variable12, + "n": "custom_checkout_sdk_start" + }, + { + "k": "measure", + "t": "45672.8", + "d": "8087.4", + "n": "pre_clover_ewcs_setup" + }, + { + "k": "measure", + "t": "45672.8", + "d": "0.7", + "n": "fetch_client_secret" + }, + { + "k": "resource", + "t": "45673", + "d": "2374.3", + "n": "custom-checkout.js", + "dt": "", + "it": variable70 + }, + { + "k": "measure", + "t": "45673.6", + "d": "8086.6", + "n": "payment_page_init_controller_action" + }, + { + "k": "resource", + "t": "46667.5", + "d": "1032", + "n": "m-outer.html", + "dt": "", + "it": variable14 + }, + { + "k": "mark", + "t": "53764.1", + "d": variable12, + "n": "custom_checkout_sdk_ready" + }, + { + "k": "mark", + "t": "53773.6", + "d": variable12, + "n": "create-element-payment" + }, + { + "k": "resource", + "t": "53781.3", + "d": "1293.7", + "n": "hcaptcha-invisible.html", + "dt": "", + "it": variable14 + }, + { + "k": "mark", + "t": "53781.9", + "d": variable12, + "n": "elements-update" + }, + { + "k": "mark", + "t": "53782.3", + "d": variable12, + "n": "mount-element-payment" + }, + { + "k": "resource", + "t": "53782.9", + "d": "356.1", + "n": "elements-inner-payment.html", + "dt": "", + "it": variable14 + }, + { + "k": "mark", + "t": "53791.8", + "d": variable12, + "n": "create-element-address" + }, + { + "k": "mark", + "t": "53793.8", + "d": variable12, + "n": "mount-element-address" + }, + { + "k": "resource", + "t": "53794.8", + "d": "747.5", + "n": "elements-inner-address.html", + "dt": "", + "it": variable14 + }, + { + "k": "mark", + "t": "53798.3", + "d": variable12, + "n": "elements-update" + }, + { + "k": "resource", + "t": "56415.5", + "d": "1118.8", + "n": "trusted-types-checker.js", + "dt": "", + "it": variable70 + }, + { + "k": "resource", + "t": "57071.1", + "d": "1171.6", + "n": "google-maps-inner.html", + "dt": "", + "it": variable14 + }, + { + "k": "resource", + "t": "57075", + "d": "1371", + "n": "elements-inner-autocomplete-suggestions.html", + "dt": "", + "it": variable14 + }, + { + "k": "mark", + "t": "59259.8", + "d": variable12, + "n": "elements-update" + }, + { + "k": "long-animation-frame", + "t": "59486.4", + "d": "75.7", + "n": "long-animation-frame" + }, + { + "k": "mark", + "t": "60798.7", + "d": variable12, + "n": "elements-update" + } + ], + "controller-with-preconnect.html": [ + { + "k": "visibility-state", + "t": "45668.5", + "d": variable12, + "n": modesDrlegacyCapabilitiesConnectMore + }, + { + "k": "resource", + "t": "47348.7", + "d": "1990.2", + "n": "shared.js", + "dt": "", + "it": variable70 + }, + { + "k": "resource", + "t": "47348.8", + "d": "3962.1", + "n": "controller-with-preconnect.js", + "dt": "", + "it": variable70 + }, + { + "k": "longtask", + "t": "51325.4", + "d": "86", + "n": "self" + }, + { + "k": "measure", + "t": "51401.3", + "d": "10.6", + "n": "controller_app_constructor" + }, + { + "k": "resource", + "t": "51409.6", + "d": "626.4", + "n": ".deploy_status_henson.json", + "dt": "", + "it": "fetch" + }, + { + "k": "resource", + "t": "51411.1", + "d": "961.7", + "n": "stripe-cookies.js", + "dt": "", + "it": variable70 + }, + { + "k": "resource", + "t": "51411.7", + "d": "626.8", + "n": ".deploy_status_henson.json", + "dt": "cache", + "it": "fetch" + }, + { + "k": "resource", + "t": "51414.6", + "d": "955.5", + "n": "countries_zh.json", + "dt": "", + "it": "fetch" + }, + { + "k": "resource", + "t": "51414.8", + "d": "2025.6", + "n": "zh.json", + "dt": "", + "it": "fetch" + }, + { + "k": "resource", + "t": "51416.5", + "d": "2338.6", + "n": "/v1/payment_pages/cs_live_a1XaCvZCoIEesvGS7aFlnPORQaFoV8h19Ihj8OnyIZUodOtCkd3hWY4gVM/init", + "dt": "", + "it": "fetch" + }, + { + "k": "resource", + "t": "51417.6", + "d": "1807.3", + "n": "/link/get-cookie", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "53043.9", + "d": "1501.1", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "53045.4", + "d": "2493.2", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "53767.4", + "d": "2712.9", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "53768.2", + "d": "767.6", + "n": "/v1/elements/sessions", + "dt": "", + "it": "fetch" + }, + { + "k": "resource", + "t": "53810.1", + "d": "2189.6", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "53813.7", + "d": "2666.4", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "53817", + "d": "1920.5", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "53818.4", + "d": "3723.1", + "n": "5906.js", + "dt": "", + "it": variable70 + }, + { + "k": "resource", + "t": "53818.4", + "d": "3152.7", + "n": "phone-numbers-lib.js", + "dt": "", + "it": variable70 + }, + { + "k": "resource", + "t": "54855.5", + "d": "2684.1", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "55540.1", + "d": "940.3", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "55748.1", + "d": "1222.2", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "56002.3", + "d": "1536.2", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "56481.1", + "d": "1058.3", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "56481.2", + "d": "490.8", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "56481.3", + "d": "1962.5", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "56481.6", + "d": "1963.6", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "57051.1", + "d": "2061.4", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "57540.7", + "d": "901.2", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "57548.6", + "d": "1584.7", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "57570.8", + "d": "3223", + "n": "/v1/payment_pages/cs_live_a1XaCvZCoIEesvGS7aFlnPORQaFoV8h19Ihj8OnyIZUodOtCkd3hWY4gVM", + "dt": "", + "it": "fetch" + }, + { + "k": "resource", + "t": "58856.8", + "d": "884.8", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "58857.4", + "d": "884.4", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "59218.6", + "d": "1936.8", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "59256.2", + "d": "1900.3", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "59258.4", + "d": "1519.6", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "59278.5", + "d": "3362", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "59285.2", + "d": "1869.5", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "59308.1", + "d": "2523.5", + "n": "/v1/consumers/sessions/lookup", + "dt": "", + "it": "fetch" + }, + { + "k": "resource", + "t": "59313.1", + "d": statsigpayloadLayerConfigs817522959ValueChatgptInstantAnswersDynamicConfigLabradorFetcherConfigAnnThreshold, + "n": ".deploy_status_henson.json", + "dt": "cache", + "it": "fetch" + }, + { + "k": "resource", + "t": "59375.3", + "d": "2523.4", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "59742.7", + "d": "2088.2", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "60856.8", + "d": "1784.3", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "61157.1", + "d": "1485.5", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "61835.8", + "d": "808.9", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "62645.2", + "d": "1294.7", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "62645.5", + "d": "1520.7", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "62645.7", + "d": "841.2", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "63941.2", + "d": "1085", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "64167.8", + "d": "1167.5", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "65030.8", + "d": "1694.3", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + }, + { + "k": "resource", + "t": "65340.3", + "d": "1958", + "n": "/b", + "dt": "", + "it": "fetch", + "f": "45668.5" + } + ], + "google-maps-inner.html": [ + { + "k": "resource", + "t": "58246.6", + "d": "872.7", + "n": "google-maps-inner.js", + "dt": "", + "it": variable70 + }, + { + "k": "resource", + "t": "58246.6", + "d": variable12, + "n": "shared.js", + "dt": "cache", + "it": variable70 + }, + { + "k": "resource", + "t": "59145.5", + "d": "596.8", + "n": "/stripethirdparty-srv/assets/v32.1/GoogleMaps.html", + "dt": "", + "it": variable14 + } + ] + } + }, + "elements-d20c72de-2563-403f-b2b0-f08145f405e3-3822": { + "__null__": { + "outer": [ + { + "k": "mark", + "t": "53762.7", + "d": variable12, + "n": "elements-group" + }, + { + "k": "measure", + "t": "53763.5", + "d": "797.3", + "n": "setup_store_controller_action" + } + ], + "controller-with-preconnect.html": [ + { + "k": "measure", + "t": "53767.4", + "d": "789.9", + "n": "setup_store_for_elements_group" + }, + { + "k": "measure", + "t": "53814", + "d": "745.3", + "n": "update_elements_options" + }, + { + "k": "measure", + "t": "53822.7", + "d": "736.7", + "n": "update_elements_options" + }, + { + "k": "measure", + "t": "59309.5", + "d": "0.4", + "n": "update_elements_options" + }, + { + "k": "measure", + "t": "60800.2", + "d": "0.6", + "n": "update_elements_options" + } + ] + }, + "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad": { + "elements-inner-payment.html_payment": [ + { + "k": "measure", + "t": "53783.8", + "d": "5494", + "n": "payment_element_mount", + "m": { + "isAccessoryFrameRendering": attributeAriaExpanded, + "elementsInitSource": "custom_checkout", + "version": "basil" + } + }, + { + "k": "resource", + "t": "54143.1", + "d": variable12, + "n": "shared.js", + "dt": "cache", + "it": variable70 + }, + { + "k": "resource", + "t": "54143.2", + "d": "5012.2", + "n": "elements-inner-payment.js", + "dt": "", + "it": variable70 + }, + { + "k": "resource", + "t": "54143.3", + "d": "2339.1", + "n": "elements-inner-payment.css", + "dt": "", + "it": linkSettingsLinkBrand + }, + { + "k": "long-animation-frame", + "t": "54143.5", + "d": "2341.4", + "n": "long-animation-frame" + }, + { + "k": "measure", + "t": "59202.9", + "d": "1.4", + "n": "payment_frame_setup" + }, + { + "k": "resource", + "t": "59203.6", + "d": "1.9", + "n": "countries_zh.json", + "dt": "cache", + "it": "fetch" + }, + { + "k": "resource", + "t": "59203.7", + "d": statsigpayloadDynamicConfigs2850107578ValueAndroidLargeFontScaleThreshold, + "n": "zh.json", + "dt": "cache", + "it": "fetch" + }, + { + "k": "measure", + "t": "59205.5", + "d": "59.1", + "n": "payment_element_setup" + }, + { + "k": "measure", + "t": "59206.1", + "d": "17.4", + "n": "elements_state_provider" + }, + { + "k": "measure", + "t": "59233.6", + "d": "0.3", + "n": "consumer_session_wrapper" + }, + { + "k": "measure", + "t": "59233.7", + "d": "0.2", + "n": "consumer_session_wrapper_modal" + }, + { + "k": "measure", + "t": "59233.7", + "d": variable12, + "n": "consumer_session_wrapper_session" + }, + { + "k": "measure", + "t": "59247.3", + "d": "16.8", + "n": "link_default_integration" + }, + { + "k": "measure", + "t": "59247.7", + "d": "0.2", + "n": "link_default_integration_partnerships" + }, + { + "k": "measure", + "t": "59247.9", + "d": "16.2", + "n": "link_default_integration_email" + }, + { + "k": "long-animation-frame", + "t": "59259.4", + "d": "53.1", + "n": "long-animation-frame", + "i": "shared.js::TimerHandler:setTimeout" + }, + { + "k": "measure", + "t": "59264.6", + "d": "12.7", + "n": "payment_element_view_render" + }, + { + "k": "long-animation-frame", + "t": "59312.6", + "d": "65.1", + "n": "long-animation-frame", + "i": "shared.js::TimerHandler:setTimeout" + }, + { + "k": "longtask", + "t": "59315.3", + "d": statsigpayloadDynamicConfigs3689744552ValueLookbackDays, + "n": "self" + }, + { + "k": "long-animation-frame", + "t": "59486.2", + "d": "75.4", + "n": "long-animation-frame" + } + ], + "controller-with-preconnect.html": [ + { + "k": "measure", + "t": "59218.7", + "d": statsigpayloadDynamicConfigs2842273360ValueMinVisibleFraction, + "n": "get_elements_state" + }, + { + "k": "measure", + "t": "59298.7", + "d": "2.8", + "n": "get_elements_state" + } + ] + }, + "address-d9ee1043-0a90-48b6-8819-70ba036e9e21": { + "elements-inner-address.html_address": [ + { + "k": "measure", + "t": "53795.8", + "d": "3294", + "n": "address_element_mount", + "m": { + "isAccessoryFrameRendering": attributeAriaExpanded, + "elementsInitSource": "custom_checkout", + "version": "basil" + } + }, + { + "k": "resource", + "t": "54541", + "d": "2436.7", + "n": "elements-inner-address.js", + "dt": "", + "it": variable70 + }, + { + "k": "resource", + "t": "54541", + "d": variable12, + "n": "shared.js", + "dt": "cache", + "it": variable70 + }, + { + "k": "resource", + "t": "54541.1", + "d": "1198.2", + "n": "elements-inner-address.css", + "dt": "", + "it": linkSettingsLinkBrand + }, + { + "k": "long-animation-frame", + "t": "54541.4", + "d": "1206.3", + "n": "long-animation-frame", + "i": "shared.js" + }, + { + "k": "resource", + "t": "57011.3", + "d": "531.9", + "n": "5906.js", + "dt": "cache", + "it": variable70 + }, + { + "k": "resource", + "t": "57011.3", + "d": variable12, + "n": "phone-numbers-lib.js", + "dt": "cache", + "it": variable70 + }, + { + "k": "measure", + "t": "57016.5", + "d": "36", + "n": "elements_state_provider" + }, + { + "k": "resource", + "t": "57055.6", + "d": "1.9", + "n": "zh.json", + "dt": "cache", + "it": "fetch" + }, + { + "k": "resource", + "t": "57063.2", + "d": "1.1", + "n": "countries_zh.json", + "dt": "cache", + "it": "fetch" + }, + { + "k": "measure", + "t": "57067.2", + "d": "8.1", + "n": "consumer_session_wrapper" + }, + { + "k": "measure", + "t": "57067.2", + "d": 7, + "n": "consumer_session_wrapper_session" + }, + { + "k": "measure", + "t": "57067.3", + "d": statsigpayloadLayerConfigs817522959ValueChatgptInstantAnswersDynamicConfigAutoEvalSamplingRate, + "n": "consumer_session_wrapper_modal" + }, + { + "k": "long-animation-frame", + "t": "57156.7", + "d": "61.3", + "n": "long-animation-frame" + } + ], + "controller-with-preconnect.html": [ + { + "k": "measure", + "t": "57032.3", + "d": currencyConfigPromosBusinessOneDollarAmount, + "n": "get_elements_state" + }, + { + "k": "measure", + "t": "63536", + "d": variable12, + "n": "get_elements_state" + } + ], + "elements-inner-autocomplete-suggestions.html_autocompleteSuggestions": [ + { + "k": "resource", + "t": "58448.5", + "d": variable12, + "n": "shared.js", + "dt": "cache", + "it": variable70 + }, + { + "k": "resource", + "t": "58448.6", + "d": "5047.9", + "n": "elements-inner-autocomplete-suggestions.js", + "dt": "", + "it": variable70 + }, + { + "k": "resource", + "t": "58448.7", + "d": "666.2", + "n": "elements-inner-autocomplete-suggestions.css", + "dt": "", + "it": linkSettingsLinkBrand + }, + { + "k": "long-animation-frame", + "t": "58449.1", + "d": "666.9", + "n": "long-animation-frame" + }, + { + "k": "measure", + "t": "63527.1", + "d": "13.2", + "n": "elements_state_provider" + }, + { + "k": "measure", + "t": "63528.9", + "d": "41", + "n": "autocompleteSuggestions_element_mount", + "m": { + "isAccessoryFrameRendering": attributeAriaExpanded, + "elementsInitSource": "custom_checkout", + "version": "basil" + } + }, + { + "k": "resource", + "t": "63542.4", + "d": "18", + "n": "zh.json", + "dt": "cache", + "it": "fetch" + } + ] + } + } + } + } + } + ), + "supported_types": "[\"long-animation-frame\",\"longtask\",\"mark\",\"measure\",\"resource\",\"visibility-state\"]", + "address_element_mount": "3294", + "payment_element_mount": "5494", + "autocompleteSuggestions_element_mount": "41", + "element_ids": "[\"address-d9ee1043-0a90-48b6-8819-70ba036e9e21\",\"payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad\"]" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0405({ + variable12, + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueSidebarPaginationPageSize, + statsigpayloadDynamicConfigs216497991ValueOutdatedRoomBootstrapMessagesCount, + statsigpayloadDynamicConfigs3165814200ValueMaxRetryCount, + variable38, + statsigpayloadLayerConfigs1092897457ValueMaxCommitConversationStalenessDays, + 22, + variable42, + variable22, + variable57, + variable33, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + variable76, + attributeType, + attributeAriaExpanded, + variable4, + userGroups, + checkoutSessionId, + connectorsSupportedAuthTokenUrl, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + sessionId, + configId1 + }) { + console.log("Executing request 0405") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${currencyConfigPromosBusinessOneDollarAmount}&events=${JSON.stringify( + [ + { + "event_name": "elements.performance_summary", + "created": "1773809692977", + "batching_enabled": variable4, + "event_count": "126", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "f9cc1bc1-8bf5-4f28-97f7-7f437315233d", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "time_origin": "1773809623118", + "summaries": JSON.stringify( + [ + { + "name": "payment_element_mount", + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad", + "start_time": "53784", + "duration": "5494", + "summary": { + "duration": "5529", + "source_event": "", + "processing_start_time": variable12, + "processing_duration": "5529", + "longest_request_url": "elements-inner-payment.js", + "longest_request_start_time": "359", + "longest_request_duration": "5012", + "last_completed_request_url": "countries_zh.json", + "last_completed_request_start_time": "5420", + "last_completed_request_duration": statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + "last_frame_start_time": "5476", + "last_frame_duration": "53", + "last_frame_blocking": variable12, + "last_frame_working": "52", + "last_frame_pre_layout": variable12, + "last_frame_style_and_layout": currencyConfigPromosBusinessOneDollarAmount, + "last_frame_forced_style_and_layout": statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + "total_time_idle": "102", + "total_time_network": "5389", + "total_time_bottleneck": "103", + "total_time_events": variable12, + "total_time_blocking": variable12, + "total_time_working": variable76, + "total_time_pre_layout": variable12, + "total_time_style_and_layout": statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + "total_time_forced_style_and_layout": statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + "total_long_animation_frames": statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + "total_long_tasks": variable12, + "total_events": variable12, + "total_long_events": variable12, + "total_resources_api": statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + "total_resources_asset": statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + "total_resources_embed": statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + "total_resources_script": statsigpayloadDynamicConfigs3165814200ValueMaxRetryCount, + "total_resources_other": variable12, + "total_resources_ignored": "17", + "bottlenecks": [ + { + "name": "/v1/elements/sessions", + "entry_type": "resource", + "start_time": "-16", + "duration": "768", + "total_time_bottleneck": variable38, + "bottleneck_ranges": [ + { + "start_time": "-16", + "duration": variable38 + } + ] + }, + { + "name": "elements-inner-payment.js", + "entry_type": "resource", + "start_time": "359", + "duration": "5012", + "total_time_bottleneck": "36", + "bottleneck_ranges": [ + { + "start_time": "5336", + "duration": "36" + } + ] + }, + { + "name": "countries_zh.json", + "entry_type": "resource", + "start_time": "5420", + "duration": statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + "total_time_bottleneck": variable12, + "bottleneck_ranges": [ + { + "start_time": "5420", + "duration": variable12 + }, + { + "start_time": "5421", + "duration": variable12 + } + ] + }, + { + "name": "long-animation-frame", + "entry_type": "long-animation-frame", + "start_time": "5476", + "duration": "53", + "total_time_bottleneck": "53", + "bottleneck_ranges": [ + { + "start_time": "5476", + "duration": "53" + } + ] + } + ], + "idle_entries": [ + { + "start_time": "5372", + "duration": "48", + "name": "idle", + "entry_type": "measure" + }, + { + "start_time": "5422", + "duration": "54", + "name": "idle", + "entry_type": "measure" + } + ], + "long_events": userGroups + }, + "decomposition": { + "error": "Error populating node - found multiple relevant entries for node - update_elements_options (expected 1)", + "version": "v3_ewcs_pre_clover", + "duration": "5494" + } + }, + { + "name": "address_element_mount", + "element_id": "address-d9ee1043-0a90-48b6-8819-70ba036e9e21", + "start_time": "53796", + "duration": "3294", + "summary": { + "duration": "3294", + "source_event": "", + "processing_start_time": variable12, + "processing_duration": "3294", + "longest_request_url": "phone-numbers-lib.js", + "longest_request_start_time": 22, + "longest_request_duration": "3153", + "last_completed_request_url": "countries_zh.json", + "last_completed_request_start_time": "3267", + "last_completed_request_duration": currencyConfigPromosBusinessOneDollarAmount, + "last_frame_start_time": "746", + "last_frame_duration": "1206", + "last_frame_blocking": variable12, + "last_frame_working": "1206", + "last_frame_pre_layout": variable12, + "last_frame_style_and_layout": variable12, + "last_frame_forced_style_and_layout": variable12, + "total_time_idle": "109", + "total_time_network": "3212", + "total_time_bottleneck": "1246", + "total_time_events": variable12, + "total_time_blocking": variable12, + "total_time_working": "3547", + "total_time_pre_layout": variable12, + "total_time_style_and_layout": currencyConfigPromosBusinessOneDollarAmount, + "total_time_forced_style_and_layout": variable12, + "total_long_animation_frames": statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + "total_long_tasks": variable12, + "total_events": variable12, + "total_long_events": variable12, + "total_resources_api": statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + "total_resources_asset": statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + "total_resources_embed": statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + "total_resources_script": statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + "total_resources_other": variable12, + "total_resources_ignored": "9", + "bottlenecks": [ + { + "name": "/v1/elements/sessions", + "entry_type": "resource", + "start_time": "-28", + "duration": "768", + "total_time_bottleneck": variable38, + "bottleneck_ranges": [ + { + "start_time": "-28", + "duration": variable38 + } + ] + }, + { + "name": "elements-inner-address.js", + "entry_type": "resource", + "start_time": variable33, + "duration": "2437", + "total_time_bottleneck": "1230", + "bottleneck_ranges": [ + { + "start_time": variable33, + "duration": variable12 + }, + { + "start_time": "1952", + "duration": "1230" + } + ] + }, + { + "name": "zh.json", + "entry_type": "resource", + "start_time": "3260", + "duration": statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + "total_time_bottleneck": statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + "bottleneck_ranges": [ + { + "start_time": "3260", + "duration": statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount + } + ] + }, + { + "name": "countries_zh.json", + "entry_type": "resource", + "start_time": "3267", + "duration": currencyConfigPromosBusinessOneDollarAmount, + "total_time_bottleneck": currencyConfigPromosBusinessOneDollarAmount, + "bottleneck_ranges": [ + { + "start_time": "3267", + "duration": currencyConfigPromosBusinessOneDollarAmount + } + ] + } + ], + "idle_entries": [ + { + "start_time": "3182", + "duration": "34", + "name": "idle", + "entry_type": "measure" + }, + { + "start_time": "3216", + "duration": variable57, + "name": "idle", + "entry_type": "measure" + }, + { + "start_time": "3262", + "duration": statsigpayloadDynamicConfigs216497991ValueSidebarPaginationPageSize, + "name": "idle", + "entry_type": "measure" + }, + { + "start_time": "3269", + "duration": variable42, + "name": "idle", + "entry_type": "measure" + } + ], + "long_events": userGroups + }, + "decomposition": { + "error": "Element address is unsupported", + "version": connectorsSupportedAuthTokenUrl, + "duration": "3294" + } + }, + { + "name": "autocompleteSuggestions_element_mount", + "element_id": "address-d9ee1043-0a90-48b6-8819-70ba036e9e21", + "start_time": "63529", + "duration": "41", + "summary": { + "duration": "41", + "source_event": "", + "processing_start_time": variable12, + "processing_duration": "41", + "longest_request_url": "zh.json", + "longest_request_start_time": statsigpayloadLayerConfigs1092897457ValueMaxCommitConversationStalenessDays, + "longest_request_duration": "18", + "last_completed_request_url": "zh.json", + "last_completed_request_start_time": statsigpayloadLayerConfigs1092897457ValueMaxCommitConversationStalenessDays, + "last_completed_request_duration": "18", + "last_frame_start_time": variable12, + "last_frame_duration": variable12, + "last_frame_blocking": variable12, + "last_frame_working": variable12, + "last_frame_pre_layout": variable12, + "last_frame_style_and_layout": variable12, + "last_frame_forced_style_and_layout": variable12, + "total_time_idle": 22, + "total_time_network": "18", + "total_time_bottleneck": "18", + "total_time_events": variable12, + "total_time_blocking": variable12, + "total_time_working": variable12, + "total_time_pre_layout": variable12, + "total_time_style_and_layout": variable12, + "total_time_forced_style_and_layout": variable12, + "total_long_animation_frames": variable12, + "total_long_tasks": variable12, + "total_events": variable12, + "total_long_events": variable12, + "total_resources_api": currencyConfigPromosBusinessOneDollarAmount, + "total_resources_asset": variable12, + "total_resources_embed": variable12, + "total_resources_script": variable12, + "total_resources_other": variable12, + "total_resources_ignored": variable12, + "bottlenecks": [ + { + "name": "zh.json", + "entry_type": "resource", + "start_time": statsigpayloadLayerConfigs1092897457ValueMaxCommitConversationStalenessDays, + "duration": "18", + "total_time_bottleneck": "18", + "bottleneck_ranges": [ + { + "start_time": statsigpayloadLayerConfigs1092897457ValueMaxCommitConversationStalenessDays, + "duration": "18" + } + ] + } + ], + "idle_entries": [ + { + "start_time": variable12, + "duration": statsigpayloadLayerConfigs1092897457ValueMaxCommitConversationStalenessDays, + "name": "idle", + "entry_type": "measure" + }, + { + "start_time": variable22, + "duration": statsigpayloadDynamicConfigs216497991ValueOutdatedRoomBootstrapMessagesCount, + "name": "idle", + "entry_type": "measure" + } + ], + "long_events": userGroups + }, + "decomposition": { + "error": "Element autocompleteSuggestions is unsupported", + "version": connectorsSupportedAuthTokenUrl, + "duration": "41" + } + } + ] + ), + "supported_types": "[\"long-animation-frame\",\"longtask\",\"mark\",\"measure\",\"resource\",\"visibility-state\"]", + "address_element_mount": "3294", + "payment_element_mount": "5494", + "autocompleteSuggestions_element_mount": "41", + "element_ids": "[\"address-d9ee1043-0a90-48b6-8819-70ba036e9e21\",\"payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad\"]", + "performance_reporter_ms": statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0406({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + sessionId, + configId1, + siteKey + }) { + console.log("Executing request 0406") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${currencyConfigPromosBusinessOneDollarAmount}&events=${JSON.stringify( + [ + { + "event_name": "elements.captcha.passive.execute", + "created": "1773809698312", + "batching_enabled": variable4, + "event_count": "127", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "a93444ef-919f-4261-83d9-eb1729df309c", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "elapsed_time": "21413", + "duration": "16024", + "attempt": currencyConfigPromosBusinessOneDollarAmount, + "site_key": siteKey + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0406({ + variable12, + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + 7, + systemHintsLogoAttributeWidth, + statsigpayloadDynamicConfigs2943229081ValueVoiceUsedWithinPastDays, + statsigpayloadLayerConfigs3850010910ValueBillingFailureBannerIntervalMins, + clientLocale, + attributeType, + attributeAriaExpanded, + session, + variable4, + origins2, + statsigpayloadDynamicConfigs217573384Value, + userGroups, + state, + locale, + attributeHref8, + linkSettingsHcaptchaSiteKey, + cflbCookie6, + connectorsSupportedAuthOidcUserinfoEndpoint, + linkSettingsLinkHcaptchaRqdata, + c + }) { + console.log("Executing request 0406") + const response = await fetch( + `https://api2.hcaptcha.com/getcaptcha/${linkSettingsHcaptchaSiteKey}`, + { + method: "POST", + headers: { + "host": "api2.hcaptcha.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//newassets.hcaptcha.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "sec-fetch-storage-access": state, + "referer": "https//newassets.hcaptcha.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `__cf_bm=HEJ47TYdjlyPjg36Q23_obXJAwcU8dV3txz39IARFcs-1773809680-1.0.1.1-sPLPxPlDTBv0g835.F024M4K3JwnTE7V7AmDfy01IhUy3oyZ7RVRwECQUfOJCx2jsIVJ_JPInkWy1OMKPrBA8LoblqULi1QzQThoF7xXwBo; __cflb=${cflbCookie6}; hmt_id=65311c8f-6c93-4e23-b466-add2f8a86d0c` + }, + body: `v=6ae4a3c801c9d99b7e0b591e01eb3ddc17b34400&sitekey=${linkSettingsHcaptchaSiteKey}&host=b.stripecdn.com&hl=${locale}&r=${currencyConfigPromosBusinessOneDollarAmount}&action=challenge-error&motionData=${JSON.stringify( + { + "st": "1773809699307", + "v": currencyConfigPromosBusinessOneDollarAmount, + "session": userGroups, + "widgetList": [ + "08q1nvgd3bbk", + "1xeb5s9vgd5", + "29752ipm9g4o" + ], + "widgetId": "29752ipm9g4o", + "topLevel": { + "st": "1773809682274", + "sc": { + "availWidth": "2560", + "availHeight": "1410", + "width": "2560", + "height": statsigpayloadLayerConfigs3850010910ValueBillingFailureBannerIntervalMins, + "colorDepth": systemHintsLogoAttributeWidth, + "pixelDepth": systemHintsLogoAttributeWidth, + "availLeft": variable12, + "availTop": statsigpayloadDynamicConfigs2943229081ValueVoiceUsedWithinPastDays, + "onchange": null, + "isExtended": attributeAriaExpanded + }, + "or": "portrait", + "wi": [ + variable12, + variable12 + ], + "nv": { + "vendorSub": "", + "productSub": "20030107", + "vendor": "Google Inc.", + "maxTouchPoints": variable12, + "scheduling": statsigpayloadDynamicConfigs217573384Value, + "userActivation": statsigpayloadDynamicConfigs217573384Value, + "geolocation": statsigpayloadDynamicConfigs217573384Value, + "doNotTrack": null, + "webkitTemporaryStorage": statsigpayloadDynamicConfigs217573384Value, + "hardwareConcurrency": 7, + "cookieEnabled": variable4, + "appCodeName": "Mozilla", + "appName": "Netscape", + "appVersion": "5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "platform": "MacIntel", + "product": "Gecko", + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "language": clientLocale, + "languages": [ + clientLocale, + locale + ], + "onLine": variable4, + "webdriver": attributeAriaExpanded, + "pdfViewerEnabled": variable4, + "connection": statsigpayloadDynamicConfigs217573384Value, + "windowControlsOverlay": statsigpayloadDynamicConfigs217573384Value, + "deprecatedRunAdAuctionEnforcesKAnonymity": attributeAriaExpanded, + "protectedAudience": statsigpayloadDynamicConfigs217573384Value, + "bluetooth": statsigpayloadDynamicConfigs217573384Value, + "clipboard": statsigpayloadDynamicConfigs217573384Value, + "credentials": statsigpayloadDynamicConfigs217573384Value, + "keyboard": statsigpayloadDynamicConfigs217573384Value, + "managed": statsigpayloadDynamicConfigs217573384Value, + "mediaDevices": statsigpayloadDynamicConfigs217573384Value, + "serviceWorker": statsigpayloadDynamicConfigs217573384Value, + "virtualKeyboard": statsigpayloadDynamicConfigs217573384Value, + "wakeLock": statsigpayloadDynamicConfigs217573384Value, + "deviceMemory": 7, + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": "145" + }, + { + "brand": "Chromium", + "version": "145" + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locks": statsigpayloadDynamicConfigs217573384Value, + "storage": statsigpayloadDynamicConfigs217573384Value, + "gpu": statsigpayloadDynamicConfigs217573384Value, + "login": statsigpayloadDynamicConfigs217573384Value, + "ink": statsigpayloadDynamicConfigs217573384Value, + "mediaCapabilities": statsigpayloadDynamicConfigs217573384Value, + "devicePosture": statsigpayloadDynamicConfigs217573384Value, + "hid": statsigpayloadDynamicConfigs217573384Value, + "mediaSession": statsigpayloadDynamicConfigs217573384Value, + "permissions": statsigpayloadDynamicConfigs217573384Value, + "presentation": statsigpayloadDynamicConfigs217573384Value, + "serial": statsigpayloadDynamicConfigs217573384Value, + "usb": statsigpayloadDynamicConfigs217573384Value, + "xr": statsigpayloadDynamicConfigs217573384Value, + "storageBuckets": statsigpayloadDynamicConfigs217573384Value, + "plugins": [ + "internal-pdf-viewer", + "internal-pdf-viewer", + "internal-pdf-viewer", + "internal-pdf-viewer", + "internal-pdf-viewer" + ] + }, + "dr": `https://js.stripe.com${origins2}`, + "inv": variable4, + "size": "invisible", + "theme": "1796889847", + "pel": "
", + "exec": connectorsSupportedAuthOidcUserinfoEndpoint, + "wn": userGroups, + "wn-mp": variable12, + "xy": userGroups, + "xy-mp": variable12, + "lpt": "1773809698311" + }, + "href": `https://b.stripecdn.com/stripethirdparty-srv/${attributeHref8}/v32.1/HCaptchaInvisible.html?id=77033ec1-a16c-4c06-9e0c-634120728f96&origin=https://js.stripe.com${origins2}`, + "prev": { + "escaped": attributeAriaExpanded, + "passed": attributeAriaExpanded, + "expiredChallenge": attributeAriaExpanded, + "expiredResponse": attributeAriaExpanded + }, + "vmdata": JSON.stringify( + [ + [ + variable12, + JSON.stringify( + [ + { + "150": "1773809682276", + "161": "portrait", + "162": { + "availWidth": "2560", + "availHeight": "1410", + "width": "2560", + "height": statsigpayloadLayerConfigs3850010910ValueBillingFailureBannerIntervalMins, + "colorDepth": systemHintsLogoAttributeWidth, + "pixelDepth": systemHintsLogoAttributeWidth, + "availLeft": variable12, + "availTop": statsigpayloadDynamicConfigs2943229081ValueVoiceUsedWithinPastDays, + "onchange": null, + "isExtended": attributeAriaExpanded + }, + "164": `https://js.stripe.com${origins2}`, + "165": [ + variable12, + variable12 + ] + }, + variable12, + null, + "2609408419975573", + `https://b.stripecdn.com/stripethirdparty-srv/${attributeHref8}/v32.1/HCaptchaInvisible.html?id=77033ec1-a16c-4c06-9e0c-634120728f96&origin=https://js.strip${origins2}`, + userGroups, + [ + "62", + statsigpayloadDynamicConfigs217573384Value, + statsigpayloadDynamicConfigs217573384Value, + "1773809682277" + ], + `https://b.stripecdn.com/stripethirdparty-srv/${attributeHref8}/v32.1/HCaptchaInvisible.html?id=77033ec1-a16c-4c06-9e0c-634120728f96&origin=https://js.strip${origins2}`, + "pLvoAbItYVMtqSDfmHtOL7cGyExMA55M39x+6bYg+h+h+b4o5dLzpoWhQq3kqnK9wVB8WKduoh8iiMrhHvdy+KZF/RVRiFvGYLHDVVJuvT/YvEbfsg/cGrMZ9TCxxrCd" + ] + ) + ] + ] + ) + } + )}&pdc=${JSON.stringify( + { + "s": "1773809699307", + "n": currencyConfigPromosBusinessOneDollarAmount, + "p": statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + "gcs": "118" + } + )}&pem=${JSON.stringify( + { + "csc": "711.8000000044703", + "csch": "api2.hcaptcha.com", + "cscrt": variable12, + "cscft": "711.8000000044703", + "gc": "5084.79999999702", + "gch": "api2.hcaptcha.com", + "gcrt": variable12, + "gcft": "5084.79999999702" + } + )}&rqdata=${linkSettingsLinkHcaptchaRqdata}&n=f3Gi80h5mPjrkNj8aCCV+YwDfyGGGPlINRsN6NUY3wpimRP9VXuZWFJ2Tvw12OngFzoPu2CSwUOHGg9eVlz/X97EMZq5jz4JaC1N3KDSJo2VBSTZwcrjk+JXUquzi77t209pqhlOfm9IX6iHl/RvZg02Mld/kkZgt2yix+DXZ40hfiCvQzg9HRFw5DNj046HeYgoej4xLRvaGPXCIIY0RDJkWmz93BymHEKw5urwtrn8yaj0JMJl6Ym86/H+4d+mOTxVxTwumKnWnp4yphT9IhGrtUT8gBi3GOKjHHXFJHDKUK9S8dtLsFDa+6PjsVbzt+8tMVk8caoAXdrUrXS3FVPoasaXG2WDeeBR8ly8tFwGrRvdQTXrLdIoJ07cEmKXT02CistKc4suXwl2kC+vTD4DafMXpqcN6lnGpnX628sYpxKVc1h9dtfmVPWsrB2Y1gVSa6Lg2n4MU0aXSF3MMXrk02PEyEbIBsHMijMRW3V14m122SISjQ9sS8INaQh4SmYq3toDn28T11UQ6tB6RR7aJxE0jw2n26ERlan3gUHX2RiwwAwx1lE/mc0NtIfcUMeh/V7nfPj6nVDM5qadj3IVyFT/uBeXbdov+4RNgSz0q9CpSnlDmv/qXzFfKaShXsowTrBlLDcXLTQD1OJh9eoChBbwRyUaly/hPJdW62A3NIUiv0Yv+2DnUgvn1DLdbF5INpEfVw60omTCgg1gWGAHPybqnxH0A+5NsWaDzfrng230cSKQqKW6tlsROCd043dDaIFGu1yPz7Lnyil6ePkgnFzafgMI+mlPSPwuQXRG+zk6BMTqM9hoorXrgPKUrjTq9lGRwDrWoSPs0nSSDohlnNMXZC1d8yvi45DQ12+WlBqC/LvVEgL8RLmUl4V8W4NG6YHKU7JW1WDCYYmiDqADL8pFWFLs4s1BgATwMkVFoERzVpzE1PaLcYKkbet+0DlLpoERG0HGBtI/8LNZVBDFiE7zfMgs2rKFD2k/099BZcHH7gEbPU//F1467VnHavT/sA2iOEZDsjQ9s/3QORjoE53M9oyi7V+K4yf1t0Ct84E1/3x2Ee6cIvyY4WlOy2btfVoFJom34RzQE49pcND6bS63lCotvsZFF2n9+pYyseoTZODFdBoDZaBVpOEgxwVpUTLjotsnludU/jqCXzGl7K4DW8YB/s1nRErdzrKUsxeHGuxIq8HYf0G0MEnNbKJo00KxQ3d9br4eRXvWvhxGFfQ2hntLwzuhFddnQk2j6ob2TJfBZrFTrrlERaLsydSWdqaYfRoFdX7lIWXuwiKThOvh82rm1WVGvd8XIhbCV+ySUswj0d1Ww6d8g10EKr9lPVOt5lNs3wH0pg34YPLvaiK6Ae541m2vbe0i1HhtdV6U8FN5fhZrv3JOcofycVspkqQ75H6FW2Se49fukrrdzLXIvI9ajfLW/VmgnffAOMfLKsvl8Vg+MxErlnO9dedE1fMMEILXHbMFMXT1jzrVLOsHMtpuXnbMq9LcH8AIfR8pw0qACDHA9ZOQ3YsdsX+aK7+KGbZaoife1/Ku8XIKNhm1PlozIsEvf13MarnJeVx9DcYtIMROe8LrcIrA2lAocIejxP4yLqO3FjDtCNghhrfKjACV52PkOkPPBKtZgy/Cgs0JNUbRrVxaHmpbgyTiFz6UuWzbtneOXKB9RFYq8fiVmR9FEe/l3e9Sa1GXMm1q3BPHFR+o23uS3rIArzQF4T4OCZxJ1Ws2/LmN08rPrJdYPmXUzFABjsNAG1nvhruQkhBYIgAwqGKj9hzCjwjtXF1Z6IZ7T/wipThZ4/J/bPR/YHHpbAsYv9zShbz2SC1QePHhAfCN26YzIEaAN/h2sapEKwQ4BvClEOIELBR3CZbV8zDGosN9H7tAOl2HBdFi9aoDjiKzN19KX1PQyS7FYkSWRtdLZlU39dAu33dUeC8mgDdm0i/diD4TbVC/6Op4JC8yy2mGctNNDaKVnpdeqkFW1CJ8Bo6pCWopkIpFTbggnGPOOPNkIfCtUWichFPgKvAZ3k/vaqShh374pG2DcYrzURR6m17CbSeiCMPooozoaIYUsloIUh7kG+lEZcYIPe/1XCMP5T48pcNdCUdUPpccOXN0/3wEwwCYxvwP19EXq6dsa4gdXVn9lLsrhfwQcHlUKTY+zKJ0toBezNUA24e0upDvGQNxZY5+8Ynrpb8destHPBd+4Idd50leYLsHUts+pDYhrvVuTJELNq4kxpANnB/fn5lXyb1JpPOKGnDzWP9Zp89GAzPKy6E0r6u+3UA+hm7Z4cs9FjKE8Cg9qd9i/3MfGksEmE4geENfrwig8KBEKfT+hOVbezp9Coi9wsPO27z8SjexCY9jQiuOYE0U9KJ6moK0gNyUfs8gJbhMkRMiYSHsXJ1N9+sVZFEk3Y5hhYArlNhK5s7b4BhB1oTl3ecY7D8rc0JMbhUmMrdiRcL7yAnjvvDVTMDD+XGpk/8JFKVhllilOmJrgRvW1kBxN/e3AUNb0w29cP4CZN0NYYDNj7wZqUTjZg6aesW2hTVjRpR5ZKDXjGK6ew9VENJsfmOe1ryp6Ws/rL5M3Xxyf9UbPIckz7rjO2okr0ZiEGYu0JlmqYrCKL7axnMiFxXpD0Gvde55pp/XGEgJLvAHAACpuTbZnw4oMivsouJ2w4RUEW8SGZLghg/YYE7oE4CtWs5WmJArBgM4MKVLJ2EHekxxA8lSmtC2Ch11ofX1OVvHoTE8MJrdRKe3aAyeDShyAipV44ntVMYNUYTnxCtKisraRJvchJ9O1mb/o6fQ6jmoZa7YZ9oA7TKZogMWuKocop9cU1W18Cf11TkDt+X/BBUqlyF2Oh+MYYeBa2Rz2fCi6/J5JeL4sZy7CccQWW+Ie5qoJBcL4NjdAD7lcn+Kpe5lbMwBWhHT4Kce0RB5hfUcdPNYqA+bzRfk/XgKc4by9LmnRc03r9jd79wTuGIdef9eqNjoJV7f8cnEBGn5rSt9Qt0RqZhnYFcRQ5ZrDtLBPL3oBKTYTwu0+EYVhFT/fs5G/DXtmjAJ0DSJ0wQZ/C+xGma1lI7/9JcJp28FHDKEfsOBdWmHRlw8/C7PGX9jvfBjTCRowC9U8tA12LU8wASLEY/Go3nB+r7CdkHjE/iP13JPcewudAqE7zOa5dde2khWo+h0S8YPSoYYlGoDYn2qe9NlK0phlU+BN0Xq880MwiC4zkfSzaRJVFM77WnXnt7a8iFc3l/uXl9CgBHaqpYJz435IzCG4afPsTIMwWorAJy3xNRxA83+p8rVcstqETlGfNlU/eWHWJnVco6BwxTNaMDnqLpffxiwnPidDjw4Vy0Jsbuw/lZqpYronHocKrvWnrkUie2UQRsk+8I79VgbE6IlsIZvLKRjEg7MsYc+5RBt/n2BboffPN7TCwj0by8BR6+ZyQ+Ua0ik3V/6If++e2qJYhCGpvgn1ezxAW5NkqvkqMCWGxPy+3rQElb77P6FNX5znLnUPK2SFmgoL6ZNAXdcFWZyp1vwcNKzbjVSiXB+N/AyQPyegrNGFiPAg8vwh/5wjvoDRmAqY4EvmRooOML3pR3UVdN8PfxmMP792al4WvjsKjgY8Eg3qIiAHzaUFH760Rlzkv7KvxlG/eHJB2CaeWEtuiuU4x+nczPArUy0BNoxaL8FqFbk2hfCZ3CIB1dFcot+Epkcageu3DjiJhDmRCo6Te21BhBpPyHgl/81slLTN2lQBYl8Ey5c507JMr81vBrAEVKUNsRsDm5jrl8dI3VVD7tyQZ48dkoSfKzUNKd9X9ArScxCBzY8T+gmNMDZX578qoDwZNLmWA+GerAZ1qtaglWUPK4+yZ8pP/6EETolrFD01+UTRQxEkZXkX5mP9vZDywo0NVIwhKICiVXxsEL3gZ7UAOtqcOTJNzdi168b/NF72cXxGaETouWPg3cb9GsBeSCveEFVy5vqeNT9pf4on8Qe1qZlSuP2YqiwQ30w34zEj7uP/vyd85LdMEUoqCTROT7Scsiqee4QtO++F2T7EHOU8nmqRWbg2PSOenQ9cofJNxs07nEiw3abOGABMKooFM1kDDM9Gz1JR3RgT8pwfvL3AiK0RJQe1BuQBfz/Gu+H1rcnVWLT3Iwx4VSvsBktwglCJgUxZzNg2iAuYkqEUMr1V+h7Q15kaC59OLNL7ihynBYoecXxPRW9szS4Pm/uwJXFWg7QORTBJ6Vhn8VBy36Ih4cYqO3+Ruu4DgPThD0iC6dZ9ycz7FQuL4szejk59BhHDcCvVH4LNZm47e3YKuEYmVwhkPH4YdmN23cLJGTri68g9aHD/0Zi6MvPjNhfrjsYjzI9JElgO3Ps0B4xLt30mLTZ2IkK352JfLfmlBtQHOZyeB4Pn1s8/mvqcJRM+0NDbcTLwZGhar5FzkPrRyPTx+iwJLE1DAjibaBVrk4b9sdAevjH75f7ipB4q3NYotILvLn5cvMqTNz6AUfJGI4F+cqGFvjIAv641cyjSdwkoUpBAmzbcLP85sVb2WE/ep/xV8iAQGGAsuCe62UneVDmjpVepWHKQ255nAPMXtKSJeOBvTS/Zd0P1SxRJgzmdgcXfF84fd7CpurWz9yP/H/nv2RHYn9t6xfptDh7R6o5hzlnEICcJkq4pnuJ5GRBicrwicv7pofh45p51PaLnce7IZpw/lMjldW+jW61yX5hpqHJ54xCdhBHDLBM5idRfHkIAkfREiGopqVwi6VIHPzcc15H6BhzfgZwVZMG1L3XsYWx297lISKzaxAToh7fY2bv27BdzepZZ+hJFA8fz4I+msryqmKtRdlv6s5lDjoUp42l61pxOhzLZJoJvCQWYEf/RACnzpxwQzmQcrlBMLmg7cnScLbQdxoRBMZai9bHdJkizW/vW75QeeSV2sFjS71T1nsr+Hqc77wvHhU5OGX9cYWsgr9FEcLNTp6suR9Uf8MfTZKZXLebQDiRmU3NzPatp7MMJalHKD4KfEWCNld4lbSOrOud7F9jmgPJ3fe1Mwv2945gTL94m1uFjjaPM0bmuY3YTkBhKcNjJ/B3+Xut/NdiR1CIY20d6UDoJsDoWaPvargcPitY5HCanNMcogoq0hb0ePiBR/eb5XkSOD1UYMZhfag05bYO6MgkA6x1OZeXaMu4lcScOTIq46ymbZwJiMxzSq5389OPjboAhpVnPLis82ahZSXomK+fzwRKiXNUttbb2/k9T18zCD1E5FSY4N3h4ccVoI5jrHgPqMUX1aJLTQ2gI4gUFpcTp0PsC7UTP4tSuV7GJBsu+qbUZ1Hf2evBpbbgUPCvttjFrMAkoe+fD69FJBVWoPHIGwwuQWdCKRvs5rcNla9KKWOPt2HbdhucEtAGk+0Fe0AExx4UBJhjJJ1vziYCyxWGCSWlqgVXBBxpGU02eZbStvv+NbGiViHmQvqhKcs93TR+DNq8LowGSvK5/WqPTnNuLJV63zyynbFIiCnBhxEwUlP+DVHmXsXggmOrprjPtXDYwmXw8RpF8Z6RbqIAot14/M2yfE4JSeZZLuKFnh2bt6+DOUl/tTsvX+Aprzk2sFS2SASuasc/gNzQACXEjNjsmkgNyoQMWkhbKs7Lf/OhqKVLkCbjFKyjKNrrtVv5qxIilhGQP2l/mcNkG8Ro7Na3jhinyirXW1VYOb9rSbMu9b/JLbaefmS58Q8Qa9l3KO/xUCpDbjfbFmFyLTAklIdbJudmPhYG34mwFk+8hH9nAHpMUcJ1f53FKP8GTeNDbSx0+MnDDM7d0VNYxNUG5K8yVleOZY+gXCZbS7bvr21V6qHLk7slabaht1Yj+goZXtTtHmuxgQYNpUD6RwwsosRL1fd03pCEleIIDsHVI4O0JIZUiR9uwAp/KlZuNZJiKGkdCsw6YR9BRzLJQLHrjfGuScFkgTfMMjU+Y9ZCCNM93hh/Iiq1DGo6QDx9Ln5Noe1ZQ6rtLcNItfsaBE5XoN1oc/bXzCOd9gKG2+HWYFvP8mM5/RPexydkWkWndixiW4DFE8XSPFQROJajudqWbNfxmXvyjitCDBt1Am/zrAM6LkoK/iMeceusSrq1nRFF+MgtIHb3nraQWPuImBEwbr4J+qFbkbY9W63DJBAZcYGq3gubupb+J/s9gTzrHTglCsDqXj423NQvxwPeVGg11trpBxez+Fd5zhFQu+foVAv8ZAYMWI69GShFv0gv5MUTQH+KZCRILtlHyvCtKFOWF5E8Q5YlwJ7s7rvruhI8kadXsKLhHbsXm8rMZWqkiUYTFPTdDlVrQDvCj0azr8ApiTTe0Fd3vbD1qeOSHWfiCILF12wf4buloPyE/7spWP8y7nhA7m3xJCUebQ8ArETTR4VtuhNn+9EUJ6uFo8tcGNyXBXa7tG9Q8KzdSoii7+gfN39tRy9dz349z8SfxElu+7v669DVZUPBLf2lGMhz0X30E6ERV1ioTuN1pIuhJzDnQlPYl5CVJjOhpxkv361V86lizVAQ5iWXvvV+VxY2f6FWd8QQ7y8vKeNbGPpwfFdy0F1k08SnZwLb5F2shQ7FLylzWZ1CoGJBO4h9/+NrRXBz0/GsLBVIJC5fQhpcigLzQDIqnN0dy71UC3oAATx6fxzFyueHnTI1MgEcbEMf1T1Ya2K1NjYWt8rlmUvlkLjCQpINzJawlMumkd+ydI7vczD14Jj+ewvlf5VqO+B1xY+DTHktLos+oTlwsAUmT43dEHcQhnRLrmOaH+CO/7RbJJ6oNJhnuJvsyn7wpNhVYhceIQY8wNDa4R3zcGnzXbt6VU2DdmP9XUPZ6P4QB1ZcXDv7Jpby8PhnlaAHqdJkpNyV/uBEfVB08SPJ3yPUMrdBtubr3XK2D2FSpsI/zwngx7VhVhoSiacJGgT8fQw9ZvaCgfy+cQIfNozUf7ld1ksSq6pFJkfRGTLly33wSzRAbQW5wXu/w0RpRttRe1MtsW8Q2AR8DeiYZIfMgS/glRgnW74eAkJj54stYvkL0poMAUkCwmZMrcFv9T0gJntHXZDiitYqh2t/YCahZslWhrYq4jyyXkD3JHLWyE1iazL7n+QSRPubeo1i4BTfITaTjRj3TlYVCPMoiYCiswmiqtqfjYfoP4k921EZ0/GsoIYDYhLi9F9UtZB4vMeIygCZ85HgGrnkRFQdfTZyTxBq3pd0WKmw5w6+8+8vOZryhS2mgVxuRVvSl1v7tLtwgsWwqjSO4lFNjY/YVMPCzsICKiY3e/xv042IoG1sNzaw9j5BqskIT2oNr2Fni+buTXVAab/W4soxWu8XIgh8dN+lOmRHbExp0k/A73wwd9cjW9R9DceqZvy9bklXBi1wWVBc5pYuGt/Lamx8kPu8/S28elk43WKRpCoGKHkHSsH4laCSi7U3XbZ50poqHF09iXFZO72mi7WBt1tIPVjrHgmjJRLKrxTGyNE7H9MCXz712loxuaayfhRlBrq7dsvpstEHBiLBepR3IXtGFdNQuGmB01oEIdcKZdr4yNPU9KtxbpMGuQBU5ubbmJuxAE1e66Ay4JE4JZhrmFA95uO3X85wi/yNjhvmG+lDpXBfdUvwbT5IRqna7ZuVBV40FbjRo/myuSjGJf8M1PE/j55yVfURT38/roTBHoiLXWAgRw2V228NcJqH9JvdxMTlgSgyIgvFi1lLTNWNbJL97PqYUAckdJv2aTOBrp4oyMmMqIc9HX0iUaalzsToKLpEZZvQQlyPyOKYVBdlYONO4bGcAEkJw4SM8QDQ3G6jz2qRoDFgg1YK3PbBK5tMocFmW341dcbxJtSQ2JXHMMeI2fMNIFcKHbaFgheKN/JVRRNVpk2vOgmaJDQ4bIhx4BCIcVWxJQuzAuP6oy4M0EcCsjLSeZr9DD0/Utw8I3Q04auDm1+x07PiXzqMoTjiw1Dm28sBeLGNSTCgFxvmlxmhO/mdy+2WhwNTsxE6bfFfklnKRGQb+lATUI7HhUznsxBHOERJ6ZJtGqSJ27ZRhYGp6cSQ+VPgXLVQDHQlAJuX64DCRLLd5U9F13IpwwsBIM7dR28f2QKV6JrxAX+W9XbZDJoODlsqDnvs65PvSJQuGS/n7q3e0Vw9zJvLiu0HZa1uPZOoJUhJkyA2n/fCgV92UvSpc9mrBgkzp/q5paFIWYy27KffTQLpf+dDUX3vPY2ylHopSBri241AdyyateOjpZR8wbJN+jrZ+ruXoD1yalC2nDvAz9HiC47zMnst/RVS5/6G/7o/r26PZ2Pi+mOvm0qbGdKze03Uuk7hOwRN/17LqbDHtw/It0M41Q1MSTAJXQC+maDJGhcKnS5sKmbdOV5FXXjbpTEU2vzFc1PjgMX5m5IgDXFh7r2lFI2r+OSPTUk+vcElbYoCxJIhExvuAyHbCnOgND5u/S3g8joR3R274AX4fT/ybAhtVpyYLftBEwChSevu5V948sp25FgfUPtAWN+MMXD2RZPBv1GWqthAyNRjliVKlgtMP7NHaMXdCGg8ob7ALU7KiPJNwTTeO8oYWLtTlQjG8h6oeYYqX57B+4YfFHj97qj26Prp4vUaErwksb8mcQHEpcv0ViqECZhV4RGU4sFzD6Xh7PVTVyCFFfwTRGButrY13oxDdn6fqbeYK8PSkqvLRCUm0ULt+/Uu1vN+M3Bx+zXPVJOdqWMnmScz8xqYi5Lns08LwpVek6H6QfKlKBvf1yKOUlNxp0WzvEvLorIP76/lp/a5ThGTuLtaprLgVI4DvAKTVs7tso912bdCArBPLo/mKG0zYgqSjkrua68F0P4La1gSwpAELb4YXlsuBEiahNm1tdl7AxTXR58SvekqpaS0Ae24oL1Yli9AwFG96oaOkMu3CJY5mVFzSn28IobQprocXUsvReUeKYephCHWuZswgzg+JC4ltD4cU9tZq4nwXwUNJNL+tKQBrPXdIXTZLRSCYTKDRaYg+fRmqKdLWCxbFP7GQ0ARY0KzHPhpdCj1IUtL5QoOgQG682A+SKDQzrD7OhcRC74eC2PJCptIv3ExQ3nPpjxdCWNKH/ITkjufql6ZHureLiaX9J6wDYevgxEX8eZ/2c11O6aQXwqtAHHypJbz2xnYhFMxu4qhR2Kfvs4+99OIFjT85UkkMFvyTWcSqgWVsxtMBztxroqK1taMGQ9zmWe6tr75h7OMuJXg0Yadc4w5ThibiIon5AfNtqIROHqvKJS2VZeabhADS+oJWnuv+Oa6eAP7wgmQuZtSfr4xZ6jaDOSMwwkMj2E6Cw1DssXJPibo4vAgcF+o0uei2RiD4iw0iBvZQda9h+PGx9xzBDUAv5YNcnMqvK3FZzu6gQRVzeVDY9ku8p84PC2ruiiBH3OYf4jt1GyF9yhVjwNBiKRx+y2djrrZcSrbgjNwL1TeFXkwxSvPOyHMWdaNwwapMBAToKZlt1ZELKpco/+Mf0KVd0H7xDFIEizkHrwV7gsWbxuZO1luS5nUpafdV8CFN0RxOm7l+l2GvFOGpsxRMwEpF5L+vg2WxTpnvCnyQYleiUvywfSiCZvHZvYjF1LvyBttrYQ5j/3RupjXa5dd2Dvp5V13roZkTPiOfSM/XgqsmU6osK2nXiODw0GAWtrxfZ5+FbJu4tBld+GVpfepYRPhNAB4Um8GCZ/W4GjM0gP6bQOQ/L72ZDvdWfVqd7NBRpEu0Mv3eEDbXyGApdoibh3ZdLQFhru5c4E+F9HRnjJ4lzLp0BAKpm/JGTu0QLhX76YI9wv0Zrw+zkMjQP5QN4co4BWyU2aQS3VFyfcScjlFQbJM0zufvTC3hetVAKE1Z4cW62fsc/TGebBRBkN1BI4TBWkFxjADgj3AW/H03vgF0UbFBew1n33LqKaFb1inmRZvd/vhPVecHhDCe4U6I5kRe1CaJ8bAebwAcuBrK2M3FCSuptg83t/20+OxJWP2z+fxsHUgFpLbBC2BZ2G3iYCnN+geJx+X3hF+ruhidY0Y7PwSM+7gW9Tf9ecGQRuyduZpyRnSc8KNa90yYYf+X0iavcJwlTQCJ9yXAabKmOb6/Tr++hbsq0910rCPd0y+kwmdysZSy/sahnLKgyU9kl3ZNEfTnCMYujPQFZ78T4cxy/rYHvU60PrDUq6Li/FQv0Ot7N+W1QTWTgek0Oq3RY3SVRH8s0N2G2ZJdINKaDg4GqlCpHidg0fsioByThaiml6JeFcxlyiUZHqtUeQ3gxSadzWlc6UMzZ0nfYLdcLNLhuDHHa4J/oh6aWNgnvD46oagtYFHnzilG1/CEJwfjBZeCoITedD6Ze3H8V5tZr92Qa8EzMQSWgNCBCUlcpkKHNwEViWNfzTZr1Pvf8JGscChnC2qT66G8VnDa+7EVmKjWkRxNyx55t6sbpva76XypDuXshLUcoOoH8ado09EZiTzy6NXMLIKKgndmyKjwf8pglYsKyFVgYy11nbSppC992OGMNW5Z7FQNYd3O3EjJLVFGZFqWjJ8zy9JHttwIrX4jI3vezuEiNi2x+AQdQTMuirdluj9pQS9e3Juzz7ahebSS35iRGxPU1GzokKTQoEz4mOQOiUIDBbtaCKYlDJ61qtQvbDrwUIFMpqz784b4YG5SfviDaqjF3QtC1JGhMcQSzKn7oZn9Z9f2jFpbkQ8gIDkWh7aE25jlRyZ5bqtA1nkBaBK+wbCtJknhY9ATG5Ex+7mekj89s+jk+1RELVazZDxk2i+iwZfwZZ/2uX5BmTmTiLmagCB1cTaWpcqGMbhLIoOGgMD7mwTWTdxUkBh0hmaglnL6RyBEzeKsXJ8rZuiI0ih8AU59JozJ8sDFm1Z2SFrLGdWNefiC/Tb568Yb/H4WvFkyJ6U7mR/aWSHdusRU4g/I0BcLiwXfzswMJOOCbkehKVNbjFpaNM95pLE93foOu1LLq3V9woTlEYHbCjmDFksQikhxZbC0fAIgYH8MzuX5rUN0FCREJen+CBNpYxEM2vLjRyNY0ql6TxFTHfT9RK1eLkeqMbRDwya0GIcu0EYN/pBFbQNbxKSAD7amC3+634XgOzeUCCPnQp6+WNQOGuaxhCJBeuo/qdQdA46TkHM7+H8Vf6IJlWzW9e5+tBd7sEUj+Zmdlcob1C+7RgkYB+Av50HnLwEIh6T404gxEz3SgSX2CXrcfNMmw8biGszmZH/c4Pt+SGN3HbjypToWkfGeWQvdKymnF9vN4ohyqxg2Tr05tCvKU/javmCXzVjZQ8dC8elZkfHYL6alh0huS0uzrQxLwv+vQ4J269rxuV5u8F4aa6evydITKWfD4C7+GOpyjexii9N5HgVgJ7Exl5L8I3AWdxTGTKLgcMe0E3IxetTR0wq+MiUjtLt2LHviS2xTgEk29fRbKNLBSFY6r1u0oSTu28adDQdINUIX2d1XhTzavrCy8NrtjsEHiXt3xP0V6k+WPciStYCloNw/FI3uzQ6f1llLzHQe4BxV4AJqAyQx3adi7CBt3TIugI4t5RLtdxhyNIkA8iBFuCxHg7sPnt1dTx60rg/3YsRonU7BUBXcHmUAU24hRwEnCJNvg2cJTZ4hWD1LZyRAqJotZ1Hi3fCrCZhcqotpey1gppnIm5oj4dw1GPFAn25Nz4CL4kh24Ka9hhodXr3WgCBzO/faLq16hVvZpDEbjI7MzVV2mAN4dF7Jf22ySCVGYxm7l+I/lXC1GLi5CTjvFrqgW2LAWoDdhBdO6Mf5HUbsu2WD9rrl15Nnm2DbCd209jGfGl4H9CAN3AziKqhofu6goaUoqaH9JE0dZQ8Ki4CoGSUNJY+WTJFja1inzSMUBHvRCXC9K/Nvr4JQZRDF5xa5ggqOVcCdtiCJ6cxEjDruQa4+QG33IwZOklMlUm1L0i/FehKWDQ5LrLKeUHQ4oVbP6wD0ZUgwI8Xvny57Uvxbqjsrk0b12rM9VU6frIsAgRnw14RXBDGLd3bAEw/McVZvgTNXTcHo5e1QulDs1RZZ0wSs4ru3idN+pvMzVq9TRK8W9cpRqxdsmH8qtSgbJdzJ/AEKH+1k58uGuszZLL2CvYL6Ve42wvFRJ4HMBZ7XN1G/qQlo9771wrXJcNNOACiTO+yAtQ8CB2PWxtLOMwtj7z7Xh9RGrquqVfgVSYrvYwYqdE7r6usQZvNwovrt1huxzYebxi18aaDqbSTkv3LmCQSL1VdSvVWbv4mMIDA8DOqCx+uMfPV5KjpHfRptxIUCqs93yOwubVopVHdxdZVgzKeY9qr0f6xkM02om64SVIgmM5zgA2ESAHIdxsQREWW5gLFUHMevVGtQ4cCkKWmy1dvRzsSuehoaV1x7tni0t6kDbkdNoX8IM+bz/fw7Q3m5ZqCizW7913J/PKPiMLJAx3gRIHBf2PY0ffvuxVm9FcubuB+GclKTpn9D4CQP799bofrKpR9W598wOmVV5+/LgJ3m9gLhsn18ZIjNp6X0Ybsh5kJF3N3YkqN3huaf1T/9DbFCrr3LyLu6d3anlgszHzvgKtES2EyQLhKxoNNSszXYYDWv7ldgLcdaedWUYKdE8Q+84QxbRoSBF7+xIJMw8oPpTX3VfjbInRbgaaBArbgZnAY+KK661ip7qEAiC5Qv8eQ628MUEey4Kp+pvVhsrEO86DasS93PhT13CX7kVPlPGPvOGJx98XhtY9xpzSdfwPuD5cs3+Te4572SS637JjO36CWBjr8A0FDX2MrI5f26ezroFk2gtojFXesHAlWZTrLHO9uobqDMfwSGU65BVddt3MrzBk7fWUo5TUyfFoYWwwHWolXIp0AwSUyuC1FPIMgyM5QuNAJgXDGUSnojuCNjFFfWdPZkiuLUSRYoaz0ze4ZHFwZraD7V9f+3Rnbtozudg49HL/3ddBzuqEOD56EhlnG02JZ1tagGfjG1dWmdEaXWzUG4IwIOuGWicF5pW6q8i+TKM924qwwxEoBE5ZOiVRyVg/O2aSC6bu/V9pkjBVllOIH53DIe43x//2iY9P0utfgpvy+kn2Gb06+WgNGrOzUoT/8rzB29vxY2Yf71lH69IVLBbh7JkUsXNwviQm+yDjTreCpQjDLjc4M6JssToGnYT5ZXPKWCa8MHqnGJP98c9vJbim1ivBitp2NkkpDGb5V3lc09b/uCVlz5XXNC5Xs7VvksInGe1S8bh3y3nes5kClKTB6xKGVv1q3D+3tbTW8Vq0K/S5qAofJl+pLBA2Kn69BKMQXsHYPctfjel1mAECUj5+lQtdBhEkQzBb48Di+PwuN5BgPyOo5P3BChYDTIky3VqAQwT+XwJApl/a4Wi521ItuXtZv2uTRhvla1bRWhlaVDg7mE2NPbOcczHyynyc/gmLvayMboMjJzkSyyX8dd0Z8m3OuS6hvOeuLBLhQsFp5u2/92uoiC49JDwstYpuQMe5JWynak8k0KQuuwIe3gUkW2Z5LJ/ixYPiKyZkq5sVoQx6y3c8c+SD0AMPqjBY7Q+VsEO5Y7UG/GorROwytWNWKbooUYRL9BPJgpRwPAppp1nBnDF5YxEsh92OHWK3dCfMYCM3bMxk0MXpI7lf1a7hPIjolDtiKm+PSPZUCCKw+MENSti6iSe7KeWLC2rfBgZVy9NXb4QkEEBrdGuDnYU85dn5qvY0kQ1c+d/SzipJbd9zDR9ktWyp2cHrpV5jbLW2kpbux/d6SDE4IFV9YXIJ+sg9Jh6S5I5hfaCDNj+llHlngBB4VYeJgJoqOUOF0uBRfJ3Lo7jYymZMtghqFoD6jFTnjpu7iYKVQSOTkeYMZslovbLB8Pee/Q5DoczxFx6ytHawrvJX1qnwzNp16OVtRhSiESOrPWpsFotaucjdqh2a8YTyVqNG1FpU8w+gdzyAkwjZbcdXaxFMWAcfzkqlQsKt0+RMFkPd19lzDXHxRj6lX5ZIYZtbjVaOeRExT/QD0WPGTx7+F+ZkHQDR/rPdT4dA3SeKd4KNXlKfidZLZzHjmUD5ix9AGduLx/E0Er8cEWtg6ytPT5PpSdmpZZuvlLbDpXUHzScLfL/IRlCtXHBDYl0Y5caZR0VUJWXW5eAa5tEZZ2SzVS3B7OH/vT6gnEV4H70I/aRr742nple/KIFP2ihk9FD0feLf3dhDruwfS8HZ1bcJepezS3EDUGa5XfIyX2v6gBUvRrJzVD3Wm3GgHGdIUomukvOpFBMar5aNsfsjgZt0mPIomilHEPwbFOVC9Lf6OIIE0FD5/rAY9/wXzS3PB1xGZ6yGZ9Py09yLNAQe2FrSWMOdzQ7ilAWl5MKJvduAz0xr0quwFEK1t6A8L6KScgMC61TwRLzWPwwoJ8SMz3bFxWHSUSizS8MfeZc0/I0SJ6kDvNxcnvfyO9e4iAo35EzJ+7TQWvDpdYLwNTRxNA0vcj1NQVM3HXTRalEY2J9gXcCl6DhAAY0F6AK7N3MxOGXFeNW0mNOEG/QGh2/2lTrK5umf58K4DheVYCd9rnQQK3xgrrZGeBZ3J0iTnxAy1GhY91WkOZyp1/o0LspThX/ATH//tp/mty9Ek1AWgBsx6SgqYaX0oYMzip6l3P7gflXDwwhMET2/dgQNxfJyrQG7ORnFp/eovFby/HXmkvfibLmVRqeS6u7icYRsn2Lz5aLa7A2FNrWT3w/ptXEHrreCYjQhcFMFZZEzma4qserGVdVIniqVm9uuch0NRydqQbifU3lPiMx0zaeP+4ZQqm952BWvazVQc9Qm3nNZVU1byAE5aTh81fNl8nb6oVlM3BFZrUmytvR2xCtthy/P0b6fROoXe5on2CrSj2BWCIe0OlOjVyCDA0vxDwbVMII4jHIvyzN9gnKCoXQdQxpVNhyanzz7iHaot0X4D7uqZGH0YDtC1YnxQWRrBBhlQgFTtJ8EJko7Vkgk5io/rjDnef0GNExM1V5b9YxMCu/LgrIrU3QQ8f0oJzCArK2ZCwytkZO7T9Z4X90a2L6oEefWbuxpXY29Ori7nxhlSNwDaLnj+duK5Crur3wrBBv1TAZDCqiLiZfUlTOfhkjCXUHUATqUwkJUnaMOY9JCEE3d2DKEF29ODDvLVXZicNXhdmKSacfBtC99oBkPevNBm2jWeNJjpqcRbZnOwMYExNEzdIDdGGMgvROfnOIWcUGvHn8PTdicwtLEwjS8051kVV6b4QcSISrOYjHXnsbs8HvMb4ispsfNzAJnGfFv8Pc5XWSDJIkqznuZI85CfdXQFNUWdZaw1yZJWHLpby6NRNWfahym04ySfoB743FfA0mJrxnU4lxSVYt3Y1hW55MyUFhG0g3EAPcRwlCuiUyjH+V2KeMg4gFgpby2y5X6O3X+bAMNBkyvHWImIAWBbAV21iTVDV4IbNe2PB80mbh0pdOA1wljkrZMfQb5UrIsfKwCDpI0tC2TPu93eCJo9mJ8PvT/VoMx/sOGklFdTau6+RFsnNFxQM3esieYaR1kpfdszdf6Xk9g8hpmcmUGCyaHBfysOGyNGNBf/bZVzvVyEllg1bg/JGW4ypAtfRtX4zE+kkVAxP9NyqSSqStw7mpU82fjDFTfJoVgPrpwfdBFm0bTzd2IkdeED3sHDZWnZT9dpxvckU3X412fmcZSYvgFQaSPlAvwVFsQ4kOnT2nMztWv3Q+z8IhlsZaxT1aopsz2NkPU/zwyzjmIg1DS4Xf70yqrJ0HItc+fCj62beqNkBcvl/vNIpC8rPXQiPPpJBN+uZcYNNaWq4Vkgv7ui/yQl+QdLx1UZHyagbo/ELpdIPlSgnV/+kWWkyEcnu+pIwGTvlpT9uV9vbAase66wpyhoJiO9J113G8wIBpwiZvbepJFov6Id7q3IsYTOnaafBZzYoexpOqwwYczhxSvrt1bEEX1z74yVMa8ucS+ixRnZZizUojkavsWbM7lIvN8YZBtKky8yVuptLClStPkPc9NWz8zGDNZfmvmwUA5SK0PO2v9QffP7VRuf+LYAc+uVcysif9KE/4khkqYFC/qyFi8iebHkTdr2vijBjKlhNIPf5RuV/+0vooOtfhEZAb/vFNhpG0cvMvF5Y1Ns59vufof2faSnBGLltrZ1ltshnz683kRUcIDCpyQotvvfSbvLdE1JP4i3SXC/4XiqcAIJuhNmQGMNiIsJwWwr50HQE+9NbFt7j73is0cZryduQdl1Ui+KZWkMuOzPSli9yrDLDipXvY+XGTE485xAHQe/nuyx2c5YjynZX+oYljPkOp3QXNBW13RPuFsB24pCoMz6lkvrkEMLYrDj59sF/15ecX4it9kk/qAln/R7SgBA9Q72IaTAsAIo8/ldxS0dU9BsP4Su6IxGacruReBFfz3O6SnPMJvKVixIc/1SKGyT3FLs+pMIMAAFav3MN9PU7z6RMUt3cnWHUEpF7tpKEeGTf/BHdUHMsLdJ47sk2QAdcdR7hT1Od5HyUn7581FpZEtzeqPfKnJ9Sscg9l3frlYk4qKoeOE0SXr5PQWJNiMsgC4CbRJjH8ROeSa/oag6GXdc+qHbNqYn07U3CFldaCY9Oaxk+0HTCXw79IufyxdHR6vFr3ADf//6mKxRugz8JqPS+YZpZIUCrwslQgK7ZtKHUsdWNz1fN1wOprImjP/Xn2Z7KZSKrl1mV6nLEk2HMIoF4FpHXO2rIY0MfTtx+LXMpRZlekciv3YDUuPlLih2moTJ7/f9bDZJnDHLgEGd6/dxB6B41P3DJIec/eTfLXGK9q93B+J3zGkBU63rsGCxZrF20ajy9tW+2dNAPVX4KeLrTwKcnJZRSqjM0yiI2ebI6Y4j25pVX4we7RB93617n8onElv4NsAze53sdPCXPWRn4sX0NniEmz3S1QEZk10mXqu26wryp8DLignWw00NU5h21sMFxtHOsyhAN0vs7TJ5DykZv99sXQydIDYbryqrnDEvQhuiNW1NVqPRzSCOGt+1jO6Xw5xKz5Dd498BWNtSMpjHY+ZjoclDQXvViaVkx+gISG3r0pDg4X3VapOusjASQOiEp6CwVKDV+/swwP3d3PPS4N98sQIP8WU0p5jm8oLbtxfTgOr9fTqI2N/SpuHD83UzSbUyr4oZtV6aeQTII8tguB1anpjdNEl78UNI9q/AL8UXbOVXS/G8Twf9KD6CaDlf7K/CyVYKD3T5MJyKRsRd2P4aaQd2j1YcB1Xz4NjJSKk0REkQ6sNvIwXh2ugSfC15OLClAzI3sqPvyNo5Z25Sw4VryFqRwQPnwjlxnU4VZJZOKqC5TQcmSe+FuowTtV9fwbB3rpDh8aLgLaMu8TT2YTmtMfhB0ItfD+AiDeZGyUXKV1LkJMiuz3zuSGgGJDzWGW6Z+EKYNwsd+F0ijj0kMum7Bgu4SoQee9lqxkYT3xOTj/6hJltmWVy1HhGq/wfQtsSjOZAlImZcI7lus2jDYhAtIvUq5aFEsdclc0guMqU3JOpQB6Zoug7Y+biS80DLwDyHBvu7C19fW5Q8SaNcfHRHFGyWLOzOKRCgB6VOjUK1Sh3gjeORK6Ws104407e3QfmarTaAzvwq/ZNzho+UbcugVmH6SbxkgxBIyROeQ1ljOAiVp2pOuwwpw3rObvQDfbNuI9w1KnCiiHmZH3Ke0mnzTS66EMqJFIAj7DVVUZf/+Q408BbeCx+jobYWj8+FSCRvAlgVPjQKaDwrxyxIxrt/OMrtgRycGeMzK8fu/iq1TSmkxvXwj/ZH3OTnK2R6UT4PMnN5KyGwzkVgKubpYd75lddLEReDlNbdx6iTQY4cgQf344FBvSorJHApio3Uksp9KNWdB7AoEfw4tsjqEwPGWQ0Jw2201FNSv/zF7+8kSB84f7IwOOC9n0VfH7+zNaekN/NO7eUwBfwE6kyyLqiSPdghHIeN+hvjnYVxhB9BC/7SkN3iucOMf0Wc8zauHCfi4TdjQ16ilsyBznH0GKPuKPrwYxKiaTNVsUuGnUKOJkcL4Mwxs4O2fwLJ/73ftH+3AqEJhisA32aCa7kFi8wpjEQYPGPpfdeFS3mgGGN2DtUpYIdtfBaz8CbypI8kVP+i7MkvMaWg1k+kdR1U+nTlVD6ZQ0Q2ywm9k7+d8/s+TzPGnBSeb+8V5CKAAW6rZW96Ol3JuXd5UHMQYqEp0GxoAzkmmmEg3BaXPjWMw57zJPSdQ64xIhE9yYePMDrhJny5uKdV/bqhGgv2nzn3a/lF6zVJLLaY8U+m/eCdYfCeCaRaCbeovk4bkCt2GEFGOdwOn3apB+jLeE2c82gCzvT6vg1g8/dloXJweaAQdE7W8/OJyZzvbGcho8ksP8uAqsgnZiZzRxUV2KQlaWJZOdLZ9Aio0V9YiS2tHrKgFBwRHMdy1Z0HWioLfUQQV2481QkBonsOqB6LVP/hplUMouuqmjzWesRkOX1wTfZY88WQHYUbutI9nOZWqYf4fJZ3hcD2M2LdvA8L03STZ2jM9GQCkl8oLMymwwq2rpAnyWTh9zfCgjzTQvi+55M6+8VMfYgZHs4gRWMjfk2/lVlVW2uhRvyrOmesCkkP31Y0ZbLuL7BSzsKsCTwsnMAmsHCxS7f/hXW24FqIJmJRf1R7EGhsb6EfmKnlIQ9tJX/sMMJDiQSEKjs26wGLJt/Pr1PesSrTCOd8j+RV7w5ODehVEmNXQpX06R2KHJUL7X4wo1+qQhyHekix/LL8Pw4iiwm5uZg6lPAjcZj4EyEQF2xSGlnBgWIdbo/o5e7x21E89kUAX6WZT40/R3UBYJ9ol+tmbTxxYhmg8EPejNbpZK+/oxPlzBE5v4i520Pc4mwF8+Q8vSxKV+jJ9Ccc499GC/4k5qcDv/6N6vhvwAfXDPl6mvD0HHMf4kZAEKDuwxj80RzGlRxZPkvJCdleoJz4n9QG+eLG616Buj+/2YdwgV+N0AlEz7o4nHfcVPBl9f/0waSDuuOL4ke6fMQNl50eN3Rjkhva03iy8EhdrmIpBwcL/uqccDU1p/ao9BMCB5R7lTfITS7AdNUE/VoRuVdVuZwjTqujvDo3y/kR7t2NQFSasKGsmHUjzk9E4KCUfnkaKZ36Z7ajRUSb3fJkdyGy0FHhdx7JBeNLMaeWHG7AiD1+N5nrDECO3PvE+YqKcJwZzKJklefyDC1rinQBE0A0OMVh9dO5tg9g7nTR7+J1GLqEN/KLeX+61xVLOQPyPAAhkIgn9RtAUY1Ir3X3e/0fspeOro2s245XTzDwlhzB0upmH4tMtN2CijYB56pRrVGVALcC&c=${c}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0407({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + sessionId, + configId1, + passiveCaptchaSiteKey, + linkSettingsHcaptchaSiteKey + }) { + console.log("Executing request 0407") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount}&events=${JSON.stringify( + [ + { + "event_name": "elements.captcha.passive.execute", + "created": "1773809700003", + "batching_enabled": variable4, + "event_count": "128", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "860198cd-c5b9-4fc9-bdea-8e10cd63a7cb", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "elapsed_time": "21029", + "duration": "17713", + "attempt": currencyConfigPromosBusinessOneDollarAmount, + "site_key": passiveCaptchaSiteKey + }, + { + "event_name": "elements.captcha.passive.execute", + "created": "1773809700405", + "batching_enabled": variable4, + "event_count": "129", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "61d5112d-5e52-4008-853e-907c7809412e", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "elapsed_time": "21430", + "duration": "18115", + "attempt": currencyConfigPromosBusinessOneDollarAmount, + "site_key": linkSettingsHcaptchaSiteKey + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0408({ + variable12, + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + origins2, + variable5, + secureNextAuthCallbackUrlCookie1, + secureNextAuthCallbackUrlCookie2, + url1, + urlAudience, + evaluatedKeysStableid, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + cfuvidCookie17, + oaiScCookie9, + pageloadresourcehrefs + }) { + console.log("Executing request 0408") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/telemetry/intake??ddsource=csp-report&dd-api-key=dummy-token`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "content-type": "application/reports+json", + "origin": "https//chatgpt.com", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-gn=; _gcl_au=1.1.1190047189.1773809654; _fbp=fb.1.1773809654765.70493485518132342; _cfuvid=${cfuvidCookie17}; __Secure-next-auth.session-token=eyJhbGciOiJkaXIiLCJlbmMiOiJBMjU2R0NNIn0..CV1dsn7cCCMutGK-.FMKxs-4nT9MVzKKlCP-64qV39c3_8aL-Tgk2zCSAJSFBN8wB_PuS4xVJGi3wQsaIxDzbEgTt8Vf3S9lgbrI9IW4kj9-b6fogWdgWVE-__cVw6JKVnq2PNBgfsTr5fJSyjJ9_6A2sO3vLZRiedDMQ90nyu1wwzMRds87SD5M-7TAA1zxyLSSL0tpkh14F6_6fhALoWeYwOdAZYhZat_mdqhEprpyee-KC4uwF7wNWKOpIWRMZPWA-9WBnS-mTV1uWm-YOunStvtq1GznvS5bP3nL00jGzwqZp2P91rxLFzOGD55SGKxnXKfD4P7-u5qTI5zXKPOPMKBkhE-5CsFplEXXJfuA-hHgeJxr_uAuKgpDQ0Tq7TrP_smN0ozZ7Xm6uZGriV3Aud1yZqvLxZ5B_Kdxs2x8YrFoht-JKRPG7bzbtXKMNfN5x_bs90UzibHNcgLVOm-iAl5EmkQjTQaIi1jKUYc7IVwqO0Hiv8dOynMJCOZmXJaPtmQVg6F44Pze5_db5Bxuuw3PXNuwt_AN1eqE7DlEEkIzEG9ruJipkNM0YPWgxg792AWJBc7d0pC8Z8M5ie1JbZ7FOSYRzERVFBDN3TkYqrtQ6F9EKK814h7716W62LffWZ3JsUd3JFH1Z6UXpJGlSA3Ux8S4pixj6Tbg-AdJq04k_hBYlVEKgDmPhOxlAM_SgRIP8QxUS5TLT_kwLqAvJnIMsQjp-A-oDWh_6zLgKZc0vcmsxvQzFM5IT-xKA1cB9fjdPu_HZDB2qjmj4OKYJkn21E9M-OEckzYARPmE2_jsFVLA8uggCf4C4o3EGnMEoNlUei_zAlh1Ui-SEnIoHdlo5D7T3smPKCvoVxUcyleiR1xKMPml889m1IPWB4kB3yEnlX-aA6_Vb-B4f_TwNRaFUimWxRZi-1rk1A3Z3wMKnP1whvvmsXbLimHcefQj34bDNwWWpVtwGnDw0UQUFrzxgCK2WkPX0yaxhNExXDR9Yt78CDQhhqGhOFgqLFScLVzxS5DU6mwkgeosrUViw4TEUR8QB30y6Pgv3e8SrIDQSuBMBAIpwQzUYp6Cy7CACJP2BMAViLcGghtBUtyHYROInzABWLI6OHVcsU0t9uOfXcf-qKaJei0C-BfU4iw0t7fTNszuxKiNR4m8Xm4RJWKwWfhPdvaOEqbnr40CqQ6i93ENZisXfCjK0hOfA10ml19ebW0YXsEUHAfYrb0WoCvMfH8Bxorn6lc_xwA9stHvcTw4uMISuqLAq1ik4MOXAZ_3ARNmhgzoAk3atqDNe7m5W4MiDDQ_qAXeR2BZlNavEbyQEvf0wbsBOOWn5G4g-mdWjIpHDel9iTaCsMfD4Y2PLHO4598FGGuaL7viK70U4AJ33mNVtuVtBRr_-LLO2wefymIZVvdW4ou3jeauFTywXWEbmZoLjWVh_hV6CtMMuJw6equcEpkA4Lv1PcuUo_ft7o29Z3tpXxWdTGOtbrD_-DINQ9YVaaP7MAcDVnkbu_-d6tS14wTXwNQxYpLJpCjjBo21A7D9iresRGJ5eSb8iyY9ghigeoEyakzL8wcW08L34GcHYREWZPb2XJQUbNOxz4LLNpJ0XzRWbHbIVn7I67o_uDbKzAOFLtoUsqTFnwBWumBNNDdF7UZEHWS168cxeyduZVesyc5fdY9bZrS-6rDThFIoHOaLMKteEnex61SkRwXKj01y256WJqRan4_isaUdgCCSX8_dmg_tZI6W54U2UQ6fcZzL37OTfXps-Q_Shhdl8lZAs4GCwgBZyA69LFJOoR0vx6g1Z-g0euyjm9_6dzPJsGoQu2SvCv9x0KUXIx2fkG2oJIG0IrDO4Aw6sTioFSE2GvqC13qh470dcSYvrSjKJCqB8XM90-8ZZ3TM2ZeYWvTcZi9kG4wVK3TOpuVk_sdswNyd6t0hY9Yyg9Z3bvNCRfVguqyRqbKtFiIlGIdou_3-Sk3YLUutC27N19NyGFi6o7aGYnFhxZMXlMJvzapwIOuG2elfPnLMvVZLyJh9gJBsmmIu1_CfZ_7tV3gEmO3dPkvD96eJlUNvucabgGqz7hNovhbMvJjH7x-AKu-GwycJBcEwJ7btABj9oT9yube0-P8C-AcTmU6XOLOCz8Tk4m4_-B-kJnpaHmw4Qd1zRvkItsPnL87DyDtpuBhemK62YbEH08aC71taj42IH02INSVkPlAoceOYVTaPA1bKHH8lYyPTRU7bNnyt91lc7KJFhQe9Kb5FEuESj9GaiEi91XEEtwTYTyTPlVPEJmRm1VIkzZxaLfY2P9bttWRTByMT3ECjeayW2WHLtjrwCAMOJgrNoQDsXx6srfvkoAOTJ8TkAhMJLKJ6vt_nM9XAtMkWhASmWthDpHoRWHRZMryYNZQZdgwHUjCksy1GvLlMjYG-II7nryDyMUhdKvX-d0erq5xpUzNXb7DXd4OfjWW4nr_6_DpHVzU2LE6Zo2lKWjYGdTvXdaCA9u4dij5cNkNc2H-Ryd29goqwTbLqieU1r44VB_7zpQtJRGUJaoRzIPMb3AbEEqKdxlUk7N80s0vfkCFzS429Vj5DafZJfOsVDx50kywrVATiNe9hp_gsiNSu7wqjwfUe4x_YRg-5_f6d7chU9dRIZvTxO97XWcioH36xJzpGbNYhWnkOkoNLhBjvoyCCkcgd94mUBE_FiWXvc6uFFdL1eWQCQpDQxO-9hXPJ-mo3Ji33G7qrJ7cCLcS17Zvhz1SOkRL2B2Hb2cl5D7LBO5S0OjnzK1PUhuOG4yL_PlWv7-GvbyPzQ0gnu-qWSKGyc5yJgrpKbxVX4Sl9cBh-xI3VVWYzz2LklhgaRYHJl3Gt9W9v5pUuW2e1-dPhZjhioZCnnkOXPwC5JwjY_BOSprt1NMy1ydW61-FAfVdTnNTwPG67lN-wSrYuoRkDQ8diydqmvcRepYL8ZM0dc5v07ZUT3wWfuGGsTioO1mfG9ZFoT0K8nepd7EaJEhyl2gWli2qvXK8p8NAcB9FZgCEqih22E1xtZbOw561qCoXT9St77h40BIWbFW30p5oEeZ-yIO0X7zYhabaVsf0tfE5FWpvQVkFoZulEqE2QNiJr3qVslWJFfrANUUIQx6YSzWHCojnRZfo85G11PxX0E1gsApwQxwNqiv1TUjYyICvZdXMyX08BeMlW2BvPSSZaxutcZ_grwciT-ValyADAH3rC9lXGp88zg28-zUAavGQdO4r03mSPBHnK84FGZ-eAJ6ogy-08ftWJjIUFV5AEYsOelYaRGyZwQJEBoOVIpl2mM6232Sfo9to8BTv4Wx7IslecAboeXw00Bv9d9_vPJIy9w8ZbjhqCduPbWxu0zuQN79iuUJF0YHZYOuj_z4ZxO1jm-gQH-fuD2jZoZNMxlURO7Ot5islt0U1ayqPi7XgbJUSck1OtsJNqfM2tYpw_CXeygByjedYVmvaPbfj0QUKHjLqm1UQBDyuzTynoAT3-5I3PLpgcMJ832n4fX1YyKAoLW5xiIXfE4t4KuyZGmteAwXaJJy9Bl57Rjl1OFT59l1SH975d2aLpavqs1d0Mc6fDMWiyKdF0MRDm5ajHBkas4jOaLSvbc93UzNLfvq-bARZvN_3a4iJCt2uQ_qcw-ca5d5D2kvQ5B5mQt1iglA_OK-kJ88ZCZZ9d9pONV4VkA8L-bg7NbfKu_XS2rJPvToH062omCYsp74t3FbmfkMkCoVWVGGWejW-8lcEoWWiE.BWb0NEloxK6cZq3AsvdqLA; oai-sc=${oaiScCookie9}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809665$j38$l0$h0; __cf_bm=t2NbpHvSPl3V.1z8MZBOi65twAXaiR45c9d4E15eL1c-1773809665.1175745-1.0.1.1-pOYmOJNmihr_hw4XqKr63NhGzDQ.b2GgyRTpp8uFpY8JxO53J1mNiP1N8I5C3QhF8z40gV4usho1WL2GnU_5HoWN4kLYnUMfwIJ0lT_ScE2FLHxJCqPK3UI98ZXjI8.C; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _dd_s=aid` + }, + body: JSON.stringify( + [ + { + "age": "59319", + "body": { + "blockedURL": `https://www.google.com/ccm/collect?frm=${variable12}&en=page_view&dr=${url1}&dl=${secureNextAuthCallbackUrlCookie2}&scrsrc=www.googletagmanager.com&rnd=1780229833.1773809654&dt=${variable5}&auid=1190047189.1773809654&navt=n&npa=${variable12}&_tu=AAI>m=45be63g1v9195075707za200zb9231807798zd9231807798xec&gcd=13l3l3l3l1l1&dma=${variable12}&tag_exp=103116026~103200004~115938466~115938469~116024733~117484252&apve=${currencyConfigPromosBusinessOneDollarAmount}&apvf=f&apvc=${variable12}&tids=AW-16678058309&tid=AW-16678058309&tft=1773809654999&tfd=31882`, + "columnNumber": "491980", + "disposition": "enforce", + "documentURL": secureNextAuthCallbackUrlCookie2, + "effectiveDirective": "connect-src", + "lineNumber": currencyConfigPromosBusinessOneDollarAmount, + "originalPolicy": "default-src 'self'; script-src 'nonce-173ae874-672e-41c8-9d13-93b6dd0d9f84' 'self' 'wasm-unsafe-eval' chatgpt.com/ces https://*.chatgpt.com https://*.chatgpt.com/ https://*.js.stripe.com https://*.oaistatic.com https://accounts.google.com/gsi/client https://cdn.withpersona.com https://chat.openai.com https://chatgpt.com https://chatgpt.com/ https://chatgpt.com/backend-anon https://chatgpt.com/backend-api https://chatgpt.com/backend/se https://chatgpt.com/public-api https://js.stripe.com https://oaistatic.com https://snc.apps.openai.com wss://*.chatgpt.com wss://*.chatgpt.com/; script-src-elem 'nonce-173ae874-672e-41c8-9d13-93b6dd0d9f84' 'self' 'sha256-eMuh8xiwcX72rRYNAGENurQBAcH7kLlAUQcoOri3BIo=' auth0.openai.com blob: challenges.cloudflare.com chatgpt.com/ces https://*.chatgpt.com https://*.chatgpt.com/ https://*.js.stripe.com https://*.oaistatic.com https://analytics.tiktok.com https://apis.google.com https://bat.bing.com https://cdn.openaimerge.com/initialize.js https://cdn.platform.openai.com https://cdn.withpersona.com https://chat.openai.com https://chatgpt.com https://chatgpt.com/ https://chatgpt.com/backend-anon https://chatgpt.com/backend-api https://chatgpt.com/backend/se https://chatgpt.com/public-api https://connect.facebook.net https://docs.google.com https://js.live.net/v7.2/OneDrive.js https://js.stripe.com https://oaistatic.com https://pixel-config.reddit.com https://snap.licdn.com https://snc.apps.openai.com https://www-onepick-opensocial.googleusercontent.com https://www.redditstatic.com https://www.youtube.com wss://*.chatgpt.com wss://*.chatgpt.com/; img-src 'self' * blob: data: https: https://docs.google.com https://drive-thirdparty.googleusercontent.com https://ssl.gstatic.com; style-src 'self' 'unsafe-inline' blob: chatgpt.com/ces https://*.chatgpt.com https://*.chatgpt.com/ https://*.oaistatic.com https://accounts.google.com/gsi/style https://chat.openai.com https://chatgpt.com https://chatgpt.com/ https://chatgpt.com/backend-anon https://chatgpt.com/backend-api https://chatgpt.com/backend/se https://chatgpt.com/public-api https://oaistatic.com https://snc.apps.openai.com wss://*.chatgpt.com wss://*.chatgpt.com/; font-src 'self' data: https://*.oaistatic.com https://cdn.openai.com https://fonts.gstatic.com; connect-src 'self' *.blob.core.windows.net *.oaiusercontent.com api.mapbox.com browser-intake-datadoghq.com chatgpt.com/ces events.mapbox.com https://*.analytics.google.com https://*.chatgpt.com https://*.chatgpt.com/ https://*.google-analytics.com https://*.googletagmanager.com https://*.oaistatic.com https://accounts.google.com https://analytics.tiktok.com https://api.atlassian.com https://api.onedrive.com https://api.stripe.com https://bat.bing.com https://cdn.openai.com/emojibase/ https://cdn.platform.openai.com https://chat.openai.com https://chatgpt.com https://chatgpt.com/ https://chatgpt.com/backend-anon https://chatgpt.com/backend-api https://chatgpt.com/backend/se https://chatgpt.com/public-api https://content.googleapis.com https://docs.google.com https://events.statsigapi.net https://featuregates.org https://graph.microsoft.com https://oaistatic.com https://pixel-config.reddit.com https://px.ads.linkedin.com/ https://realtime.chatgpt-staging.com https://realtime.chatgpt.com https://snc.apps.openai.com https://test-drive-20-1053047382554.us-central1.run.app https://transceiver.api.openai.com https://transceiver.api.openai.org https://www.googleadservices.com https://www.googleapis.com https://www.redditstatic.com statsigapi.net wss://*.chatgpt.com wss://*.chatgpt.com/ wss://*.webpubsub.azure.com; frame-src 'self' challenges.cloudflare.com https://*.js.stripe.com https://*.sharepoint.com https://*.web-sandbox.oaiusercontent.com https://*.withpersona.com https://504-SWE-347.mktoweb.com https://accounts.google.com/gsi https://accounts.google.com/gsi/iframe/select https://auth.openai.com https://cdn.openaimerge.com https://content.googleapis.com https://docs.google.com https://hooks.stripe.com https://js.stripe.com https://onedrive.live.com https://web-sandbox.oaiusercontent.com js.stripe.com player.vimeo.com www.youtube.com; worker-src 'self' blob:; media-src 'self' *.oaiusercontent.com blob: https://cdn.oaistatic.com https://cdn.openai.com https://persistent.oaistatic.com; frame-ancestors 'self' chrome-extension://iaiigpefkbhgjcmcmffmfkpmhemdhdnj; base-uri 'none'; report-to chatgpt-csp; report-uri https://chatgpt.com/ces/v1/telemetry/intake?ddsource=csp-report&dd-api-key=dummy-token", + "referrer": `https://${url1}${origins2}`, + "sample": "", + "sourceFile": `https://${origins}${pageloadresourcehrefs}`, + "statusCode": statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration + }, + "type": "csp-violation", + "url": secureNextAuthCallbackUrlCookie2, + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" + }, + { + "age": "60001", + "body": { + "blockedURL": `https://www.google.com/ccm/collect?frm=${variable12}&en=page_view&dr=${url1}&dl=${secureNextAuthCallbackUrlCookie2}&scrsrc=www.googletagmanager.com&rnd=1780229833.1773809654&dt=${variable5}&auid=1190047189.1773809654&navt=n&npa=${variable12}&_tu=AAI>m=45be63g1v9210609399za200zb9231807798zd9231807798xec&gcd=13l3l3l3l1l1&dma=${variable12}&tag_exp=103116026~103200004~115938466~115938468~116024733~117484252&apve=${currencyConfigPromosBusinessOneDollarAmount}&apvf=f&apvc=${currencyConfigPromosBusinessOneDollarAmount}&tids=AW-16679965591&tid=AW-16679965591&tft=1773809654318&tfd=31200`, + "columnNumber": "491980", + "disposition": "enforce", + "documentURL": secureNextAuthCallbackUrlCookie2, + "effectiveDirective": "connect-src", + "lineNumber": currencyConfigPromosBusinessOneDollarAmount, + "originalPolicy": "default-src 'self'; script-src 'nonce-173ae874-672e-41c8-9d13-93b6dd0d9f84' 'self' 'wasm-unsafe-eval' chatgpt.com/ces https://*.chatgpt.com https://*.chatgpt.com/ https://*.js.stripe.com https://*.oaistatic.com https://accounts.google.com/gsi/client https://cdn.withpersona.com https://chat.openai.com https://chatgpt.com https://chatgpt.com/ https://chatgpt.com/backend-anon https://chatgpt.com/backend-api https://chatgpt.com/backend/se https://chatgpt.com/public-api https://js.stripe.com https://oaistatic.com https://snc.apps.openai.com wss://*.chatgpt.com wss://*.chatgpt.com/; script-src-elem 'nonce-173ae874-672e-41c8-9d13-93b6dd0d9f84' 'self' 'sha256-eMuh8xiwcX72rRYNAGENurQBAcH7kLlAUQcoOri3BIo=' auth0.openai.com blob: challenges.cloudflare.com chatgpt.com/ces https://*.chatgpt.com https://*.chatgpt.com/ https://*.js.stripe.com https://*.oaistatic.com https://analytics.tiktok.com https://apis.google.com https://bat.bing.com https://cdn.openaimerge.com/initialize.js https://cdn.platform.openai.com https://cdn.withpersona.com https://chat.openai.com https://chatgpt.com https://chatgpt.com/ https://chatgpt.com/backend-anon https://chatgpt.com/backend-api https://chatgpt.com/backend/se https://chatgpt.com/public-api https://connect.facebook.net https://docs.google.com https://js.live.net/v7.2/OneDrive.js https://js.stripe.com https://oaistatic.com https://pixel-config.reddit.com https://snap.licdn.com https://snc.apps.openai.com https://www-onepick-opensocial.googleusercontent.com https://www.redditstatic.com https://www.youtube.com wss://*.chatgpt.com wss://*.chatgpt.com/; img-src 'self' * blob: data: https: https://docs.google.com https://drive-thirdparty.googleusercontent.com https://ssl.gstatic.com; style-src 'self' 'unsafe-inline' blob: chatgpt.com/ces https://*.chatgpt.com https://*.chatgpt.com/ https://*.oaistatic.com https://accounts.google.com/gsi/style https://chat.openai.com https://chatgpt.com https://chatgpt.com/ https://chatgpt.com/backend-anon https://chatgpt.com/backend-api https://chatgpt.com/backend/se https://chatgpt.com/public-api https://oaistatic.com https://snc.apps.openai.com wss://*.chatgpt.com wss://*.chatgpt.com/; font-src 'self' data: https://*.oaistatic.com https://cdn.openai.com https://fonts.gstatic.com; connect-src 'self' *.blob.core.windows.net *.oaiusercontent.com api.mapbox.com browser-intake-datadoghq.com chatgpt.com/ces events.mapbox.com https://*.analytics.google.com https://*.chatgpt.com https://*.chatgpt.com/ https://*.google-analytics.com https://*.googletagmanager.com https://*.oaistatic.com https://accounts.google.com https://analytics.tiktok.com https://api.atlassian.com https://api.onedrive.com https://api.stripe.com https://bat.bing.com https://cdn.openai.com/emojibase/ https://cdn.platform.openai.com https://chat.openai.com https://chatgpt.com https://chatgpt.com/ https://chatgpt.com/backend-anon https://chatgpt.com/backend-api https://chatgpt.com/backend/se https://chatgpt.com/public-api https://content.googleapis.com https://docs.google.com https://events.statsigapi.net https://featuregates.org https://graph.microsoft.com https://oaistatic.com https://pixel-config.reddit.com https://px.ads.linkedin.com/ https://realtime.chatgpt-staging.com https://realtime.chatgpt.com https://snc.apps.openai.com https://test-drive-20-1053047382554.us-central1.run.app https://transceiver.api.openai.com https://transceiver.api.openai.org https://www.googleadservices.com https://www.googleapis.com https://www.redditstatic.com statsigapi.net wss://*.chatgpt.com wss://*.chatgpt.com/ wss://*.webpubsub.azure.com; frame-src 'self' challenges.cloudflare.com https://*.js.stripe.com https://*.sharepoint.com https://*.web-sandbox.oaiusercontent.com https://*.withpersona.com https://504-SWE-347.mktoweb.com https://accounts.google.com/gsi https://accounts.google.com/gsi/iframe/select https://auth.openai.com https://cdn.openaimerge.com https://content.googleapis.com https://docs.google.com https://hooks.stripe.com https://js.stripe.com https://onedrive.live.com https://web-sandbox.oaiusercontent.com js.stripe.com player.vimeo.com www.youtube.com; worker-src 'self' blob:; media-src 'self' *.oaiusercontent.com blob: https://cdn.oaistatic.com https://cdn.openai.com https://persistent.oaistatic.com; frame-ancestors 'self' chrome-extension://iaiigpefkbhgjcmcmffmfkpmhemdhdnj; base-uri 'none'; report-to chatgpt-csp; report-uri https://chatgpt.com/ces/v1/telemetry/intake?ddsource=csp-report&dd-api-key=dummy-token", + "referrer": `https://${url1}${origins2}`, + "sample": "", + "sourceFile": `https://${origins}${pageloadresourcehrefs}`, + "statusCode": statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration + }, + "type": "csp-violation", + "url": secureNextAuthCallbackUrlCookie2, + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" + } + ] + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0409({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + currency, + connectorsSupportedAuthOidcScopesSupported1, + sessionId, + configId1 + }) { + console.log("Executing request 0409") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&events=${JSON.stringify( + [ + { + "event_name": "elements.upe.progressive_cursor.enabled", + "created": "1773809772225", + "batching_enabled": variable4, + "event_count": "130", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "032c3846-5e87-48f2-a396-99136364da8a", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.event.focus", + "created": "1773809772232", + "batching_enabled": variable4, + "event_count": "131", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "da3123a4-4a0d-45eb-891d-6d45840c9b16", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.upe.payment_form_interaction", + "created": "1773809772239", + "batching_enabled": variable4, + "event_count": "132", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "98aac929-6682-47cf-bf68-4493f9541ae3", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "selected_payment_method": connectorsSupportedAuthOidcScopesSupported1, + "visible_payment_methods": connectorsSupportedAuthOidcScopesSupported1, + "hidden_payment_methods": "", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.update_elements_options", + "created": "1773809772315", + "batching_enabled": variable4, + "event_count": "133", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "6b4bfa3b-0c47-4d70-b697-657247841c4f", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "auto_logged": variable4 + }, + { + "event_name": "elements.update", + "created": "1773809772289", + "batching_enabled": variable4, + "event_count": "134", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "75bb16f5-35d0-4bf7-962c-e2047fa774fe", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0410({ + variable12, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + locale, + currency, + mode, + connectorsSupportedAuthOidcScopesSupported1, + sessionId, + configId1 + }) { + console.log("Executing request 0410") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&events=${JSON.stringify( + [ + { + "event_name": "elements.update", + "created": "1773809772318", + "batching_enabled": variable4, + "event_count": "135", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "77d2189e-cc22-4506-9080-b1f6462db858", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "options-locale": locale, + "options-disallowedCardBrands": "", + "options-mode": mode, + "options-amount": variable12, + "options-paymentMethodTypes": connectorsSupportedAuthOidcScopesSupported1, + "options-currency": currency + }, + { + "event_name": "elements.link.default_integration", + "created": "1773809772336", + "batching_enabled": variable4, + "event_count": "136", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "59649d78-3771-4573-81c7-a1a7e45eb581", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.link.payment_element.integration_type", + "created": "1773809772336", + "batching_enabled": variable4, + "event_count": "137", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "2c26dfeb-f885-412e-a2f7-fad0a9e9cacc", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "request_surface": "web_link_authentication_in_payment_element", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.pr.update", + "created": "1773809772344", + "batching_enabled": variable4, + "event_count": "138", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "7ac20d3e-b519-425d-b33d-b7b5ebafc45b", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "usesButtonElement": attributeAriaExpanded, + "requestShipping": attributeAriaExpanded + }, + { + "event_name": "elements.link.default_integration.card_form_change", + "created": "1773809772473", + "batching_enabled": variable4, + "event_count": "139", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "39a8a729-5ca6-4e8e-aedd-fddea2c0c4ca", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0411({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + currency, + sessionId, + configId1 + }) { + console.log("Executing request 0411") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${currencyConfigPromosBusinessOneDollarAmount}&events=${JSON.stringify( + [ + { + "event_name": "elements.event.blur", + "created": "1773809772963", + "batching_enabled": variable4, + "event_count": "140", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "27db444f-c5f9-4bf5-acbc-049bfc4eae33", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0412({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + currency, + sessionId, + configId1 + }) { + console.log("Executing request 0412") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${currencyConfigPromosBusinessOneDollarAmount}&events=${JSON.stringify( + [ + { + "event_name": "elements.event.focus", + "created": "1773809775564", + "batching_enabled": variable4, + "event_count": "141", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "78e72721-85c8-42ba-a65e-732249bf5090", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0413({ + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + currency, + sessionId, + configId1 + }) { + console.log("Executing request 0413") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount}&events=${JSON.stringify( + [ + { + "event_name": "elements.event.blur", + "created": "1773809777096", + "batching_enabled": variable4, + "event_count": "142", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "12818fff-6256-4534-843c-86186e828d6a", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.event.focus", + "created": "1773809778773", + "batching_enabled": variable4, + "event_count": "143", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "07da9cba-c78e-4543-98ec-bce72e133246", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0415({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + currency, + connectorsSupportedAuthOidcScopesSupported1, + sessionId, + configId1 + }) { + console.log("Executing request 0415") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&events=${JSON.stringify( + [ + { + "event_name": "elements.upe.payment_form_completion", + "created": "1773809779428", + "batching_enabled": variable4, + "event_count": "144", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "786f14ee-0211-4714-b5a4-3cffd8cb2a66", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "selectedPaymentMethod": connectorsSupportedAuthOidcScopesSupported1, + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.link.default_integration.card_form_change", + "created": "1773809779444", + "batching_enabled": variable4, + "event_count": "145", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "9dbecc69-1e27-4206-b1b0-24992522108c", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.link.opt_in.shown", + "created": "1773809779445", + "batching_enabled": variable4, + "event_count": "146", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "e99e7348-4869-4bea-8a25-247192940bbc", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "mounted_link_authentication": attributeAriaExpanded, + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.update_elements_options", + "created": "1773809779460", + "batching_enabled": variable4, + "event_count": "147", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "ac5cdf80-0712-4f3d-a977-85448f1f0589", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "auto_logged": variable4 + }, + { + "event_name": "elements.update", + "created": "1773809779436", + "batching_enabled": variable4, + "event_count": "148", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "f5049a33-b8c0-48c6-8d7f-039a65036f67", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0416({ + variable12, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + locale, + currency, + mode, + connectorsSupportedAuthOidcScopesSupported1, + sessionId, + configId1 + }) { + console.log("Executing request 0416") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&events=${JSON.stringify( + [ + { + "event_name": "elements.update", + "created": "1773809779463", + "batching_enabled": variable4, + "event_count": "149", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "a1be83d0-b303-44f3-b8c9-23068b33dafc", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "options-locale": locale, + "options-disallowedCardBrands": "", + "options-mode": mode, + "options-amount": variable12, + "options-paymentMethodTypes": connectorsSupportedAuthOidcScopesSupported1, + "options-currency": currency + }, + { + "event_name": "elements.link.default_integration", + "created": "1773809779478", + "batching_enabled": variable4, + "event_count": "150", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "7a3eb250-742c-4892-9f48-ed2f64157585", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.link.payment_element.integration_type", + "created": "1773809779479", + "batching_enabled": variable4, + "event_count": "151", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "7a0c4ea3-38b4-43ca-86e1-6376b29fc1ee", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "request_surface": "web_link_authentication_in_payment_element", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.pr.update", + "created": "1773809779491", + "batching_enabled": variable4, + "event_count": "152", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "e851a609-640f-4674-a275-c34d1c36336e", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "usesButtonElement": attributeAriaExpanded, + "requestShipping": attributeAriaExpanded + }, + { + "event_name": "elements.event.blur", + "created": "1773809780589", + "batching_enabled": variable4, + "event_count": "153", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "fbf6aa2a-11ae-427e-89f3-febb5a5d19a5", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0417({ + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs2179180337ValueMaxAttempts, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3 + }) { + console.log("Executing request 0417") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount}&events=${JSON.stringify( + [ + { + "event_name": "link_funnel.link_rendered", + "created": "1773809779465", + "batching_enabled": variable4, + "event_count": statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "b7c1e8d8-288c-441a-88bd-65af378c0080", + "team_identifier": "t_6", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "referrer": secureNextAuthCallbackUrlCookie3, + "public_key": publishableKey, + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "isSafariPrivateMode": attributeAriaExpanded, + "deploy_status_time_to_fetch_ms": "114", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "surface": "payment-element", + "type": "signup-checkbox" + }, + { + "event_name": "link_funnel.link_interaction", + "created": "1773809779465", + "batching_enabled": variable4, + "event_count": statsigpayloadDynamicConfigs2179180337ValueMaxAttempts, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "c5212ca4-2ff1-45f1-9cf6-3b85a2757a88", + "team_identifier": "t_6", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "referrer": secureNextAuthCallbackUrlCookie3, + "public_key": publishableKey, + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "isSafariPrivateMode": attributeAriaExpanded, + "deploy_status_time_to_fetch_ms": "114", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "surface": "payment-element", + "type": "signup-checkbox", + "action": "unchecked" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0418({ + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + sessionId, + configId1 + }) { + console.log("Executing request 0418") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount}&events=${JSON.stringify( + [ + { + "event_name": "elements.event.focus", + "created": "1773809780591", + "batching_enabled": variable4, + "event_count": "154", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "bb60dbc2-4f39-4016-9749-3e04d44e018d", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + "element_mode": "billing", + "element_id": "address-d9ee1043-0a90-48b6-8819-70ba036e9e21" + }, + { + "event_name": "elements.event.blur", + "created": "1773809781103", + "batching_enabled": variable4, + "event_count": "155", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "ca346dbb-7709-4da0-9032-a2a761a4f99a", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + "element_mode": "billing", + "element_id": "address-d9ee1043-0a90-48b6-8819-70ba036e9e21" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0419({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + sessionId, + configId1 + }) { + console.log("Executing request 0419") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${currencyConfigPromosBusinessOneDollarAmount}&events=${JSON.stringify( + [ + { + "event_name": "elements.event.focus", + "created": "1773809783939", + "batching_enabled": variable4, + "event_count": "156", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "1756a95b-dcb1-4cd8-9f55-3b2fd0aad807", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + "element_mode": "billing", + "element_id": "address-d9ee1043-0a90-48b6-8819-70ba036e9e21" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0420({ + attributeType, + urlAudience, + checkoutSessionId, + attributeHref10 + }) { + console.log("Executing request 0420") + const response = await fetch( + `https://${attributeHref10}/${urlAudience}/payment_pages/${checkoutSessionId}`, + { + method: "POST", + headers: { + "host": attributeHref10, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: "tax_region[country]=US&elements_session_client[client_betas][0]=custom_checkout_server_updates_1&elements_session_client[client_betas][1]=custom_checkout_manual_approval_1&elements_session_client[elements_init_source]=custom_checkout&elements_session_client[referrer_host]=chatgpt.com&elements_session_client[session_id]=elements_session_1aCZ5XSL21u&elements_session_client[stripe_js_id]=e9ea369f-4f2d-4a53-b21a-1abbc01b2820&elements_session_client[locale]=zh&elements_session_client[is_aggregation_expected]=false&client_attribution_metadata[merchant_integration_additional_elements][0]=payment&client_attribution_metadata[merchant_integration_additional_elements][1]=address&key=pk_live_51HOrSwC6h1nxGoI3lTAgRjYVrz4dU3fVOabyCcKR3pbEJguCVAlqCxdxCUvoRh1XWwRacViovU3kLKvpkjh7IqkW00iXQsjo3n&_stripe_version=2025-03-31.basil%3B+checkout_server_update_beta%3Dv1%3B+checkout_manual_approval_preview%3Dv1" + } + ) + const body = await response.text() + return { + variable79: response.headers.get("original-request") + } + } + async function executeRequest0421({ + variable12, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + locale, + currency, + mode, + connectorsSupportedAuthOidcScopesSupported1, + sessionId, + configId1 + }) { + console.log("Executing request 0421") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&events=${JSON.stringify( + [ + { + "event_name": "elements.update", + "created": "1773809786674", + "batching_enabled": variable4, + "event_count": "162", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "98725665-8a09-4f8e-856b-3a8d8c72be41", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.link.default_integration", + "created": "1773809786689", + "batching_enabled": variable4, + "event_count": "163", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "b149d11e-f010-4406-bc27-6c25a39f1085", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.link.payment_element.integration_type", + "created": "1773809786689", + "batching_enabled": variable4, + "event_count": "164", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "37993c93-4515-4a1c-8b4e-dabfb54fcfd9", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "request_surface": "web_link_authentication_in_payment_element", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.update", + "created": "1773809786678", + "batching_enabled": variable4, + "event_count": "165", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "2d2000b8-4f96-416b-897c-a717fead9996", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "options-locale": locale, + "options-disallowedCardBrands": "", + "options-mode": mode, + "options-amount": variable12, + "options-paymentMethodTypes": connectorsSupportedAuthOidcScopesSupported1, + "options-currency": currency + }, + { + "event_name": "elements.pr.update", + "created": "1773809786699", + "batching_enabled": variable4, + "event_count": "166", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "a019d3f9-6f79-4c3d-96f2-27939dc4ed00", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "usesButtonElement": attributeAriaExpanded, + "requestShipping": attributeAriaExpanded + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0422({ + variable12, + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + variable78, + statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + urlAudience, + checkoutSessionId, + attributeHref10, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + id, + accountSettingsAccountId, + currency, + emailDomainType, + object2, + statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + sessionId, + configId1, + variable79 + }) { + console.log("Executing request 0422") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&events=${JSON.stringify( + [ + { + "event_name": "elements.update_payment_page", + "created": "1773809784982", + "batching_enabled": variable4, + "event_count": variable78, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "8a5e6df8-1c9e-4dfa-9fe7-73196463f58b", + "team_identifier": "t_0", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "auto_logged": variable4 + }, + { + "event_name": "elements.event.blur", + "created": "1773809786047", + "batching_enabled": variable4, + "event_count": "158", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "9e7e754f-3e69-4c3b-b6b5-c87b2ad49e2b", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + "element_mode": "billing", + "element_id": "address-d9ee1043-0a90-48b6-8819-70ba036e9e21" + }, + { + "event_name": "rum.stripejs", + "created": "1773809786669", + "batching_enabled": variable4, + "event_count": "159", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + "event_id": "f7158660-bb56-490b-b5ac-b5ac1eb480f1", + "team_identifier": "t_7", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "requestId": variable79, + "tokenType": emailDomainType, + "url": `https://${attributeHref10}/${urlAudience}/payment_pages/${checkoutSessionId}`, + "status": statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + "start": "1773809784984", + "end": "1773809786669", + "resourceTiming[startTime]": "116198.3", + "resourceTiming[duration]": "1684", + "resourceTiming[redirectStart]": variable12, + "resourceTiming[redirectEnd]": variable12, + "resourceTiming[fetchStart]": "116198.3", + "resourceTiming[domainLookupStart]": "116198.3", + "resourceTiming[domainLookupEnd]": "116198.3", + "resourceTiming[connectStart]": "116198.6", + "resourceTiming[connectEnd]": "116204.6", + "resourceTiming[secureConnectionStart]": "116202.9", + "resourceTiming[requestStart]": "116204.6", + "resourceTiming[responseStart]": "117880.8", + "resourceTiming[responseEnd]": "117882.3", + "paymentUserAgent": "stripe.js/5e596c82e6; stripe-js-v3/5e596c82e6" + }, + { + "event_name": "elements.update_payment_page.success", + "created": "1773809786672", + "batching_enabled": variable4, + "event_count": "160", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "b97fdd26-33bf-4894-a321-cc68a189e6b0", + "team_identifier": "t_0", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "object_id": id, + "object_kind": object2, + "object_type": "undefined", + "object_livemode": variable4, + "usingPaymentFormElement": attributeAriaExpanded + }, + { + "event_name": "elements.update_elements_options", + "created": "1773809786675", + "batching_enabled": variable4, + "event_count": "161", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "87b593b8-b9e3-41a8-904c-c0410d855093", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "auto_logged": variable4 + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0423({ + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + sessionId, + configId1 + }) { + console.log("Executing request 0423") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount}&events=${JSON.stringify( + [ + { + "event_name": "elements.event.focus", + "created": "1773809787754", + "batching_enabled": variable4, + "event_count": "167", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "587eb001-20af-431c-8d46-47e744088eb1", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + "element_mode": "billing", + "element_id": "address-d9ee1043-0a90-48b6-8819-70ba036e9e21" + }, + { + "event_name": "elements.address_autocomplete.prediction_search_fired", + "created": "1773809788309", + "batching_enabled": variable4, + "event_count": "168", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "69c5736a-3370-4a5f-90be-c4ab782dc85d", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "newPlacesApi": variable4, + "element": "googleMapsInner", + "element_mode": "billing" + }, + { + "event_name": "elements.update_payment_page", + "created": "1773809788726", + "batching_enabled": variable4, + "event_count": "169", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "33f63c43-a5b1-435c-886f-65a5095b16db", + "team_identifier": "t_0", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "auto_logged": variable4 + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0424({ + attributeType, + urlAudience, + checkoutSessionId, + attributeHref10 + }) { + console.log("Executing request 0424") + const response = await fetch( + `https://${attributeHref10}/${urlAudience}/payment_pages/${checkoutSessionId}`, + { + method: "POST", + headers: { + "host": attributeHref10, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: "tax_region[country]=US&tax_region[line1]=10094+Southeast+Linwood+Avenue&elements_session_client[client_betas][0]=custom_checkout_server_updates_1&elements_session_client[client_betas][1]=custom_checkout_manual_approval_1&elements_session_client[elements_init_source]=custom_checkout&elements_session_client[referrer_host]=chatgpt.com&elements_session_client[session_id]=elements_session_1aCZ5XSL21u&elements_session_client[stripe_js_id]=e9ea369f-4f2d-4a53-b21a-1abbc01b2820&elements_session_client[locale]=zh&elements_session_client[is_aggregation_expected]=false&client_attribution_metadata[merchant_integration_additional_elements][0]=payment&client_attribution_metadata[merchant_integration_additional_elements][1]=address&key=pk_live_51HOrSwC6h1nxGoI3lTAgRjYVrz4dU3fVOabyCcKR3pbEJguCVAlqCxdxCUvoRh1XWwRacViovU3kLKvpkjh7IqkW00iXQsjo3n&_stripe_version=2025-03-31.basil%3B+checkout_server_update_beta%3Dv1%3B+checkout_manual_approval_preview%3Dv1" + } + ) + const body = await response.text() + return { + variable82: response.headers.get("original-request") + } + } + async function executeRequest0425({ + variable12, + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + urlAudience, + checkoutSessionId, + attributeHref10, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + id, + accountSettingsAccountId, + locale, + currency, + emailDomainType, + object2, + mode, + connectorsSupportedAuthOidcScopesSupported1, + sessionId, + configId1, + variable82 + }) { + console.log("Executing request 0425") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&events=${JSON.stringify( + [ + { + "event_name": "rum.stripejs", + "created": "1773809789966", + "batching_enabled": variable4, + "event_count": "170", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + "event_id": "9ea27d18-3143-4715-acf4-d1e4b8920d17", + "team_identifier": "t_7", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "requestId": variable82, + "tokenType": emailDomainType, + "url": `https://${attributeHref10}/${urlAudience}/payment_pages/${checkoutSessionId}`, + "status": statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + "start": "1773809788727", + "end": "1773809789966", + "resourceTiming[startTime]": "119940.9", + "resourceTiming[duration]": "1238.7", + "resourceTiming[redirectStart]": variable12, + "resourceTiming[redirectEnd]": variable12, + "resourceTiming[fetchStart]": "119940.9", + "resourceTiming[domainLookupStart]": "119940.9", + "resourceTiming[domainLookupEnd]": "119940.9", + "resourceTiming[connectStart]": "119940.9", + "resourceTiming[connectEnd]": "119940.9", + "resourceTiming[secureConnectionStart]": "119940.9", + "resourceTiming[requestStart]": "119941.3", + "resourceTiming[responseStart]": "121177.7", + "resourceTiming[responseEnd]": "121179.6", + "paymentUserAgent": "stripe.js/5e596c82e6; stripe-js-v3/5e596c82e6" + }, + { + "event_name": "elements.update_payment_page.success", + "created": "1773809789967", + "batching_enabled": variable4, + "event_count": "171", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "381ffa69-7e06-4a9b-a108-ef5504c209cd", + "team_identifier": "t_0", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "object_id": id, + "object_kind": object2, + "object_type": "undefined", + "object_livemode": variable4, + "usingPaymentFormElement": attributeAriaExpanded + }, + { + "event_name": "elements.update_elements_options", + "created": "1773809789971", + "batching_enabled": variable4, + "event_count": "172", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "0c14d8ab-1c2d-4bfc-8d8a-76c3442ecd66", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "auto_logged": variable4 + }, + { + "event_name": "elements.update", + "created": "1773809789971", + "batching_enabled": variable4, + "event_count": "173", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "53a2c222-4644-486f-a9e6-6d7eae97a606", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.update", + "created": "1773809789973", + "batching_enabled": variable4, + "event_count": "174", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "975f2429-0c74-4548-9efb-93931991cbcd", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "options-locale": locale, + "options-disallowedCardBrands": "", + "options-mode": mode, + "options-amount": variable12, + "options-paymentMethodTypes": connectorsSupportedAuthOidcScopesSupported1, + "options-currency": currency + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0426({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + currency, + statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + sessionId, + configId1 + }) { + console.log("Executing request 0426") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&events=${JSON.stringify( + [ + { + "event_name": "elements.link.default_integration", + "created": "1773809789984", + "batching_enabled": variable4, + "event_count": "175", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "9bd46679-d871-4d69-b247-35acda6a5c3c", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.link.payment_element.integration_type", + "created": "1773809789984", + "batching_enabled": variable4, + "event_count": "176", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "9a243ae8-2cf5-4459-9237-11dc8bbd20bb", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "request_surface": "web_link_authentication_in_payment_element", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.pr.update", + "created": "1773809789990", + "batching_enabled": variable4, + "event_count": "177", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "344d38e6-db9a-4d01-ae99-733656b94675", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "usesButtonElement": attributeAriaExpanded, + "requestShipping": attributeAriaExpanded + }, + { + "event_name": "elements.event.blur", + "created": "1773809790174", + "batching_enabled": variable4, + "event_count": "178", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "56694c40-4d85-4a08-b816-04de1541d9e9", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + "element_mode": "billing", + "element_id": "address-d9ee1043-0a90-48b6-8819-70ba036e9e21" + }, + { + "event_name": "elements.event.focus", + "created": "1773809791788", + "batching_enabled": variable4, + "event_count": "179", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "05a5c4c2-57de-499f-9a2b-70fa58f4dd01", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + "element_mode": "billing", + "element_id": "address-d9ee1043-0a90-48b6-8819-70ba036e9e21" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0427({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + secureNextAuthCallbackUrlCookie1, + urlAudience, + evaluatedKeysStableid, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + cfuvidCookie17, + oaiScCookie9, + connectorsSuggestionConfigImageUrl + }) { + console.log("Executing request 0427") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/${connectorsSuggestionConfigImageUrl}`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": modelsProductFeaturesAttachmentsAcceptedMimeTypes, + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//chatgpt.com/checkout/openai_llc/cs_live_a1XaCvZCoIEesvGS7aFlnPORQaFoV8h19Ihj8OnyIZUodOtCkd3hWY4gVM", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-gn=; _gcl_au=1.1.1190047189.1773809654; _fbp=fb.1.1773809654765.70493485518132342; _cfuvid=${cfuvidCookie17}; __Secure-next-auth.session-token=eyJhbGciOiJkaXIiLCJlbmMiOiJBMjU2R0NNIn0..CV1dsn7cCCMutGK-.FMKxs-4nT9MVzKKlCP-64qV39c3_8aL-Tgk2zCSAJSFBN8wB_PuS4xVJGi3wQsaIxDzbEgTt8Vf3S9lgbrI9IW4kj9-b6fogWdgWVE-__cVw6JKVnq2PNBgfsTr5fJSyjJ9_6A2sO3vLZRiedDMQ90nyu1wwzMRds87SD5M-7TAA1zxyLSSL0tpkh14F6_6fhALoWeYwOdAZYhZat_mdqhEprpyee-KC4uwF7wNWKOpIWRMZPWA-9WBnS-mTV1uWm-YOunStvtq1GznvS5bP3nL00jGzwqZp2P91rxLFzOGD55SGKxnXKfD4P7-u5qTI5zXKPOPMKBkhE-5CsFplEXXJfuA-hHgeJxr_uAuKgpDQ0Tq7TrP_smN0ozZ7Xm6uZGriV3Aud1yZqvLxZ5B_Kdxs2x8YrFoht-JKRPG7bzbtXKMNfN5x_bs90UzibHNcgLVOm-iAl5EmkQjTQaIi1jKUYc7IVwqO0Hiv8dOynMJCOZmXJaPtmQVg6F44Pze5_db5Bxuuw3PXNuwt_AN1eqE7DlEEkIzEG9ruJipkNM0YPWgxg792AWJBc7d0pC8Z8M5ie1JbZ7FOSYRzERVFBDN3TkYqrtQ6F9EKK814h7716W62LffWZ3JsUd3JFH1Z6UXpJGlSA3Ux8S4pixj6Tbg-AdJq04k_hBYlVEKgDmPhOxlAM_SgRIP8QxUS5TLT_kwLqAvJnIMsQjp-A-oDWh_6zLgKZc0vcmsxvQzFM5IT-xKA1cB9fjdPu_HZDB2qjmj4OKYJkn21E9M-OEckzYARPmE2_jsFVLA8uggCf4C4o3EGnMEoNlUei_zAlh1Ui-SEnIoHdlo5D7T3smPKCvoVxUcyleiR1xKMPml889m1IPWB4kB3yEnlX-aA6_Vb-B4f_TwNRaFUimWxRZi-1rk1A3Z3wMKnP1whvvmsXbLimHcefQj34bDNwWWpVtwGnDw0UQUFrzxgCK2WkPX0yaxhNExXDR9Yt78CDQhhqGhOFgqLFScLVzxS5DU6mwkgeosrUViw4TEUR8QB30y6Pgv3e8SrIDQSuBMBAIpwQzUYp6Cy7CACJP2BMAViLcGghtBUtyHYROInzABWLI6OHVcsU0t9uOfXcf-qKaJei0C-BfU4iw0t7fTNszuxKiNR4m8Xm4RJWKwWfhPdvaOEqbnr40CqQ6i93ENZisXfCjK0hOfA10ml19ebW0YXsEUHAfYrb0WoCvMfH8Bxorn6lc_xwA9stHvcTw4uMISuqLAq1ik4MOXAZ_3ARNmhgzoAk3atqDNe7m5W4MiDDQ_qAXeR2BZlNavEbyQEvf0wbsBOOWn5G4g-mdWjIpHDel9iTaCsMfD4Y2PLHO4598FGGuaL7viK70U4AJ33mNVtuVtBRr_-LLO2wefymIZVvdW4ou3jeauFTywXWEbmZoLjWVh_hV6CtMMuJw6equcEpkA4Lv1PcuUo_ft7o29Z3tpXxWdTGOtbrD_-DINQ9YVaaP7MAcDVnkbu_-d6tS14wTXwNQxYpLJpCjjBo21A7D9iresRGJ5eSb8iyY9ghigeoEyakzL8wcW08L34GcHYREWZPb2XJQUbNOxz4LLNpJ0XzRWbHbIVn7I67o_uDbKzAOFLtoUsqTFnwBWumBNNDdF7UZEHWS168cxeyduZVesyc5fdY9bZrS-6rDThFIoHOaLMKteEnex61SkRwXKj01y256WJqRan4_isaUdgCCSX8_dmg_tZI6W54U2UQ6fcZzL37OTfXps-Q_Shhdl8lZAs4GCwgBZyA69LFJOoR0vx6g1Z-g0euyjm9_6dzPJsGoQu2SvCv9x0KUXIx2fkG2oJIG0IrDO4Aw6sTioFSE2GvqC13qh470dcSYvrSjKJCqB8XM90-8ZZ3TM2ZeYWvTcZi9kG4wVK3TOpuVk_sdswNyd6t0hY9Yyg9Z3bvNCRfVguqyRqbKtFiIlGIdou_3-Sk3YLUutC27N19NyGFi6o7aGYnFhxZMXlMJvzapwIOuG2elfPnLMvVZLyJh9gJBsmmIu1_CfZ_7tV3gEmO3dPkvD96eJlUNvucabgGqz7hNovhbMvJjH7x-AKu-GwycJBcEwJ7btABj9oT9yube0-P8C-AcTmU6XOLOCz8Tk4m4_-B-kJnpaHmw4Qd1zRvkItsPnL87DyDtpuBhemK62YbEH08aC71taj42IH02INSVkPlAoceOYVTaPA1bKHH8lYyPTRU7bNnyt91lc7KJFhQe9Kb5FEuESj9GaiEi91XEEtwTYTyTPlVPEJmRm1VIkzZxaLfY2P9bttWRTByMT3ECjeayW2WHLtjrwCAMOJgrNoQDsXx6srfvkoAOTJ8TkAhMJLKJ6vt_nM9XAtMkWhASmWthDpHoRWHRZMryYNZQZdgwHUjCksy1GvLlMjYG-II7nryDyMUhdKvX-d0erq5xpUzNXb7DXd4OfjWW4nr_6_DpHVzU2LE6Zo2lKWjYGdTvXdaCA9u4dij5cNkNc2H-Ryd29goqwTbLqieU1r44VB_7zpQtJRGUJaoRzIPMb3AbEEqKdxlUk7N80s0vfkCFzS429Vj5DafZJfOsVDx50kywrVATiNe9hp_gsiNSu7wqjwfUe4x_YRg-5_f6d7chU9dRIZvTxO97XWcioH36xJzpGbNYhWnkOkoNLhBjvoyCCkcgd94mUBE_FiWXvc6uFFdL1eWQCQpDQxO-9hXPJ-mo3Ji33G7qrJ7cCLcS17Zvhz1SOkRL2B2Hb2cl5D7LBO5S0OjnzK1PUhuOG4yL_PlWv7-GvbyPzQ0gnu-qWSKGyc5yJgrpKbxVX4Sl9cBh-xI3VVWYzz2LklhgaRYHJl3Gt9W9v5pUuW2e1-dPhZjhioZCnnkOXPwC5JwjY_BOSprt1NMy1ydW61-FAfVdTnNTwPG67lN-wSrYuoRkDQ8diydqmvcRepYL8ZM0dc5v07ZUT3wWfuGGsTioO1mfG9ZFoT0K8nepd7EaJEhyl2gWli2qvXK8p8NAcB9FZgCEqih22E1xtZbOw561qCoXT9St77h40BIWbFW30p5oEeZ-yIO0X7zYhabaVsf0tfE5FWpvQVkFoZulEqE2QNiJr3qVslWJFfrANUUIQx6YSzWHCojnRZfo85G11PxX0E1gsApwQxwNqiv1TUjYyICvZdXMyX08BeMlW2BvPSSZaxutcZ_grwciT-ValyADAH3rC9lXGp88zg28-zUAavGQdO4r03mSPBHnK84FGZ-eAJ6ogy-08ftWJjIUFV5AEYsOelYaRGyZwQJEBoOVIpl2mM6232Sfo9to8BTv4Wx7IslecAboeXw00Bv9d9_vPJIy9w8ZbjhqCduPbWxu0zuQN79iuUJF0YHZYOuj_z4ZxO1jm-gQH-fuD2jZoZNMxlURO7Ot5islt0U1ayqPi7XgbJUSck1OtsJNqfM2tYpw_CXeygByjedYVmvaPbfj0QUKHjLqm1UQBDyuzTynoAT3-5I3PLpgcMJ832n4fX1YyKAoLW5xiIXfE4t4KuyZGmteAwXaJJy9Bl57Rjl1OFT59l1SH975d2aLpavqs1d0Mc6fDMWiyKdF0MRDm5ajHBkas4jOaLSvbc93UzNLfvq-bARZvN_3a4iJCt2uQ_qcw-ca5d5D2kvQ5B5mQt1iglA_OK-kJ88ZCZZ9d9pONV4VkA8L-bg7NbfKu_XS2rJPvToH062omCYsp74t3FbmfkMkCoVWVGGWejW-8lcEoWWiE.BWb0NEloxK6cZq3AsvdqLA; oai-sc=${oaiScCookie9}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809665$j38$l0$h0; __cf_bm=t2NbpHvSPl3V.1z8MZBOi65twAXaiR45c9d4E15eL1c-1773809665.1175745-1.0.1.1-pOYmOJNmihr_hw4XqKr63NhGzDQ.b2GgyRTpp8uFpY8JxO53J1mNiP1N8I5C3QhF8z40gV4usho1WL2GnU_5HoWN4kLYnUMfwIJ0lT_ScE2FLHxJCqPK3UI98ZXjI8.C; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _dd_s=aid` + }, + body: JSON.stringify( + { + "series": [ + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + } + ] + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0428({ + variable84 + }) { + console.log("Executing request 0428") + const response = await fetch( + "https://places.googleapis.com/$rpc/google.maps.places.v1.Places/AutocompletePlaces", + { + method: "OPTIONS", + headers: { + "host": "places.googleapis.com", + "connection": "keep-alive", + "accept": "*/*", + "access-control-request-method": variable84, + "access-control-request-headers": "content-type,x-goog-api-key,x-goog-gmp-client-signals,x-goog-maps-api-salt,x-goog-maps-session-id,x-user-agent", + "origin": "https//b.stripecdn.com", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-fetch-mode": "cors", + "sec-fetch-site": "cross-site", + "sec-fetch-dest": "empty", + "referer": "https//b.stripecdn.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0429({ + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + sessionId, + configId1 + }) { + console.log("Executing request 0429") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount}&events=${JSON.stringify( + [ + { + "event_name": "elements.event.blur", + "created": "1773809792297", + "batching_enabled": variable4, + "event_count": "180", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "89ddc5f6-ab3f-4da7-8740-b3ffb990c730", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + "element_mode": "billing", + "element_id": "address-d9ee1043-0a90-48b6-8819-70ba036e9e21" + }, + { + "event_name": "elements.address_autocomplete.prediction_search_complete", + "created": "1773809793487", + "batching_enabled": variable4, + "event_count": "181", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "3c215bae-aa9a-4edc-99d9-437f82bdef04", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "timeToComplete": "5178", + "newPlacesApi": variable4, + "element": "googleMapsInner", + "element_mode": "billing" + }, + { + "event_name": "elements.address_autocomplete.suggestions_triggered", + "created": "1773809793488", + "batching_enabled": variable4, + "event_count": "182", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "97063e74-efc1-4bcc-8812-62950f51c09a", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + "element_mode": "billing", + "element_id": "address-d9ee1043-0a90-48b6-8819-70ba036e9e21" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0430({ + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + sessionId, + configId1 + }) { + console.log("Executing request 0430") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount}&events=${JSON.stringify( + [ + { + "event_name": "elements.event.focus", + "created": "1773809794613", + "batching_enabled": variable4, + "event_count": "183", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "8a883db3-ac93-47b1-bfdc-387f2426da3c", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + "element_mode": "billing", + "element_id": "address-d9ee1043-0a90-48b6-8819-70ba036e9e21" + }, + { + "event_name": "elements.update_payment_page", + "created": "1773809795684", + "batching_enabled": variable4, + "event_count": "184", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "c821c0ca-0657-4ad0-b6bb-2a1b1d5d1691", + "team_identifier": "t_0", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "auto_logged": variable4 + }, + { + "event_name": "elements.event.blur", + "created": "1773809795799", + "batching_enabled": variable4, + "event_count": "185", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "3d49eaee-843c-465d-9bd3-4b918df5148c", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + "element_mode": "billing", + "element_id": "address-d9ee1043-0a90-48b6-8819-70ba036e9e21" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0431({ + attributeType, + urlAudience, + checkoutSessionId, + attributeHref10 + }) { + console.log("Executing request 0431") + const response = await fetch( + `https://${attributeHref10}/${urlAudience}/payment_pages/${checkoutSessionId}`, + { + method: "POST", + headers: { + "host": attributeHref10, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: "tax_region[country]=US&tax_region[line1]=10094+Southeast+Linwood+Avenue&tax_region[city]=Milwaukie&elements_session_client[client_betas][0]=custom_checkout_server_updates_1&elements_session_client[client_betas][1]=custom_checkout_manual_approval_1&elements_session_client[elements_init_source]=custom_checkout&elements_session_client[referrer_host]=chatgpt.com&elements_session_client[session_id]=elements_session_1aCZ5XSL21u&elements_session_client[stripe_js_id]=e9ea369f-4f2d-4a53-b21a-1abbc01b2820&elements_session_client[locale]=zh&elements_session_client[is_aggregation_expected]=false&client_attribution_metadata[merchant_integration_additional_elements][0]=payment&client_attribution_metadata[merchant_integration_additional_elements][1]=address&key=pk_live_51HOrSwC6h1nxGoI3lTAgRjYVrz4dU3fVOabyCcKR3pbEJguCVAlqCxdxCUvoRh1XWwRacViovU3kLKvpkjh7IqkW00iXQsjo3n&_stripe_version=2025-03-31.basil%3B+checkout_server_update_beta%3Dv1%3B+checkout_manual_approval_preview%3Dv1" + } + ) + const body = await response.text() + return { + variable86: response.headers.get("original-request") + } + } + async function executeRequest0432({ + variable12, + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + urlAudience, + checkoutSessionId, + attributeHref10, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + id, + accountSettingsAccountId, + currency, + emailDomainType, + object2, + statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + sessionId, + configId1, + variable86 + }) { + console.log("Executing request 0432") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&events=${JSON.stringify( + [ + { + "event_name": "elements.event.focus", + "created": "1773809797245", + "batching_enabled": variable4, + "event_count": "186", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "17cf799c-eec7-4ecd-87dd-f0fa490f0e08", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + "element_mode": "billing", + "element_id": "address-d9ee1043-0a90-48b6-8819-70ba036e9e21" + }, + { + "event_name": "rum.stripejs", + "created": "1773809797303", + "batching_enabled": variable4, + "event_count": "187", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + "event_id": "c231253a-433e-4ea1-8cff-e0edd8e6ac8b", + "team_identifier": "t_7", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "requestId": variable86, + "tokenType": emailDomainType, + "url": `https://${attributeHref10}/${urlAudience}/payment_pages/${checkoutSessionId}`, + "status": statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + "start": "1773809795686", + "end": "1773809797302", + "resourceTiming[startTime]": "126901.2", + "resourceTiming[duration]": "1614.9", + "resourceTiming[redirectStart]": variable12, + "resourceTiming[redirectEnd]": variable12, + "resourceTiming[fetchStart]": "126901.2", + "resourceTiming[domainLookupStart]": "126901.2", + "resourceTiming[domainLookupEnd]": "126901.2", + "resourceTiming[connectStart]": "126901.2", + "resourceTiming[connectEnd]": "126901.2", + "resourceTiming[secureConnectionStart]": "126901.2", + "resourceTiming[requestStart]": "126902.2", + "resourceTiming[responseStart]": "128515.6", + "resourceTiming[responseEnd]": "128516.1", + "paymentUserAgent": "stripe.js/5e596c82e6; stripe-js-v3/5e596c82e6" + }, + { + "event_name": "elements.update_payment_page.success", + "created": "1773809797304", + "batching_enabled": variable4, + "event_count": "188", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "f60e2d21-0222-4e45-b809-f447393af0bf", + "team_identifier": "t_0", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "object_id": id, + "object_kind": object2, + "object_type": "undefined", + "object_livemode": variable4, + "usingPaymentFormElement": attributeAriaExpanded + }, + { + "event_name": "elements.update_elements_options", + "created": "1773809797309", + "batching_enabled": variable4, + "event_count": "189", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "43dc9b0c-830b-4d91-901c-7cb329263d00", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "auto_logged": variable4 + }, + { + "event_name": "elements.update", + "created": "1773809797307", + "batching_enabled": variable4, + "event_count": "190", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "14eda28e-0097-4c36-994f-ba3b4a903ef3", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0433({ + variable12, + statsigpayloadDynamicConfigs2179180337ValueMaxAttempts, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + locale, + currency, + mode, + connectorsSupportedAuthOidcScopesSupported1, + sessionId, + configId1 + }) { + console.log("Executing request 0433") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs2179180337ValueMaxAttempts}&events=${JSON.stringify( + [ + { + "event_name": "elements.link.default_integration", + "created": "1773809797322", + "batching_enabled": variable4, + "event_count": "191", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "6ab69346-36dc-49e4-ad08-95aee9dd29c7", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.link.payment_element.integration_type", + "created": "1773809797323", + "batching_enabled": variable4, + "event_count": "192", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "8b9713a4-d9d5-4916-bc9e-5cb26f348310", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "request_surface": "web_link_authentication_in_payment_element", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.update", + "created": "1773809797311", + "batching_enabled": variable4, + "event_count": "193", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "781be5bb-7241-45f1-ba8f-b01eec342124", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "options-locale": locale, + "options-disallowedCardBrands": "", + "options-mode": mode, + "options-amount": variable12, + "options-paymentMethodTypes": connectorsSupportedAuthOidcScopesSupported1, + "options-currency": currency + }, + { + "event_name": "elements.pr.update", + "created": "1773809797332", + "batching_enabled": variable4, + "event_count": "194", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "fcf58ce5-0a7c-47e2-8a31-bed29690b0a1", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "usesButtonElement": attributeAriaExpanded, + "requestShipping": attributeAriaExpanded + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0434({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + sessionId, + configId1, + siteKey + }) { + console.log("Executing request 0434") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${currencyConfigPromosBusinessOneDollarAmount}&events=${JSON.stringify( + [ + { + "event_name": "elements.captcha.passive.execute", + "created": "1773809799816", + "batching_enabled": variable4, + "event_count": "195", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "4e35867b-185c-46ac-a4fe-d6f4576f7560", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "elapsed_time": "1502", + "duration": "1499", + "attempt": statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + "site_key": siteKey + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0435({ + attributeType, + urlAudience, + checkoutSessionId, + attributeHref10 + }) { + console.log("Executing request 0435") + const response = await fetch( + `https://${attributeHref10}/${urlAudience}/payment_pages/${checkoutSessionId}`, + { + method: "POST", + headers: { + "host": attributeHref10, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: "tax_region[country]=US&tax_region[line1]=10094+Southeast+Linwood+Avenue&tax_region[city]=Milwaukie&tax_region[state]=OR&elements_session_client[client_betas][0]=custom_checkout_server_updates_1&elements_session_client[client_betas][1]=custom_checkout_manual_approval_1&elements_session_client[elements_init_source]=custom_checkout&elements_session_client[referrer_host]=chatgpt.com&elements_session_client[session_id]=elements_session_1aCZ5XSL21u&elements_session_client[stripe_js_id]=e9ea369f-4f2d-4a53-b21a-1abbc01b2820&elements_session_client[locale]=zh&elements_session_client[is_aggregation_expected]=false&client_attribution_metadata[merchant_integration_additional_elements][0]=payment&client_attribution_metadata[merchant_integration_additional_elements][1]=address&key=pk_live_51HOrSwC6h1nxGoI3lTAgRjYVrz4dU3fVOabyCcKR3pbEJguCVAlqCxdxCUvoRh1XWwRacViovU3kLKvpkjh7IqkW00iXQsjo3n&_stripe_version=2025-03-31.basil%3B+checkout_server_update_beta%3Dv1%3B+checkout_manual_approval_preview%3Dv1" + } + ) + const body = await response.text() + return { + variable88: response.headers.get("original-request") + } + } + async function executeRequest0436({ + variable12, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + locale, + currency, + mode, + connectorsSupportedAuthOidcScopesSupported1, + sessionId, + configId1 + }) { + console.log("Executing request 0436") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&events=${JSON.stringify( + [ + { + "event_name": "elements.update", + "created": "1773809803454", + "batching_enabled": variable4, + "event_count": "201", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "0f1763b8-6e59-47ce-9849-b35924d769e1", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.link.default_integration", + "created": "1773809803479", + "batching_enabled": variable4, + "event_count": "202", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "56d827bb-de6e-499d-b886-c976d8533793", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.link.payment_element.integration_type", + "created": "1773809803479", + "batching_enabled": variable4, + "event_count": "203", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "85492a9e-5817-43d5-9139-26fd6003c90a", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "request_surface": "web_link_authentication_in_payment_element", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.update", + "created": "1773809803469", + "batching_enabled": variable4, + "event_count": "204", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "2f8bc327-cd14-4cc1-8474-b3e5f24235b5", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "options-locale": locale, + "options-disallowedCardBrands": "", + "options-mode": mode, + "options-amount": variable12, + "options-paymentMethodTypes": connectorsSupportedAuthOidcScopesSupported1, + "options-currency": currency + }, + { + "event_name": "elements.pr.update", + "created": "1773809803487", + "batching_enabled": variable4, + "event_count": "205", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "0c84360e-1383-4fb0-8a62-26899e32f799", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "usesButtonElement": attributeAriaExpanded, + "requestShipping": attributeAriaExpanded + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0437({ + variable12, + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + urlAudience, + checkoutSessionId, + attributeHref10, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + id, + accountSettingsAccountId, + currency, + emailDomainType, + object2, + statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + sessionId, + configId1, + variable88 + }) { + console.log("Executing request 0437") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&events=${JSON.stringify( + [ + { + "event_name": "elements.event.blur", + "created": "1773809802082", + "batching_enabled": variable4, + "event_count": "196", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "e58833a2-1bfa-4849-b043-2d3356088c0a", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + "element_mode": "billing", + "element_id": "address-d9ee1043-0a90-48b6-8819-70ba036e9e21" + }, + { + "event_name": "elements.update_payment_page", + "created": "1773809802260", + "batching_enabled": variable4, + "event_count": "197", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "6e2e89de-7831-452f-8af6-711f097b3646", + "team_identifier": "t_0", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "auto_logged": variable4 + }, + { + "event_name": "rum.stripejs", + "created": "1773809803448", + "batching_enabled": variable4, + "event_count": "198", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + "event_id": "68f742b1-3921-4fac-aef0-35bc98c857b2", + "team_identifier": "t_7", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "requestId": variable88, + "tokenType": emailDomainType, + "url": `https://${attributeHref10}/${urlAudience}/payment_pages/${checkoutSessionId}`, + "status": statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + "start": "1773809802261", + "end": "1773809803448", + "resourceTiming[startTime]": "133475.2", + "resourceTiming[duration]": "1186.4", + "resourceTiming[redirectStart]": variable12, + "resourceTiming[redirectEnd]": variable12, + "resourceTiming[fetchStart]": "133475.2", + "resourceTiming[domainLookupStart]": "133475.2", + "resourceTiming[domainLookupEnd]": "133475.2", + "resourceTiming[connectStart]": "133475.2", + "resourceTiming[connectEnd]": "133475.2", + "resourceTiming[secureConnectionStart]": "133475.2", + "resourceTiming[requestStart]": "133475.8", + "resourceTiming[responseStart]": "134659.9", + "resourceTiming[responseEnd]": "134661.6", + "paymentUserAgent": "stripe.js/5e596c82e6; stripe-js-v3/5e596c82e6" + }, + { + "event_name": "elements.update_payment_page.success", + "created": "1773809803451", + "batching_enabled": variable4, + "event_count": "199", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "1bf47149-ff44-4bf8-9aac-6690c646d8c6", + "team_identifier": "t_0", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "object_id": id, + "object_kind": object2, + "object_type": "undefined", + "object_livemode": variable4, + "usingPaymentFormElement": attributeAriaExpanded + }, + { + "event_name": "elements.update_elements_options", + "created": "1773809803456", + "batching_enabled": variable4, + "event_count": statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "0b60d1bc-e4f7-4eb2-98fc-ddae05a9a175", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "auto_logged": variable4 + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0438({ + variable12, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + urlAudience, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + id, + accountSettingsAccountId, + uiMode, + locale, + currency, + mode, + connectorsSupportedAuthOidcScopesSupported1, + statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + sessionId, + configId1 + }) { + console.log("Executing request 0438") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&events=${JSON.stringify( + [ + { + "event_name": "elements.event.focus", + "created": "1773809803691", + "batching_enabled": variable4, + "event_count": "206", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "5bb2781d-88ad-4a93-9f39-2a5bb091c7a1", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + "element_mode": "billing", + "element_id": "address-d9ee1043-0a90-48b6-8819-70ba036e9e21" + }, + { + "event_name": "elements.update_elements_options", + "created": "1773809804592", + "batching_enabled": variable4, + "event_count": "207", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "8ee50c00-60d8-4946-86c3-0dc64f376d78", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "auto_logged": variable4 + }, + { + "event_name": "elements.update", + "created": "1773809804588", + "batching_enabled": variable4, + "event_count": "208", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "f917a1f4-6433-423b-b344-9dd55ba2665e", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.custom_checkout.updating_tax_from_address_element", + "created": "1773809804588", + "batching_enabled": variable4, + "event_count": "209", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "1ad03d02-536b-49dc-8c4b-93e08ec8e0d3", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "baseVersion": urlAudience, + "betaVersions": "server_updates_1 manual_approval_1", + "sdkVersion": "v1_server_updates_1_manual_approval_1", + "checkoutSessionId": checkoutSessionId, + "paymentPage": id, + "livemode": variable4, + "uiMode": uiMode, + "addressElementMode": "billing" + }, + { + "event_name": "elements.update", + "created": "1773809804593", + "batching_enabled": variable4, + "event_count": "210", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "ee764246-3d4a-4852-8605-5d44c6cfadc4", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "options-locale": locale, + "options-disallowedCardBrands": "", + "options-mode": mode, + "options-amount": variable12, + "options-paymentMethodTypes": connectorsSupportedAuthOidcScopesSupported1, + "options-currency": currency + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0439({ + statsigpayloadDynamicConfigs2179180337ValueMaxAttempts, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + currency, + sessionId, + configId1 + }) { + console.log("Executing request 0439") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs2179180337ValueMaxAttempts}&events=${JSON.stringify( + [ + { + "event_name": "elements.link.default_integration", + "created": "1773809804605", + "batching_enabled": variable4, + "event_count": "211", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "c59835ec-fcbe-4c34-9e69-d4e6577b0e0e", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.link.payment_element.integration_type", + "created": "1773809804605", + "batching_enabled": variable4, + "event_count": "212", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "b35e970c-935b-4e6e-b949-65ba4061bb20", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "request_surface": "web_link_authentication_in_payment_element", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.pr.update", + "created": "1773809804611", + "batching_enabled": variable4, + "event_count": "213", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "b3d03af5-8ca0-4f06-9959-0a3cbdcfb3a0", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "usesButtonElement": attributeAriaExpanded, + "requestShipping": attributeAriaExpanded + }, + { + "event_name": "elements.update_payment_page", + "created": "1773809805092", + "batching_enabled": variable4, + "event_count": "214", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "33a8fbf3-066c-4de8-bd91-d8e4594b45e3", + "team_identifier": "t_0", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "auto_logged": variable4 + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0440({ + attributeType, + urlAudience, + checkoutSessionId, + attributeHref10 + }) { + console.log("Executing request 0440") + const response = await fetch( + `https://${attributeHref10}/${urlAudience}/payment_pages/${checkoutSessionId}`, + { + method: "POST", + headers: { + "host": attributeHref10, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: "tax_region[country]=US&tax_region[line1]=10094+Southeast+Linwood+Avenue&tax_region[city]=Milwaukie&tax_region[postal_code]=97222&tax_region[state]=OR&elements_session_client[client_betas][0]=custom_checkout_server_updates_1&elements_session_client[client_betas][1]=custom_checkout_manual_approval_1&elements_session_client[elements_init_source]=custom_checkout&elements_session_client[referrer_host]=chatgpt.com&elements_session_client[session_id]=elements_session_1aCZ5XSL21u&elements_session_client[stripe_js_id]=e9ea369f-4f2d-4a53-b21a-1abbc01b2820&elements_session_client[locale]=zh&elements_session_client[is_aggregation_expected]=false&client_attribution_metadata[merchant_integration_additional_elements][0]=payment&client_attribution_metadata[merchant_integration_additional_elements][1]=address&key=pk_live_51HOrSwC6h1nxGoI3lTAgRjYVrz4dU3fVOabyCcKR3pbEJguCVAlqCxdxCUvoRh1XWwRacViovU3kLKvpkjh7IqkW00iXQsjo3n&_stripe_version=2025-03-31.basil%3B+checkout_server_update_beta%3Dv1%3B+checkout_manual_approval_preview%3Dv1" + } + ) + const body = await response.text() + return { + variable90: response.headers.get("original-request") + } + } + async function executeRequest0441({ + variable12, + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + urlAudience, + checkoutSessionId, + attributeHref10, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + id, + accountSettingsAccountId, + locale, + currency, + emailDomainType, + object2, + mode, + connectorsSupportedAuthOidcScopesSupported1, + sessionId, + configId1, + variable90 + }) { + console.log("Executing request 0441") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&events=${JSON.stringify( + [ + { + "event_name": "rum.stripejs", + "created": "1773809807090", + "batching_enabled": variable4, + "event_count": "215", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + "event_id": "221e06a8-5fd0-4717-b911-8f13ba7119af", + "team_identifier": "t_7", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "requestId": variable90, + "tokenType": emailDomainType, + "url": `https://${attributeHref10}/${urlAudience}/payment_pages/${checkoutSessionId}`, + "status": statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + "start": "1773809805094", + "end": "1773809807089", + "resourceTiming[startTime]": "136308.7", + "resourceTiming[duration]": "1993", + "resourceTiming[redirectStart]": variable12, + "resourceTiming[redirectEnd]": variable12, + "resourceTiming[fetchStart]": "136308.7", + "resourceTiming[domainLookupStart]": "136308.7", + "resourceTiming[domainLookupEnd]": "136308.7", + "resourceTiming[connectStart]": "136308.7", + "resourceTiming[connectEnd]": "136308.7", + "resourceTiming[secureConnectionStart]": "136308.7", + "resourceTiming[requestStart]": "136309.4", + "resourceTiming[responseStart]": "138300.7", + "resourceTiming[responseEnd]": "138301.7", + "paymentUserAgent": "stripe.js/5e596c82e6; stripe-js-v3/5e596c82e6" + }, + { + "event_name": "elements.update_payment_page.success", + "created": "1773809807091", + "batching_enabled": variable4, + "event_count": "216", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "ad1a4a2b-afea-481e-9fb9-1f56582f015f", + "team_identifier": "t_0", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "object_id": id, + "object_kind": object2, + "object_type": "undefined", + "object_livemode": variable4, + "usingPaymentFormElement": attributeAriaExpanded + }, + { + "event_name": "elements.update_elements_options", + "created": "1773809807094", + "batching_enabled": variable4, + "event_count": "217", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "9c11bf90-c6e2-453a-b1a3-461179aec736", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "auto_logged": variable4 + }, + { + "event_name": "elements.update", + "created": "1773809807093", + "batching_enabled": variable4, + "event_count": "218", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "b8cc4ca7-0cc3-4e9f-8127-882a2be91ed5", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.update", + "created": "1773809807096", + "batching_enabled": variable4, + "event_count": "219", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "5b6d5f49-ac9e-4b30-b0c2-3e674a2e6ecb", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "options-locale": locale, + "options-disallowedCardBrands": "", + "options-mode": mode, + "options-amount": variable12, + "options-paymentMethodTypes": connectorsSupportedAuthOidcScopesSupported1, + "options-currency": currency + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0442({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + urlAudience, + statsigpayloadLayerConfigs4112645001ValueOutline, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + id, + accountSettingsAccountId, + uiMode, + currency, + statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + sessionId, + configId1 + }) { + console.log("Executing request 0442") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&events=${JSON.stringify( + [ + { + "event_name": "elements.link.default_integration", + "created": "1773809807107", + "batching_enabled": variable4, + "event_count": "220", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "58ffa838-ea1a-49e3-aaae-7003e00cc9b8", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.link.payment_element.integration_type", + "created": "1773809807107", + "batching_enabled": variable4, + "event_count": "221", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "b313f32f-7002-419e-9ed1-5ea1064117db", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "request_surface": "web_link_authentication_in_payment_element", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.pr.update", + "created": "1773809807112", + "batching_enabled": variable4, + "event_count": "222", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "92ea674e-f007-4643-9cf1-8f340f8f1834", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "1185", + "usesButtonElement": attributeAriaExpanded, + "requestShipping": attributeAriaExpanded + }, + { + "event_name": "elements.event.blur", + "created": "1773809808418", + "batching_enabled": variable4, + "event_count": "223", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "995ba791-d492-469b-982e-c09f52dcd95c", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + "element_mode": "billing", + "element_id": "address-d9ee1043-0a90-48b6-8819-70ba036e9e21" + }, + { + "event_name": "elements.custom_checkout.confirm", + "created": "1773809808486", + "batching_enabled": variable4, + "event_count": "224", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "d46710cd-8d00-44a0-a68d-5b67d13e69cc", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "frame_width": "1185", + "baseVersion": urlAudience, + "betaVersions": "server_updates_1 manual_approval_1", + "sdkVersion": "v1_server_updates_1_manual_approval_1", + "checkoutSessionId": checkoutSessionId, + "paymentPage": id, + "livemode": variable4, + "uiMode": uiMode, + "metricsVersion": urlAudience, + "m_elements_appearance_theme": statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + "m_elements_appearance_variable": statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + "m_elements_appearance_rule": statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + "m_sdk_session_on": currencyConfigPromosBusinessOneDollarAmount, + "m_sdk_getter_session": currencyConfigPromosBusinessOneDollarAmount, + "m_sdk_getter_session_total_total_minorUnitsAmount": "63", + "m_sdk_getter_session_currency": "62", + "m_elements_payment_create": currencyConfigPromosBusinessOneDollarAmount, + "m_elements_billing_address_create": currencyConfigPromosBusinessOneDollarAmount, + "m_sdk_changeAppearance": currencyConfigPromosBusinessOneDollarAmount, + "m_sdk_confirm": currencyConfigPromosBusinessOneDollarAmount, + "confirmArgs_redirect": variable4 + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0443({ + attributeType, + urlAudience, + attributeHref10 + }) { + console.log("Executing request 0443") + const response = await fetch( + `https://${attributeHref10}/${urlAudience}/payment_methods`, + { + method: "POST", + headers: { + "host": attributeHref10, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: "billing_details[name]=Cody+Stanley&billing_details[email]=jnathej%40inctart.com&billing_details[address][country]=US&billing_details[address][line1]=10094+Southeast+Linwood+Avenue&billing_details[address][city]=Milwaukie&billing_details[address][postal_code]=97222&billing_details[address][state]=OR&type=card&card[number]=5349+3363+1672+8432&card[cvc]=824&card[exp_year]=32&card[exp_month]=03&allow_redisplay=unspecified&pasted_fields=number%2Cexp%2Ccvc&payment_user_agent=stripe.js%2F5e596c82e6%3B+stripe-js-v3%2F5e596c82e6%3B+payment-element%3B+deferred-intent&referrer=https%3A%2F%2Fchatgpt.com&time_on_page=139827&client_attribution_metadata[client_session_id]=e9ea369f-4f2d-4a53-b21a-1abbc01b2820&client_attribution_metadata[checkout_session_id]=cs_live_a1XaCvZCoIEesvGS7aFlnPORQaFoV8h19Ihj8OnyIZUodOtCkd3hWY4gVM&client_attribution_metadata[merchant_integration_source]=elements&client_attribution_metadata[merchant_integration_subtype]=payment-element&client_attribution_metadata[merchant_integration_version]=2021&client_attribution_metadata[payment_intent_creation_flow]=deferred&client_attribution_metadata[payment_method_selection_flow]=automatic&client_attribution_metadata[elements_session_id]=elements_session_1aCZ5XSL21u&client_attribution_metadata[elements_session_config_id]=218cacaf-e900-42b8-837b-19d6d36a7675&client_attribution_metadata[checkout_config_id]=47ebcc6d-afe5-47e0-b041-4bdfbc989309&client_attribution_metadata[merchant_integration_additional_elements][0]=payment&client_attribution_metadata[merchant_integration_additional_elements][1]=address&guid=56adcb50-814a-48bb-bd7c-2d2fa33f7a824575be&muid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462&sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b&key=pk_live_51HOrSwC6h1nxGoI3lTAgRjYVrz4dU3fVOabyCcKR3pbEJguCVAlqCxdxCUvoRh1XWwRacViovU3kLKvpkjh7IqkW00iXQsjo3n&_stripe_version=2025-03-31.basil%3B+checkout_server_update_beta%3Dv1%3B+checkout_manual_approval_preview%3Dv1&radar_options[hcaptcha_token]=P1_eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJwZCI6MCwiZXhwIjoxNzczODA5ODE5LCJjZGF0YSI6ImREaEp3UlFZNXFJWGpUYU9EbzA3Vm5qMFVRY1hpaGFiRnBBeDVqc2FycTAwaHBzUU9KTkVsRFR1UHdVbExJVjFvcHhlQ1dXZVM1NFpYN3lzSkR2S005Tk1HV21XYXQ3UjVNbm00SWcrREhtbGJuV1lVU3paeEJFcFB6a0VVa1dvNFpaenhwcjJ3YVljVW1ZaGxTUXdHMHJQWGtmcDlPNzFRREU2NXhERTJYSUJOM1J3dThlWmVkYjFhZ0MzZjRmK1M2MGNGYjI0KzRtejFGTEFoVDdHUEZpYUNtYUhlek9yMVFQeG94QlRuREoyVHhJZ1M2NHJTSHRmYVR2VEw0TUYrZEtFZlJLbUdYOEFYTURRZ0MyTTA0WXVtTkRLODMvejdUVGZvMFBIZnZyc2pLaXpidFZiY0c3L3BONW1tTGdPVnprdDc0aFJzcHNFZ3dKaXBzYndmcm52MlBNRWJTdmx5Z0VkVldjOGNIMD1LbjFUZnQ1UUgxWmRiMjNhIiwicGFzc2tleSI6IlFMamkyaFBhZzZMdnA1alFveHRHZ051YWVoS25rSWZLeVNXS1hGS2lSK3E1ZWtwdGl2eGRSKzBFR3JMRnNDaldKcDZBVy9wQmwvVkQ5Y1A5V3B0UjJvSFQrZlpDaGxGczhwZU1hUWdpTTJHSVFLMnlrajFkN1lFby8vMElxT2VCU1RJa0REdUoyZjZzbi8xRlp0MjQreEZWZWx0TG1JRFZncUo5c01keVRES2FmM2RnaEk4YWRucU1qM3NKVnlrQkxuOWlEMUFBM2dUWS9SV2NKNTdpMlpwandZZGs4Rm93Q0xZcGJDRnh6WU8zVVUrVFNKQ2lqQ2JlZnRZdEx4K3NaQmEwU2VDdk1DOWFzc3dEV0J1RjdCU2hoeWNpOVU4VUxJc1pKRGVaRTRwWWpNeERDM1N1YWxucFlSM3lNRmJCUG5QQ2RyZjUzWWlwSllTbCtWWjRLU0tsR1k5MjVhNnRKdnA5L3JCVWQ4TnR6M2VhdEdoSldoSWcydzBBQXNpSG9wVnplS3k3RzhtQmUxay9nNE8vSk1CaTNVWnRFeDhlcm5Lclg4ZE1QNXFXQjhUMUV2ZVZGNUxYcU5HSm83MlppUUhqWEgzUFFRdE5JQjNVaVJMc2lKOHljQ0drVWw2emZVbXJGRFVoRnM3dVY5S0U5cHh0TEFDRS9LU1c2UDJBYzhqOUtlU1VWRk9MTENKdDYwZHpPcEdZOTU5ZUpGejZSa0V5Q1ZRZmZHdTRkT1Rsc3VVcUc1NU9NaWxHS09LNktzWkV5d0JGTlhqSlRRZDI4ZlJEbE5Dc2ZqVWo2RVlHNUxaV2swNFBybjRta0ZYZlVnQmpkY2t4Znc5VEkxam1COWpQM29GL2ZXeFVHbXowRW1wZGZvS2djcE1PeE96SkFYelJEYzk3SE9Jc0k2MUNLeXRSc2ZtbWsrRytVZThuZ1ExMnNwK3dFZzBsNGVEajBzQWtFWml5NDBoc3gyZ1E1WGtHVlNWNEhmSG9PMjR1UGo1TnRLbC9xK1dCcnBsaWRqc2NQMmpGMkQzeTVDK1czL3VXcjBzdURWY3BhaDZKZVUrR2xhYUo0czJVeml1NnNFTlBjKzNndUpkUWJxRWdBYWUrQnNYR3ZkMDVQQWhHT3doWHBCTGlnWEJTY3lsWUQ4OG4zbXFEZ25NbHhZa2V0b0ZJVE5pNjVjYm5ZRllaWnpJSFk0YTZxSUhKaE51T3EvVUZXcElONEVwTGVqQmhrRERvMXZRMEpzS0taR0prU0M5MHBiMzVoelhIMytuNGFNNS9lOEZacHBvZXVUZVdoNGdJMGdWTmZONlgyUEhwTm91V1NkOEw3Mlc5VlAzQTVSRWlhN3djNWJzS2NKbGlrTmYyOVlYMklYazZKRHl3VFRod0FXZzRyZy96L0RaRC9RNHJtRldzaHZ6SC9OUXM0RXc4Y0dNQSt4SW0yUVh1NUdhQlpXZ2NQT1lxMVRiOXUySWd4N0N6NzVFaU5PR3J1QThhUEwrTWttQTExdm9EWldHZUM1R2tZNm5rSmVjRGtleWdxU2RBdkw5N29OczRxU2V0NEx3RFB0ZWRJUzBmSkVHRHNFNUdIbXJtRG1pWkR3dHNvQ0M4eXhpUFRxdEw3NzFxNjdGMkVxS29VSGZqZC9mV0pqNGt1Z0VtSHhZWEdzUjFUZ0ovQ09WbmppemF2SjlJdzZJWVpwOU02dHVhWkNXS0RWZndpaE5mU0FTOE9ZOTJkdVU2WFRmRDRZdVN3b2NESFEweEhpV0Nha1BSZ1psR1p0QjBqUCtHaXpob05ZREVpcXA0cGdtU1R6Z29pNEdGUUFzbThHbHk4OGFHNUhnRHcvL1VEaTlYRHA3N3ZKYnRhNk11dEV0WWtFWDNFOXJmckdUeFFKWmIyUGE0K1B6b2wvQTlvL2hjZU1VQXE0T0NrNjNEcGIwTkFjUVdYUGd5TEZ4aEpjMXBPU1hkT3JCaXJSUmNzQnV4dSs5YkExN2p4Y0wxRDVzcm9SOC9uQkJBeW5lRFY3U1J3RU50cHpTRlROZmcza0k1b3FGQnhsdEUrYmVhWktselB0bXFLU1k5YnlCQzhJT000eERKdWhQZzE1Q1VHWmc5UENQRm54K1ViK04zTHFmcnNCY25XUkZiYmlwcmxzWXYzMWw2Z3gxeDRyMkJ2c0o4YkYveUt5YmVEUHhKWTVXQXViZTRWUi9NbElaSjEyZGE1NHozcEpub2RJRTVpVnZtNUZGVElON1paQWR1NXJ6bVRMcXVvQ3N4Sk9zb0ttYkZ5eWtkNmo5a2U5aCsxRG96RVZ0YUMyZk8vaEhXWkpDT0pkWEVBc2hHM3FmczJTeDJYUm9IWStvTFpJb1RsRnVraHN2ZUFLNDJOOVZtNFl5L3Zkd3JzaFdWZ3Zyc21HT2s0ZnZaa05jV3FuTDA3K1pmTGlnSzBRYTNNYVRsNlpDZDZYOFNNbEYrMHFBeDhlVjlYMlNSMEg5SEdSOTNoUmhvS1Y4RVFWdjFCeGR3RFVUNWxsd1Yya1dsK09KUi9zRzh1SzVpOEYrbWk1QldSU25QbGxNUld3anIrTDU5a29HU0NRU2owbUljWmt4Tm1EZ2tFOWkzTVd2dG1kdVZIZ0RjdU5sYWZ2UjE5MXoxdmFGL2ZLdEsxNkRGT2UrUUhGYmlLdmFpT0k4YUNxaVB2NStLckZZcEhBOGlQQzI4Q1c5NFBNVHBKZXBXUnYyRUNZNWtuR25HLzVhdnVvS1RlTTFiR1ljV24zdVE4Q0FkdmVZQzV0aVFqTk81aUVsYjZGNjV4TXdCLzJ2aUhLM2RIb3RXMEJ0Qy9nPT0iLCJrciI6IjQ3ZThiYWI2Iiwic2hhcmRfaWQiOjIyMTk5NjA3M30.pEoQ8ZFiEsicWX0PXcdQHa15yYwqoJsumFAdIQ2kajw" + } + ) + const body = await response.text() + return { + id2: JSON.parse(body)["id"], + variable95: response.headers.get("original-request"), + object4: JSON.parse(body)["object"] + } + } + async function executeRequest0444({ + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + statsigpayloadLayerConfigs4112645001ValueOutline, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + currency, + sessionId, + configId1, + siteKey + }) { + console.log("Executing request 0444") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&events=${JSON.stringify( + [ + { + "event_name": "elements.update_elements_options", + "created": "1773809808500", + "batching_enabled": variable4, + "event_count": "225", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "ebb8b8d2-2f2d-4acf-b469-b0ad4a75f18d", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "frame_width": "1185", + "auto_logged": variable4 + }, + { + "event_name": "elements.update", + "created": "1773809808487", + "batching_enabled": variable4, + "event_count": "226", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "9f34eb90-ca84-403b-a8b3-d2ef73c2cbd0", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "frame_width": "1185", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.captcha.passive.success", + "created": "1773809808488", + "batching_enabled": variable4, + "event_count": "227", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "402eb674-6dc6-4130-a065-5c5e4b8a10c8", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "frame_width": "1185", + "duration": statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + "site_key": siteKey, + "callsite": "confirm" + }, + { + "event_name": "elements.link.default_integration", + "created": "1773809808515", + "batching_enabled": variable4, + "event_count": "228", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "3a8c90d7-d997-4ec3-882e-2d8f1a2dbe5c", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "frame_width": "494", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.link.payment_element.integration_type", + "created": "1773809808516", + "batching_enabled": variable4, + "event_count": "229", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "4d7ddfd8-d5fe-4dc5-a96d-5a2783e2b1d2", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "frame_width": "494", + "request_surface": "web_link_authentication_in_payment_element", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0445({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + variable92, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + statsigpayloadLayerConfigs4112645001ValueOutline, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + sessionId, + configId1 + }) { + console.log("Executing request 0445") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&events=${JSON.stringify( + [ + { + "event_name": "elements.pr.update", + "created": "1773809808550", + "batching_enabled": variable4, + "event_count": "235", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "88f0c221-fd43-4321-affe-71223d6f3aea", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "frame_width": "1185", + "usesButtonElement": attributeAriaExpanded, + "requestShipping": attributeAriaExpanded + }, + { + "event_name": "elements.validate_elements", + "created": "1773809808555", + "batching_enabled": variable4, + "event_count": "236", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "2d843c97-668b-49a9-a2bd-9049108f04c0", + "team_identifier": "t_0", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "frame_width": "1185", + "auto_logged": variable4 + }, + { + "event_name": "elements.show_wallet_if_necessary", + "created": "1773809808569", + "batching_enabled": variable4, + "event_count": "237", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "6d17c6d7-6829-4d11-96fd-6068f7108933", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "frame_width": "1185", + "auto_logged": variable4 + }, + { + "event_name": "elements.get_ece_payment_sheet_state", + "created": "1773809808571", + "batching_enabled": variable4, + "event_count": "238", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "a216d057-c3a1-44b3-aca4-0ae7ecfd0ce0", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "frame_width": "1185", + "auto_logged": variable4 + }, + { + "event_name": "elements.get_element_confirming_payment", + "created": "1773809808573", + "batching_enabled": variable4, + "event_count": variable92, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "7924f006-d459-491e-a821-466368ee0fa5", + "team_identifier": "t_0", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "frame_width": "1185", + "auto_logged": variable4 + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0446({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + attributeContent, + userGroups, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + cfuvidCookie17, + oaiScCookie9 + }) { + console.log("Executing request 0446") + const response = await fetch( + `https://${origins}/ces/statsc/flush`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/ces/statsc/flush", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/statsc/flush", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "content-type": attributeType, + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//chatgpt.com/checkout/openai_llc/cs_live_a1XaCvZCoIEesvGS7aFlnPORQaFoV8h19Ihj8OnyIZUodOtCkd3hWY4gVM", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-gn=; _fbp=fb.1.1773809654765.70493485518132342; _cfuvid=${cfuvidCookie17}; __Secure-next-auth.session-token=eyJhbGciOiJkaXIiLCJlbmMiOiJBMjU2R0NNIn0..CV1dsn7cCCMutGK-.FMKxs-4nT9MVzKKlCP-64qV39c3_8aL-Tgk2zCSAJSFBN8wB_PuS4xVJGi3wQsaIxDzbEgTt8Vf3S9lgbrI9IW4kj9-b6fogWdgWVE-__cVw6JKVnq2PNBgfsTr5fJSyjJ9_6A2sO3vLZRiedDMQ90nyu1wwzMRds87SD5M-7TAA1zxyLSSL0tpkh14F6_6fhALoWeYwOdAZYhZat_mdqhEprpyee-KC4uwF7wNWKOpIWRMZPWA-9WBnS-mTV1uWm-YOunStvtq1GznvS5bP3nL00jGzwqZp2P91rxLFzOGD55SGKxnXKfD4P7-u5qTI5zXKPOPMKBkhE-5CsFplEXXJfuA-hHgeJxr_uAuKgpDQ0Tq7TrP_smN0ozZ7Xm6uZGriV3Aud1yZqvLxZ5B_Kdxs2x8YrFoht-JKRPG7bzbtXKMNfN5x_bs90UzibHNcgLVOm-iAl5EmkQjTQaIi1jKUYc7IVwqO0Hiv8dOynMJCOZmXJaPtmQVg6F44Pze5_db5Bxuuw3PXNuwt_AN1eqE7DlEEkIzEG9ruJipkNM0YPWgxg792AWJBc7d0pC8Z8M5ie1JbZ7FOSYRzERVFBDN3TkYqrtQ6F9EKK814h7716W62LffWZ3JsUd3JFH1Z6UXpJGlSA3Ux8S4pixj6Tbg-AdJq04k_hBYlVEKgDmPhOxlAM_SgRIP8QxUS5TLT_kwLqAvJnIMsQjp-A-oDWh_6zLgKZc0vcmsxvQzFM5IT-xKA1cB9fjdPu_HZDB2qjmj4OKYJkn21E9M-OEckzYARPmE2_jsFVLA8uggCf4C4o3EGnMEoNlUei_zAlh1Ui-SEnIoHdlo5D7T3smPKCvoVxUcyleiR1xKMPml889m1IPWB4kB3yEnlX-aA6_Vb-B4f_TwNRaFUimWxRZi-1rk1A3Z3wMKnP1whvvmsXbLimHcefQj34bDNwWWpVtwGnDw0UQUFrzxgCK2WkPX0yaxhNExXDR9Yt78CDQhhqGhOFgqLFScLVzxS5DU6mwkgeosrUViw4TEUR8QB30y6Pgv3e8SrIDQSuBMBAIpwQzUYp6Cy7CACJP2BMAViLcGghtBUtyHYROInzABWLI6OHVcsU0t9uOfXcf-qKaJei0C-BfU4iw0t7fTNszuxKiNR4m8Xm4RJWKwWfhPdvaOEqbnr40CqQ6i93ENZisXfCjK0hOfA10ml19ebW0YXsEUHAfYrb0WoCvMfH8Bxorn6lc_xwA9stHvcTw4uMISuqLAq1ik4MOXAZ_3ARNmhgzoAk3atqDNe7m5W4MiDDQ_qAXeR2BZlNavEbyQEvf0wbsBOOWn5G4g-mdWjIpHDel9iTaCsMfD4Y2PLHO4598FGGuaL7viK70U4AJ33mNVtuVtBRr_-LLO2wefymIZVvdW4ou3jeauFTywXWEbmZoLjWVh_hV6CtMMuJw6equcEpkA4Lv1PcuUo_ft7o29Z3tpXxWdTGOtbrD_-DINQ9YVaaP7MAcDVnkbu_-d6tS14wTXwNQxYpLJpCjjBo21A7D9iresRGJ5eSb8iyY9ghigeoEyakzL8wcW08L34GcHYREWZPb2XJQUbNOxz4LLNpJ0XzRWbHbIVn7I67o_uDbKzAOFLtoUsqTFnwBWumBNNDdF7UZEHWS168cxeyduZVesyc5fdY9bZrS-6rDThFIoHOaLMKteEnex61SkRwXKj01y256WJqRan4_isaUdgCCSX8_dmg_tZI6W54U2UQ6fcZzL37OTfXps-Q_Shhdl8lZAs4GCwgBZyA69LFJOoR0vx6g1Z-g0euyjm9_6dzPJsGoQu2SvCv9x0KUXIx2fkG2oJIG0IrDO4Aw6sTioFSE2GvqC13qh470dcSYvrSjKJCqB8XM90-8ZZ3TM2ZeYWvTcZi9kG4wVK3TOpuVk_sdswNyd6t0hY9Yyg9Z3bvNCRfVguqyRqbKtFiIlGIdou_3-Sk3YLUutC27N19NyGFi6o7aGYnFhxZMXlMJvzapwIOuG2elfPnLMvVZLyJh9gJBsmmIu1_CfZ_7tV3gEmO3dPkvD96eJlUNvucabgGqz7hNovhbMvJjH7x-AKu-GwycJBcEwJ7btABj9oT9yube0-P8C-AcTmU6XOLOCz8Tk4m4_-B-kJnpaHmw4Qd1zRvkItsPnL87DyDtpuBhemK62YbEH08aC71taj42IH02INSVkPlAoceOYVTaPA1bKHH8lYyPTRU7bNnyt91lc7KJFhQe9Kb5FEuESj9GaiEi91XEEtwTYTyTPlVPEJmRm1VIkzZxaLfY2P9bttWRTByMT3ECjeayW2WHLtjrwCAMOJgrNoQDsXx6srfvkoAOTJ8TkAhMJLKJ6vt_nM9XAtMkWhASmWthDpHoRWHRZMryYNZQZdgwHUjCksy1GvLlMjYG-II7nryDyMUhdKvX-d0erq5xpUzNXb7DXd4OfjWW4nr_6_DpHVzU2LE6Zo2lKWjYGdTvXdaCA9u4dij5cNkNc2H-Ryd29goqwTbLqieU1r44VB_7zpQtJRGUJaoRzIPMb3AbEEqKdxlUk7N80s0vfkCFzS429Vj5DafZJfOsVDx50kywrVATiNe9hp_gsiNSu7wqjwfUe4x_YRg-5_f6d7chU9dRIZvTxO97XWcioH36xJzpGbNYhWnkOkoNLhBjvoyCCkcgd94mUBE_FiWXvc6uFFdL1eWQCQpDQxO-9hXPJ-mo3Ji33G7qrJ7cCLcS17Zvhz1SOkRL2B2Hb2cl5D7LBO5S0OjnzK1PUhuOG4yL_PlWv7-GvbyPzQ0gnu-qWSKGyc5yJgrpKbxVX4Sl9cBh-xI3VVWYzz2LklhgaRYHJl3Gt9W9v5pUuW2e1-dPhZjhioZCnnkOXPwC5JwjY_BOSprt1NMy1ydW61-FAfVdTnNTwPG67lN-wSrYuoRkDQ8diydqmvcRepYL8ZM0dc5v07ZUT3wWfuGGsTioO1mfG9ZFoT0K8nepd7EaJEhyl2gWli2qvXK8p8NAcB9FZgCEqih22E1xtZbOw561qCoXT9St77h40BIWbFW30p5oEeZ-yIO0X7zYhabaVsf0tfE5FWpvQVkFoZulEqE2QNiJr3qVslWJFfrANUUIQx6YSzWHCojnRZfo85G11PxX0E1gsApwQxwNqiv1TUjYyICvZdXMyX08BeMlW2BvPSSZaxutcZ_grwciT-ValyADAH3rC9lXGp88zg28-zUAavGQdO4r03mSPBHnK84FGZ-eAJ6ogy-08ftWJjIUFV5AEYsOelYaRGyZwQJEBoOVIpl2mM6232Sfo9to8BTv4Wx7IslecAboeXw00Bv9d9_vPJIy9w8ZbjhqCduPbWxu0zuQN79iuUJF0YHZYOuj_z4ZxO1jm-gQH-fuD2jZoZNMxlURO7Ot5islt0U1ayqPi7XgbJUSck1OtsJNqfM2tYpw_CXeygByjedYVmvaPbfj0QUKHjLqm1UQBDyuzTynoAT3-5I3PLpgcMJ832n4fX1YyKAoLW5xiIXfE4t4KuyZGmteAwXaJJy9Bl57Rjl1OFT59l1SH975d2aLpavqs1d0Mc6fDMWiyKdF0MRDm5ajHBkas4jOaLSvbc93UzNLfvq-bARZvN_3a4iJCt2uQ_qcw-ca5d5D2kvQ5B5mQt1iglA_OK-kJ88ZCZZ9d9pONV4VkA8L-bg7NbfKu_XS2rJPvToH062omCYsp74t3FbmfkMkCoVWVGGWejW-8lcEoWWiE.BWb0NEloxK6cZq3AsvdqLA; oai-sc=${oaiScCookie9}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809665$j38$l0$h0; __cf_bm=t2NbpHvSPl3V.1z8MZBOi65twAXaiR45c9d4E15eL1c-1773809665.1175745-1.0.1.1-pOYmOJNmihr_hw4XqKr63NhGzDQ.b2GgyRTpp8uFpY8JxO53J1mNiP1N8I5C3QhF8z40gV4usho1WL2GnU_5HoWN4kLYnUMfwIJ0lT_ScE2FLHxJCqPK3UI98ZXjI8.C; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _dd_s=aid` + }, + body: JSON.stringify( + { + "counters": [ + { + "namespace": "segment", + "metric": "analytics_event_tracked", + "tags": { + "platform": "web", + "event_name": "chatgpt_checkout_payment_method_info_completed", + "app_name": attributeContent, + "app_version": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": "segment", + "metric": "analytics_event_tracked", + "tags": { + "platform": "web", + "event_name": "chatgpt_checkout_billing_address_info_completed", + "app_name": attributeContent, + "app_version": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": "segment", + "metric": "analytics_event_tracked", + "tags": { + "platform": "web", + "event_name": "chatgpt_checkout_subscribe_click_attempt", + "app_name": attributeContent, + "app_version": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + } + ], + "histograms": userGroups, + "client_type": "web" + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0447({ + variable12, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + urlAudience, + statsigpayloadLayerConfigs4112645001ValueOutline, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + id, + accountSettingsAccountId, + uiMode, + locale, + currency, + mode, + connectorsSupportedAuthOidcScopesSupported1, + sessionId, + configId1 + }) { + console.log("Executing request 0447") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&events=${JSON.stringify( + [ + { + "event_name": "elements.update", + "created": "1773809808532", + "batching_enabled": variable4, + "event_count": "230", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "11838a91-8be6-4a0e-b734-0396d0524e1b", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "frame_width": "1185", + "options-locale": locale, + "options-disallowedCardBrands": "", + "options-mode": mode, + "options-amount": variable12, + "options-paymentMethodTypes": connectorsSupportedAuthOidcScopesSupported1, + "options-currency": currency + }, + { + "event_name": "elements.unsafe_localize_string", + "created": "1773809808534", + "batching_enabled": variable4, + "event_count": "231", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "3150169a-7133-4f76-a4ea-b2395f31f4bc", + "team_identifier": "t_0", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "frame_width": "1185", + "auto_logged": variable4 + }, + { + "event_name": "elements.pr.update", + "created": "1773809808533", + "batching_enabled": variable4, + "event_count": "232", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "48c2f91d-b134-4bef-9cd8-a37f6aee5cec", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "frame_width": "1185", + "usesButtonElement": attributeAriaExpanded, + "requestShipping": attributeAriaExpanded + }, + { + "event_name": "elements.update", + "created": "1773809808536", + "batching_enabled": variable4, + "event_count": "233", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "4d233406-4a4b-4a54-9379-86e6eb6a2acf", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "frame_width": "1185", + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "element_id": "payment-08716333-f4d0-42ac-b3ef-615b1d13b4ad" + }, + { + "event_name": "elements.custom_checkout.get_payment_method", + "created": "1773809808536", + "batching_enabled": variable4, + "event_count": "234", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "3916957a-9b21-4fbe-8257-79f28d6af2fd", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "frame_width": "1185", + "baseVersion": urlAudience, + "betaVersions": "server_updates_1 manual_approval_1", + "sdkVersion": "v1_server_updates_1_manual_approval_1", + "checkoutSessionId": checkoutSessionId, + "paymentPage": id, + "livemode": variable4, + "uiMode": uiMode, + "paymentMethod": connectorsSupportedAuthOidcScopesSupported1 + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0449({ + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueSidebarPaginationPageSize, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + id2 + }) { + console.log("Executing request 0449") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount}&events=${JSON.stringify( + [ + { + "event_name": "link_funnel.non_link_checkout_confirmation_attempted", + "created": "1773809808591", + "batching_enabled": variable4, + "event_count": statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "9195325c-3d84-4153-a70b-648eb3c0ff79", + "team_identifier": "t_6", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "referrer": secureNextAuthCallbackUrlCookie3, + "public_key": publishableKey, + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "isSafariPrivateMode": attributeAriaExpanded, + "deploy_status_time_to_fetch_ms": "114", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "surface": "payment-element" + }, + { + "event_name": "link_funnel.non_link_checkout_confirmation_succeeded", + "created": "1773809809457", + "batching_enabled": variable4, + "event_count": statsigpayloadDynamicConfigs216497991ValueSidebarPaginationPageSize, + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "151539ee-4415-4e3c-a87f-30c6deb16d15", + "team_identifier": "t_6", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "referrer": secureNextAuthCallbackUrlCookie3, + "public_key": publishableKey, + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "isSafariPrivateMode": attributeAriaExpanded, + "deploy_status_time_to_fetch_ms": "114", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "surface": "payment-element", + "id": id2, + "type": "payment-method" + } + ] + )}` + } + ) + const body = await response.text() + return { + variable102: response.headers.get("x-stripe-server-rpc-duration-micros") + } + } + async function executeRequest0450({ + variable12, + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs2179180337ValueMaxAttempts, + statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + urlAudience, + statsigpayloadLayerConfigs4112645001ValueOutline, + checkoutSessionId, + attributeHref10, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + currency, + connectorsSupportedAuthOidcScopesSupported1, + sessionId, + configId1, + passiveCaptchaSiteKey, + id2, + variable95, + object4 + }) { + console.log("Executing request 0450") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs2179180337ValueMaxAttempts}&events=${JSON.stringify( + [ + { + "event_name": "elements.create_payment_method_with_elements", + "created": "1773809808575", + "batching_enabled": variable4, + "event_count": "240", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "acc1bb51-2f33-43b0-8f95-b511bf98687c", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "frame_width": "1185", + "auto_logged": variable4 + }, + { + "event_name": "elements.captcha.passive.success", + "created": "1773809808590", + "batching_enabled": variable4, + "event_count": "241", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "c78e29ae-a12d-4de6-9773-02d000b87f52", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "frame_width": "1185", + "duration": variable12, + "site_key": passiveCaptchaSiteKey + }, + { + "event_name": "rum.stripejs", + "created": "1773809809456", + "batching_enabled": variable4, + "event_count": "242", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + "event_id": "971fcaf6-1f2b-48dd-a7d1-ec3e8877600b", + "team_identifier": "t_7", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "requestId": variable95, + "tokenType": connectorsSupportedAuthOidcScopesSupported1, + "url": `https://${attributeHref10}/${urlAudience}/payment_methods`, + "status": statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + "start": "1773809808592", + "end": "1773809809456", + "resourceTiming[startTime]": "139805.7", + "resourceTiming[duration]": "863.7", + "resourceTiming[redirectStart]": variable12, + "resourceTiming[redirectEnd]": variable12, + "resourceTiming[fetchStart]": "139805.7", + "resourceTiming[domainLookupStart]": "139805.7", + "resourceTiming[domainLookupEnd]": "139805.7", + "resourceTiming[connectStart]": "139805.7", + "resourceTiming[connectEnd]": "139805.7", + "resourceTiming[secureConnectionStart]": "139805.7", + "resourceTiming[requestStart]": "139806.1", + "resourceTiming[responseStart]": "140667", + "resourceTiming[responseEnd]": "140669.4", + "paymentUserAgent": "stripe.js/5e596c82e6; stripe-js-v3/5e596c82e6" + }, + { + "event_name": "elements.create_payment_method.success", + "created": "1773809809457", + "batching_enabled": variable4, + "event_count": "243", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "6a44973d-ddd3-4398-82b1-af02c9d75ac5", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "frame_width": "1185", + "object_id": id2, + "object_kind": object4, + "object_type": connectorsSupportedAuthOidcScopesSupported1, + "object_livemode": variable4, + "element": statsigpayloadLayerConfigs3680755560ValuePriorityArray, + "usesLink": attributeAriaExpanded, + "hasValidMids": variable4 + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0451({ + attributeType, + urlAudience, + checkoutSessionId, + attributeHref10 + }) { + console.log("Executing request 0451") + const response = await fetch( + `https://${attributeHref10}/${urlAudience}/payment_pages/${checkoutSessionId}/confirm`, + { + method: "POST", + headers: { + "host": attributeHref10, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: "guid=56adcb50-814a-48bb-bd7c-2d2fa33f7a824575be&muid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462&sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b&payment_method=pm_1TCCA1C6h1nxGoI3Njhykhfz&init_checksum=kgY6hti7bnHPvlJKyMrcZyVMvNF5E44s&version=5e596c82e6&expected_amount=0&js_checksum=qto~d%5En0%3DQU%3Eazbu%5D%5D%5DvePYPd%26m_%5D%7Dq%60U%7C_OeWm%3D%3CCmx%3Cuq%25o%3FU%5E%60w&rv_timestamp=qto%3En%3CQ%3DU%26CyY%26%60%3EX%5Er%3CYNr%3CYN%60%3CY_C%3CY_C%3CY%5E%60zY_%60%3CY%5En%7BU%3Eo%26U%26CyXRL%23%5BOYx%5B_orX%3Dn%3C%5BO%5CCdRnDYbYrd%3Dd%3Dd_%3Csd%3DMydOP%23XRMyd%3Dd%26etn%7BU%3Ee%26U%26CyY_%3Cx%5BO%24ydOYyY%26L%24Xu%3B%26dOn%3CY_YuY%3DMvXO%5Dr%5BOX%3CYu%23%3Dd_%60%3BdbL%26XuMyexd%3EeOQyYu%3B%26XxLCeOMxd_n%26Yx%5Dx%5BNo%3FU%5E%60w&passive_captcha_token=P1_eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJwZCI6MCwiZXhwIjoxNzczODk2MDc2LCJjZGF0YSI6IlFBWmF2K3h0ME9FT1pwdlJ5dU9TL3Y2S0I2UXB0dmltRXYxYTJCRmxxZVJVcXNTeDQraTI3dkE1V1lZdmhkdHZudnJxOXY4MEpHVjJOYkIzUFlCVGFWYUZsemdOTWhTRlRpZ0JZR0QzUW8zb0dEeUUwRmg1Lys1SVhwejVlaFpWUWpDdTZ3cWVldDR5Mkl6Q3ExVUlLZmVrOHY1UFNWR3VZRWk4UzFZbUQ4bFlxTEQ1K2swU3dxTzRIaHlvUjBHT2hxWUE3cm5ya3NXeW8rMGxLanlqSHAxc2RsSVg3cG03eUliZ2FlYkxSdjl5SVUvbFVDc2FTMklEOGdqTGN3WjUvOGZZZDZTaVlQV3g1QlNzbmxEM0s5UXhSb1dHdG43M3hUQ0h0S2p2eW56NTgycENnVmtnZW5WdTZQQXJSSG5SN2xnbEVnaTYwUFFLTUhsNzJ1NlBqSEx0UGQ2K2VtRm9iZGVHc2Z1emplY3lQL3VFVzRoWmNVdnhTZGtVUTBCeWtTR0UrZUtRcFZkMjdyNXd4YjJkOVBRYzBXTXdGaFNVb1IvNWNMcXJvblNWN2pGVUNRL1Q5RVRReDE0PUdmMzNSN3BUS3ZxNjB6NU8iLCJwYXNza2V5IjoiOUkybFc5V2ZacnJBMThsakx5MHYxSFBQTjluWTA4K0hkU29TYnJxOTdKVGc3SENFK2JxdkIrd0tzcnNsS0RFbFM0YU5BV1FKaWhCMG50UlozUGl0Rjhaenh3YkxHVWhyMjRiamVUMU96UURzVElmUnIvYkhjYlRNMmxQNmMxeFk0TXA3TUNJeHRzTjQvL3RnRU83eVJydTJjSmE3YUF0eVlBMmk4TExwMGowR0Q2Vi9pVTczeWZPVmkzekpUM2lYRGIxY2xmdDRHQnRpc2c3NzJEdnVOaS94SXc2NVN5NG55UE5zT3c2d1h6WnQ3WmdpTTJBK21uaGRuL2FhRjZCL0FVWGFNRzB1VlI2Sk92ZU4rNzRnNGVwUnJMcXhDcE1zd3h2VDl0amZrOUluQnhTejhNdlVRcEx1UmZKWUd5NFBaNXJEcDdzYWtQZHdOTFdLRnFRcFI0czljc1JXUDFadmZOR3IrRVhnVWg0QW5nWWQvUXpuVDZxTkJjY3BJRktUMGlsaUlDWSs4b0puUTk4dmcxN3pBVUp2aTNVYkdQbVpoN0drZlJFWmt0ZjJTRUZvZDA1Yk5vbzh5Yy9mMDI5RXNqWlQ5d21sdlQycER5TlZnL1JuNllQckxwa0FadGVoaStwaWUrdy94aDc4M3pITjZHb1JXUFhXT0lHT3Z2Y2pIakVyd2RITFAwMEJCTklNdmM5Z1c5OUVhNHFyN1dqZ3BtRG1RbnZLYTl5eEtzMkkvR21WTlpQQ0poVEp2WlVQNVk2THNzSnlISlkySHAwdGRLOWxCdWhnejYxdVNJdURvVmlCbUljZnBlQWV2STJPNlh3U1JNcDcrZ2dGMys5Z1NtYnVSa0ZhQW5PK21LNml3YStNODMrOHVFM2owaE5VSlpBQ2t0NkJRVEoyYW9Jc0dZZ1F4VG9tRzFKdUZFV05OZ1loL205WnlOaW9CRU95cnFVai9qcU5yRVV5TCs1amx1NGhCWnZhV3huN01qbTBhKzB4Rlg3bDk3cEkxS3h1SmdIRmRZT2pXSWRUaWNKNVFhOFV3cU1nT1UycDdNaHdWK1ltdE4yQU05V3hpd1EwSlE2T3p4cXczVzV1djYwRTE4MkJCMXVRUHg0SHBQejJQVzE4S3Q5RWcrN1JmSnNFZmI0WDZ2VDVlbmtzRTcxOTZOcmdIdzgyY3B2aGI1eWVmT0xRUS9VWkUvOFAvTkpDZXVNYTh6eVNIT0tSSEhrOXpXU09IU3l0U0luTUNRV1g0VlBmS2hGaG5DVmhQRSt2MlBYdzNxOUFTU0h2aFFWYjBPMzMyVlBKbVNVSEo4cVR4cEF0Ymk3QnBvcCtNOXdDdENCUGVUd01BK0xkNUdmQmJITzhYZGIxZGFWWnU3VnJkY2RKN3NKNTR3SWh3MWhWbmRQa0ZuK2RXaG5KMXJLZ2xldE84TlJ4LzhicEtPNU92bzNCcW4xVXpYS1F3V0RTeG8yclBHL1JQY2xMd1UwL0hRWEFYTlRocjRvVFBDV096d2ZCc1BrdXNzd1pqQWtpRWZzdjJpT21ac3liS3d1NURrVFF4QmZyQlhGYmRReHBRL0Vjd1habUFjb0c3aFlJKytDcmRLUWxDeGFzN2lRN0ZSTmdydkk5UFE3ZUpvdFdEa1lZY0Y0ZE1JdkZ6dkdjNVJJOEV3Y1JNU2FxRjZqdGV5RjFzTGlMWUhSUzh0czhRZEJIREQ5aWJoclFxRm56R2ZocXE2dERjR3A0NXNHcTkyTk9uSDArTzhqMzVRbkdTU1dmeGw2dDVoTXlsdU90bjhiT3RyQnhrMWZWMm5sWEVkL002cHppL3hoSzlYUXFPd0wzRWVGY1AySlFmbjBHR3BsVldIMnBnYXdWOG9pNXg1UzFEV2hud1MzbFRRck1GS2lKOVdNZ05JNWtwbWJkeGY2MVE0bVlwODg3UWJ2bTVOWGo2eXRPZ2FrTm5BZDZXQ1VUMjJNTzdINm8yMkRRTUVoakNCR25UaWJXNjg3V09PY1EzTTN5Uk5mMU5jZ3lpU1M4WVZWQVZISFM3SGNsaVFNVFlFK2JMNVlRMGlRbTVDanBFMUkyV2RBUWhOb2sxZ0c0OWNJWi9QTFlGNlhHYWZWOGtvc3NYQzJmSTRUNFJKazcxU0VqNXNFZHBHa1JGSHVLRGxtV1J2eGdWNkFFem9maTBPaFFzWjFSaXFYMlpVeDV3UnRmanZBY1Z3NHVBbFFVUHlHN1BEbW1hK3VFM1ZOVFpnY3Jjazhlald2OTdmK2Q5Njh2d2owZjJCL2puNkhnL29tY1l1djc2NGpQKzFVeVdBVWZ0VUlQcVlUZHFkN09BbG9pWVlZRUJKcHZzSnZhZXZOc2JlT1B5RDlpVmhFMnlKTlo3d3RTRnE4bWJGcWp4cWczSDkrcUpMM1hsQXRBMXFsaFZRQlJXV002Z3A1QURuWVRrQVcwR2N0NE02WmZhOE1NZHhwSDBJQ3B4RUJxTlk1MVJ6enVnOU54Sk54WTlTRGxwMWhMSktBMEd2SDFVdHRqSHdpYTV0VDQzWXNSdE1kRFlEeU1LVFVEdzUvR3lYbFdrSWxRVjRkM2RPSUVjRGJXY2gxaUFzYzA5MklzS0JXZzZoTHE3b2xtZjhhY2VZNmNrL1ZqeHlCQWdESEpOUFBCY1hzd3NTT291eTF5MkFiSFhSR0ZNWTZnc2xwanlaYTFxcWNWVU5mdUp2UnQwMy9qOGZHMWFDMjBsd001V0s3YmZnSGl5WlZGeGhlTXNqTUxVRnpKUVp3aHVGY2JIMGdEbThYQjduWlVyaUdjYjRNc2lSa0ZiWnNxWSs4c0dES1BzZWxEaVducXJQR3B4Ynk5c0NpTDJ4U2tmMTRDZnoybHVEckpyL21USXZURlR1Z3M4aHh0cXZ3T3h6WUNIejJIeXI5USIsImtyIjoiMzRhZWRhMjkiLCJzaGFyZF9pZCI6MjIxOTk2MDczfQ.-k4kGGuFq0GEPYMWbulRflTouZinBlTsqio67HsNv9c&passive_captcha_ekey=&expected_payment_method_type=card&return_url=https%3A%2F%2Fcheckout.stripe.com%2Fc%2Fpay%2Fcs_live_a1XaCvZCoIEesvGS7aFlnPORQaFoV8h19Ihj8OnyIZUodOtCkd3hWY4gVM%3Freturned_from_redirect%3Dtrue%26ui_mode%3Dcustom%26return_url%3Dhttps%253A%252F%252Fchatgpt.com%252Fcheckout%252Fverify%253Fstripe_session_id%253Dcs_live_a1XaCvZCoIEesvGS7aFlnPORQaFoV8h19Ihj8OnyIZUodOtCkd3hWY4gVM%2526processor_entity%253Dopenai_llc%2526plan_type%253Dplus%23fidnandhYHdWcXxpYCc%252FJ2FgY2RwaXEnKSdpamZkaWAnPyd%252FbScpJ3ZwZ3Zmd2x1cWxqa1BrbHRwYGtgdnZAa2RnaWBhJz9jZGl2YCknZHVsTmB8Jz8ndW5aaWxzYFowNE1Kd1ZyRjNtNGt9QmpMNmlRRGJXb1xTd38xYVA2Y1NKZGd8RmZOVzZ1Z0BPYnBGU0RpdEZ9YX1GUHNqV200XVJyV2RmU2xqc1A2bklOc3Vub20yTHRuUjU1bF1Udm9qNmsnKSdjd2poVmB3c2B3Jz9xd3BgKSdnZGZuYndqcGthRmppancnPycmY2NjY2NjJyknaWR8anBxUXx1YCc%252FJ3Zsa2JpYFpscWBoJyknYGtkZ2lgVWlkZmBtamlhYHd2Jz9xd3BgeCUl&elements_session_client[client_betas][0]=custom_checkout_server_updates_1&elements_session_client[client_betas][1]=custom_checkout_manual_approval_1&elements_session_client[elements_init_source]=custom_checkout&elements_session_client[referrer_host]=chatgpt.com&elements_session_client[session_id]=elements_session_1aCZ5XSL21u&elements_session_client[stripe_js_id]=e9ea369f-4f2d-4a53-b21a-1abbc01b2820&elements_session_client[locale]=zh&elements_session_client[is_aggregation_expected]=false&client_attribution_metadata[client_session_id]=e9ea369f-4f2d-4a53-b21a-1abbc01b2820&client_attribution_metadata[checkout_session_id]=cs_live_a1XaCvZCoIEesvGS7aFlnPORQaFoV8h19Ihj8OnyIZUodOtCkd3hWY4gVM&client_attribution_metadata[merchant_integration_source]=checkout&client_attribution_metadata[merchant_integration_version]=custom&client_attribution_metadata[merchant_integration_subtype]=payment-element&client_attribution_metadata[merchant_integration_additional_elements][0]=payment&client_attribution_metadata[merchant_integration_additional_elements][1]=address&client_attribution_metadata[payment_intent_creation_flow]=deferred&client_attribution_metadata[payment_method_selection_flow]=automatic&client_attribution_metadata[elements_session_id]=elements_session_1aCZ5XSL21u&client_attribution_metadata[elements_session_config_id]=218cacaf-e900-42b8-837b-19d6d36a7675&client_attribution_metadata[checkout_config_id]=61c2cc8f-1236-4d13-aaad-c93cad0bd5dc&key=pk_live_51HOrSwC6h1nxGoI3lTAgRjYVrz4dU3fVOabyCcKR3pbEJguCVAlqCxdxCUvoRh1XWwRacViovU3kLKvpkjh7IqkW00iXQsjo3n&_stripe_version=2025-03-31.basil%3B+checkout_server_update_beta%3Dv1%3B+checkout_manual_approval_preview%3Dv1" + } + ) + const body = await response.text() + return { + variable100: response.headers.get("original-request"), + setupIntentNextActionUseStripeSdkStripeJsSiteKey: JSON.parse(body)["setup_intent"]["next_action"]["use_stripe_sdk"]["stripe_js"]["site_key"], + setupIntentNextActionUseStripeSdkStripeJsVerificationUrl: JSON.parse(body)["setup_intent"]["next_action"]["use_stripe_sdk"]["stripe_js"]["verification_url"], + setupIntentClientSecret: JSON.parse(body)["setup_intent"]["client_secret"], + setupIntentId: JSON.parse(body)["setup_intent"]["id"], + setupIntentObject: JSON.parse(body)["setup_intent"]["object"] + } + } + async function executeRequest0452({ + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + urlAudience, + statsigpayloadLayerConfigs4112645001ValueOutline, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + id, + accountSettingsAccountId, + uiMode, + currency, + connectorsSupportedAuthOidcScopesSupported1, + sessionId, + configId1, + id2 + }) { + console.log("Executing request 0452") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount}&events=${JSON.stringify( + [ + { + "event_name": "elements.create_payment_method.result", + "created": "1773809809458", + "batching_enabled": variable4, + "event_count": "244", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "87972ee2-ef24-4941-82d4-d712c0e0b240", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "frame_width": "1185", + "result": "element_payment_method_params", + "payment_method_type": connectorsSupportedAuthOidcScopesSupported1, + "payment_method": id2 + }, + { + "event_name": "elements.custom_checkout.read_stripe_hosted_url", + "created": "1773809809459", + "batching_enabled": variable4, + "event_count": "245", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "c02b47b6-7fe6-47aa-a556-ad4505b95c0a", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "frame_width": "1185", + "baseVersion": urlAudience, + "betaVersions": "server_updates_1 manual_approval_1", + "sdkVersion": "v1_server_updates_1_manual_approval_1", + "checkoutSessionId": checkoutSessionId, + "paymentPage": id, + "livemode": variable4, + "uiMode": uiMode + }, + { + "event_name": "elements.confirm_payment_page", + "created": "1773809809460", + "batching_enabled": variable4, + "event_count": "246", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "444cf645-62f3-47b5-b3b4-5493e124d3ca", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "frame_width": "1185", + "auto_logged": variable4 + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0453({ + currencyConfigPromosBusinessOneDollarAmount, + variable14, + variable24, + connectorsSupportedAuthTokenUrl, + state, + variable98 + }) { + console.log("Executing request 0453") + const response = await fetch( + `https://js.stripe.com/${connectorsSupportedAuthTokenUrl}/hcaptcha-inner-af09d9e6c61804fc99872d7f2df7927f.html`, + { + method: "GET", + headers: { + "host": "js.stripe.com", + "connection": "keep-alive", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"macOS\"", + "upgrade-insecure-requests": currencyConfigPromosBusinessOneDollarAmount, + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "navigate", + "sec-fetch-user": variable98, + "sec-fetch-dest": variable14, + "sec-fetch-storage-access": state, + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0453({ + variable12, + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + urlAudience, + statsigpayloadLayerConfigs4112645001ValueOutline, + checkoutSessionId, + attributeHref10, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + id, + accountSettingsAccountId, + currency, + emailDomainType, + object2, + sessionId, + configId1, + variable100 + }) { + console.log("Executing request 0453") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount}&events=${JSON.stringify( + [ + { + "event_name": "rum.stripejs", + "created": "1773809811728", + "batching_enabled": variable4, + "event_count": "247", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + "event_id": "4302bf82-8c49-4766-931c-86d1cf1d96f6", + "team_identifier": "t_7", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "requestId": variable100, + "tokenType": emailDomainType, + "url": `https://${attributeHref10}/${urlAudience}/payment_pages/${checkoutSessionId}/confirm`, + "status": statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + "start": "1773809809461", + "end": "1773809811728", + "resourceTiming[startTime]": "140675.4", + "resourceTiming[duration]": "2266.4", + "resourceTiming[redirectStart]": variable12, + "resourceTiming[redirectEnd]": variable12, + "resourceTiming[fetchStart]": "140675.4", + "resourceTiming[domainLookupStart]": "140675.4", + "resourceTiming[domainLookupEnd]": "140675.4", + "resourceTiming[connectStart]": "140675.4", + "resourceTiming[connectEnd]": "140675.4", + "resourceTiming[secureConnectionStart]": "140675.4", + "resourceTiming[requestStart]": "140676", + "resourceTiming[responseStart]": "142941.5", + "resourceTiming[responseEnd]": "142941.8", + "paymentUserAgent": "stripe.js/5e596c82e6; stripe-js-v3/5e596c82e6" + }, + { + "event_name": "elements.confirm_payment_page.success", + "created": "1773809811729", + "batching_enabled": variable4, + "event_count": "248", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "4db64c46-3dcd-486d-b7e8-db4cd908cee6", + "team_identifier": "t_0", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "frame_width": "1185", + "object_id": id, + "object_kind": object2, + "object_type": "undefined", + "object_livemode": variable4, + "usingPaymentFormElement": attributeAriaExpanded + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0454({ + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + urlAudience, + statsigpayloadLayerConfigs4112645001ValueOutline, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + id, + accountSettingsAccountId, + uiMode, + currency, + sessionId, + configId1 + }) { + console.log("Executing request 0454") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount}&events=${JSON.stringify( + [ + { + "event_name": "elements.custom_checkout.general_log_event", + "created": "1773809811730", + "batching_enabled": variable4, + "event_count": "249", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "a61bcb52-f390-4f49-9e1d-4b5755d0da1d", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "frame_width": "1185", + "baseVersion": urlAudience, + "betaVersions": "server_updates_1 manual_approval_1", + "sdkVersion": "v1_server_updates_1_manual_approval_1", + "checkoutSessionId": checkoutSessionId, + "paymentPage": id, + "livemode": variable4, + "uiMode": uiMode, + "resultType": "resolved_success", + "confirmationType": "payment_element", + "eventType": "elements_on_confirm" + }, + { + "event_name": "elements.intent_confirmation_challenge.start", + "created": "1773809811732", + "batching_enabled": variable4, + "event_count": "250", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "e7151774-53d1-46ea-9d3e-0c46cfef1097", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "frame_width": "1185" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0455({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + statsigpayloadDynamicConfigs3317473948ValueModelSlugMaxPollingDurationsO1Pro, + variable102, + attributeType, + attributeAriaExpanded, + variable4, + statsigpayloadLayerConfigs4112645001ValueOutline, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + sessionId, + configId1 + }) { + console.log("Executing request 0455") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${currencyConfigPromosBusinessOneDollarAmount}&events=${JSON.stringify( + [ + { + "event_name": "elements.intent_confirmation_challenge.stripe_js_frame_loaded", + "created": "1773809813938", + "batching_enabled": variable4, + "event_count": "251", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "2379792f-4490-4555-bb5d-cf24655ec5d3", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "frame_width": statsigpayloadDynamicConfigs3317473948ValueModelSlugMaxPollingDurationsO1Pro, + "duration_since_start_ms": "2207" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0456({ + currencyConfigPromosBusinessOneDollarAmount, + origins2, + variable14, + state, + attributeHref8 + }) { + console.log("Executing request 0456") + const response = await fetch( + `https://b.stripecdn.com/stripethirdparty-srv/${attributeHref8}/v32.1/HCaptcha.html?id=20650c21-6942-4abc-a98d-d4bb274a1590&origin=https://js.stripe.com${origins2}`, + { + method: "GET", + headers: { + "host": "b.stripecdn.com", + "connection": "keep-alive", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"macOS\"", + "upgrade-insecure-requests": currencyConfigPromosBusinessOneDollarAmount, + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", + "sec-fetch-site": "cross-site", + "sec-fetch-mode": "navigate", + "sec-fetch-dest": variable14, + "sec-fetch-storage-access": state, + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0457({ + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + statsigpayloadDynamicConfigs3317473948ValueModelSlugMaxPollingDurationsO1Pro, + attributeType, + attributeAriaExpanded, + variable4, + statsigpayloadLayerConfigs4112645001ValueOutline, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + sessionId, + configId1 + }) { + console.log("Executing request 0457") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount}&events=${JSON.stringify( + [ + { + "event_name": "elements.intent_confirmation_challenge.hcaptcha_frame_loading", + "created": "1773809817781", + "batching_enabled": variable4, + "event_count": "252", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "de4589a1-1524-419f-a7df-9fd900fd288c", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "frame_width": statsigpayloadDynamicConfigs3317473948ValueModelSlugMaxPollingDurationsO1Pro, + "element": "hcaptcha" + }, + { + "event_name": "elements.intent_confirmation_challenge.hcaptcha_frame_loaded", + "created": "1773809818836", + "batching_enabled": variable4, + "event_count": "253", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "14d004b1-2610-4800-896e-0aadfe454703", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "frame_width": statsigpayloadDynamicConfigs3317473948ValueModelSlugMaxPollingDurationsO1Pro, + "duration_since_start_ms": "7104", + "element": "hcaptcha" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0458({ + variable12, + currencyConfigPromosBusinessOneDollarAmount, + attributeType, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + state, + setupIntentNextActionUseStripeSdkStripeJsSiteKey + }) { + console.log("Executing request 0458") + const response = await fetch( + `https://api.hcaptcha.com/checksiteconfig?v=6ae4a3c801c9d99b7e0b591e01eb3ddc17b34400&host=b.stripecdn.com&sitekey=${setupIntentNextActionUseStripeSdkStripeJsSiteKey}&sc=${currencyConfigPromosBusinessOneDollarAmount}&swa=${currencyConfigPromosBusinessOneDollarAmount}&spst=${currencyConfigPromosBusinessOneDollarAmount}`, + { + method: "POST", + headers: { + "host": "api.hcaptcha.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": modelsProductFeaturesAttachmentsAcceptedMimeTypes, + "sec-ch-ua-mobile": "?0", + "origin": "https//newassets.hcaptcha.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "sec-fetch-storage-access": state, + "referer": "https//newassets.hcaptcha.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": "__cf_bm=HEJ47TYdjlyPjg36Q23_obXJAwcU8dV3txz39IARFcs-1773809680-1.0.1.1-sPLPxPlDTBv0g835.F024M4K3JwnTE7V7AmDfy01IhUy3oyZ7RVRwECQUfOJCx2jsIVJ_JPInkWy1OMKPrBA8LoblqULi1QzQThoF7xXwBo; hmt_id=158894c6-12ee-4bdd-8ca0-bd7023679a9b" + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0459({ + systemHintsLogoAttributeFill, + urlAudience + }) { + console.log("Executing request 0459") + const response = await fetch( + `https://content-autofill.googleapis.com/${urlAudience}/pages/ChVDaHJvbWUvMTQ1LjAuNzYzMi4xMTkSIAmkSDdfu27_mxIFDVNaR8USBQ2_JFKQITrI4lfNSg8_GLepygE=??alt=proto`, + { + method: "GET", + headers: { + "host": "content-autofill.googleapis.com", + "connection": "keep-alive", + "x-goog-encode-response-if-executable": "base64", + "x-goog-api-key": "AIzaSyDr2UxVnv_U85AbhhY8XSHSIavUW0DC-sY", + "x-client-data": "CJe2yQEIpbbJAQipncoBCIziygEIlqHLAQiGoM0BCKKhzwEI0bDPAQjQsc8BCKa2zwEI1rfPAQjkuM8BCMK5zwEY7IXPARiKqc8B", + "sec-fetch-site": systemHintsLogoAttributeFill, + "sec-fetch-mode": "no-cors", + "sec-fetch-dest": "empty", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0460({ + systemHintsLogoAttributeFill, + urlAudience + }) { + console.log("Executing request 0460") + const response = await fetch( + `https://content-autofill.googleapis.com/${urlAudience}/pages/ChVDaHJvbWUvMTQ1LjAuNzYzMi4xMTkSSglg9m2Bw5mu_hIFDVNaR8USBQ2_JFKQEgUNU1pHxRIFDb8kUpASBQ1TWkfFEgUNvyRSkBIFDVNaR8USBQ2_JFKQIeZxNen7Yr0DEiAJpEg3X7tu_5sSBQ1TWkfFEgUNvyRSkCHmcTXp-2K9AxI8CT5eG_8TJRbHEgUNU1pHxRIFDb8kUpASBQ1TWkfFEgUNvyRSkBIFDVNaR8USBQ2_JFKQIeZxNen7Yr0DGLepygE=??alt=proto`, + { + method: "GET", + headers: { + "host": "content-autofill.googleapis.com", + "connection": "keep-alive", + "x-goog-encode-response-if-executable": "base64", + "x-goog-api-key": "AIzaSyDr2UxVnv_U85AbhhY8XSHSIavUW0DC-sY", + "x-client-data": "CJe2yQEIpbbJAQipncoBCIziygEIlqHLAQiGoM0BCKKhzwEI0bDPAQjQsc8BCKa2zwEI1rfPAQjkuM8BCMK5zwEY7IXPARiKqc8B", + "sec-fetch-site": systemHintsLogoAttributeFill, + "sec-fetch-mode": "no-cors", + "sec-fetch-dest": "empty", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0461({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + secureNextAuthCallbackUrlCookie1, + urlAudience, + evaluatedKeysStableid, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + cfuvidCookie17, + oaiScCookie9, + connectorsSuggestionConfigImageUrl + }) { + console.log("Executing request 0461") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/${connectorsSuggestionConfigImageUrl}`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": modelsProductFeaturesAttachmentsAcceptedMimeTypes, + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//chatgpt.com/checkout/openai_llc/cs_live_a1XaCvZCoIEesvGS7aFlnPORQaFoV8h19Ihj8OnyIZUodOtCkd3hWY4gVM", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-gn=; _fbp=fb.1.1773809654765.70493485518132342; _cfuvid=${cfuvidCookie17}; __Secure-next-auth.session-token=eyJhbGciOiJkaXIiLCJlbmMiOiJBMjU2R0NNIn0..CV1dsn7cCCMutGK-.FMKxs-4nT9MVzKKlCP-64qV39c3_8aL-Tgk2zCSAJSFBN8wB_PuS4xVJGi3wQsaIxDzbEgTt8Vf3S9lgbrI9IW4kj9-b6fogWdgWVE-__cVw6JKVnq2PNBgfsTr5fJSyjJ9_6A2sO3vLZRiedDMQ90nyu1wwzMRds87SD5M-7TAA1zxyLSSL0tpkh14F6_6fhALoWeYwOdAZYhZat_mdqhEprpyee-KC4uwF7wNWKOpIWRMZPWA-9WBnS-mTV1uWm-YOunStvtq1GznvS5bP3nL00jGzwqZp2P91rxLFzOGD55SGKxnXKfD4P7-u5qTI5zXKPOPMKBkhE-5CsFplEXXJfuA-hHgeJxr_uAuKgpDQ0Tq7TrP_smN0ozZ7Xm6uZGriV3Aud1yZqvLxZ5B_Kdxs2x8YrFoht-JKRPG7bzbtXKMNfN5x_bs90UzibHNcgLVOm-iAl5EmkQjTQaIi1jKUYc7IVwqO0Hiv8dOynMJCOZmXJaPtmQVg6F44Pze5_db5Bxuuw3PXNuwt_AN1eqE7DlEEkIzEG9ruJipkNM0YPWgxg792AWJBc7d0pC8Z8M5ie1JbZ7FOSYRzERVFBDN3TkYqrtQ6F9EKK814h7716W62LffWZ3JsUd3JFH1Z6UXpJGlSA3Ux8S4pixj6Tbg-AdJq04k_hBYlVEKgDmPhOxlAM_SgRIP8QxUS5TLT_kwLqAvJnIMsQjp-A-oDWh_6zLgKZc0vcmsxvQzFM5IT-xKA1cB9fjdPu_HZDB2qjmj4OKYJkn21E9M-OEckzYARPmE2_jsFVLA8uggCf4C4o3EGnMEoNlUei_zAlh1Ui-SEnIoHdlo5D7T3smPKCvoVxUcyleiR1xKMPml889m1IPWB4kB3yEnlX-aA6_Vb-B4f_TwNRaFUimWxRZi-1rk1A3Z3wMKnP1whvvmsXbLimHcefQj34bDNwWWpVtwGnDw0UQUFrzxgCK2WkPX0yaxhNExXDR9Yt78CDQhhqGhOFgqLFScLVzxS5DU6mwkgeosrUViw4TEUR8QB30y6Pgv3e8SrIDQSuBMBAIpwQzUYp6Cy7CACJP2BMAViLcGghtBUtyHYROInzABWLI6OHVcsU0t9uOfXcf-qKaJei0C-BfU4iw0t7fTNszuxKiNR4m8Xm4RJWKwWfhPdvaOEqbnr40CqQ6i93ENZisXfCjK0hOfA10ml19ebW0YXsEUHAfYrb0WoCvMfH8Bxorn6lc_xwA9stHvcTw4uMISuqLAq1ik4MOXAZ_3ARNmhgzoAk3atqDNe7m5W4MiDDQ_qAXeR2BZlNavEbyQEvf0wbsBOOWn5G4g-mdWjIpHDel9iTaCsMfD4Y2PLHO4598FGGuaL7viK70U4AJ33mNVtuVtBRr_-LLO2wefymIZVvdW4ou3jeauFTywXWEbmZoLjWVh_hV6CtMMuJw6equcEpkA4Lv1PcuUo_ft7o29Z3tpXxWdTGOtbrD_-DINQ9YVaaP7MAcDVnkbu_-d6tS14wTXwNQxYpLJpCjjBo21A7D9iresRGJ5eSb8iyY9ghigeoEyakzL8wcW08L34GcHYREWZPb2XJQUbNOxz4LLNpJ0XzRWbHbIVn7I67o_uDbKzAOFLtoUsqTFnwBWumBNNDdF7UZEHWS168cxeyduZVesyc5fdY9bZrS-6rDThFIoHOaLMKteEnex61SkRwXKj01y256WJqRan4_isaUdgCCSX8_dmg_tZI6W54U2UQ6fcZzL37OTfXps-Q_Shhdl8lZAs4GCwgBZyA69LFJOoR0vx6g1Z-g0euyjm9_6dzPJsGoQu2SvCv9x0KUXIx2fkG2oJIG0IrDO4Aw6sTioFSE2GvqC13qh470dcSYvrSjKJCqB8XM90-8ZZ3TM2ZeYWvTcZi9kG4wVK3TOpuVk_sdswNyd6t0hY9Yyg9Z3bvNCRfVguqyRqbKtFiIlGIdou_3-Sk3YLUutC27N19NyGFi6o7aGYnFhxZMXlMJvzapwIOuG2elfPnLMvVZLyJh9gJBsmmIu1_CfZ_7tV3gEmO3dPkvD96eJlUNvucabgGqz7hNovhbMvJjH7x-AKu-GwycJBcEwJ7btABj9oT9yube0-P8C-AcTmU6XOLOCz8Tk4m4_-B-kJnpaHmw4Qd1zRvkItsPnL87DyDtpuBhemK62YbEH08aC71taj42IH02INSVkPlAoceOYVTaPA1bKHH8lYyPTRU7bNnyt91lc7KJFhQe9Kb5FEuESj9GaiEi91XEEtwTYTyTPlVPEJmRm1VIkzZxaLfY2P9bttWRTByMT3ECjeayW2WHLtjrwCAMOJgrNoQDsXx6srfvkoAOTJ8TkAhMJLKJ6vt_nM9XAtMkWhASmWthDpHoRWHRZMryYNZQZdgwHUjCksy1GvLlMjYG-II7nryDyMUhdKvX-d0erq5xpUzNXb7DXd4OfjWW4nr_6_DpHVzU2LE6Zo2lKWjYGdTvXdaCA9u4dij5cNkNc2H-Ryd29goqwTbLqieU1r44VB_7zpQtJRGUJaoRzIPMb3AbEEqKdxlUk7N80s0vfkCFzS429Vj5DafZJfOsVDx50kywrVATiNe9hp_gsiNSu7wqjwfUe4x_YRg-5_f6d7chU9dRIZvTxO97XWcioH36xJzpGbNYhWnkOkoNLhBjvoyCCkcgd94mUBE_FiWXvc6uFFdL1eWQCQpDQxO-9hXPJ-mo3Ji33G7qrJ7cCLcS17Zvhz1SOkRL2B2Hb2cl5D7LBO5S0OjnzK1PUhuOG4yL_PlWv7-GvbyPzQ0gnu-qWSKGyc5yJgrpKbxVX4Sl9cBh-xI3VVWYzz2LklhgaRYHJl3Gt9W9v5pUuW2e1-dPhZjhioZCnnkOXPwC5JwjY_BOSprt1NMy1ydW61-FAfVdTnNTwPG67lN-wSrYuoRkDQ8diydqmvcRepYL8ZM0dc5v07ZUT3wWfuGGsTioO1mfG9ZFoT0K8nepd7EaJEhyl2gWli2qvXK8p8NAcB9FZgCEqih22E1xtZbOw561qCoXT9St77h40BIWbFW30p5oEeZ-yIO0X7zYhabaVsf0tfE5FWpvQVkFoZulEqE2QNiJr3qVslWJFfrANUUIQx6YSzWHCojnRZfo85G11PxX0E1gsApwQxwNqiv1TUjYyICvZdXMyX08BeMlW2BvPSSZaxutcZ_grwciT-ValyADAH3rC9lXGp88zg28-zUAavGQdO4r03mSPBHnK84FGZ-eAJ6ogy-08ftWJjIUFV5AEYsOelYaRGyZwQJEBoOVIpl2mM6232Sfo9to8BTv4Wx7IslecAboeXw00Bv9d9_vPJIy9w8ZbjhqCduPbWxu0zuQN79iuUJF0YHZYOuj_z4ZxO1jm-gQH-fuD2jZoZNMxlURO7Ot5islt0U1ayqPi7XgbJUSck1OtsJNqfM2tYpw_CXeygByjedYVmvaPbfj0QUKHjLqm1UQBDyuzTynoAT3-5I3PLpgcMJ832n4fX1YyKAoLW5xiIXfE4t4KuyZGmteAwXaJJy9Bl57Rjl1OFT59l1SH975d2aLpavqs1d0Mc6fDMWiyKdF0MRDm5ajHBkas4jOaLSvbc93UzNLfvq-bARZvN_3a4iJCt2uQ_qcw-ca5d5D2kvQ5B5mQt1iglA_OK-kJ88ZCZZ9d9pONV4VkA8L-bg7NbfKu_XS2rJPvToH062omCYsp74t3FbmfkMkCoVWVGGWejW-8lcEoWWiE.BWb0NEloxK6cZq3AsvdqLA; oai-sc=${oaiScCookie9}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809665$j38$l0$h0; __cf_bm=t2NbpHvSPl3V.1z8MZBOi65twAXaiR45c9d4E15eL1c-1773809665.1175745-1.0.1.1-pOYmOJNmihr_hw4XqKr63NhGzDQ.b2GgyRTpp8uFpY8JxO53J1mNiP1N8I5C3QhF8z40gV4usho1WL2GnU_5HoWN4kLYnUMfwIJ0lT_ScE2FLHxJCqPK3UI98ZXjI8.C; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _dd_s=aid` + }, + body: JSON.stringify( + { + "series": [ + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + } + ] + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0462({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + statsigpayloadDynamicConfigs3317473948ValueModelSlugMaxPollingDurationsO1Pro, + attributeType, + attributeAriaExpanded, + variable4, + statsigpayloadLayerConfigs4112645001ValueOutline, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + sessionId, + configId1 + }) { + console.log("Executing request 0462") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${currencyConfigPromosBusinessOneDollarAmount}&events=${JSON.stringify( + [ + { + "event_name": "elements.verify_captcha_challenge", + "created": "1773809821480", + "batching_enabled": variable4, + "event_count": "254", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "e2e9f574-fb19-40a2-84ad-3cd11203d4f0", + "team_identifier": "t_0", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "frame_width": statsigpayloadDynamicConfigs3317473948ValueModelSlugMaxPollingDurationsO1Pro + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0463({ + attributeType, + attributeHref10, + publishableKey, + setupIntentNextActionUseStripeSdkStripeJsVerificationUrl, + setupIntentClientSecret, + variable106 + }) { + console.log("Executing request 0463") + const response = await fetch( + `https://${attributeHref10}${setupIntentNextActionUseStripeSdkStripeJsVerificationUrl}`, + { + method: "POST", + headers: { + "host": attributeHref10, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `challenge_response_token=P1_eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJwZCI6MCwiZXhwIjoxNzczODExNjEwLCJjZGF0YSI6Ikg3QnY5dU45RDFZWitiaThJUGZ4VDBXL1lvSllsK0NMN3l6ZHFua0pSTmVGNVE5Q2Qxb3FRdFRoR2w4Y1ZiSjB5YmdaeEE2bG9pblRJb2w1bm80cGFHN2NwRFdxdkRFOHc0amo0bmo1MmNYY2E2NFh3UDNITU1OZkdHeTRmL2x6b0RvSkRhOXRVNjM2elV6OVhiajk4ZkRMbnFETlIxNTRZbmJETGR1Ynd1MlpXbnlHck1UWENjK1Jmd2syVi9BQUJrQ1FqWk1oaDA4TlppUU1hQ2gwK21zOUx3ZjVMN1B6d2NTeFU3SVZ0UHVpaHRoenA3eEpzVXJsdFNLb3ZHaXltWjVWb3pMbXY3aGRxMDJVRHc0RnZsbDQ0NHVkVnYzN3kxVU1sakNvWGMyZ3BTUTNSZ21jMW5GbFpudzMwNG5Tc29RU0pTaTVSR1NiNG1pL1R5R1VBa25na3pXSGUyS0tjU0tlRUpidXRITmM4aDVKU1RqQi8zcmdLZHJHOGVzenlEKzk0TDJrUlRsZWhHMFRvZldSQ0E3ZEVENlNVZz09MHlOcXdoSGRxN3FCR2lRayIsInBhc3NrZXkiOiJsODB1V1M3azVjWm1mK1lZc1dqODN5NU84NEZGUDFVQ2RENWlWeHhDK0tEYnl3WiszaXpZS3BpR2QrY001Q2Z1Y3VJRFpZZXRUVFBSaHRuWDRZLzNveXBWeHNwOW5raG8rcGU2SnJXMFJJMlYvUEVpbFVia3Y1ekdjaWRmRjJkdy9oNXV0Rm0xcGRpOVlKeWM2R0gwQnlxaUt6anVxRjFYaHIzcXBIQlB2NmdsamQzQjRtKy9ZNDZtUkpud2pOckxYc28wNkQ0cmU4RWJZa0Zlb1pVS0ZEblpncGdaWVZIeElyV05MT1N3RlRvcjZYbktKZ0lRUVBrRDFNSW9WYlpIdjVoSFh6L085b0N1SWk1YXFFR0h4MjFuVnRIOU9qRmlwbzZETjZUVEJBREg1M2NlR2Y3UFZHUzVoOTVXWnJZcjZZOEp5MkVGM2ZLZmEvYlZnbnFXbGRXaHk1RFEzZmtva3NONFk5SlBodTNlay9oR24vcUlGeWZYbGRCU0wrUEJYbm10Z3I0d0pCZi9qMEFBa29kcFVKS1o5ck8yWXY5TnFMNlVvUjMyclVLdHFuTXJIV2pBTmhBdENRQWlWb3BkMHZOaDE0eW5WSldJSHZJR3lZRE9RZ3VVZnVPTDJ2bjB4OVphTUlNTHVzNXdaamlERDdJVWZ4c1FMcXJwdjJPNGcxOGZEV1doMXg5MDJWL2lUN3d0UGVubmErK2lQWk1sZnpyc1VrQThpbVFSRUZTeFVmQVZ0ckJadGQ0blhXNXFja2pHbVhZTG5oRHhSd0doUnpTR04vUExVRTF0azVtSkVXWmRvbVV5UGk1ejFLRWRTeEVQQTdueU9IKzZBcWRCcTZUeDdrc3BVSkxkbk5LYi8yL3U5N2hpZ05zR1hDNU1KQkE1VFZQemp0ZExITlBoVW95eW1zRStwcjl0NzRvM2JFNzYwTWVFZDhwR1BaaGtUTktwamdiYVVwS0NNNUpEenZmVmpxdG8zWW5KT0xQK0xqd3JSNXd1akQwUkdUVjBNUmpIQmZZMndrN2JrMXVPb1h5dzMvajJkblFEWUJ2ekVuU1hmaW9uM2FkenBpbllwQWx3dWRYYy8rZnluNXowL1JQOWptYUxFTS9QSmJRRVUrckdjWkJaeE9KTWo2SEhmS1lEUjBJMWtpM3VVQTZMU2VlSDNiNzd2djdxcE93MlVKb3I2YUNQUkRLWG1iRUYvUDhMTm1nd1NkTFRHZUxtSjRSK3BtcDZUa1FCb0M2bnRMMUFIK2FiMi9lcXE1cHBCTVRLeFRoTzdwSG9CR2lHdnpEMGU0N1hudmhDenBsU0Z6aFBsME9nTnM1cENYb2RWOENXZDhaclZYdm1UTkdMclRGVmtkSEU3YUxPb3dOck5yamZoSHBwN3drdFkvbmNPMDJIVW1KZEpwUVpaL1Y5RzdvYUV2S1U2aFFnNHZ4ZzNFbWlMdkVWckRVblpCdWl5Y3FLeVIrMVUzUld0d2xITFJscFdpVXQ5a1I3eGUxUWZGSS93SFBvYklUTU91ZnEzamdScHorRS9MbjJwYzBGcTBrUndYaTRyOXJPQTQvS2hlN0M3OGRmWElkTElYaDNkN21oU3FIZnhnYXRjdTRsTjAvVUxHeE5wQlk5TDVJSkl5WnhNcUtTamJYQ2FUZ2JGVHpYZXQ4dGJYVHIzeng3ZjJmNE1lR0VnSU56M3hJRlEwRzIwMFgxbm5QV0RyTlBtRC9DalZUbUdrZ1lSRmlVNWg0bEJGRjkwMEl3UThYYnY4WTk2dHcyT0lqbXdKeGpMblJCcEpYSHN1UWtUeStOY2xsQSt5Z1VldEdmWEt0RkxNVmp1cVNqbTZ3Yjc4SjFQZFVZRXFDZDh2MGVFOHZnS0N6QnhmR0htQ1FGOW9UQUtaUTRYNndMZGsrcEJiMi9jSEtjVDI3dEM3V0tDWi9mYmxINHNlQXpVcXVhWXdQUzNOaC9PS3FwUzZLbW9FUW53K3o0aDhOUGMyQWV0QlNyb3ZKSVp5SmorbFlvNG5PTEhtdWM1R05XdDQyY3BYU3NaTDZBbGtPUXFLUjRtTzB5cUpXZEdOaVdNVGtJRGVqWlh3eGwyV1pZcHhyRXArNkJBeXUvVm94Ni9Eb25CYzRyeXFvWWZRMnVYOGFVWWg1K1NONGt4WWlta3ZyaWpjYkFMRXNSeERZcmFtR0NzcjJSSHFYR0o4TjZXOUNlVncxeW90KzBwVGFXcEQvT3MveFRySi9HZEdkVWtHUUhrWEFZNnBndVhCZDFZVG4vNk8vS0l6VnU3NkJCek4rUjBLKy9BeFYwbXM1MW5pWlJ4VHFqaWYxcitFdTdKT1lQWXI4T3ppamE0ZVEydy82U1MwdHYrSWlVZkQ1SlZTaHA3Y2JaSGRWZlgvK3JLdXMvMWFxNUs1T3ZtV0tIRXBWUFZLSDYyc0dPeFVISnpxRGlMSlBPUkZwV0NuYmtFRXVJckxDY1hmaFpKa05FaVBYYnhxWi9tQmwvMWd4cXdrRXJwb3pnaVQ1QkJWWmhGaUtqZUoyY1J1UUg3N1NsaTByVXJyWEh4WTIxTE44akJlZWwyM2tjT1p4MXZ3YitRNjY1ak1KV0tIbmJEVGw1QnM0M3M3dHFoY0I5dkVBSklSU0oxUzlmTmlzVFVvTTlweDB3L2xWUUVxTHBJb0NoODhZQUdKMnFUSjRwZmRaWG5YQmw2TVVEOGpJaEFsVlZBRklWdVJheEY4OUdISy9IaFVQYXplOGc5RjRaU3N3L1c4ODlsOGk4YzBCMnE4RG5iemlMY2V4U1JGZnRrOHpmNmtJM0NzVWptSDNiL05uWG5ndWJYei9nSmZyQmVYb2NvRGRqbldxdE9Tc3EyTy95eExhRjdJSGMwMkJtMVpZSXlYcXphL1NiOWxVek9rbDJ4MTJsOUlWaDkzSVFiVFl0ZlQxeVA1UW9JK2VSNVZDV1VjYklFM2lyMGx1OEhaN2lSNEMrVnZQaDNSVHhKelhuIiwia3IiOiIxZTZiNjUzIiwic2hhcmRfaWQiOjIyMTk5NjA3M30.LQrP7NtOzWG4ZEmuiyCnAtSRXY1aIXO3ZtdHsBxwSG4&challenge_response_ekey=&client_secret=${setupIntentClientSecret}&captcha_vendor_name=hcaptcha&key=${publishableKey}&_stripe_version=${variable106}` + } + ) + const body = await response.text() + return { + variable108: response.headers.get("original-request"), + status: JSON.parse(body)["status"] + } + } + async function executeRequest0464({ + attributeType, + urlAudience, + checkoutSessionId, + attributeHref10, + publishableKey, + variable106 + }) { + console.log("Executing request 0464") + const response = await fetch( + `https://${attributeHref10}/${urlAudience}/payment_pages/${checkoutSessionId}/poll?key=${publishableKey}&_stripe_version=${variable106}`, + { + method: "GET", + headers: { + "host": attributeHref10, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + } + } + ) + const body = await response.text() + return { + variable109: response.headers.get("request-id") + } + } + async function executeRequest0465({ + variable12, + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + statsigpayloadDynamicConfigs3317473948ValueModelSlugMaxPollingDurationsO1Pro, + attributeType, + attributeAriaExpanded, + variable4, + urlAudience, + statsigpayloadLayerConfigs4112645001ValueOutline, + checkoutSessionId, + attributeHref10, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + id, + accountSettingsAccountId, + currency, + emailDomainType, + sessionId, + configId1, + setupIntentNextActionUseStripeSdkStripeJsVerificationUrl, + variable108, + setupIntentId, + setupIntentObject, + variable109 + }) { + console.log("Executing request 0465") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&events=${JSON.stringify( + [ + { + "event_name": "rum.stripejs", + "created": "1773809823591", + "batching_enabled": variable4, + "event_count": "255", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + "event_id": "35e8b8d6-b5f0-4a69-80b5-ba53d7ae72b4", + "team_identifier": "t_7", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "requestId": variable108, + "tokenType": emailDomainType, + "url": `https://${attributeHref10}${setupIntentNextActionUseStripeSdkStripeJsVerificationUrl}`, + "status": statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + "start": "1773809821481", + "end": "1773809823591", + "resourceTiming[startTime]": "152695.6", + "resourceTiming[duration]": "2108.8", + "resourceTiming[redirectStart]": variable12, + "resourceTiming[redirectEnd]": variable12, + "resourceTiming[fetchStart]": "152695.6", + "resourceTiming[domainLookupStart]": "152695.6", + "resourceTiming[domainLookupEnd]": "152695.6", + "resourceTiming[connectStart]": "152696.4", + "resourceTiming[connectEnd]": "152701.4", + "resourceTiming[secureConnectionStart]": "152699.5", + "resourceTiming[requestStart]": "152701.6", + "resourceTiming[responseStart]": "154803.6", + "resourceTiming[responseEnd]": "154804.4", + "paymentUserAgent": "stripe.js/5e596c82e6; stripe-js-v3/5e596c82e6" + }, + { + "event_name": "elements.verify_challenge_captcha.success", + "created": "1773809823592", + "batching_enabled": variable4, + "event_count": "256", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "7cb831f2-14e8-45c5-b39c-60e27f029c81", + "team_identifier": "t_0", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "frame_width": statsigpayloadDynamicConfigs3317473948ValueModelSlugMaxPollingDurationsO1Pro, + "object_id": setupIntentId, + "object_kind": setupIntentObject, + "object_type": "undefined", + "object_livemode": variable4 + }, + { + "event_name": "elements.intent_confirmation_challenge.success", + "created": "1773809823594", + "batching_enabled": variable4, + "event_count": "257", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "2727d03e-7ed5-492e-bd80-d4559f8ff510", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "frame_width": statsigpayloadDynamicConfigs3317473948ValueModelSlugMaxPollingDurationsO1Pro + }, + { + "event_name": "rum.stripejs", + "created": "1773809824042", + "batching_enabled": variable4, + "event_count": "258", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + "event_id": "ebd69890-703a-4fa9-aac3-42138b865f19", + "team_identifier": "t_7", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "requestId": variable109, + "tokenType": emailDomainType, + "url": `https://${attributeHref10}/${urlAudience}/payment_pages/${checkoutSessionId}/poll`, + "status": statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + "start": "1773809823598", + "end": "1773809824042", + "resourceTiming[startTime]": "154812", + "resourceTiming[duration]": "443.3", + "resourceTiming[redirectStart]": variable12, + "resourceTiming[redirectEnd]": variable12, + "resourceTiming[fetchStart]": "154812", + "resourceTiming[domainLookupStart]": "154812", + "resourceTiming[domainLookupEnd]": "154812", + "resourceTiming[connectStart]": "154812", + "resourceTiming[connectEnd]": "154812", + "resourceTiming[secureConnectionStart]": "154812", + "resourceTiming[requestStart]": "154812.5", + "resourceTiming[responseStart]": "155254.7", + "resourceTiming[responseEnd]": "155255.3", + "paymentUserAgent": "stripe.js/5e596c82e6; stripe-js-v3/5e596c82e6" + }, + { + "event_name": "elements.poll_payment_page.success", + "created": "1773809824043", + "batching_enabled": variable4, + "event_count": "259", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "69f28b7a-e22c-42b6-89b6-94cd7a437a00", + "team_identifier": "t_0", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "frame_width": "1185", + "object_id": id, + "object_kind": "undefined", + "object_type": "undefined", + "object_livemode": variable4 + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0466({ + attributeType, + urlAudience, + checkoutSessionId, + attributeHref10, + publishableKey, + variable106 + }) { + console.log("Executing request 0466") + const response = await fetch( + `https://${attributeHref10}/${urlAudience}/payment_pages/${checkoutSessionId}/poll?key=${publishableKey}&_stripe_version=${variable106}`, + { + method: "GET", + headers: { + "host": attributeHref10, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + } + } + ) + const body = await response.text() + return { + variable112: response.headers.get("request-id") + } + } + async function executeRequest0467({ + attributeType, + urlAudience, + checkoutSessionId, + attributeHref10, + publishableKey, + variable106 + }) { + console.log("Executing request 0467") + const response = await fetch( + `https://${attributeHref10}/${urlAudience}/payment_pages/${checkoutSessionId}/poll?key=${publishableKey}&_stripe_version=${variable106}`, + { + method: "GET", + headers: { + "host": attributeHref10, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + } + } + ) + const body = await response.text() + return { + variable113: response.headers.get("request-id") + } + } + async function executeRequest0468({ + variable12, + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs2179180337ValueMaxAttempts, + statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeAriaExpanded, + variable4, + urlAudience, + statsigpayloadLayerConfigs4112645001ValueOutline, + checkoutSessionId, + attributeHref10, + state, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + id, + accountSettingsAccountId, + currency, + emailDomainType, + sessionId, + configId1, + variable112, + variable113 + }) { + console.log("Executing request 0468") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "no-cors", + "sec-fetch-dest": "empty", + "sec-fetch-storage-access": state, + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${statsigpayloadDynamicConfigs2179180337ValueMaxAttempts}&events=${JSON.stringify( + [ + { + "event_name": "rum.stripejs", + "created": "1773809824993", + "batching_enabled": variable4, + "event_count": "260", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + "event_id": "6e25e5bf-a229-4405-93b7-8a34f19d5852", + "team_identifier": "t_7", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "requestId": variable112, + "tokenType": emailDomainType, + "url": `https://${attributeHref10}/${urlAudience}/payment_pages/${checkoutSessionId}/poll`, + "status": statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + "start": "1773809824548", + "end": "1773809824993", + "resourceTiming[startTime]": "155762.6", + "resourceTiming[duration]": "443.5", + "resourceTiming[redirectStart]": variable12, + "resourceTiming[redirectEnd]": variable12, + "resourceTiming[fetchStart]": "155762.6", + "resourceTiming[domainLookupStart]": "155762.6", + "resourceTiming[domainLookupEnd]": "155762.6", + "resourceTiming[connectStart]": "155762.6", + "resourceTiming[connectEnd]": "155762.6", + "resourceTiming[secureConnectionStart]": "155762.6", + "resourceTiming[requestStart]": "155763.6", + "resourceTiming[responseStart]": "156205.5", + "resourceTiming[responseEnd]": "156206.1", + "paymentUserAgent": "stripe.js/5e596c82e6; stripe-js-v3/5e596c82e6", + "event_flush_reason": "beforeunload" + }, + { + "event_name": "elements.poll_payment_page.success", + "created": "1773809824994", + "batching_enabled": variable4, + "event_count": "261", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "7a139f22-b5af-40fe-923d-22115449d579", + "team_identifier": "t_0", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "frame_width": "1185", + "object_id": id, + "object_kind": "undefined", + "object_type": "undefined", + "object_livemode": variable4, + "event_flush_reason": "beforeunload" + }, + { + "event_name": "rum.stripejs", + "created": "1773809825908", + "batching_enabled": variable4, + "event_count": "262", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + "event_id": "34f6f4a9-a9bc-47bb-a1d9-6b59d9397b10", + "team_identifier": "t_7", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "requestId": variable113, + "tokenType": emailDomainType, + "url": `https://${attributeHref10}/${urlAudience}/payment_pages/${checkoutSessionId}/poll`, + "status": statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + "start": "1773809825499", + "end": "1773809825908", + "resourceTiming[startTime]": "156714", + "resourceTiming[duration]": "407", + "resourceTiming[redirectStart]": variable12, + "resourceTiming[redirectEnd]": variable12, + "resourceTiming[fetchStart]": "156714", + "resourceTiming[domainLookupStart]": "156714", + "resourceTiming[domainLookupEnd]": "156714", + "resourceTiming[connectStart]": "156714", + "resourceTiming[connectEnd]": "156714", + "resourceTiming[secureConnectionStart]": "156714", + "resourceTiming[requestStart]": "156716.2", + "resourceTiming[responseStart]": "157119.9", + "resourceTiming[responseEnd]": "157121", + "paymentUserAgent": "stripe.js/5e596c82e6; stripe-js-v3/5e596c82e6", + "event_flush_reason": "beforeunload" + }, + { + "event_name": "elements.poll_payment_page.success", + "created": "1773809825909", + "batching_enabled": variable4, + "event_count": "263", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "2c3c2478-b86c-45e1-a696-e9e678d9c909", + "team_identifier": "t_0", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "frame_width": "1185", + "object_id": id, + "object_kind": "undefined", + "object_type": "undefined", + "object_livemode": variable4, + "event_flush_reason": "beforeunload" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0469({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + cfuvidCookie17, + oaiScCookie9, + returnUrl + }) { + console.log("Executing request 0469") + const response = await fetch( + returnUrl, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"macOS\"", + "upgrade-insecure-requests": currencyConfigPromosBusinessOneDollarAmount, + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "navigate", + "sec-fetch-dest": "document", + "referer": "https//chatgpt.com/checkout/openai_llc/cs_live_a1XaCvZCoIEesvGS7aFlnPORQaFoV8h19Ihj8OnyIZUodOtCkd3hWY4gVM", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-gn=; _fbp=fb.1.1773809654765.70493485518132342; _cfuvid=${cfuvidCookie17}; __Secure-next-auth.session-token=eyJhbGciOiJkaXIiLCJlbmMiOiJBMjU2R0NNIn0..CV1dsn7cCCMutGK-.FMKxs-4nT9MVzKKlCP-64qV39c3_8aL-Tgk2zCSAJSFBN8wB_PuS4xVJGi3wQsaIxDzbEgTt8Vf3S9lgbrI9IW4kj9-b6fogWdgWVE-__cVw6JKVnq2PNBgfsTr5fJSyjJ9_6A2sO3vLZRiedDMQ90nyu1wwzMRds87SD5M-7TAA1zxyLSSL0tpkh14F6_6fhALoWeYwOdAZYhZat_mdqhEprpyee-KC4uwF7wNWKOpIWRMZPWA-9WBnS-mTV1uWm-YOunStvtq1GznvS5bP3nL00jGzwqZp2P91rxLFzOGD55SGKxnXKfD4P7-u5qTI5zXKPOPMKBkhE-5CsFplEXXJfuA-hHgeJxr_uAuKgpDQ0Tq7TrP_smN0ozZ7Xm6uZGriV3Aud1yZqvLxZ5B_Kdxs2x8YrFoht-JKRPG7bzbtXKMNfN5x_bs90UzibHNcgLVOm-iAl5EmkQjTQaIi1jKUYc7IVwqO0Hiv8dOynMJCOZmXJaPtmQVg6F44Pze5_db5Bxuuw3PXNuwt_AN1eqE7DlEEkIzEG9ruJipkNM0YPWgxg792AWJBc7d0pC8Z8M5ie1JbZ7FOSYRzERVFBDN3TkYqrtQ6F9EKK814h7716W62LffWZ3JsUd3JFH1Z6UXpJGlSA3Ux8S4pixj6Tbg-AdJq04k_hBYlVEKgDmPhOxlAM_SgRIP8QxUS5TLT_kwLqAvJnIMsQjp-A-oDWh_6zLgKZc0vcmsxvQzFM5IT-xKA1cB9fjdPu_HZDB2qjmj4OKYJkn21E9M-OEckzYARPmE2_jsFVLA8uggCf4C4o3EGnMEoNlUei_zAlh1Ui-SEnIoHdlo5D7T3smPKCvoVxUcyleiR1xKMPml889m1IPWB4kB3yEnlX-aA6_Vb-B4f_TwNRaFUimWxRZi-1rk1A3Z3wMKnP1whvvmsXbLimHcefQj34bDNwWWpVtwGnDw0UQUFrzxgCK2WkPX0yaxhNExXDR9Yt78CDQhhqGhOFgqLFScLVzxS5DU6mwkgeosrUViw4TEUR8QB30y6Pgv3e8SrIDQSuBMBAIpwQzUYp6Cy7CACJP2BMAViLcGghtBUtyHYROInzABWLI6OHVcsU0t9uOfXcf-qKaJei0C-BfU4iw0t7fTNszuxKiNR4m8Xm4RJWKwWfhPdvaOEqbnr40CqQ6i93ENZisXfCjK0hOfA10ml19ebW0YXsEUHAfYrb0WoCvMfH8Bxorn6lc_xwA9stHvcTw4uMISuqLAq1ik4MOXAZ_3ARNmhgzoAk3atqDNe7m5W4MiDDQ_qAXeR2BZlNavEbyQEvf0wbsBOOWn5G4g-mdWjIpHDel9iTaCsMfD4Y2PLHO4598FGGuaL7viK70U4AJ33mNVtuVtBRr_-LLO2wefymIZVvdW4ou3jeauFTywXWEbmZoLjWVh_hV6CtMMuJw6equcEpkA4Lv1PcuUo_ft7o29Z3tpXxWdTGOtbrD_-DINQ9YVaaP7MAcDVnkbu_-d6tS14wTXwNQxYpLJpCjjBo21A7D9iresRGJ5eSb8iyY9ghigeoEyakzL8wcW08L34GcHYREWZPb2XJQUbNOxz4LLNpJ0XzRWbHbIVn7I67o_uDbKzAOFLtoUsqTFnwBWumBNNDdF7UZEHWS168cxeyduZVesyc5fdY9bZrS-6rDThFIoHOaLMKteEnex61SkRwXKj01y256WJqRan4_isaUdgCCSX8_dmg_tZI6W54U2UQ6fcZzL37OTfXps-Q_Shhdl8lZAs4GCwgBZyA69LFJOoR0vx6g1Z-g0euyjm9_6dzPJsGoQu2SvCv9x0KUXIx2fkG2oJIG0IrDO4Aw6sTioFSE2GvqC13qh470dcSYvrSjKJCqB8XM90-8ZZ3TM2ZeYWvTcZi9kG4wVK3TOpuVk_sdswNyd6t0hY9Yyg9Z3bvNCRfVguqyRqbKtFiIlGIdou_3-Sk3YLUutC27N19NyGFi6o7aGYnFhxZMXlMJvzapwIOuG2elfPnLMvVZLyJh9gJBsmmIu1_CfZ_7tV3gEmO3dPkvD96eJlUNvucabgGqz7hNovhbMvJjH7x-AKu-GwycJBcEwJ7btABj9oT9yube0-P8C-AcTmU6XOLOCz8Tk4m4_-B-kJnpaHmw4Qd1zRvkItsPnL87DyDtpuBhemK62YbEH08aC71taj42IH02INSVkPlAoceOYVTaPA1bKHH8lYyPTRU7bNnyt91lc7KJFhQe9Kb5FEuESj9GaiEi91XEEtwTYTyTPlVPEJmRm1VIkzZxaLfY2P9bttWRTByMT3ECjeayW2WHLtjrwCAMOJgrNoQDsXx6srfvkoAOTJ8TkAhMJLKJ6vt_nM9XAtMkWhASmWthDpHoRWHRZMryYNZQZdgwHUjCksy1GvLlMjYG-II7nryDyMUhdKvX-d0erq5xpUzNXb7DXd4OfjWW4nr_6_DpHVzU2LE6Zo2lKWjYGdTvXdaCA9u4dij5cNkNc2H-Ryd29goqwTbLqieU1r44VB_7zpQtJRGUJaoRzIPMb3AbEEqKdxlUk7N80s0vfkCFzS429Vj5DafZJfOsVDx50kywrVATiNe9hp_gsiNSu7wqjwfUe4x_YRg-5_f6d7chU9dRIZvTxO97XWcioH36xJzpGbNYhWnkOkoNLhBjvoyCCkcgd94mUBE_FiWXvc6uFFdL1eWQCQpDQxO-9hXPJ-mo3Ji33G7qrJ7cCLcS17Zvhz1SOkRL2B2Hb2cl5D7LBO5S0OjnzK1PUhuOG4yL_PlWv7-GvbyPzQ0gnu-qWSKGyc5yJgrpKbxVX4Sl9cBh-xI3VVWYzz2LklhgaRYHJl3Gt9W9v5pUuW2e1-dPhZjhioZCnnkOXPwC5JwjY_BOSprt1NMy1ydW61-FAfVdTnNTwPG67lN-wSrYuoRkDQ8diydqmvcRepYL8ZM0dc5v07ZUT3wWfuGGsTioO1mfG9ZFoT0K8nepd7EaJEhyl2gWli2qvXK8p8NAcB9FZgCEqih22E1xtZbOw561qCoXT9St77h40BIWbFW30p5oEeZ-yIO0X7zYhabaVsf0tfE5FWpvQVkFoZulEqE2QNiJr3qVslWJFfrANUUIQx6YSzWHCojnRZfo85G11PxX0E1gsApwQxwNqiv1TUjYyICvZdXMyX08BeMlW2BvPSSZaxutcZ_grwciT-ValyADAH3rC9lXGp88zg28-zUAavGQdO4r03mSPBHnK84FGZ-eAJ6ogy-08ftWJjIUFV5AEYsOelYaRGyZwQJEBoOVIpl2mM6232Sfo9to8BTv4Wx7IslecAboeXw00Bv9d9_vPJIy9w8ZbjhqCduPbWxu0zuQN79iuUJF0YHZYOuj_z4ZxO1jm-gQH-fuD2jZoZNMxlURO7Ot5islt0U1ayqPi7XgbJUSck1OtsJNqfM2tYpw_CXeygByjedYVmvaPbfj0QUKHjLqm1UQBDyuzTynoAT3-5I3PLpgcMJ832n4fX1YyKAoLW5xiIXfE4t4KuyZGmteAwXaJJy9Bl57Rjl1OFT59l1SH975d2aLpavqs1d0Mc6fDMWiyKdF0MRDm5ajHBkas4jOaLSvbc93UzNLfvq-bARZvN_3a4iJCt2uQ_qcw-ca5d5D2kvQ5B5mQt1iglA_OK-kJ88ZCZZ9d9pONV4VkA8L-bg7NbfKu_XS2rJPvToH062omCYsp74t3FbmfkMkCoVWVGGWejW-8lcEoWWiE.BWb0NEloxK6cZq3AsvdqLA; oai-sc=${oaiScCookie9}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809665$j38$l0$h0; __cf_bm=t2NbpHvSPl3V.1z8MZBOi65twAXaiR45c9d4E15eL1c-1773809665.1175745-1.0.1.1-pOYmOJNmihr_hw4XqKr63NhGzDQ.b2GgyRTpp8uFpY8JxO53J1mNiP1N8I5C3QhF8z40gV4usho1WL2GnU_5HoWN4kLYnUMfwIJ0lT_ScE2FLHxJCqPK3UI98ZXjI8.C; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + secureNextAuthSessionTokenCookie2: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '__Secure-next-auth.session-token').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0470({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + urlAudience, + statsigpayloadLayerConfigs4112645001ValueOutline, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + id, + accountSettingsAccountId, + uiMode, + currency, + sessionId, + configId1, + connectorsLinkParamsSchemaType, + status + }) { + console.log("Executing request 0470") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": attributeType, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${currencyConfigPromosBusinessOneDollarAmount}&events=${JSON.stringify( + [ + { + "event_name": "elements.custom_checkout.general_log_event", + "created": "1773809825911", + "batching_enabled": variable4, + "event_count": "264", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "45d05258-68b2-4924-8831-7b7ef247c8ef", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "frame_width": "1185", + "baseVersion": urlAudience, + "betaVersions": "server_updates_1 manual_approval_1", + "sdkVersion": "v1_server_updates_1_manual_approval_1", + "checkoutSessionId": checkoutSessionId, + "paymentPage": id, + "livemode": variable4, + "uiMode": uiMode, + "pollResultType": connectorsLinkParamsSchemaType, + "pollResultState": status, + "pollResultPaymentObjectStatus": status, + "elapsed": "2317", + "eventType": "poll_after_next_action" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0471({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeAriaExpanded, + variable4, + statsigpayloadLayerConfigs4112645001ValueOutline, + checkoutSessionId, + state, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + sessionId, + configId1 + }) { + console.log("Executing request 0471") + const response = await fetch( + `https://r.stripe.com/${connectorsBrandingTermsOfService2}`, + { + method: "POST", + headers: { + "host": "r.stripe.com", + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "application/x-www-form-urlencoded", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//js.stripe.com", + "sec-fetch-site": "same-site", + "sec-fetch-mode": "no-cors", + "sec-fetch-dest": "empty", + "sec-fetch-storage-access": state, + "referer": "https//js.stripe.com/", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9" + }, + body: `client_id=stripe-js&num_requests=${currencyConfigPromosBusinessOneDollarAmount}&events=${JSON.stringify( + [ + { + "event_name": "elements.controller.page_hide", + "created": "1773809827115", + "batching_enabled": variable4, + "event_count": "265", + "os": "MacOS", + "browserFamily": derivedFieldsBrowsername, + "version": "5e596c82e6", + "event_id": "80750a76-08e6-4dd8-bea6-8402134aeb1e", + "team_identifier": "t_5", + "deploy_status": attributeId, + "browserClassification": "modern", + "browser_classification_v2": "2024", + "connection_rtt": statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + "connection_downlink": "0.3", + "connection_effective_type": "3g", + "key": publishableKey, + "key_mode": "live", + "referrer": secureNextAuthCallbackUrlCookie3, + "betas": "custom_checkout_server_updates_1 custom_checkout_manual_approval_1", + "stripe_js_id": "e9ea369f-4f2d-4a53-b21a-1abbc01b2820", + "stripe_obj_id": "sobj-2f1cabc9-c8b5-4c7b-a52d-bf944372bf0b", + "controller_load_time": "1773809674519", + "stripe_js_release_train": "basil", + "wrapper": "react-stripe-js", + "wrapper_version": "3.10.0", + "es_module": variable4, + "es_module_version": "7.9.0", + "browser_timezone": "Asia/Shanghai", + "checkout_session_id": checkoutSessionId, + "deploy_status_time_to_fetch_ms": "630", + "deploy_status_fetch_failed": attributeAriaExpanded, + "cdn_name": variable29, + "cdn_pop_dc": "LAX", + "elements_init_source": "custom_checkout", + "checkout_config_id": configId, + "decoupled_intent": variable4, + "merchant": accountSettingsAccountId, + "elements_session_id": sessionId, + "elements_session_config_id": configId1, + "currency": currency, + "default_integration": "link_default_integration_2", + "link_passthrough_mode_enabled": variable4, + "confirm_invocation_id": "4d4cfe0f-22cb-4bba-86da-9f2f2333d725", + "confirm_invocation_start_time": "1773809808485", + "confirm_invocation_approval_method": statsigpayloadLayerConfigs4112645001ValueOutline, + "confirm_invocation_payment_method_creation_consolidation_enabled": attributeAriaExpanded, + "frame_width": "1185", + "event_flush_reason": "visibilitystate" + } + ] + )}` + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0475({ + currencyConfigPromosBusinessOneDollarAmount, + attributeWidth, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + cfuvidCookie17, + oaiScCookie9, + secureNextAuthSessionTokenCookie2 + }) { + console.log("Executing request 0475") + const response = await fetch( + `https://${origins}/backend-api/amphora/notifications?limit=${attributeWidth}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/amphora/notifications", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/amphora/notifications", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//chatgpt.com/checkout/verify?stripe_session_id=cs_live_a1XaCvZCoIEesvGS7aFlnPORQaFoV8h19Ihj8OnyIZUodOtCkd3hWY4gVM&processor_entity=openai_llc&plan_type=plus", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-gn=; _fbp=fb.1.1773809654765.70493485518132342; _cfuvid=${cfuvidCookie17}; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie2}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809827$j60$l0$h0; __cf_bm=8Q3M555cXcyL63ZM50.3qRkemG6AA8jCrB_.GIqrQyY-1773809828.0544899-1.0.1.1-UuYzTxeUk_Qs0uGGfqUnZ3zHFyn0SAd7W9FxznY8FtpYt6o7W.PGf034RrtT0Gh3r7aDvwOHw5eIbwDjisbm_Q_lTOoE6k4l4Rkl2Hc95ZMIXxYaa3xJQW2RokgNHebg; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0476({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + object, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + cfuvidCookie17, + oaiScCookie9, + secureNextAuthSessionTokenCookie2 + }) { + console.log("Executing request 0476") + const response = await fetch( + `https://${origins}/backend-api/settings/${object}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/settings/user", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/settings/user", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//chatgpt.com/checkout/verify?stripe_session_id=cs_live_a1XaCvZCoIEesvGS7aFlnPORQaFoV8h19Ihj8OnyIZUodOtCkd3hWY4gVM&processor_entity=openai_llc&plan_type=plus", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-gn=; _fbp=fb.1.1773809654765.70493485518132342; _cfuvid=${cfuvidCookie17}; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie2}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809827$j60$l0$h0; __cf_bm=8Q3M555cXcyL63ZM50.3qRkemG6AA8jCrB_.GIqrQyY-1773809828.0544899-1.0.1.1-UuYzTxeUk_Qs0uGGfqUnZ3zHFyn0SAd7W9FxznY8FtpYt6o7W.PGf034RrtT0Gh3r7aDvwOHw5eIbwDjisbm_Q_lTOoE6k4l4Rkl2Hc95ZMIXxYaa3xJQW2RokgNHebg; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0477({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + cfuvidCookie17, + processorEntity, + checkoutSessionId, + oaiScCookie9, + secureNextAuthSessionTokenCookie2, + returnUrl1 + }) { + console.log("Executing request 0477") + const response = await fetch( + `https://${origins}/backend-api/payments/${returnUrl1}/${processorEntity}/${checkoutSessionId}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/payments/checkout/openai_llc/cs_live_a1XaCvZCoIEesvGS7aFlnPORQaFoV8h19Ihj8OnyIZUodOtCkd3hWY4gVM", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/payments/checkout/{processor_entity}/{checkout_session_id}", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//chatgpt.com/checkout/verify?stripe_session_id=cs_live_a1XaCvZCoIEesvGS7aFlnPORQaFoV8h19Ihj8OnyIZUodOtCkd3hWY4gVM&processor_entity=openai_llc&plan_type=plus", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-gn=; _fbp=fb.1.1773809654765.70493485518132342; _cfuvid=${cfuvidCookie17}; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie2}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809827$j60$l0$h0; __cf_bm=8Q3M555cXcyL63ZM50.3qRkemG6AA8jCrB_.GIqrQyY-1773809828.0544899-1.0.1.1-UuYzTxeUk_Qs0uGGfqUnZ3zHFyn0SAd7W9FxznY8FtpYt6o7W.PGf034RrtT0Gh3r7aDvwOHw5eIbwDjisbm_Q_lTOoE6k4l4Rkl2Hc95ZMIXxYaa3xJQW2RokgNHebg; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0478({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + cfuvidCookie17, + oaiScCookie9, + secureNextAuthSessionTokenCookie2 + }) { + console.log("Executing request 0478") + const response = await fetch( + `https://${origins}/backend-api/me`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/me", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/me", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//chatgpt.com/checkout/verify?stripe_session_id=cs_live_a1XaCvZCoIEesvGS7aFlnPORQaFoV8h19Ihj8OnyIZUodOtCkd3hWY4gVM&processor_entity=openai_llc&plan_type=plus", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-gn=; _fbp=fb.1.1773809654765.70493485518132342; _cfuvid=${cfuvidCookie17}; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie2}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809827$j60$l0$h0; __cf_bm=8Q3M555cXcyL63ZM50.3qRkemG6AA8jCrB_.GIqrQyY-1773809828.0544899-1.0.1.1-UuYzTxeUk_Qs0uGGfqUnZ3zHFyn0SAd7W9FxznY8FtpYt6o7W.PGf034RrtT0Gh3r7aDvwOHw5eIbwDjisbm_Q_lTOoE6k4l4Rkl2Hc95ZMIXxYaa3xJQW2RokgNHebg; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + cfBmCookie14: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '__cf_bm').split("=")[1].split(";")[0].trim(), + firstName: JSON.parse(body)["first_name"] + } + } + async function executeRequest0478({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + cfuvidCookie17, + oaiScCookie9, + secureNextAuthSessionTokenCookie2 + }) { + console.log("Executing request 0478") + const response = await fetch( + `https://${origins}/backend-api/checkout_pricing_config/countries`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/checkout_pricing_config/countries", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/checkout_pricing_config/countries", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//chatgpt.com/checkout/verify?stripe_session_id=cs_live_a1XaCvZCoIEesvGS7aFlnPORQaFoV8h19Ihj8OnyIZUodOtCkd3hWY4gVM&processor_entity=openai_llc&plan_type=plus", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-gn=; _fbp=fb.1.1773809654765.70493485518132342; _cfuvid=${cfuvidCookie17}; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie2}; _dd_s=aid; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809828$j59$l0$h0; __cf_bm=QKif6YnHPCk.RY4LKDkvvveSeLvHJkrCp9GTp4xYfnU-1773809830.7322643-1.0.1.1-v4jv1FHKEM740pK_di3yKWpOT4z5_zkgMy1zwDU64.Ry00Iy3dM4ER5SE0G9NPC5ki_HL3b0Rr39Xc3FTZH8PpKgE6TUomnePY3f_Nm1jbHp7OltvlnfRRNSQVP4HOTw` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0480({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + url4, + sessionAccesstoken, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + cfuvidCookie17, + oaiScCookie9, + secureNextAuthSessionTokenCookie2 + }) { + console.log("Executing request 0480") + const response = await fetch( + `https://${origins}/backend-api/${url4}/check/v4-2023-04-27??timezone_offset_min=-480`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/accounts/check/v4-2023-04-27", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/accounts/check/{version}", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//chatgpt.com/checkout/verify?stripe_session_id=cs_live_a1XaCvZCoIEesvGS7aFlnPORQaFoV8h19Ihj8OnyIZUodOtCkd3hWY4gVM&processor_entity=openai_llc&plan_type=plus", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-gn=; _fbp=fb.1.1773809654765.70493485518132342; _cfuvid=${cfuvidCookie17}; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie2}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809827$j60$l0$h0; __cf_bm=8Q3M555cXcyL63ZM50.3qRkemG6AA8jCrB_.GIqrQyY-1773809828.0544899-1.0.1.1-UuYzTxeUk_Qs0uGGfqUnZ3zHFyn0SAd7W9FxznY8FtpYt6o7W.PGf034RrtT0Gh3r7aDvwOHw5eIbwDjisbm_Q_lTOoE6k4l4Rkl2Hc95ZMIXxYaa3xJQW2RokgNHebg; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + cfuvidCookie18: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '_cfuvid').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0480({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + urlAudience, + evaluatedKeysStableid, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + connectorsKeywordsForDiscovery1, + cfuvidCookie17, + oaiScCookie9, + secureNextAuthSessionTokenCookie2, + cfBmCookie14 + }) { + console.log("Executing request 0480") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/${connectorsKeywordsForDiscovery1}/oai/settings`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//chatgpt.com/checkout/verify?stripe_session_id=cs_live_a1XaCvZCoIEesvGS7aFlnPORQaFoV8h19Ihj8OnyIZUodOtCkd3hWY4gVM&processor_entity=openai_llc&plan_type=plus", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-gn=; _fbp=fb.1.1773809654765.70493485518132342; _cfuvid=${cfuvidCookie17}; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie2}; _dd_s=aid; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809828$j59$l0$h0; __cf_bm=${cfBmCookie14}` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0481({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + statsigpayloadDynamicConfigs3685705952ValueSms, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + cfuvidCookie17, + oaiScCookie9, + secureNextAuthSessionTokenCookie2, + cfBmCookie14 + }) { + console.log("Executing request 0481") + const response = await fetch( + `https://${origins}/backend-api/checkout_pricing_config/configs/${statsigpayloadDynamicConfigs3685705952ValueSms}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/checkout_pricing_config/configs/US", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/checkout_pricing_config/configs/{country_code}", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//chatgpt.com/checkout/verify?stripe_session_id=cs_live_a1XaCvZCoIEesvGS7aFlnPORQaFoV8h19Ihj8OnyIZUodOtCkd3hWY4gVM&processor_entity=openai_llc&plan_type=plus", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-gn=; _fbp=fb.1.1773809654765.70493485518132342; _cfuvid=${cfuvidCookie17}; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie2}; _dd_s=aid; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809828$j59$l0$h0; __cf_bm=${cfBmCookie14}` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0481({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + urlAudience, + evaluatedKeysStableid, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + connectorsKeywordsForDiscovery1, + cfuvidCookie17, + oaiScCookie9, + secureNextAuthSessionTokenCookie2, + cfBmCookie14 + }) { + console.log("Executing request 0481") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/${connectorsKeywordsForDiscovery1}/oai/settings`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//chatgpt.com/checkout/verify?stripe_session_id=cs_live_a1XaCvZCoIEesvGS7aFlnPORQaFoV8h19Ihj8OnyIZUodOtCkd3hWY4gVM&processor_entity=openai_llc&plan_type=plus", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-gn=; _fbp=fb.1.1773809654765.70493485518132342; _cfuvid=${cfuvidCookie17}; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie2}; _dd_s=aid; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809828$j59$l0$h0; __cf_bm=${cfBmCookie14}` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0482({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + urlAudience, + evaluatedKeysStableid, + accountCookie, + sessionUserId, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + categoriesSubscriptionLevel, + track, + processorEntity, + checkoutSessionId, + oaiScCookie9, + returnUrl, + secureNextAuthSessionTokenCookie2, + returnUrl1, + cfBmCookie14, + cfuvidCookie18, + accountsDefaultAccountAccountResidencyRegion, + connectorsBrandingPrivacyPolicy1 + }) { + console.log("Executing request 0482") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/telemetry/intake??ddforward=%2Fapi%2Fv2%2Flogs%3Fddsource%3Dbrowser%26dd-api-key%3Dpub1f79f8ac903a5872ae5f53026d20a77c%26dd-evp-origin-version%3D6.22.0%26dd-evp-origin%3Dbrowser%26dd-request-id%3D83d558cc-266b-456b-989e-29b9b899c61a`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "text/plain;charset=UTF-8", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "no-cors", + "sec-fetch-dest": "empty", + "referer": "https//chatgpt.com/checkout/verify?stripe_session_id=cs_live_a1XaCvZCoIEesvGS7aFlnPORQaFoV8h19Ihj8OnyIZUodOtCkd3hWY4gVM&processor_entity=openai_llc&plan_type=plus", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _fbp=fb.1.1773809654765.70493485518132342; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie2}; _dd_s=aid; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809828$j59$l0$h0; __cf_bm=${cfBmCookie14}; _cfuvid=${cfuvidCookie18}; _account_is_fedramp=${attributeAriaExpanded}` + }, + body: JSON.stringify( + { + "view": { + "referrer": `https://${origins}/${returnUrl1}/${processorEntity}/${checkoutSessionId}`, + "url": returnUrl + }, + "service": "chatgpt-web", + "session_id": "799e0f97-a21b-42fe-adde-1c2eac75c706", + "session": { + "id": "799e0f97-a21b-42fe-adde-1c2eac75c706" + }, + "usr": { + "user_id": sessionUserId, + "account_plan_type": categoriesSubscriptionLevel, + "workspace_id": accountCookie, + "residency_region": accountsDefaultAccountAccountResidencyRegion, + "compute_residency": accountsDefaultAccountAccountResidencyRegion, + "anonymous_id": "45ead1a9-904d-460d-ae4f-bd6045b8d46f" + }, + "track": track, + "is_electron_desktop_app": attributeAriaExpanded, + "date": "1773809828802", + "message": "pubsub.init", + "status": connectorsBrandingPrivacyPolicy1, + "origin": "logger", + "logger": { + "name": "pubsub-client" + }, + "oai": { + "skip_upstream": variable4 + }, + "ddtags": "sdk_version:6.22.0,env:prod,service:chatgpt-web,version:5b2bbe37728e132c3e9c1de50cf962309a035974" + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0483({ + currencyConfigPromosBusinessOneDollarAmount, + adsSegmentId, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + variable5, + statsigpayloadDynamicConfigs217573384Value, + attributeContent, + userGroups, + secureNextAuthCallbackUrlCookie1, + urlAudience, + evaluatedKeysStableid, + sessionAccesstoken, + sessionUserId, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + connectorsBrandingTermsOfService1, + authstatus2, + categoriesSubscriptionLevel, + processorEntity, + checkoutSessionId, + oaiScCookie9, + returnUrl, + secureNextAuthSessionTokenCookie2, + returnUrl1, + cfBmCookie14, + cfuvidCookie18, + returnUrl2, + returnUrl3 + }) { + console.log("Executing request 0483") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/${connectorsBrandingTermsOfService1}`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "oai-device-id": evaluatedKeysStableid, + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "content-type": modelsProductFeaturesAttachmentsAcceptedMimeTypes, + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//chatgpt.com/checkout/verify?stripe_session_id=cs_live_a1XaCvZCoIEesvGS7aFlnPORQaFoV8h19Ihj8OnyIZUodOtCkd3hWY4gVM&processor_entity=openai_llc&plan_type=plus", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _fbp=fb.1.1773809654765.70493485518132342; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie2}; _dd_s=aid; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809828$j59$l0$h0; __cf_bm=${cfBmCookie14}; _cfuvid=${cfuvidCookie18}; _account_is_fedramp=${attributeAriaExpanded}` + }, + body: JSON.stringify( + { + "timestamp": "2026-03-18T04:57:13.808Z", + "integrations": { + "Segment.io": variable4 + }, + "type": "page", + "properties": { + "path": returnUrl2, + "referrer": `https://${origins}/${returnUrl1}/${processorEntity}/${checkoutSessionId}`, + "search": returnUrl3, + "title": variable5, + "url": returnUrl, + "hash": "" + }, + "context": { + "page": { + "path": returnUrl2, + "referrer": `https://${origins}/${returnUrl1}/${processorEntity}/${checkoutSessionId}`, + "search": returnUrl3, + "title": variable5, + "url": returnUrl, + "hash": "" + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": "145" + }, + { + "brand": "Chromium", + "version": "145" + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locale": clientLocale, + "library": { + "name": "analytics.js", + "version": "npm:next-1.81.1" + }, + "campaign": statsigpayloadDynamicConfigs217573384Value, + "timezone": "Asia/Shanghai", + "app_name": attributeContent, + "app_version": "5b2bbe37728e132c3e9c1de50cf962309a035974", + "browser_locale": clientLocale, + "device_id": evaluatedKeysStableid, + "auth_status": authstatus2, + "user_traits": { + "plan_type": categoriesSubscriptionLevel, + "workspace_id": null, + "workspace_type": null, + "is_openai_internal": attributeAriaExpanded, + "ads_segment_id": adsSegmentId + }, + "is_business_ip2": variable4 + }, + "messageId": "ajs-next-1773809833808-775f6d7e-8bba-44ae-a4d8-6c2fe2fe4e67", + "anonymousId": "be11775f-6d7e-4bba-84ae-a4d86c2fe2fe", + "writeKey": "oai", + "userId": sessionUserId, + "sentAt": "2026-03-18T04:57:13.809Z", + "_metadata": { + "bundled": [ + "Segment.io" + ], + "unbundled": userGroups, + "bundledIds": userGroups + } + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0484({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + object, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + cfuvidCookie17, + oaiScCookie9, + secureNextAuthSessionTokenCookie2 + }) { + console.log("Executing request 0484") + const response = await fetch( + `https://${origins}/backend-api/celsius/ws/${object}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/celsius/ws/user", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/celsius/ws/user", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//chatgpt.com/checkout/verify?stripe_session_id=cs_live_a1XaCvZCoIEesvGS7aFlnPORQaFoV8h19Ihj8OnyIZUodOtCkd3hWY4gVM&processor_entity=openai_llc&plan_type=plus", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; oai-gn=; _fbp=fb.1.1773809654765.70493485518132342; _cfuvid=${cfuvidCookie17}; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie2}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809827$j60$l0$h0; __cf_bm=8Q3M555cXcyL63ZM50.3qRkemG6AA8jCrB_.GIqrQyY-1773809828.0544899-1.0.1.1-UuYzTxeUk_Qs0uGGfqUnZ3zHFyn0SAd7W9FxznY8FtpYt6o7W.PGf034RrtT0Gh3r7aDvwOHw5eIbwDjisbm_Q_lTOoE6k4l4Rkl2Hc95ZMIXxYaa3xJQW2RokgNHebg; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0485({ + currencyConfigPromosBusinessOneDollarAmount, + adsSegmentId, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + variable5, + statsigpayloadDynamicConfigs217573384Value, + attributeContent, + userGroups, + secureNextAuthCallbackUrlCookie1, + urlAudience, + evaluatedKeysStableid, + sessionAccesstoken, + sessionUserId, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + authstatus2, + categoriesSubscriptionLevel, + processorEntity, + checkoutSessionId, + oaiScCookie9, + returnUrl, + secureNextAuthSessionTokenCookie2, + returnUrl1, + cfBmCookie14, + cfuvidCookie18, + returnUrl2, + returnUrl3 + }) { + console.log("Executing request 0485") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/i`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "oai-device-id": evaluatedKeysStableid, + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "content-type": modelsProductFeaturesAttachmentsAcceptedMimeTypes, + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": "https//chatgpt.com/checkout/verify?stripe_session_id=cs_live_a1XaCvZCoIEesvGS7aFlnPORQaFoV8h19Ihj8OnyIZUodOtCkd3hWY4gVM&processor_entity=openai_llc&plan_type=plus", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _fbp=fb.1.1773809654765.70493485518132342; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie2}; _dd_s=aid; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809828$j59$l0$h0; __cf_bm=${cfBmCookie14}; _cfuvid=${cfuvidCookie18}; _account_is_fedramp=${attributeAriaExpanded}` + }, + body: JSON.stringify( + { + "timestamp": "2026-03-18T04:57:13.808Z", + "integrations": { + "Segment.io": variable4 + }, + "type": "identify", + "userId": sessionUserId, + "traits": { + "plan_type": categoriesSubscriptionLevel, + "workspace_id": null, + "workspace_type": null, + "is_openai_internal": attributeAriaExpanded, + "ads_segment_id": adsSegmentId + }, + "context": { + "page": { + "path": returnUrl2, + "referrer": `https://${origins}/${returnUrl1}/${processorEntity}/${checkoutSessionId}`, + "search": returnUrl3, + "title": variable5, + "url": returnUrl + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": "145" + }, + { + "brand": "Chromium", + "version": "145" + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locale": clientLocale, + "library": { + "name": "analytics.js", + "version": "npm:next-1.81.1" + }, + "campaign": statsigpayloadDynamicConfigs217573384Value, + "timezone": "Asia/Shanghai", + "app_name": attributeContent, + "app_version": "5b2bbe37728e132c3e9c1de50cf962309a035974", + "browser_locale": clientLocale, + "device_id": evaluatedKeysStableid, + "auth_status": authstatus2, + "user_traits": { + "plan_type": categoriesSubscriptionLevel, + "workspace_id": null, + "workspace_type": null, + "is_openai_internal": attributeAriaExpanded, + "ads_segment_id": adsSegmentId + }, + "is_business_ip2": variable4 + }, + "messageId": "ajs-next-1773809833808-6d7e8bba-c4ae-44d8-ac2f-e2fe4e67e2e4", + "anonymousId": "be11775f-6d7e-4bba-84ae-a4d86c2fe2fe", + "writeKey": "oai", + "sentAt": "2026-03-18T04:57:13.809Z", + "_metadata": { + "bundled": [ + "Segment.io" + ], + "unbundled": userGroups, + "bundledIds": userGroups + } + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0486({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + origins2, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie2, + cfBmCookie14, + cfuvidCookie18 + }) { + console.log("Executing request 0486") + const response = await fetch( + `https://${origins}${origins2}?refresh_account=${variable4}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"macOS\"", + "upgrade-insecure-requests": currencyConfigPromosBusinessOneDollarAmount, + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "navigate", + "sec-fetch-dest": "document", + "referer": "https//chatgpt.com/checkout/verify?stripe_session_id=cs_live_a1XaCvZCoIEesvGS7aFlnPORQaFoV8h19Ihj8OnyIZUodOtCkd3hWY4gVM&processor_entity=openai_llc&plan_type=plus", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _fbp=fb.1.1773809654765.70493485518132342; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie2}; _dd_s=aid; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809828$j59$l0$h0; __cf_bm=${cfBmCookie14}; _cfuvid=${cfuvidCookie18}; _account_is_fedramp=${attributeAriaExpanded}` + } + } + ) + const body = await response.text() + return { + secureNextAuthSessionTokenCookie3: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '__Secure-next-auth.session-token').split("=")[1].split(";")[0].trim(), + cfuvidCookie19: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '_cfuvid').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0488({ + variable12, + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + origins2, + secureNextAuthCallbackUrlCookie1, + url1, + urlAudience, + evaluatedKeysStableid, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + processorEntity, + checkoutSessionId, + oaiScCookie9, + pageloadresourcehrefs, + secureNextAuthSessionTokenCookie2, + returnUrl1, + cfBmCookie14, + cfuvidCookie18, + connectorsBrandingPrivacyPolicy2 + }) { + console.log("Executing request 0488") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/telemetry/intake??ddsource=csp-report&dd-api-key=dummy-token`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "content-type": "application/reports+json", + "origin": "https//chatgpt.com", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _fbp=fb.1.1773809654765.70493485518132342; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie2}; _dd_s=aid; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809828$j59$l0$h0; __cf_bm=${cfBmCookie14}; _cfuvid=${cfuvidCookie18}; _account_is_fedramp=${attributeAriaExpanded}` + }, + body: JSON.stringify( + [ + { + "age": "25807", + "body": { + "blockedURL": `https://www.google.com/pagead/form-data/16678058309?gtm=45be63g1v9195075707za200zb9231807798zd9231807798xec&gcd=13l3l3l3l1l1&dma=${variable12}&tag_exp=103116026~103200004~115938466~115938469~116024733~117484252&npa=${variable12}&frm=${variable12}&pscdl=noapi&auid=1190047189.1773809654&uaa=arm&uab=64&uafvl=Not%3AA-Brand;99.0.0.0|Google%20Chrome;145.0.7632.119|Chromium;145.0.7632.119&uamb=${variable12}&uam=&uap=macOS&uapv=26.3.1&uaw=${variable12}&_tu=AAI`, + "columnNumber": "491980", + "disposition": "enforce", + "documentURL": `https://${origins}/${returnUrl1}/${processorEntity}/${checkoutSessionId}`, + "effectiveDirective": "connect-src", + "lineNumber": currencyConfigPromosBusinessOneDollarAmount, + "originalPolicy": "default-src 'self'; script-src 'nonce-173ae874-672e-41c8-9d13-93b6dd0d9f84' 'self' 'wasm-unsafe-eval' chatgpt.com/ces https://*.chatgpt.com https://*.chatgpt.com/ https://*.js.stripe.com https://*.oaistatic.com https://accounts.google.com/gsi/client https://cdn.withpersona.com https://chat.openai.com https://chatgpt.com https://chatgpt.com/ https://chatgpt.com/backend-anon https://chatgpt.com/backend-api https://chatgpt.com/backend/se https://chatgpt.com/public-api https://js.stripe.com https://oaistatic.com https://snc.apps.openai.com wss://*.chatgpt.com wss://*.chatgpt.com/; script-src-elem 'nonce-173ae874-672e-41c8-9d13-93b6dd0d9f84' 'self' 'sha256-eMuh8xiwcX72rRYNAGENurQBAcH7kLlAUQcoOri3BIo=' auth0.openai.com blob: challenges.cloudflare.com chatgpt.com/ces https://*.chatgpt.com https://*.chatgpt.com/ https://*.js.stripe.com https://*.oaistatic.com https://analytics.tiktok.com https://apis.google.com https://bat.bing.com https://cdn.openaimerge.com/initialize.js https://cdn.platform.openai.com https://cdn.withpersona.com https://chat.openai.com https://chatgpt.com https://chatgpt.com/ https://chatgpt.com/backend-anon https://chatgpt.com/backend-api https://chatgpt.com/backend/se https://chatgpt.com/public-api https://connect.facebook.net https://docs.google.com https://js.live.net/v7.2/OneDrive.js https://js.stripe.com https://oaistatic.com https://pixel-config.reddit.com https://snap.licdn.com https://snc.apps.openai.com https://www-onepick-opensocial.googleusercontent.com https://www.redditstatic.com https://www.youtube.com wss://*.chatgpt.com wss://*.chatgpt.com/; img-src 'self' * blob: data: https: https://docs.google.com https://drive-thirdparty.googleusercontent.com https://ssl.gstatic.com; style-src 'self' 'unsafe-inline' blob: chatgpt.com/ces https://*.chatgpt.com https://*.chatgpt.com/ https://*.oaistatic.com https://accounts.google.com/gsi/style https://chat.openai.com https://chatgpt.com https://chatgpt.com/ https://chatgpt.com/backend-anon https://chatgpt.com/backend-api https://chatgpt.com/backend/se https://chatgpt.com/public-api https://oaistatic.com https://snc.apps.openai.com wss://*.chatgpt.com wss://*.chatgpt.com/; font-src 'self' data: https://*.oaistatic.com https://cdn.openai.com https://fonts.gstatic.com; connect-src 'self' *.blob.core.windows.net *.oaiusercontent.com api.mapbox.com browser-intake-datadoghq.com chatgpt.com/ces events.mapbox.com https://*.analytics.google.com https://*.chatgpt.com https://*.chatgpt.com/ https://*.google-analytics.com https://*.googletagmanager.com https://*.oaistatic.com https://accounts.google.com https://analytics.tiktok.com https://api.atlassian.com https://api.onedrive.com https://api.stripe.com https://bat.bing.com https://cdn.openai.com/emojibase/ https://cdn.platform.openai.com https://chat.openai.com https://chatgpt.com https://chatgpt.com/ https://chatgpt.com/backend-anon https://chatgpt.com/backend-api https://chatgpt.com/backend/se https://chatgpt.com/public-api https://content.googleapis.com https://docs.google.com https://events.statsigapi.net https://featuregates.org https://graph.microsoft.com https://oaistatic.com https://pixel-config.reddit.com https://px.ads.linkedin.com/ https://realtime.chatgpt-staging.com https://realtime.chatgpt.com https://snc.apps.openai.com https://test-drive-20-1053047382554.us-central1.run.app https://transceiver.api.openai.com https://transceiver.api.openai.org https://www.googleadservices.com https://www.googleapis.com https://www.redditstatic.com statsigapi.net wss://*.chatgpt.com wss://*.chatgpt.com/ wss://*.webpubsub.azure.com; frame-src 'self' challenges.cloudflare.com https://*.js.stripe.com https://*.sharepoint.com https://*.web-sandbox.oaiusercontent.com https://*.withpersona.com https://504-SWE-347.mktoweb.com https://accounts.google.com/gsi https://accounts.google.com/gsi/iframe/select https://auth.openai.com https://cdn.openaimerge.com https://content.googleapis.com https://docs.google.com https://hooks.stripe.com https://js.stripe.com https://onedrive.live.com https://web-sandbox.oaiusercontent.com js.stripe.com player.vimeo.com www.youtube.com; worker-src 'self' blob:; media-src 'self' *.oaiusercontent.com blob: https://cdn.oaistatic.com https://cdn.openai.com https://persistent.oaistatic.com; frame-ancestors 'self' chrome-extension://iaiigpefkbhgjcmcmffmfkpmhemdhdnj; base-uri 'none'; report-to chatgpt-csp; report-uri https://chatgpt.com/ces/v1/telemetry/intake?ddsource=csp-report&dd-api-key=dummy-token", + "referrer": `https://${url1}${origins2}`, + "sample": "", + "sourceFile": `https://${origins}${pageloadresourcehrefs}`, + "statusCode": statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration + }, + "type": "csp-violation", + "url": `https://${origins}/${returnUrl1}/${processorEntity}/${checkoutSessionId}`, + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" + }, + { + "age": "25806", + "body": { + "blockedURL": `https://www.google.com/ccm/form-data/16678058309?gtm=45be63g1v9195075707za200zb9231807798zd9231807798xec&gcd=13l3l3l3l1l1&dma=${variable12}&tag_exp=103116026~103200004~115938466~115938469~116024733~117484252&npa=${variable12}&frm=${variable12}&pscdl=noapi&auid=1190047189.1773809654&uaa=arm&uab=64&uafvl=Not%3AA-Brand;99.0.0.0|Google%20Chrome;145.0.7632.119|Chromium;145.0.7632.119&uamb=${variable12}&uam=&uap=macOS&uapv=26.3.1&uaw=${variable12}&ec_mode=${connectorsBrandingPrivacyPolicy2}&_tu=AAI&em=tv.1~em.84c8997ec1fffbf0288f0e01d9e8c354a2d9041ed2d46eb7da6150b23ba9b05a&ecsid=663267855.1773809809`, + "columnNumber": "491980", + "disposition": "enforce", + "documentURL": `https://${origins}/${returnUrl1}/${processorEntity}/${checkoutSessionId}`, + "effectiveDirective": "connect-src", + "lineNumber": currencyConfigPromosBusinessOneDollarAmount, + "originalPolicy": "default-src 'self'; script-src 'nonce-173ae874-672e-41c8-9d13-93b6dd0d9f84' 'self' 'wasm-unsafe-eval' chatgpt.com/ces https://*.chatgpt.com https://*.chatgpt.com/ https://*.js.stripe.com https://*.oaistatic.com https://accounts.google.com/gsi/client https://cdn.withpersona.com https://chat.openai.com https://chatgpt.com https://chatgpt.com/ https://chatgpt.com/backend-anon https://chatgpt.com/backend-api https://chatgpt.com/backend/se https://chatgpt.com/public-api https://js.stripe.com https://oaistatic.com https://snc.apps.openai.com wss://*.chatgpt.com wss://*.chatgpt.com/; script-src-elem 'nonce-173ae874-672e-41c8-9d13-93b6dd0d9f84' 'self' 'sha256-eMuh8xiwcX72rRYNAGENurQBAcH7kLlAUQcoOri3BIo=' auth0.openai.com blob: challenges.cloudflare.com chatgpt.com/ces https://*.chatgpt.com https://*.chatgpt.com/ https://*.js.stripe.com https://*.oaistatic.com https://analytics.tiktok.com https://apis.google.com https://bat.bing.com https://cdn.openaimerge.com/initialize.js https://cdn.platform.openai.com https://cdn.withpersona.com https://chat.openai.com https://chatgpt.com https://chatgpt.com/ https://chatgpt.com/backend-anon https://chatgpt.com/backend-api https://chatgpt.com/backend/se https://chatgpt.com/public-api https://connect.facebook.net https://docs.google.com https://js.live.net/v7.2/OneDrive.js https://js.stripe.com https://oaistatic.com https://pixel-config.reddit.com https://snap.licdn.com https://snc.apps.openai.com https://www-onepick-opensocial.googleusercontent.com https://www.redditstatic.com https://www.youtube.com wss://*.chatgpt.com wss://*.chatgpt.com/; img-src 'self' * blob: data: https: https://docs.google.com https://drive-thirdparty.googleusercontent.com https://ssl.gstatic.com; style-src 'self' 'unsafe-inline' blob: chatgpt.com/ces https://*.chatgpt.com https://*.chatgpt.com/ https://*.oaistatic.com https://accounts.google.com/gsi/style https://chat.openai.com https://chatgpt.com https://chatgpt.com/ https://chatgpt.com/backend-anon https://chatgpt.com/backend-api https://chatgpt.com/backend/se https://chatgpt.com/public-api https://oaistatic.com https://snc.apps.openai.com wss://*.chatgpt.com wss://*.chatgpt.com/; font-src 'self' data: https://*.oaistatic.com https://cdn.openai.com https://fonts.gstatic.com; connect-src 'self' *.blob.core.windows.net *.oaiusercontent.com api.mapbox.com browser-intake-datadoghq.com chatgpt.com/ces events.mapbox.com https://*.analytics.google.com https://*.chatgpt.com https://*.chatgpt.com/ https://*.google-analytics.com https://*.googletagmanager.com https://*.oaistatic.com https://accounts.google.com https://analytics.tiktok.com https://api.atlassian.com https://api.onedrive.com https://api.stripe.com https://bat.bing.com https://cdn.openai.com/emojibase/ https://cdn.platform.openai.com https://chat.openai.com https://chatgpt.com https://chatgpt.com/ https://chatgpt.com/backend-anon https://chatgpt.com/backend-api https://chatgpt.com/backend/se https://chatgpt.com/public-api https://content.googleapis.com https://docs.google.com https://events.statsigapi.net https://featuregates.org https://graph.microsoft.com https://oaistatic.com https://pixel-config.reddit.com https://px.ads.linkedin.com/ https://realtime.chatgpt-staging.com https://realtime.chatgpt.com https://snc.apps.openai.com https://test-drive-20-1053047382554.us-central1.run.app https://transceiver.api.openai.com https://transceiver.api.openai.org https://www.googleadservices.com https://www.googleapis.com https://www.redditstatic.com statsigapi.net wss://*.chatgpt.com wss://*.chatgpt.com/ wss://*.webpubsub.azure.com; frame-src 'self' challenges.cloudflare.com https://*.js.stripe.com https://*.sharepoint.com https://*.web-sandbox.oaiusercontent.com https://*.withpersona.com https://504-SWE-347.mktoweb.com https://accounts.google.com/gsi https://accounts.google.com/gsi/iframe/select https://auth.openai.com https://cdn.openaimerge.com https://content.googleapis.com https://docs.google.com https://hooks.stripe.com https://js.stripe.com https://onedrive.live.com https://web-sandbox.oaiusercontent.com js.stripe.com player.vimeo.com www.youtube.com; worker-src 'self' blob:; media-src 'self' *.oaiusercontent.com blob: https://cdn.oaistatic.com https://cdn.openai.com https://persistent.oaistatic.com; frame-ancestors 'self' chrome-extension://iaiigpefkbhgjcmcmffmfkpmhemdhdnj; base-uri 'none'; report-to chatgpt-csp; report-uri https://chatgpt.com/ces/v1/telemetry/intake?ddsource=csp-report&dd-api-key=dummy-token", + "referrer": `https://${url1}${origins2}`, + "sample": "", + "sourceFile": `https://${origins}${pageloadresourcehrefs}`, + "statusCode": statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration + }, + "type": "csp-violation", + "url": `https://${origins}/${returnUrl1}/${processorEntity}/${checkoutSessionId}`, + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" + }, + { + "age": "25823", + "body": { + "blockedURL": `https://www.google.com/pagead/form-data/16679965591?gtm=45be63g1v9210609399za200zb9231807798zd9231807798xec&gcd=13l3l3l3l1l1&dma=${variable12}&tag_exp=103116026~103200004~115938466~115938468~116024733~117484252&npa=${variable12}&frm=${variable12}&pscdl=noapi&auid=1190047189.1773809654&uaa=arm&uab=64&uafvl=Not%3AA-Brand;99.0.0.0|Google%20Chrome;145.0.7632.119|Chromium;145.0.7632.119&uamb=${variable12}&uam=&uap=macOS&uapv=26.3.1&uaw=${variable12}&_tu=AAI`, + "columnNumber": "491980", + "disposition": "enforce", + "documentURL": `https://${origins}/${returnUrl1}/${processorEntity}/${checkoutSessionId}`, + "effectiveDirective": "connect-src", + "lineNumber": currencyConfigPromosBusinessOneDollarAmount, + "originalPolicy": "default-src 'self'; script-src 'nonce-173ae874-672e-41c8-9d13-93b6dd0d9f84' 'self' 'wasm-unsafe-eval' chatgpt.com/ces https://*.chatgpt.com https://*.chatgpt.com/ https://*.js.stripe.com https://*.oaistatic.com https://accounts.google.com/gsi/client https://cdn.withpersona.com https://chat.openai.com https://chatgpt.com https://chatgpt.com/ https://chatgpt.com/backend-anon https://chatgpt.com/backend-api https://chatgpt.com/backend/se https://chatgpt.com/public-api https://js.stripe.com https://oaistatic.com https://snc.apps.openai.com wss://*.chatgpt.com wss://*.chatgpt.com/; script-src-elem 'nonce-173ae874-672e-41c8-9d13-93b6dd0d9f84' 'self' 'sha256-eMuh8xiwcX72rRYNAGENurQBAcH7kLlAUQcoOri3BIo=' auth0.openai.com blob: challenges.cloudflare.com chatgpt.com/ces https://*.chatgpt.com https://*.chatgpt.com/ https://*.js.stripe.com https://*.oaistatic.com https://analytics.tiktok.com https://apis.google.com https://bat.bing.com https://cdn.openaimerge.com/initialize.js https://cdn.platform.openai.com https://cdn.withpersona.com https://chat.openai.com https://chatgpt.com https://chatgpt.com/ https://chatgpt.com/backend-anon https://chatgpt.com/backend-api https://chatgpt.com/backend/se https://chatgpt.com/public-api https://connect.facebook.net https://docs.google.com https://js.live.net/v7.2/OneDrive.js https://js.stripe.com https://oaistatic.com https://pixel-config.reddit.com https://snap.licdn.com https://snc.apps.openai.com https://www-onepick-opensocial.googleusercontent.com https://www.redditstatic.com https://www.youtube.com wss://*.chatgpt.com wss://*.chatgpt.com/; img-src 'self' * blob: data: https: https://docs.google.com https://drive-thirdparty.googleusercontent.com https://ssl.gstatic.com; style-src 'self' 'unsafe-inline' blob: chatgpt.com/ces https://*.chatgpt.com https://*.chatgpt.com/ https://*.oaistatic.com https://accounts.google.com/gsi/style https://chat.openai.com https://chatgpt.com https://chatgpt.com/ https://chatgpt.com/backend-anon https://chatgpt.com/backend-api https://chatgpt.com/backend/se https://chatgpt.com/public-api https://oaistatic.com https://snc.apps.openai.com wss://*.chatgpt.com wss://*.chatgpt.com/; font-src 'self' data: https://*.oaistatic.com https://cdn.openai.com https://fonts.gstatic.com; connect-src 'self' *.blob.core.windows.net *.oaiusercontent.com api.mapbox.com browser-intake-datadoghq.com chatgpt.com/ces events.mapbox.com https://*.analytics.google.com https://*.chatgpt.com https://*.chatgpt.com/ https://*.google-analytics.com https://*.googletagmanager.com https://*.oaistatic.com https://accounts.google.com https://analytics.tiktok.com https://api.atlassian.com https://api.onedrive.com https://api.stripe.com https://bat.bing.com https://cdn.openai.com/emojibase/ https://cdn.platform.openai.com https://chat.openai.com https://chatgpt.com https://chatgpt.com/ https://chatgpt.com/backend-anon https://chatgpt.com/backend-api https://chatgpt.com/backend/se https://chatgpt.com/public-api https://content.googleapis.com https://docs.google.com https://events.statsigapi.net https://featuregates.org https://graph.microsoft.com https://oaistatic.com https://pixel-config.reddit.com https://px.ads.linkedin.com/ https://realtime.chatgpt-staging.com https://realtime.chatgpt.com https://snc.apps.openai.com https://test-drive-20-1053047382554.us-central1.run.app https://transceiver.api.openai.com https://transceiver.api.openai.org https://www.googleadservices.com https://www.googleapis.com https://www.redditstatic.com statsigapi.net wss://*.chatgpt.com wss://*.chatgpt.com/ wss://*.webpubsub.azure.com; frame-src 'self' challenges.cloudflare.com https://*.js.stripe.com https://*.sharepoint.com https://*.web-sandbox.oaiusercontent.com https://*.withpersona.com https://504-SWE-347.mktoweb.com https://accounts.google.com/gsi https://accounts.google.com/gsi/iframe/select https://auth.openai.com https://cdn.openaimerge.com https://content.googleapis.com https://docs.google.com https://hooks.stripe.com https://js.stripe.com https://onedrive.live.com https://web-sandbox.oaiusercontent.com js.stripe.com player.vimeo.com www.youtube.com; worker-src 'self' blob:; media-src 'self' *.oaiusercontent.com blob: https://cdn.oaistatic.com https://cdn.openai.com https://persistent.oaistatic.com; frame-ancestors 'self' chrome-extension://iaiigpefkbhgjcmcmffmfkpmhemdhdnj; base-uri 'none'; report-to chatgpt-csp; report-uri https://chatgpt.com/ces/v1/telemetry/intake?ddsource=csp-report&dd-api-key=dummy-token", + "referrer": `https://${url1}${origins2}`, + "sample": "", + "sourceFile": `https://${origins}${pageloadresourcehrefs}`, + "statusCode": statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration + }, + "type": "csp-violation", + "url": `https://${origins}/${returnUrl1}/${processorEntity}/${checkoutSessionId}`, + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" + }, + { + "age": "25803", + "body": { + "blockedURL": `https://www.google.com/pagead/form-data/16678058309?gtm=45be63g1v9195075707za200zb9231807798zd9231807798xec&gcd=13l3l3l3l1l1&dma=${variable12}&tag_exp=103116026~103200004~115938466~115938469~116024733~117484252&npa=${variable12}&frm=${variable12}&pscdl=noapi&auid=1190047189.1773809654&uaa=arm&uab=64&uafvl=Not%3AA-Brand;99.0.0.0|Google%20Chrome;145.0.7632.119|Chromium;145.0.7632.119&uamb=${variable12}&uam=&uap=macOS&uapv=26.3.1&uaw=${variable12}&ec_mode=${connectorsBrandingPrivacyPolicy2}&_tu=AAI&em=tv.1~em.84c8997ec1fffbf0288f0e01d9e8c354a2d9041ed2d46eb7da6150b23ba9b05a`, + "columnNumber": "491980", + "disposition": "enforce", + "documentURL": `https://${origins}/${returnUrl1}/${processorEntity}/${checkoutSessionId}`, + "effectiveDirective": "connect-src", + "lineNumber": currencyConfigPromosBusinessOneDollarAmount, + "originalPolicy": "default-src 'self'; script-src 'nonce-173ae874-672e-41c8-9d13-93b6dd0d9f84' 'self' 'wasm-unsafe-eval' chatgpt.com/ces https://*.chatgpt.com https://*.chatgpt.com/ https://*.js.stripe.com https://*.oaistatic.com https://accounts.google.com/gsi/client https://cdn.withpersona.com https://chat.openai.com https://chatgpt.com https://chatgpt.com/ https://chatgpt.com/backend-anon https://chatgpt.com/backend-api https://chatgpt.com/backend/se https://chatgpt.com/public-api https://js.stripe.com https://oaistatic.com https://snc.apps.openai.com wss://*.chatgpt.com wss://*.chatgpt.com/; script-src-elem 'nonce-173ae874-672e-41c8-9d13-93b6dd0d9f84' 'self' 'sha256-eMuh8xiwcX72rRYNAGENurQBAcH7kLlAUQcoOri3BIo=' auth0.openai.com blob: challenges.cloudflare.com chatgpt.com/ces https://*.chatgpt.com https://*.chatgpt.com/ https://*.js.stripe.com https://*.oaistatic.com https://analytics.tiktok.com https://apis.google.com https://bat.bing.com https://cdn.openaimerge.com/initialize.js https://cdn.platform.openai.com https://cdn.withpersona.com https://chat.openai.com https://chatgpt.com https://chatgpt.com/ https://chatgpt.com/backend-anon https://chatgpt.com/backend-api https://chatgpt.com/backend/se https://chatgpt.com/public-api https://connect.facebook.net https://docs.google.com https://js.live.net/v7.2/OneDrive.js https://js.stripe.com https://oaistatic.com https://pixel-config.reddit.com https://snap.licdn.com https://snc.apps.openai.com https://www-onepick-opensocial.googleusercontent.com https://www.redditstatic.com https://www.youtube.com wss://*.chatgpt.com wss://*.chatgpt.com/; img-src 'self' * blob: data: https: https://docs.google.com https://drive-thirdparty.googleusercontent.com https://ssl.gstatic.com; style-src 'self' 'unsafe-inline' blob: chatgpt.com/ces https://*.chatgpt.com https://*.chatgpt.com/ https://*.oaistatic.com https://accounts.google.com/gsi/style https://chat.openai.com https://chatgpt.com https://chatgpt.com/ https://chatgpt.com/backend-anon https://chatgpt.com/backend-api https://chatgpt.com/backend/se https://chatgpt.com/public-api https://oaistatic.com https://snc.apps.openai.com wss://*.chatgpt.com wss://*.chatgpt.com/; font-src 'self' data: https://*.oaistatic.com https://cdn.openai.com https://fonts.gstatic.com; connect-src 'self' *.blob.core.windows.net *.oaiusercontent.com api.mapbox.com browser-intake-datadoghq.com chatgpt.com/ces events.mapbox.com https://*.analytics.google.com https://*.chatgpt.com https://*.chatgpt.com/ https://*.google-analytics.com https://*.googletagmanager.com https://*.oaistatic.com https://accounts.google.com https://analytics.tiktok.com https://api.atlassian.com https://api.onedrive.com https://api.stripe.com https://bat.bing.com https://cdn.openai.com/emojibase/ https://cdn.platform.openai.com https://chat.openai.com https://chatgpt.com https://chatgpt.com/ https://chatgpt.com/backend-anon https://chatgpt.com/backend-api https://chatgpt.com/backend/se https://chatgpt.com/public-api https://content.googleapis.com https://docs.google.com https://events.statsigapi.net https://featuregates.org https://graph.microsoft.com https://oaistatic.com https://pixel-config.reddit.com https://px.ads.linkedin.com/ https://realtime.chatgpt-staging.com https://realtime.chatgpt.com https://snc.apps.openai.com https://test-drive-20-1053047382554.us-central1.run.app https://transceiver.api.openai.com https://transceiver.api.openai.org https://www.googleadservices.com https://www.googleapis.com https://www.redditstatic.com statsigapi.net wss://*.chatgpt.com wss://*.chatgpt.com/ wss://*.webpubsub.azure.com; frame-src 'self' challenges.cloudflare.com https://*.js.stripe.com https://*.sharepoint.com https://*.web-sandbox.oaiusercontent.com https://*.withpersona.com https://504-SWE-347.mktoweb.com https://accounts.google.com/gsi https://accounts.google.com/gsi/iframe/select https://auth.openai.com https://cdn.openaimerge.com https://content.googleapis.com https://docs.google.com https://hooks.stripe.com https://js.stripe.com https://onedrive.live.com https://web-sandbox.oaiusercontent.com js.stripe.com player.vimeo.com www.youtube.com; worker-src 'self' blob:; media-src 'self' *.oaiusercontent.com blob: https://cdn.oaistatic.com https://cdn.openai.com https://persistent.oaistatic.com; frame-ancestors 'self' chrome-extension://iaiigpefkbhgjcmcmffmfkpmhemdhdnj; base-uri 'none'; report-to chatgpt-csp; report-uri https://chatgpt.com/ces/v1/telemetry/intake?ddsource=csp-report&dd-api-key=dummy-token", + "referrer": `https://${url1}${origins2}`, + "sample": "", + "sourceFile": `https://${origins}${pageloadresourcehrefs}`, + "statusCode": statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration + }, + "type": "csp-violation", + "url": `https://${origins}/${returnUrl1}/${processorEntity}/${checkoutSessionId}`, + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" + }, + { + "age": "25821", + "body": { + "blockedURL": `https://www.google.com/ccm/form-data/16679965591?gtm=45be63g1v9210609399za200zb9231807798zd9231807798xec&gcd=13l3l3l3l1l1&dma=${variable12}&tag_exp=103116026~103200004~115938466~115938468~116024733~117484252&npa=${variable12}&frm=${variable12}&pscdl=noapi&auid=1190047189.1773809654&uaa=arm&uab=64&uafvl=Not%3AA-Brand;99.0.0.0|Google%20Chrome;145.0.7632.119|Chromium;145.0.7632.119&uamb=${variable12}&uam=&uap=macOS&uapv=26.3.1&uaw=${variable12}&ec_mode=${connectorsBrandingPrivacyPolicy2}&_tu=AAI&em=tv.1~em.84c8997ec1fffbf0288f0e01d9e8c354a2d9041ed2d46eb7da6150b23ba9b05a&ecsid=136853939.1773809809`, + "columnNumber": "491980", + "disposition": "enforce", + "documentURL": `https://${origins}/${returnUrl1}/${processorEntity}/${checkoutSessionId}`, + "effectiveDirective": "connect-src", + "lineNumber": currencyConfigPromosBusinessOneDollarAmount, + "originalPolicy": "default-src 'self'; script-src 'nonce-173ae874-672e-41c8-9d13-93b6dd0d9f84' 'self' 'wasm-unsafe-eval' chatgpt.com/ces https://*.chatgpt.com https://*.chatgpt.com/ https://*.js.stripe.com https://*.oaistatic.com https://accounts.google.com/gsi/client https://cdn.withpersona.com https://chat.openai.com https://chatgpt.com https://chatgpt.com/ https://chatgpt.com/backend-anon https://chatgpt.com/backend-api https://chatgpt.com/backend/se https://chatgpt.com/public-api https://js.stripe.com https://oaistatic.com https://snc.apps.openai.com wss://*.chatgpt.com wss://*.chatgpt.com/; script-src-elem 'nonce-173ae874-672e-41c8-9d13-93b6dd0d9f84' 'self' 'sha256-eMuh8xiwcX72rRYNAGENurQBAcH7kLlAUQcoOri3BIo=' auth0.openai.com blob: challenges.cloudflare.com chatgpt.com/ces https://*.chatgpt.com https://*.chatgpt.com/ https://*.js.stripe.com https://*.oaistatic.com https://analytics.tiktok.com https://apis.google.com https://bat.bing.com https://cdn.openaimerge.com/initialize.js https://cdn.platform.openai.com https://cdn.withpersona.com https://chat.openai.com https://chatgpt.com https://chatgpt.com/ https://chatgpt.com/backend-anon https://chatgpt.com/backend-api https://chatgpt.com/backend/se https://chatgpt.com/public-api https://connect.facebook.net https://docs.google.com https://js.live.net/v7.2/OneDrive.js https://js.stripe.com https://oaistatic.com https://pixel-config.reddit.com https://snap.licdn.com https://snc.apps.openai.com https://www-onepick-opensocial.googleusercontent.com https://www.redditstatic.com https://www.youtube.com wss://*.chatgpt.com wss://*.chatgpt.com/; img-src 'self' * blob: data: https: https://docs.google.com https://drive-thirdparty.googleusercontent.com https://ssl.gstatic.com; style-src 'self' 'unsafe-inline' blob: chatgpt.com/ces https://*.chatgpt.com https://*.chatgpt.com/ https://*.oaistatic.com https://accounts.google.com/gsi/style https://chat.openai.com https://chatgpt.com https://chatgpt.com/ https://chatgpt.com/backend-anon https://chatgpt.com/backend-api https://chatgpt.com/backend/se https://chatgpt.com/public-api https://oaistatic.com https://snc.apps.openai.com wss://*.chatgpt.com wss://*.chatgpt.com/; font-src 'self' data: https://*.oaistatic.com https://cdn.openai.com https://fonts.gstatic.com; connect-src 'self' *.blob.core.windows.net *.oaiusercontent.com api.mapbox.com browser-intake-datadoghq.com chatgpt.com/ces events.mapbox.com https://*.analytics.google.com https://*.chatgpt.com https://*.chatgpt.com/ https://*.google-analytics.com https://*.googletagmanager.com https://*.oaistatic.com https://accounts.google.com https://analytics.tiktok.com https://api.atlassian.com https://api.onedrive.com https://api.stripe.com https://bat.bing.com https://cdn.openai.com/emojibase/ https://cdn.platform.openai.com https://chat.openai.com https://chatgpt.com https://chatgpt.com/ https://chatgpt.com/backend-anon https://chatgpt.com/backend-api https://chatgpt.com/backend/se https://chatgpt.com/public-api https://content.googleapis.com https://docs.google.com https://events.statsigapi.net https://featuregates.org https://graph.microsoft.com https://oaistatic.com https://pixel-config.reddit.com https://px.ads.linkedin.com/ https://realtime.chatgpt-staging.com https://realtime.chatgpt.com https://snc.apps.openai.com https://test-drive-20-1053047382554.us-central1.run.app https://transceiver.api.openai.com https://transceiver.api.openai.org https://www.googleadservices.com https://www.googleapis.com https://www.redditstatic.com statsigapi.net wss://*.chatgpt.com wss://*.chatgpt.com/ wss://*.webpubsub.azure.com; frame-src 'self' challenges.cloudflare.com https://*.js.stripe.com https://*.sharepoint.com https://*.web-sandbox.oaiusercontent.com https://*.withpersona.com https://504-SWE-347.mktoweb.com https://accounts.google.com/gsi https://accounts.google.com/gsi/iframe/select https://auth.openai.com https://cdn.openaimerge.com https://content.googleapis.com https://docs.google.com https://hooks.stripe.com https://js.stripe.com https://onedrive.live.com https://web-sandbox.oaiusercontent.com js.stripe.com player.vimeo.com www.youtube.com; worker-src 'self' blob:; media-src 'self' *.oaiusercontent.com blob: https://cdn.oaistatic.com https://cdn.openai.com https://persistent.oaistatic.com; frame-ancestors 'self' chrome-extension://iaiigpefkbhgjcmcmffmfkpmhemdhdnj; base-uri 'none'; report-to chatgpt-csp; report-uri https://chatgpt.com/ces/v1/telemetry/intake?ddsource=csp-report&dd-api-key=dummy-token", + "referrer": `https://${url1}${origins2}`, + "sample": "", + "sourceFile": `https://${origins}${pageloadresourcehrefs}`, + "statusCode": statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration + }, + "type": "csp-violation", + "url": `https://${origins}/${returnUrl1}/${processorEntity}/${checkoutSessionId}`, + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" + } + ] + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0491({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + urlAudience, + evaluatedKeysStableid, + accountCookie, + sessionUserId, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + categoriesSubscriptionLevel, + track, + processorEntity, + checkoutSessionId, + oaiScCookie9, + returnUrl, + returnUrl1, + accountsDefaultAccountAccountResidencyRegion, + connectorsBrandingPrivacyPolicy1, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) { + console.log("Executing request 0491") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/telemetry/intake??ddforward=%2Fapi%2Fv2%2Flogs%3Fddsource%3Dbrowser%26dd-api-key%3Dpub1f79f8ac903a5872ae5f53026d20a77c%26dd-evp-origin-version%3D6.22.0%26dd-evp-origin%3Dbrowser%26dd-request-id%3Daa6e0b3f-4006-4c3f-807d-b2991ea5d5ed`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "text/plain;charset=UTF-8", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "no-cors", + "sec-fetch-dest": "empty", + "referer": "https//chatgpt.com/checkout/verify?stripe_session_id=cs_live_a1XaCvZCoIEesvGS7aFlnPORQaFoV8h19Ihj8OnyIZUodOtCkd3hWY4gVM&processor_entity=openai_llc&plan_type=plus", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _fbp=fb.1.1773809654765.70493485518132342; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _dd_s=aid; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie3}; _cfuvid=${cfuvidCookie19}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809835$j52$l0$h0; __cf_bm=IY.p219NVzPQHHn.s0H5DLf8d_gSLwjA6VCaqyz6tU4-1773809836.4379835-1.0.1.1-uTLqNT1nhk3XSWCjqc8TT8aQROZ6um5shGDqB6Db4PfM_pBvf26C0Yb1RR9ZrGkIgYLdFcFaJ8GPoez25gLhs_eG1towMZ2O1qKMAqDjOjf0G8ul5CFTUi2nsaSK9Xwp` + }, + body: JSON.stringify( + { + "view": { + "referrer": `https://${origins}/${returnUrl1}/${processorEntity}/${checkoutSessionId}`, + "url": returnUrl + }, + "service": "chatgpt-web", + "session_id": "799e0f97-a21b-42fe-adde-1c2eac75c706", + "session": { + "id": "799e0f97-a21b-42fe-adde-1c2eac75c706" + }, + "usr": { + "user_id": sessionUserId, + "account_plan_type": categoriesSubscriptionLevel, + "workspace_id": accountCookie, + "residency_region": accountsDefaultAccountAccountResidencyRegion, + "compute_residency": accountsDefaultAccountAccountResidencyRegion, + "anonymous_id": "45ead1a9-904d-460d-ae4f-bd6045b8d46f" + }, + "track": track, + "is_electron_desktop_app": attributeAriaExpanded, + "date": "1773809834831", + "message": "pubsub.fetch-socket-url", + "status": connectorsBrandingPrivacyPolicy1, + "origin": "logger", + "logger": { + "name": "pubsub-client" + }, + "oai": { + "skip_upstream": variable4 + }, + "ddtags": "sdk_version:6.22.0,env:prod,service:chatgpt-web,version:5b2bbe37728e132c3e9c1de50cf962309a035974" + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0494({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + object, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) { + console.log("Executing request 0494") + const response = await fetch( + `https://${origins}/backend-api/settings/${object}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/settings/user", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/settings/user", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _fbp=fb.1.1773809654765.70493485518132342; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie3}; _cfuvid=${cfuvidCookie19}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809835$j52$l0$h0; __cf_bm=IY.p219NVzPQHHn.s0H5DLf8d_gSLwjA6VCaqyz6tU4-1773809836.4379835-1.0.1.1-uTLqNT1nhk3XSWCjqc8TT8aQROZ6um5shGDqB6Db4PfM_pBvf26C0Yb1RR9ZrGkIgYLdFcFaJ8GPoez25gLhs_eG1towMZ2O1qKMAqDjOjf0G8ul5CFTUi2nsaSK9Xwp; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0495({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19, + connectorsSupportedAuthOidcScopesSupported2 + }) { + console.log("Executing request 0495") + const response = await fetch( + `https://${origins}/backend-api/system_hints?mode=${connectorsSupportedAuthOidcScopesSupported2}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/system_hints", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/system_hints", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _fbp=fb.1.1773809654765.70493485518132342; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie3}; _cfuvid=${cfuvidCookie19}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809835$j52$l0$h0; __cf_bm=IY.p219NVzPQHHn.s0H5DLf8d_gSLwjA6VCaqyz6tU4-1773809836.4379835-1.0.1.1-uTLqNT1nhk3XSWCjqc8TT8aQROZ6um5shGDqB6Db4PfM_pBvf26C0Yb1RR9ZrGkIgYLdFcFaJ8GPoez25gLhs_eG1towMZ2O1qKMAqDjOjf0G8ul5CFTUi2nsaSK9Xwp; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0496({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) { + console.log("Executing request 0496") + const response = await fetch( + `https://${origins}/backend-api/me`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/me", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/me", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _fbp=fb.1.1773809654765.70493485518132342; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie3}; _cfuvid=${cfuvidCookie19}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809835$j52$l0$h0; __cf_bm=IY.p219NVzPQHHn.s0H5DLf8d_gSLwjA6VCaqyz6tU4-1773809836.4379835-1.0.1.1-uTLqNT1nhk3XSWCjqc8TT8aQROZ6um5shGDqB6Db4PfM_pBvf26C0Yb1RR9ZrGkIgYLdFcFaJ8GPoez25gLhs_eG1towMZ2O1qKMAqDjOjf0G8ul5CFTUi2nsaSK9Xwp; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + cfuvidCookie20: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '_cfuvid').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0496({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) { + console.log("Executing request 0496") + const response = await fetch( + `https://${origins}/backend-api/system_hints??mode=connectors`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/system_hints", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/system_hints", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _fbp=fb.1.1773809654765.70493485518132342; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie3}; _cfuvid=${cfuvidCookie19}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809835$j52$l0$h0; __cf_bm=IY.p219NVzPQHHn.s0H5DLf8d_gSLwjA6VCaqyz6tU4-1773809836.4379835-1.0.1.1-uTLqNT1nhk3XSWCjqc8TT8aQROZ6um5shGDqB6Db4PfM_pBvf26C0Yb1RR9ZrGkIgYLdFcFaJ8GPoez25gLhs_eG1towMZ2O1qKMAqDjOjf0G8ul5CFTUi2nsaSK9Xwp; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0496({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + url4, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) { + console.log("Executing request 0496") + const response = await fetch( + `https://${origins}/backend-api/${url4}/check/v4-2023-04-27??timezone_offset_min=-480`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/accounts/check/v4-2023-04-27", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/accounts/check/{version}", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _fbp=fb.1.1773809654765.70493485518132342; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie3}; _cfuvid=${cfuvidCookie19}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809835$j52$l0$h0; __cf_bm=IY.p219NVzPQHHn.s0H5DLf8d_gSLwjA6VCaqyz6tU4-1773809836.4379835-1.0.1.1-uTLqNT1nhk3XSWCjqc8TT8aQROZ6um5shGDqB6Db4PfM_pBvf26C0Yb1RR9ZrGkIgYLdFcFaJ8GPoez25gLhs_eG1towMZ2O1qKMAqDjOjf0G8ul5CFTUi2nsaSK9Xwp; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0496({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) { + console.log("Executing request 0496") + const response = await fetch( + `https://${origins}/backend-api/sentinel/chat-requirements/prepare`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/sentinel/chat-requirements/prepare", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/sentinel/chat-requirements/prepare", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "content-type": attributeType, + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _fbp=fb.1.1773809654765.70493485518132342; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie3}; _cfuvid=${cfuvidCookie19}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809835$j52$l0$h0; __cf_bm=IY.p219NVzPQHHn.s0H5DLf8d_gSLwjA6VCaqyz6tU4-1773809836.4379835-1.0.1.1-uTLqNT1nhk3XSWCjqc8TT8aQROZ6um5shGDqB6Db4PfM_pBvf26C0Yb1RR9ZrGkIgYLdFcFaJ8GPoez25gLhs_eG1towMZ2O1qKMAqDjOjf0G8ul5CFTUi2nsaSK9Xwp; _dd_s=aid` + }, + body: "{\"p\":\"gAAAAACWzQwMDAsIldlZCBNYXIgMTggMjAyNiAxMjo1NzoxOCBHTVQrMDgwMCAo5Lit5Zu95qCH5YeG5pe26Ze0KSIsNDI5NDk2NzI5NiwxLCJNb3ppbGxhLzUuMCAoTWFjaW50b3NoOyBJbnRlbCBNYWMgT1MgWCAxMF8xNV83KSBBcHBsZVdlYktpdC81MzcuMzYgKEtIVE1MLCBsaWtlIEdlY2tvKSBDaHJvbWUvMTQ1LjAuMC4wIFNhZmFyaS81MzcuMzYiLG51bGwsInByb2QtNWIyYmJlMzc3MjhlMTMyYzNlOWMxZGU1MGNmOTYyMzA5YTAzNTk3NCIsInpoLUNOIiwiemgtQ04semgiLDAuNSwidXNlckFnZW50RGF0YeKIkltvYmplY3QgTmF2aWdhdG9yVUFEYXRhXSIsIl9yZWFjdExpc3RlbmluZ2oyNDc4eDU3cXBoIiwib25jb250ZXh0bG9zdCIsNDY2OS41LCI5ZWE2NzAxOC00ZmRmLTQwNDktOWI3Mi01OTk3MTFhOTdiNGEiLCIiLDgsMTc3MzgwOTgzMzM2OS41LDAsMCwwLDAsMCwwLDBd\"}" + } + ) + const body = await response.text() + return { + oaiScCookie10: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === 'oai-sc').split("=")[1].split(";")[0].trim(), + cfBmCookie16: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '__cf_bm').split("=")[1].split(";")[0].trim(), + prepareToken2: JSON.parse(body)["prepare_token"] + } + } + async function executeRequest0497({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + object, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19, + statsigpayloadDynamicConfigs3131667714ValueRegions, + connectorsSupportedAuthAuthorizationUrl + }) { + console.log("Executing request 0497") + const response = await fetch( + `https://${origins}/backend-api/${statsigpayloadDynamicConfigs3131667714ValueRegions}/${connectorsSupportedAuthAuthorizationUrl}/${object}/connection_status`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/ca/v2/user/connection_status", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/ca/v2/user/connection_status", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _fbp=fb.1.1773809654765.70493485518132342; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie3}; _cfuvid=${cfuvidCookie19}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809835$j52$l0$h0; __cf_bm=IY.p219NVzPQHHn.s0H5DLf8d_gSLwjA6VCaqyz6tU4-1773809836.4379835-1.0.1.1-uTLqNT1nhk3XSWCjqc8TT8aQROZ6um5shGDqB6Db4PfM_pBvf26C0Yb1RR9ZrGkIgYLdFcFaJ8GPoez25gLhs_eG1towMZ2O1qKMAqDjOjf0G8ul5CFTUi2nsaSK9Xwp; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0497({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueOutdatedRoomBootstrapMessagesCount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19, + connectorsKeywordsForDiscovery2 + }) { + console.log("Executing request 0497") + const response = await fetch( + `https://${origins}/backend-api/pins?limit=${statsigpayloadDynamicConfigs216497991ValueOutdatedRoomBootstrapMessagesCount}&item_type=${connectorsKeywordsForDiscovery2}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/pins", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/pins", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _fbp=fb.1.1773809654765.70493485518132342; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie3}; _cfuvid=${cfuvidCookie19}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809835$j52$l0$h0; __cf_bm=IY.p219NVzPQHHn.s0H5DLf8d_gSLwjA6VCaqyz6tU4-1773809836.4379835-1.0.1.1-uTLqNT1nhk3XSWCjqc8TT8aQROZ6um5shGDqB6Db4PfM_pBvf26C0Yb1RR9ZrGkIgYLdFcFaJ8GPoez25gLhs_eG1towMZ2O1qKMAqDjOjf0G8ul5CFTUi2nsaSK9Xwp; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0497({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) { + console.log("Executing request 0497") + const response = await fetch( + `https://${origins}/backend-api/user_system_messages`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/user_system_messages", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/user_system_messages", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _fbp=fb.1.1773809654765.70493485518132342; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie3}; _cfuvid=${cfuvidCookie19}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809835$j52$l0$h0; __cf_bm=IY.p219NVzPQHHn.s0H5DLf8d_gSLwjA6VCaqyz6tU4-1773809836.4379835-1.0.1.1-uTLqNT1nhk3XSWCjqc8TT8aQROZ6um5shGDqB6Db4PfM_pBvf26C0Yb1RR9ZrGkIgYLdFcFaJ8GPoez25gLhs_eG1towMZ2O1qKMAqDjOjf0G8ul5CFTUi2nsaSK9Xwp; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0497({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) { + console.log("Executing request 0497") + const response = await fetch( + `https://${origins}/backend-api/models?iim=${attributeAriaExpanded}&is_gizmo=${attributeAriaExpanded}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/models", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/models", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _fbp=fb.1.1773809654765.70493485518132342; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie3}; _cfuvid=${cfuvidCookie19}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809835$j52$l0$h0; __cf_bm=IY.p219NVzPQHHn.s0H5DLf8d_gSLwjA6VCaqyz6tU4-1773809836.4379835-1.0.1.1-uTLqNT1nhk3XSWCjqc8TT8aQROZ6um5shGDqB6Db4PfM_pBvf26C0Yb1RR9ZrGkIgYLdFcFaJ8GPoez25gLhs_eG1towMZ2O1qKMAqDjOjf0G8ul5CFTUi2nsaSK9Xwp; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + puidCookie: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '_puid').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0498({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) { + console.log("Executing request 0498") + const response = await fetch( + `https://${origins}/backend-api/gizmos/snorlax/sidebar?owned_only=${variable4}&conversations_per_gizmo=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/gizmos/snorlax/sidebar", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/gizmos/snorlax/sidebar", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _fbp=fb.1.1773809654765.70493485518132342; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie3}; _cfuvid=${cfuvidCookie19}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809835$j52$l0$h0; __cf_bm=IY.p219NVzPQHHn.s0H5DLf8d_gSLwjA6VCaqyz6tU4-1773809836.4379835-1.0.1.1-uTLqNT1nhk3XSWCjqc8TT8aQROZ6um5shGDqB6Db4PfM_pBvf26C0Yb1RR9ZrGkIgYLdFcFaJ8GPoez25gLhs_eG1towMZ2O1qKMAqDjOjf0G8ul5CFTUi2nsaSK9Xwp; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0498({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) { + console.log("Executing request 0498") + const response = await fetch( + `https://${origins}/backend-api/gizmos/bootstrap?limit=${statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/gizmos/bootstrap", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/gizmos/bootstrap", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _fbp=fb.1.1773809654765.70493485518132342; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie3}; _cfuvid=${cfuvidCookie19}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809835$j52$l0$h0; __cf_bm=IY.p219NVzPQHHn.s0H5DLf8d_gSLwjA6VCaqyz6tU4-1773809836.4379835-1.0.1.1-uTLqNT1nhk3XSWCjqc8TT8aQROZ6um5shGDqB6Db4PfM_pBvf26C0Yb1RR9ZrGkIgYLdFcFaJ8GPoez25gLhs_eG1towMZ2O1qKMAqDjOjf0G8ul5CFTUi2nsaSK9Xwp; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0499({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) { + console.log("Executing request 0499") + const response = await fetch( + `https://${origins}/backend-api/conversation/init`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/conversation/init", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/conversation/init", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "content-type": attributeType, + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _fbp=fb.1.1773809654765.70493485518132342; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie3}; _cfuvid=${cfuvidCookie19}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809835$j52$l0$h0; __cf_bm=IY.p219NVzPQHHn.s0H5DLf8d_gSLwjA6VCaqyz6tU4-1773809836.4379835-1.0.1.1-uTLqNT1nhk3XSWCjqc8TT8aQROZ6um5shGDqB6Db4PfM_pBvf26C0Yb1RR9ZrGkIgYLdFcFaJ8GPoez25gLhs_eG1towMZ2O1qKMAqDjOjf0G8ul5CFTUi2nsaSK9Xwp; _dd_s=aid` + }, + body: JSON.stringify( + { + "gizmo_id": null, + "requested_default_model": null, + "conversation_id": null, + "timezone_offset_min": "-480" + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0499({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + attributeContent, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19, + connectorsBrandingPrivacyPolicy3 + }) { + console.log("Executing request 0499") + const response = await fetch( + `https://${origins}/backend-api/calpico/${attributeContent}/rooms/${connectorsBrandingPrivacyPolicy3}?limit=${statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb}&include_pinned=${variable4}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/calpico/chatgpt/rooms/summary", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/calpico/chatgpt/rooms/summary", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _fbp=fb.1.1773809654765.70493485518132342; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie3}; _cfuvid=${cfuvidCookie19}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809835$j52$l0$h0; __cf_bm=IY.p219NVzPQHHn.s0H5DLf8d_gSLwjA6VCaqyz6tU4-1773809836.4379835-1.0.1.1-uTLqNT1nhk3XSWCjqc8TT8aQROZ6um5shGDqB6Db4PfM_pBvf26C0Yb1RR9ZrGkIgYLdFcFaJ8GPoez25gLhs_eG1towMZ2O1qKMAqDjOjf0G8ul5CFTUi2nsaSK9Xwp; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + cfBmCookie15: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '__cf_bm').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0499({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserId, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) { + console.log("Executing request 0499") + const response = await fetch( + `https://${origins}/backend-api/aip/connectors/links/list_accessible`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/aip/connectors/links/list_accessible", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/aip/connectors/links/list_accessible", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "content-type": attributeType, + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _fbp=fb.1.1773809654765.70493485518132342; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie3}; _cfuvid=${cfuvidCookie19}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809835$j52$l0$h0; __cf_bm=IY.p219NVzPQHHn.s0H5DLf8d_gSLwjA6VCaqyz6tU4-1773809836.4379835-1.0.1.1-uTLqNT1nhk3XSWCjqc8TT8aQROZ6um5shGDqB6Db4PfM_pBvf26C0Yb1RR9ZrGkIgYLdFcFaJ8GPoez25gLhs_eG1towMZ2O1qKMAqDjOjf0G8ul5CFTUi2nsaSK9Xwp; _dd_s=aid` + }, + body: JSON.stringify( + { + "principals": [ + { + "type": "USER", + "id": sessionUserId + } + ], + "link_refresh_strategy": "BLOCKING" + } + ) + } + ) + const body = await response.text() + return { + cfuvidCookie23: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '_cfuvid').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0500({ + variable12, + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadLayerConfigs3850010910ValuePlusGracePeriodDays, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) { + console.log("Executing request 0500") + const response = await fetch( + `https://${origins}/backend-api/conversations?offset=${variable12}&limit=${statsigpayloadLayerConfigs3850010910ValuePlusGracePeriodDays}&order=updated&is_archived=${attributeAriaExpanded}&is_starred=${attributeAriaExpanded}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/conversations", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/conversations", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _fbp=fb.1.1773809654765.70493485518132342; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie3}; _cfuvid=${cfuvidCookie19}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809835$j52$l0$h0; __cf_bm=IY.p219NVzPQHHn.s0H5DLf8d_gSLwjA6VCaqyz6tU4-1773809836.4379835-1.0.1.1-uTLqNT1nhk3XSWCjqc8TT8aQROZ6um5shGDqB6Db4PfM_pBvf26C0Yb1RR9ZrGkIgYLdFcFaJ8GPoez25gLhs_eG1towMZ2O1qKMAqDjOjf0G8ul5CFTUi2nsaSK9Xwp; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0500({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueOutdatedRoomBootstrapMessagesCount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) { + console.log("Executing request 0500") + const response = await fetch( + `https://${origins}/backend-api/pins?limit=${statsigpayloadDynamicConfigs216497991ValueOutdatedRoomBootstrapMessagesCount}&item_type=conversation`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/pins", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/pins", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _fbp=fb.1.1773809654765.70493485518132342; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie3}; _cfuvid=${cfuvidCookie19}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809835$j52$l0$h0; __cf_bm=IY.p219NVzPQHHn.s0H5DLf8d_gSLwjA6VCaqyz6tU4-1773809836.4379835-1.0.1.1-uTLqNT1nhk3XSWCjqc8TT8aQROZ6um5shGDqB6Db4PfM_pBvf26C0Yb1RR9ZrGkIgYLdFcFaJ8GPoez25gLhs_eG1towMZ2O1qKMAqDjOjf0G8ul5CFTUi2nsaSK9Xwp; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0501({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) { + console.log("Executing request 0501") + const response = await fetch( + `https://${origins}/backend-api/client/strings`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/client/strings", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/client/strings", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _fbp=fb.1.1773809654765.70493485518132342; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie3}; _cfuvid=${cfuvidCookie19}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809835$j52$l0$h0; __cf_bm=IY.p219NVzPQHHn.s0H5DLf8d_gSLwjA6VCaqyz6tU4-1773809836.4379835-1.0.1.1-uTLqNT1nhk3XSWCjqc8TT8aQROZ6um5shGDqB6Db4PfM_pBvf26C0Yb1RR9ZrGkIgYLdFcFaJ8GPoez25gLhs_eG1towMZ2O1qKMAqDjOjf0G8ul5CFTUi2nsaSK9Xwp; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0502({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs1967546325ValueGdrivepercentage, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserId, + statsigpayloadLayerConfigs109457ValueOnboardingStyle, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) { + console.log("Executing request 0502") + const response = await fetch( + `https://${origins}/backend-api/aip/connectors/links/list_accessible`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "oai-product-sku": "SLURM", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/aip/connectors/links/list_accessible", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/aip/connectors/links/list_accessible", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "content-type": attributeType, + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _fbp=fb.1.1773809654765.70493485518132342; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie3}; _cfuvid=${cfuvidCookie19}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809835$j52$l0$h0; __cf_bm=IY.p219NVzPQHHn.s0H5DLf8d_gSLwjA6VCaqyz6tU4-1773809836.4379835-1.0.1.1-uTLqNT1nhk3XSWCjqc8TT8aQROZ6um5shGDqB6Db4PfM_pBvf26C0Yb1RR9ZrGkIgYLdFcFaJ8GPoez25gLhs_eG1towMZ2O1qKMAqDjOjf0G8ul5CFTUi2nsaSK9Xwp; _dd_s=aid` + }, + body: JSON.stringify( + { + "principals": [ + { + "type": "USER", + "id": sessionUserId + } + ], + "link_refresh_strategy": statsigpayloadLayerConfigs109457ValueOnboardingStyle + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0503({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + variable98, + secureNextAuthSessionTokenCookie3, + attributeHref11, + cfuvidCookie20, + oaiScCookie10, + puidCookie, + firstName, + cfBmCookie15 + }) { + console.log("Executing request 0503") + const response = await fetch( + `https://${origins}${attributeHref11}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"macOS\"", + "upgrade-insecure-requests": currencyConfigPromosBusinessOneDollarAmount, + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "navigate", + "sec-fetch-user": variable98, + "sec-fetch-dest": "document", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; _fbp=fb.1.1773809654765.70493485518132342; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie3}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809838$j49$l0$h0; _cfuvid=${cfuvidCookie20}; oai-sc=${oaiScCookie10}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809842684" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _puid=${puidCookie}; oai-gn=${firstName}; __cf_bm=${cfBmCookie15}; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + variable118: JSON.parse(acorn.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[12].childNodes[0].childNodes[0].textContent,{ecmaVersion: 2020})["body"]["0"]["expression"]["arguments"]["0"])[103][0], + 93: JSON.parse(acorn.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[12].childNodes[0].childNodes[0].textContent,{ecmaVersion: 2020})["body"]["0"]["expression"]["arguments"]["0"])[144]["_93"], + 58: JSON.parse(acorn.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[12].childNodes[0].childNodes[0].textContent,{ecmaVersion: 2020})["body"]["0"]["expression"]["arguments"]["0"])[261]["_58"], + variable116: JSON.parse(acorn.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[12].childNodes[0].childNodes[0].textContent,{ecmaVersion: 2020})["body"]["0"]["expression"]["arguments"]["0"])[90], + secureNextAuthSessionTokenCookie4: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '__Secure-next-auth.session-token').split("=")[1].split(";")[0].trim(), + cfuvidCookie21: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '_cfuvid').split("=")[1].split(";")[0].trim(), + variable120: JSON.parse(acorn.parse(xmlParser.parseFromString(body,"text/xml").documentElement.childNodes[1].childNodes[12].childNodes[0].childNodes[0].textContent,{ecmaVersion: 2020})["body"]["0"]["expression"]["arguments"]["0"])[108] + } + } + async function executeRequest0504({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserId, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) { + console.log("Executing request 0504") + const response = await fetch( + `https://${origins}/backend-api/aip/connectors/list_accessible?skip_actions=${variable4}&external_logos=${variable4}`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "oai-product-sku": "SLURM", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/aip/connectors/list_accessible", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/aip/connectors/list_accessible", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "content-type": attributeType, + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _fbp=fb.1.1773809654765.70493485518132342; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie3}; _cfuvid=${cfuvidCookie19}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809835$j52$l0$h0; __cf_bm=IY.p219NVzPQHHn.s0H5DLf8d_gSLwjA6VCaqyz6tU4-1773809836.4379835-1.0.1.1-uTLqNT1nhk3XSWCjqc8TT8aQROZ6um5shGDqB6Db4PfM_pBvf26C0Yb1RR9ZrGkIgYLdFcFaJ8GPoez25gLhs_eG1towMZ2O1qKMAqDjOjf0G8ul5CFTUi2nsaSK9Xwp; _dd_s=aid` + }, + body: JSON.stringify( + { + "principals": [ + { + "type": "USER", + "id": sessionUserId + } + ] + } + ) + } + ) + const body = await response.text() + return { + cfBmCookie17: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '__cf_bm').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0506({ + currencyConfigPromosBusinessOneDollarAmount, + attributeWidth, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) { + console.log("Executing request 0506") + const response = await fetch( + `https://${origins}/backend-api/amphora/notifications?limit=${attributeWidth}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/amphora/notifications", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/amphora/notifications", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _fbp=fb.1.1773809654765.70493485518132342; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie3}; _cfuvid=${cfuvidCookie19}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809835$j52$l0$h0; __cf_bm=IY.p219NVzPQHHn.s0H5DLf8d_gSLwjA6VCaqyz6tU4-1773809836.4379835-1.0.1.1-uTLqNT1nhk3XSWCjqc8TT8aQROZ6um5shGDqB6Db4PfM_pBvf26C0Yb1RR9ZrGkIgYLdFcFaJ8GPoez25gLhs_eG1towMZ2O1qKMAqDjOjf0G8ul5CFTUi2nsaSK9Xwp; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0506({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + connectorsBrandingWebsite, + variable26, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) { + console.log("Executing request 0506") + const response = await fetch( + `https://${origins}/backend-api/beacons/${connectorsBrandingWebsite}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "cache-control": variable26, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/beacons/home", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/beacons/home", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _fbp=fb.1.1773809654765.70493485518132342; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie3}; _cfuvid=${cfuvidCookie19}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809835$j52$l0$h0; __cf_bm=IY.p219NVzPQHHn.s0H5DLf8d_gSLwjA6VCaqyz6tU4-1773809836.4379835-1.0.1.1-uTLqNT1nhk3XSWCjqc8TT8aQROZ6um5shGDqB6Db4PfM_pBvf26C0Yb1RR9ZrGkIgYLdFcFaJ8GPoez25gLhs_eG1towMZ2O1qKMAqDjOjf0G8ul5CFTUi2nsaSK9Xwp; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + cfuvidCookie22: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '_cfuvid').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0507({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + connectorsBrandingTermsOfService, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) { + console.log("Executing request 0507") + const response = await fetch( + `https://${origins}/backend-api/${connectorsBrandingTermsOfService}/bootstrap`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/images/bootstrap", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/images/bootstrap", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _fbp=fb.1.1773809654765.70493485518132342; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie3}; _cfuvid=${cfuvidCookie19}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809835$j52$l0$h0; __cf_bm=IY.p219NVzPQHHn.s0H5DLf8d_gSLwjA6VCaqyz6tU4-1773809836.4379835-1.0.1.1-uTLqNT1nhk3XSWCjqc8TT8aQROZ6um5shGDqB6Db4PfM_pBvf26C0Yb1RR9ZrGkIgYLdFcFaJ8GPoez25gLhs_eG1towMZ2O1qKMAqDjOjf0G8ul5CFTUi2nsaSK9Xwp; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0507({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) { + console.log("Executing request 0507") + const response = await fetch( + `https://${origins}/backend-api/connectors/check??connector_names=gdrive&connector_names=o365_personal&connector_names=o365_business`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/connectors/check", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/connectors/check", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _fbp=fb.1.1773809654765.70493485518132342; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie3}; _cfuvid=${cfuvidCookie19}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809835$j52$l0$h0; __cf_bm=IY.p219NVzPQHHn.s0H5DLf8d_gSLwjA6VCaqyz6tU4-1773809836.4379835-1.0.1.1-uTLqNT1nhk3XSWCjqc8TT8aQROZ6um5shGDqB6Db4PfM_pBvf26C0Yb1RR9ZrGkIgYLdFcFaJ8GPoez25gLhs_eG1towMZ2O1qKMAqDjOjf0G8ul5CFTUi2nsaSK9Xwp; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0507({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) { + console.log("Executing request 0507") + const response = await fetch( + `https://${origins}/backend-api/settings/voices`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/settings/voices", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/settings/voices", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _fbp=fb.1.1773809654765.70493485518132342; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie3}; _cfuvid=${cfuvidCookie19}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809835$j52$l0$h0; __cf_bm=IY.p219NVzPQHHn.s0H5DLf8d_gSLwjA6VCaqyz6tU4-1773809836.4379835-1.0.1.1-uTLqNT1nhk3XSWCjqc8TT8aQROZ6um5shGDqB6Db4PfM_pBvf26C0Yb1RR9ZrGkIgYLdFcFaJ8GPoez25gLhs_eG1towMZ2O1qKMAqDjOjf0G8ul5CFTUi2nsaSK9Xwp; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + cfBmCookie18: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '__cf_bm').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0509({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + state, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) { + console.log("Executing request 0509") + const response = await fetch( + `https://${origins}/backend-api/user_surveys/${state}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/user_surveys/active", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/user_surveys/active", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _fbp=fb.1.1773809654765.70493485518132342; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie3}; _cfuvid=${cfuvidCookie19}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809835$j52$l0$h0; __cf_bm=IY.p219NVzPQHHn.s0H5DLf8d_gSLwjA6VCaqyz6tU4-1773809836.4379835-1.0.1.1-uTLqNT1nhk3XSWCjqc8TT8aQROZ6um5shGDqB6Db4PfM_pBvf26C0Yb1RR9ZrGkIgYLdFcFaJ8GPoez25gLhs_eG1towMZ2O1qKMAqDjOjf0G8ul5CFTUi2nsaSK9Xwp; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0509({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + object, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) { + console.log("Executing request 0509") + const response = await fetch( + `https://${origins}/backend-api/celsius/ws/${object}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/celsius/ws/user", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/celsius/ws/user", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _fbp=fb.1.1773809654765.70493485518132342; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie3}; _cfuvid=${cfuvidCookie19}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809835$j52$l0$h0; __cf_bm=IY.p219NVzPQHHn.s0H5DLf8d_gSLwjA6VCaqyz6tU4-1773809836.4379835-1.0.1.1-uTLqNT1nhk3XSWCjqc8TT8aQROZ6um5shGDqB6Db4PfM_pBvf26C0Yb1RR9ZrGkIgYLdFcFaJ8GPoez25gLhs_eG1towMZ2O1qKMAqDjOjf0G8ul5CFTUi2nsaSK9Xwp; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0509({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + urlAudience, + evaluatedKeysStableid, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + connectorsKeywordsForDiscovery1, + secureNextAuthSessionTokenCookie3, + cfuvidCookie20, + oaiScCookie10, + cfBmCookie16 + }) { + console.log("Executing request 0509") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/${connectorsKeywordsForDiscovery1}/oai/settings`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; _fbp=fb.1.1773809654765.70493485518132342; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie3}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809838$j49$l0$h0; _dd_s=aid; _cfuvid=${cfuvidCookie20}; oai-sc=${oaiScCookie10}; __cf_bm=${cfBmCookie16}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809842684" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0509({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) { + console.log("Executing request 0509") + const response = await fetch( + `https://${origins}/backend-api/checkout_pricing_config/countries`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/checkout_pricing_config/countries", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/checkout_pricing_config/countries", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _fbp=fb.1.1773809654765.70493485518132342; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie3}; _cfuvid=${cfuvidCookie19}; __cf_bm=IY.p219NVzPQHHn.s0H5DLf8d_gSLwjA6VCaqyz6tU4-1773809836.4379835-1.0.1.1-uTLqNT1nhk3XSWCjqc8TT8aQROZ6um5shGDqB6Db4PfM_pBvf26C0Yb1RR9ZrGkIgYLdFcFaJ8GPoez25gLhs_eG1towMZ2O1qKMAqDjOjf0G8ul5CFTUi2nsaSK9Xwp; _dd_s=aid; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809838$j49$l0$h0` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0509({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + connectorsBrandingWebsite1, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) { + console.log("Executing request 0509") + const response = await fetch( + `https://${origins}/backend-api/${connectorsBrandingWebsite1}/sources_dropdown`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/apps/sources_dropdown", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/apps/sources_dropdown", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809630141" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _fbp=fb.1.1773809654765.70493485518132342; oai-sc=${oaiScCookie9}; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie3}; _cfuvid=${cfuvidCookie19}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809835$j52$l0$h0; __cf_bm=IY.p219NVzPQHHn.s0H5DLf8d_gSLwjA6VCaqyz6tU4-1773809836.4379835-1.0.1.1-uTLqNT1nhk3XSWCjqc8TT8aQROZ6um5shGDqB6Db4PfM_pBvf26C0Yb1RR9ZrGkIgYLdFcFaJ8GPoez25gLhs_eG1towMZ2O1qKMAqDjOjf0G8ul5CFTUi2nsaSK9Xwp; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + cfBmCookie19: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '__cf_bm').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0510({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + secureNextAuthSessionTokenCookie3, + cfuvidCookie20, + oaiScCookie10, + cfBmCookie16 + }) { + console.log("Executing request 0510") + const response = await fetch( + `https://${origins}/backend-api/memories?exclusive_to_gizmo=${attributeAriaExpanded}&include_memory_entries=${attributeAriaExpanded}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/memories", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/memories", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; _fbp=fb.1.1773809654765.70493485518132342; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie3}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809838$j49$l0$h0; _dd_s=aid; _cfuvid=${cfuvidCookie20}; oai-sc=${oaiScCookie10}; __cf_bm=${cfBmCookie16}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809842684" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0512({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + connectorsKeywordsForDiscovery, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + secureNextAuthSessionTokenCookie3, + cfuvidCookie20, + oaiScCookie10, + cfBmCookie16 + }) { + console.log("Executing request 0512") + const response = await fetch( + `https://${origins}/backend-api/${connectorsKeywordsForDiscovery}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/tasks", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/tasks", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; _fbp=fb.1.1773809654765.70493485518132342; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie3}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809838$j49$l0$h0; _dd_s=aid; _cfuvid=${cfuvidCookie20}; oai-sc=${oaiScCookie10}; __cf_bm=${cfBmCookie16}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809842684" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0513({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + secureNextAuthSessionTokenCookie3, + cfuvidCookie20, + oaiScCookie10, + cfBmCookie16 + }) { + console.log("Executing request 0513") + const response = await fetch( + `https://${origins}/public-api/conversation_limit`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/public/conversation_limit", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/public/conversation_limit", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; _fbp=fb.1.1773809654765.70493485518132342; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie3}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809838$j49$l0$h0; _dd_s=aid; _cfuvid=${cfuvidCookie20}; oai-sc=${oaiScCookie10}; __cf_bm=${cfBmCookie16}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809842684" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0513({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + secureNextAuthSessionTokenCookie3, + cfuvidCookie20, + oaiScCookie10, + cfBmCookie16 + }) { + console.log("Executing request 0513") + const response = await fetch( + `https://${origins}/backend-api/user_segments`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/user_segments", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/user_segments", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; _fbp=fb.1.1773809654765.70493485518132342; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie3}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809838$j49$l0$h0; _dd_s=aid; _cfuvid=${cfuvidCookie20}; oai-sc=${oaiScCookie10}; __cf_bm=${cfBmCookie16}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809842684" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0513({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + accountCookie, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + secureNextAuthSessionTokenCookie3, + cfuvidCookie20, + oaiScCookie10, + cfBmCookie16 + }) { + console.log("Executing request 0513") + const response = await fetch( + `https://${origins}/backend-api/subscriptions?account_id=${accountCookie}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/subscriptions", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/subscriptions", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; _fbp=fb.1.1773809654765.70493485518132342; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie3}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809838$j49$l0$h0; _dd_s=aid; _cfuvid=${cfuvidCookie20}; oai-sc=${oaiScCookie10}; __cf_bm=${cfBmCookie16}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809842684" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0514({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + secureNextAuthSessionTokenCookie3, + cfuvidCookie20, + oaiScCookie10, + cfBmCookie16, + prepareToken2 + }) { + console.log("Executing request 0514") + const response = await fetch( + `https://${origins}/backend-api/sentinel/chat-requirements/finalize`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/sentinel/chat-requirements/finalize", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/sentinel/chat-requirements/finalize", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "content-type": attributeType, + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; _fbp=fb.1.1773809654765.70493485518132342; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie3}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809838$j49$l0$h0; _dd_s=aid; _cfuvid=${cfuvidCookie20}; oai-sc=${oaiScCookie10}; __cf_bm=${cfBmCookie16}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809842684" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}` + }, + body: JSON.stringify( + { + "prepare_token": prepareToken2, + "proofofwork": "gAAAAABWzQwMDAsIldlZCBNYXIgMTggMjAyNiAxMjo1NzoyMiBHTVQrMDgwMCAo5Lit5Zu95qCH5YeG5pe26Ze0KSIsNDI5NDk2NzI5Niw5LCJNb3ppbGxhLzUuMCAoTWFjaW50b3NoOyBJbnRlbCBNYWMgT1MgWCAxMF8xNV83KSBBcHBsZVdlYktpdC81MzcuMzYgKEtIVE1MLCBsaWtlIEdlY2tvKSBDaHJvbWUvMTQ1LjAuMC4wIFNhZmFyaS81MzcuMzYiLCJodHRwczovL3d3dy5nb29nbGV0YWdtYW5hZ2VyLmNvbS9ndGFnL2pzP2lkPUctOVNIQlNLMkQ5SiIsInByb2QtNWIyYmJlMzc3MjhlMTMyYzNlOWMxZGU1MGNmOTYyMzA5YTAzNTk3NCIsInpoLUNOIiwiemgtQ04semgiLDEsImNsZWFyT3JpZ2luSm9pbmVkQWRJbnRlcmVzdEdyb3Vwc+KIkmZ1bmN0aW9uIGNsZWFyT3JpZ2luSm9pbmVkQWRJbnRlcmVzdEdyb3VwcygpIHsgW25hdGl2ZSBjb2RlXSB9IiwiX19yZWFjdENvbnRhaW5lciRmenNvbGM0eTRxIiwibG9jYWxTdG9yYWdlIiw5MzU4LCI5ZWE2NzAxOC00ZmRmLTQwNDktOWI3Mi01OTk3MTFhOTdiNGEiLCIiLDgsMTc3MzgwOTgzMzM2OS41LDAsMCwwLDAsMCwwLDBd~S", + "turnstile": "SBUYARwABgwIEHJPRWtzVH5qcEoHdG9Vf3t/SXtxckBNVBAfFRYGHAoADAgDAwAdBQYBBhsAAh8VHAIcBQYMCAEBDx4eEAAPAAoHEQ0McUUOCgweEAYHAAUKEQ0ManRpf2ZkfHdlHwJWZFtkd1RlU3Zqal91TQJWe28cVlRmBnxhYWVTTVRneWBmXwNmYWt4Rmtcb1BjZXlMenRpUn9Zd1Bha2hqZmFGa2UDbVZqdF9+eQJwVlIeC3VlBh9nZAF9dmpkfX92dGdVYGsLUHthZHpqWHJKY3d5en9kdHFvQgd1ZAZWaFN1eUxqA3l8TXR8V2B7RnN7XGxhZgN1fGVKX2d8WWhxb0VKemFbXmtjdnJIY3R5VnxeRldiaAJXcUBnYnVfZmJxVWpSbFVReHVGVXNyTxdrZgJESGQDBnxmXgdgZWhCAWBcSmFqdU96agBle3h0VnFle0ZzaVteU2FLAkpnXgd1ewJ4d2VvdGBmB2BLZFh9TGNkeVNNAmtVYGsLUHthZHpqWHJKZ3QKZ3xfaFFiRXxqe2J0d2EDdkhjdGVnd2QLe2V2VmdkW0J8ZnVhbFFfdm10ZGt1U2heSntcbHZmA21sZV5ydn9kVnJla1ZWa3BWV2FbQGpwcwdUbHN/d3NWAnF7W1ZlYEsGemMCV1NmZAdgZWhCW2YGfGFrXwZ6ZAF9Z3xeUVVgHgtwYVl0YmVfU29qZGl0d3RWZWJCSnNlB2tQZmUCTGReX1ZmA3RQZXhKamtbZHZhAm5IY3R5eX90VntwHnRmZE9WZWpYfWx6dApnf2poUmVrfFBiYmxhYV0GTWdkW2d/dGhSYHteWmQGSmFmdXlvVl5fVn93QVVgawtQe2FkempYckpndFt2dnRWYmYedHNWBh8CY2VPaWRZClZ0AnhyYkV4V1BxZGhjdVNvaGNqdH9naGBmHwNQZWUfd2VfeX9qA3lPeQNrV3VGWX5ydnt1elRYbHNKR3V7A0FQYUIHcWJlVmZhAnVmZHVhe3xZaFJge15we1tWZWBLBnpjAldTZmR0UGB4WmpicmxlZV9DSmpqfVR7A2B7ZW94VmYGQWtmA31tY3BbVnsCaGRleEJWYVleaFBlBk1gA3lgfF9Wd2VrRldrWWhlY3VPdmNldlQMHhACDwALBhENDHFFDgoMHhAHGRkLEAlDXEdXHxUZHAcGFRRGQEZSAhAGABkeAxAJFUp0WnFheAdldQVKUWdhB3ZwXH10fwNGf3BZDw8RGwwHAx0OGBAIEVRAXkJVWU1megEObWNeCmRvWnhJUXZwW1dPZBlnX0d6alp9W30DSmRhRWR+YnZJZlZfAm1qXmpvd0V/YG4eZHB7X2RfZWUGbWQDcVJ9dEZrYVZWBmUHbHNqWHFNdUUOCgweEAYEAAQDEQ0MZHUCQE1fYGV5eGRTVl1vCxAfFRwHHAUODAgQfk1JR313VBMQHhEDGBwLBBUUEGZkXB5/WQZ1fmYCDhUCEAMdBB8QCBF6RHtHfHN7DxAfFRYcBgIVFBBhcWF+YHR9VnkBXlFhRVZUd3ZJc3BUckt6WnFkf2cLUW9ARmFhBnhTYEtie3NFanRsRXtiYh5kZWEGGxlkX3FPd3NUc2lFSmdlaHhXYlp0VmNLYntzY3pRaGcDV29CSnRSW0pxYAIPY3Fzcn9pRUpSYR9CY2Fcd2NxYm5PcFV6UWhkXlFhRVZUd3ZJc3BUckt6WnFzdl5oa29AVmFrXHRTd2IHTXBZCwoMHhALGRYQCBFkbGRldnZJdnVET2J3c1hnZkV3VnJ7cHplXHRQdGFmb3NKA2dmc113dn97cXZxXmVqWFtPYFp2eWZFQVB1RkF/YVsfdnRhZmVzRXJVandwUWFoC1N2dklwcFR2ZXNzQHBmc1FWcnhkcGFcdFFlVEBncVVycW9zUVZyeEZ+ZXJ3YHZhAn4QHhEFGRwGCxUUEGUDeU9jWXZ9aXN0YWBCeHZgYmR1emVlbGpKAwoMHhACDwABAxENDHNVYgoMHhACAwADBBENDHdlfW9/XlYBZXhKVmJ2RWpQZXlNamRbVmtZcGRhRV1hYlxoa2pfU29gAwZ7f2B4UGJ/B3prcUphYXVDTWRefnhpWXBkYUVCUGtxf2pxZXF7V1lXXnZkSmZvQkJ6ZVt3Y3ACcXtXWVdedmRKZm9CQnplW3dkEB8VGxwHBBUUEHNydm9zc3J2b3NzcnZvc3Nydm9zc3J2bxAeEQ8WHAcKFRQCHAoGGQIKBAcXBQMGARkLBAYbDAsKHQAaEAgRVmxkQmthH2dlA0R9VwMCYm9wc1ZydkJiZm9aVmMDQ0t3cAtnb1V4RRVT" + } + ) + } + ) + const body = await response.text() + return { + oaiScCookie11: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === 'oai-sc').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0514({ + currencyConfigPromosBusinessOneDollarAmount, + 58, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + attributeRole, + voicesVoice, + secureNextAuthSessionTokenCookie3, + cfuvidCookie20, + oaiScCookie10, + cfBmCookie16, + modelsSlug + }) { + console.log("Executing request 0514") + const response = await fetch( + `https://${origins}/realtime/${attributeRole}`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/realtime/status", + "oai-device-id": evaluatedKeysStableid, + "openai-sentinel-proof-token": "gAAAAACWzQwMDAsIldlZCBNYXIgMTggMjAyNiAxMjo1NzoyMiBHTVQrMDgwMCAo5Lit5Zu95qCH5YeG5pe26Ze0KSIsNDI5NDk2NzI5Niw5LCJNb3ppbGxhLzUuMCAoTWFjaW50b3NoOyBJbnRlbCBNYWMgT1MgWCAxMF8xNV83KSBBcHBsZVdlYktpdC81MzcuMzYgKEtIVE1MLCBsaWtlIEdlY2tvKSBDaHJvbWUvMTQ1LjAuMC4wIFNhZmFyaS81MzcuMzYiLCJodHRwczovL3d3dy5nb29nbGV0YWdtYW5hZ2VyLmNvbS9ndGFnL2pzP2lkPUctOVNIQlNLMkQ5SiIsInByb2QtNWIyYmJlMzc3MjhlMTMyYzNlOWMxZGU1MGNmOTYyMzA5YTAzNTk3NCIsInpoLUNOIiwiemgtQ04semgiLDg2LCJzZW5kQmVhY29u4oiSZnVuY3Rpb24gc2VuZEJlYWNvbigpIHsgW25hdGl2ZSBjb2RlXSB9IiwiX19yZWFjdENvbnRhaW5lciRmenNvbGM0eTRxIiwicmVxdWVzdEFuaW1hdGlvbkZyYW1lIiw5MzE0LjgwMDAwMDAwNDQ3LCI5ZWE2NzAxOC00ZmRmLTQwNDktOWI3Mi01OTk3MTFhOTdiNGEiLCIiLDgsMTc3MzgwOTgzMzM2OS41LDAsMCwwLDAsMCwwLDBd~S", + "x-openai-target-route": "/realtime/status", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "content-type": attributeType, + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; _fbp=fb.1.1773809654765.70493485518132342; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie3}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809838$j49$l0$h0; _dd_s=aid; _cfuvid=${cfuvidCookie20}; oai-sc=${oaiScCookie10}; __cf_bm=${cfBmCookie16}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809842684" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}` + }, + body: JSON.stringify( + { + "conversation_id": null, + "requested_voice_mode": "advanced", + "gizmo_id": null, + "voice": voicesVoice, + "requested_default_model": modelsSlug, + "timezone_offset_min": "-480", + "nonce": evaluatedKeysStableid, + "voice_status_request_id": "0139FD3C-00D9-264C-090A-00A13721E6CB" + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0514({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs1967546325ValueGdrivepercentage, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserId, + statsigpayloadLayerConfigs109457ValueOnboardingStyle, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie10, + puidCookie, + firstName, + variable116, + secureNextAuthSessionTokenCookie4, + cfuvidCookie21, + cfBmCookie17 + }) { + console.log("Executing request 0514") + const response = await fetch( + `https://${origins}/backend-api/aip/connectors/${variable116}/list_accessible`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "oai-product-sku": "SLURM", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/aip/connectors/links/list_accessible", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/aip/connectors/links/list_accessible", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "content-type": attributeType, + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; _fbp=fb.1.1773809654765.70493485518132342; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809838$j49$l0$h0; oai-sc=${oaiScCookie10}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809842684" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _puid=${puidCookie}; oai-gn=${firstName}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie4}; _cfuvid=${cfuvidCookie21}; __cf_bm=${cfBmCookie17}; _dd_s=aid` + }, + body: JSON.stringify( + { + "principals": [ + { + "type": "USER", + "id": sessionUserId + } + ], + "link_refresh_strategy": statsigpayloadLayerConfigs109457ValueOnboardingStyle + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0515({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie10, + puidCookie, + firstName, + secureNextAuthSessionTokenCookie4, + cfuvidCookie22, + cfBmCookie18 + }) { + console.log("Executing request 0515") + const response = await fetch( + `https://${origins}/backend-api/personality_types`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/personality_types", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/personality_types", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; _fbp=fb.1.1773809654765.70493485518132342; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809838$j49$l0$h0; oai-sc=${oaiScCookie10}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809842684" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _puid=${puidCookie}; oai-gn=${firstName}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie4}; _cfuvid=${cfuvidCookie22}; __cf_bm=${cfBmCookie18}; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + cfBmCookie20: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '__cf_bm').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0515({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + urlAudience, + evaluatedKeysStableid, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + connectorsKeywordsForDiscovery1, + secureNextAuthSessionTokenCookie3, + cfuvidCookie20, + oaiScCookie10, + cfBmCookie16 + }) { + console.log("Executing request 0515") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/${connectorsKeywordsForDiscovery1}/oai/settings`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; _fbp=fb.1.1773809654765.70493485518132342; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie3}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809838$j49$l0$h0; _dd_s=aid; _cfuvid=${cfuvidCookie20}; oai-sc=${oaiScCookie10}; __cf_bm=${cfBmCookie16}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809842684" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0515({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + statsigpayloadDynamicConfigs3685705952ValueSms, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie10, + puidCookie, + firstName, + secureNextAuthSessionTokenCookie4, + cfuvidCookie22, + cfBmCookie19 + }) { + console.log("Executing request 0515") + const response = await fetch( + `https://${origins}/backend-api/checkout_pricing_config/configs/${statsigpayloadDynamicConfigs3685705952ValueSms}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/checkout_pricing_config/configs/US", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/checkout_pricing_config/configs/{country_code}", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; _fbp=fb.1.1773809654765.70493485518132342; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809838$j49$l0$h0; oai-sc=${oaiScCookie10}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809842684" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _puid=${puidCookie}; oai-gn=${firstName}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie4}; _cfuvid=${cfuvidCookie22}; _dd_s=aid; __cf_bm=${cfBmCookie19}` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0516({ + currencyConfigPromosBusinessOneDollarAmount, + variable118, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserId, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + secureNextAuthSessionTokenCookie3, + oaiScCookie10, + puidCookie, + firstName, + cfBmCookie15, + variable116, + cfuvidCookie23 + }) { + console.log("Executing request 0516") + const response = await fetch( + `https://${origins}/backend-api/aip/connectors/${variable116}/list_accessible`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/aip/connectors/links/list_accessible", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/aip/connectors/links/list_accessible", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "content-type": attributeType, + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; _fbp=fb.1.1773809654765.70493485518132342; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie3}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809838$j49$l0$h0; oai-sc=${oaiScCookie10}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809842684" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _puid=${puidCookie}; oai-gn=${firstName}; __cf_bm=${cfBmCookie15}; _cfuvid=${cfuvidCookie23}; _dd_s=aid` + }, + body: JSON.stringify( + { + "principals": [ + { + "type": "USER", + "id": sessionUserId + } + ], + "link_refresh_strategy": "BLOCKING" + } + ) + } + ) + const body = await response.text() + return { + cfuvidCookie24: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '_cfuvid').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0519({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + attributeContent, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserId, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie10, + puidCookie, + firstName, + secureNextAuthSessionTokenCookie4, + cfuvidCookie22, + cfBmCookie18, + connectorsSupportedAuthScopesSupported + }) { + console.log("Executing request 0519") + const response = await fetch( + `https://${origins}/backend-api/calpico/${attributeContent}/${connectorsSupportedAuthScopesSupported}/${sessionUserId}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/calpico/chatgpt/profile/user-sbaSmtrYfhjzbgsAV7Wd6CwC", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/calpico/chatgpt/profile/{user_id}", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; _fbp=fb.1.1773809654765.70493485518132342; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809838$j49$l0$h0; oai-sc=${oaiScCookie10}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809842684" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _puid=${puidCookie}; oai-gn=${firstName}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie4}; _dd_s=aid; _cfuvid=${cfuvidCookie22}; __cf_bm=${cfBmCookie18}` + } + } + ) + const body = await response.text() + return { + cfuvidCookie25: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '_cfuvid').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0532({ + currencyConfigPromosBusinessOneDollarAmount, + 93, + adsSegmentId, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + origins2, + variable5, + statsigpayloadDynamicConfigs217573384Value, + attributeContent, + userGroups, + secureNextAuthCallbackUrlCookie1, + secureNextAuthCallbackUrlCookie2, + urlAudience, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserId, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + connectorsBrandingTermsOfService1, + authstatus2, + returnUrl, + puidCookie, + firstName, + secureNextAuthSessionTokenCookie4, + oaiScCookie11, + cfBmCookie20, + cfuvidCookie24, + statsigpayloadLayerConfigs497415788ValueUpgradePillType + }) { + console.log("Executing request 0532") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/${connectorsBrandingTermsOfService1}`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "oai-device-id": evaluatedKeysStableid, + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "content-type": modelsProductFeaturesAttachmentsAcceptedMimeTypes, + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; _fbp=fb.1.1773809654765.70493485518132342; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809838$j49$l0$h0; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809842684" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _puid=${puidCookie}; oai-gn=${firstName}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie4}; _dd_s=aid; oai-sc=${oaiScCookie11}; __cf_bm=${cfBmCookie20}; _cfuvid=${cfuvidCookie24}` + }, + body: JSON.stringify( + { + "timestamp": "2026-03-18T04:57:48.177Z", + "integrations": { + "Segment.io": variable4 + }, + "type": "page", + "properties": { + "path": origins2, + "referrer": returnUrl, + "search": origins2, + "title": variable5, + "url": secureNextAuthCallbackUrlCookie2, + "hash": "" + }, + "context": { + "page": { + "path": origins2, + "referrer": returnUrl, + "search": origins2, + "title": variable5, + "url": secureNextAuthCallbackUrlCookie2, + "hash": "" + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": 93 + }, + { + "brand": "Chromium", + "version": 93 + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locale": clientLocale, + "library": { + "name": "analytics.js", + "version": "npm:next-1.81.1" + }, + "campaign": statsigpayloadDynamicConfigs217573384Value, + "timezone": "Asia/Shanghai", + "app_name": attributeContent, + "app_version": "5b2bbe37728e132c3e9c1de50cf962309a035974", + "browser_locale": clientLocale, + "device_id": evaluatedKeysStableid, + "auth_status": authstatus2, + "user_traits": { + "plan_type": statsigpayloadLayerConfigs497415788ValueUpgradePillType, + "workspace_id": null, + "workspace_type": null, + "is_openai_internal": attributeAriaExpanded, + "ads_segment_id": adsSegmentId + }, + "is_business_ip2": variable4 + }, + "messageId": "ajs-next-1773809868177-aeb11ad5-ef4a-4f48-8645-a479300b0e3d", + "anonymousId": "1749bf8b-6c70-4daa-af24-cb6882181348", + "writeKey": "oai", + "userId": sessionUserId, + "sentAt": "2026-03-18T04:57:48.182Z", + "_metadata": { + "bundled": [ + "Segment.io" + ], + "unbundled": userGroups, + "bundledIds": userGroups + } + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0533({ + currencyConfigPromosBusinessOneDollarAmount, + 93, + adsSegmentId, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + origins2, + variable5, + attributeContent, + userGroups, + secureNextAuthCallbackUrlCookie1, + secureNextAuthCallbackUrlCookie2, + urlAudience, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserId, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + authstatus2, + returnUrl, + puidCookie, + firstName, + secureNextAuthSessionTokenCookie4, + oaiScCookie11, + cfBmCookie20, + cfuvidCookie24, + statsigpayloadLayerConfigs497415788ValueUpgradePillType + }) { + console.log("Executing request 0533") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/i`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "oai-device-id": evaluatedKeysStableid, + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "content-type": modelsProductFeaturesAttachmentsAcceptedMimeTypes, + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; _fbp=fb.1.1773809654765.70493485518132342; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809838$j49$l0$h0; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809842684" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _puid=${puidCookie}; oai-gn=${firstName}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie4}; _dd_s=aid; oai-sc=${oaiScCookie11}; __cf_bm=${cfBmCookie20}; _cfuvid=${cfuvidCookie24}` + }, + body: JSON.stringify( + { + "timestamp": "2026-03-18T04:57:48.178Z", + "integrations": { + "Segment.io": variable4 + }, + "type": "identify", + "userId": sessionUserId, + "traits": { + "plan_type": statsigpayloadLayerConfigs497415788ValueUpgradePillType, + "workspace_id": null, + "workspace_type": null, + "is_openai_internal": attributeAriaExpanded, + "ads_segment_id": adsSegmentId + }, + "context": { + "page": { + "path": origins2, + "referrer": returnUrl, + "search": "", + "title": variable5, + "url": secureNextAuthCallbackUrlCookie2 + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "userAgentData": { + "brands": [ + { + "brand": "Not:A-Brand", + "version": "99" + }, + { + "brand": "Google Chrome", + "version": 93 + }, + { + "brand": "Chromium", + "version": 93 + } + ], + "mobile": attributeAriaExpanded, + "platform": "macOS" + }, + "locale": clientLocale, + "library": { + "name": "analytics.js", + "version": "npm:next-1.81.1" + }, + "timezone": "Asia/Shanghai", + "app_name": attributeContent, + "app_version": "5b2bbe37728e132c3e9c1de50cf962309a035974", + "browser_locale": clientLocale, + "device_id": evaluatedKeysStableid, + "auth_status": authstatus2, + "user_traits": { + "plan_type": statsigpayloadLayerConfigs497415788ValueUpgradePillType, + "workspace_id": null, + "workspace_type": null, + "is_openai_internal": attributeAriaExpanded, + "ads_segment_id": adsSegmentId + }, + "is_business_ip2": variable4 + }, + "messageId": "ajs-next-1773809868178-1ad5ef4a-1f48-4645-a479-300b0e3dfd1e", + "anonymousId": "1749bf8b-6c70-4daa-af24-cb6882181348", + "writeKey": "oai", + "sentAt": "2026-03-18T04:57:48.182Z", + "_metadata": { + "bundled": [ + "Segment.io" + ], + "unbundled": userGroups, + "bundledIds": userGroups + } + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0534({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadDynamicConfigs2179180337ValueMaxAttempts, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueSidebarPaginationPageSize, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + statsigpayloadDynamicConfigs217573384Value, + attributeContent, + statsigpayloadDynamicConfigs3685705952ValueSms, + secureNextAuthCallbackUrlCookie1, + statsigpayloadFeatureGates6102981RuleId, + evaluatedKeysStableid, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + accounts9b62de654103487fAc2002e2030f03dfFeatures, + statsigpayloadDynamicConfigs3685705952ValueWhatsapp, + track, + cluster, + puidCookie, + firstName, + secureNextAuthSessionTokenCookie4, + oaiScCookie11, + cfBmCookie20, + cfuvidCookie24, + variable120 + }) { + console.log("Executing request 0534") + const response = await fetch( + `https://${origins}/ces/statsc/flush`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/ces/statsc/flush", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/statsc/flush", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "content-type": attributeType, + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; _fbp=fb.1.1773809654765.70493485518132342; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809838$j49$l0$h0; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809842684" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _puid=${puidCookie}; oai-gn=${firstName}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie4}; _dd_s=aid; oai-sc=${oaiScCookie11}; __cf_bm=${cfBmCookie20}; _cfuvid=${cfuvidCookie24}` + }, + body: JSON.stringify( + { + "counters": [ + { + "namespace": statsigpayloadFeatureGates6102981RuleId, + "metric": "chatgpt_sidebar_show", + "tags": { + "key": "type", + "value": "slideover" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": accounts9b62de654103487fAc2002e2030f03dfFeatures, + "metric": "splashScreenV2.greeting_shown_web", + "tags": statsigpayloadDynamicConfigs217573384Value, + "value": statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount + }, + { + "namespace": "ws", + "metric": "pubsub.init", + "tags": statsigpayloadDynamicConfigs217573384Value, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": "segment", + "metric": "json_analytics_event_tracked", + "tags": { + "platform": "web", + "event_name": "Sidebar Show", + "appName": attributeContent, + "appVersion": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": "segment", + "metric": "json_analytics_event_tracked", + "tags": { + "platform": "web", + "event_name": "Locale Loaded", + "appName": attributeContent, + "appVersion": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": "segment", + "metric": "json_analytics_event_tracked", + "tags": { + "platform": "web", + "event_name": "chatgpt_page_load_ttfi", + "appName": attributeContent, + "appVersion": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": "segment", + "metric": "ClientEventsServiceLogger.initialize.start", + "tags": { + "appName": attributeContent, + "appVersion": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": "segment", + "metric": "AnalyticsLogger.initialize.start", + "tags": { + "app_name": attributeContent, + "app_version": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": "segment", + "metric": "json_analytics_event_tracked", + "tags": { + "platform": "web", + "event_name": "Toggle Model Switcher", + "appName": attributeContent, + "appVersion": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": statsigpayloadDynamicConfigs216497991ValueSidebarPaginationPageSize + }, + { + "namespace": "segment", + "metric": "analytics_event_tracked", + "tags": { + "platform": "web", + "event_name": "chatgpt_model_picker_event", + "app_name": attributeContent, + "app_version": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb + }, + { + "namespace": accounts9b62de654103487fAc2002e2030f03dfFeatures, + "metric": "splashScreenV2.greeting_cookie_name_set_web", + "tags": statsigpayloadDynamicConfigs217573384Value, + "value": statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount + }, + { + "namespace": "segment", + "metric": "json_analytics_event_tracked", + "tags": { + "platform": "web", + "event_name": "New Chat Button Clicked", + "appName": attributeContent, + "appVersion": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": "segment", + "metric": "json_analytics_event_tracked", + "tags": { + "platform": "web", + "event_name": "Sidebar Click Gizmo", + "appName": attributeContent, + "appVersion": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": "segment", + "metric": "analytics_event_tracked", + "tags": { + "platform": "web", + "event_name": "chatgpt_performance_metric", + "app_name": attributeContent, + "app_version": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": statsigpayloadDynamicConfigs2179180337ValueMaxAttempts + }, + { + "namespace": "segment", + "metric": "analytics_event_tracked", + "tags": { + "platform": "web", + "event_name": "chatgpt_performance_cumulative_layout_shift", + "app_name": attributeContent, + "app_version": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": "segment", + "metric": "json_analytics_event_tracked", + "tags": { + "platform": "web", + "event_name": "Account: Open Profile Menu", + "appName": attributeContent, + "appVersion": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": "ws", + "metric": "pubsub.fetch-socket-url.success", + "tags": statsigpayloadDynamicConfigs217573384Value, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": "segment", + "metric": "AnalyticsLogger.initialize.success", + "tags": { + "app_name": attributeContent, + "app_version": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": "segment", + "metric": "analytics_event_tracked", + "tags": { + "platform": "web", + "event_name": "chatgpt_upsell_or_modal_shown", + "app_name": attributeContent, + "app_version": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + }, + { + "namespace": "segment", + "metric": "ClientEventsServiceLogger.initialize.success", + "tags": { + "appName": attributeContent, + "appVersion": "5b2bbe37728e132c3e9c1de50cf962309a035974" + }, + "value": currencyConfigPromosBusinessOneDollarAmount + } + ], + "histograms": [ + { + "namespace": statsigpayloadFeatureGates6102981RuleId, + "metric": "web.vitals.ttfb", + "tags": { + "country": statsigpayloadDynamicConfigs3685705952ValueSms, + "continent": statsigpayloadDynamicConfigs3685705952ValueWhatsapp, + "device": variable120, + "track": track, + "cluster": cluster + }, + "values": [ + "2181" + ] + }, + { + "namespace": statsigpayloadFeatureGates6102981RuleId, + "metric": "web.vitals.fcp", + "tags": { + "country": statsigpayloadDynamicConfigs3685705952ValueSms, + "continent": statsigpayloadDynamicConfigs3685705952ValueWhatsapp, + "device": variable120, + "track": track, + "cluster": cluster + }, + "values": [ + "2276" + ] + }, + { + "namespace": statsigpayloadFeatureGates6102981RuleId, + "metric": "web.vitals.lcp", + "tags": { + "country": statsigpayloadDynamicConfigs3685705952ValueSms, + "continent": statsigpayloadDynamicConfigs3685705952ValueWhatsapp, + "device": variable120, + "track": track, + "cluster": cluster + }, + "values": [ + "2276" + ] + }, + { + "namespace": statsigpayloadFeatureGates6102981RuleId, + "metric": "web.vitals.cls", + "tags": { + "country": statsigpayloadDynamicConfigs3685705952ValueSms, + "continent": statsigpayloadDynamicConfigs3685705952ValueWhatsapp, + "device": variable120, + "track": track, + "cluster": cluster + }, + "values": [ + "0.0000012285308399959" + ] + } + ], + "client_type": "web" + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0535({ + currencyConfigPromosBusinessOneDollarAmount, + variable118, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserId, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + puidCookie, + firstName, + variable116, + secureNextAuthSessionTokenCookie4, + oaiScCookie11, + cfuvidCookie24 + }) { + console.log("Executing request 0535") + const response = await fetch( + `https://${origins}/backend-api/aip/connectors/${variable116}/list_accessible`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/aip/connectors/links/list_accessible", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/aip/connectors/links/list_accessible", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "content-type": attributeType, + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; _fbp=fb.1.1773809654765.70493485518132342; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809838$j49$l0$h0; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809842684" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _puid=${puidCookie}; oai-gn=${firstName}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie4}; oai-sc=${oaiScCookie11}; _cfuvid=${cfuvidCookie24}; __cf_bm=rysKaVnHsrgcYuyr8pkWMRZ4VdVnWEqkwAlGMSIlQCo-1773809868.8272278-1.0.1.1-TitpamU28MnKTh404nNtBSXbJlS5LgNTAlBbqM7eSISyV0n1KBkg0FYeiT6VenryR_PUXhPvxH1cMDtvZ0N3tnq0TwylRDqGDRK5N21Y24L7ZGKvpFSjavOQY8lmT6B6; _dd_s=aid` + }, + body: JSON.stringify( + { + "principals": [ + { + "type": "USER", + "id": sessionUserId + } + ], + "link_refresh_strategy": "BLOCKING" + } + ) + } + ) + const body = await response.text() + return { + cfBmCookie22: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '__cf_bm').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0536({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + secureNextAuthCallbackUrlCookie2, + urlAudience, + evaluatedKeysStableid, + accountCookie, + variable24, + sessionUserId, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + track, + returnUrl, + accountsDefaultAccountAccountResidencyRegion, + connectorsBrandingPrivacyPolicy1, + oaiScCookie10, + puidCookie, + firstName, + secureNextAuthSessionTokenCookie4, + cfuvidCookie22, + cfBmCookie19, + statsigpayloadLayerConfigs497415788ValueUpgradePillType + }) { + console.log("Executing request 0536") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/telemetry/intake??ddforward=%2Fapi%2Fv2%2Flogs%3Fddsource%3Dbrowser%26dd-api-key%3Dpub1f79f8ac903a5872ae5f53026d20a77c%26dd-evp-origin-version%3D6.22.0%26dd-evp-origin%3Dbrowser%26dd-request-id%3Dd1791c5d-b35e-4a91-b187-8ab4613f15d1`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "text/plain;charset=UTF-8", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "no-cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; _fbp=fb.1.1773809654765.70493485518132342; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809838$j49$l0$h0; oai-sc=${oaiScCookie10}; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809842684" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _puid=${puidCookie}; oai-gn=${firstName}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie4}; _cfuvid=${cfuvidCookie22}; __cf_bm=${cfBmCookie19}; _dd_s=aid` + }, + body: JSON.stringify( + { + "view": { + "referrer": returnUrl, + "url": secureNextAuthCallbackUrlCookie2 + }, + "service": "chatgpt-web", + "session_id": "799e0f97-a21b-42fe-adde-1c2eac75c706", + "session": { + "id": "799e0f97-a21b-42fe-adde-1c2eac75c706" + }, + "usr": { + "user_id": sessionUserId, + "account_plan_type": statsigpayloadLayerConfigs497415788ValueUpgradePillType, + "workspace_id": accountCookie, + "residency_region": accountsDefaultAccountAccountResidencyRegion, + "compute_residency": accountsDefaultAccountAccountResidencyRegion, + "anonymous_id": "45ead1a9-904d-460d-ae4f-bd6045b8d46f" + }, + "track": track, + "is_electron_desktop_app": attributeAriaExpanded, + "date": "1773809838182", + "message": "pubsub.init", + "status": connectorsBrandingPrivacyPolicy1, + "origin": "logger", + "logger": { + "name": "pubsub-client" + }, + "oai": { + "skip_upstream": variable4 + }, + "ddtags": "sdk_version:6.22.0,env:prod,service:chatgpt-web,version:5b2bbe37728e132c3e9c1de50cf962309a035974" + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0536({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + secureNextAuthCallbackUrlCookie2, + urlAudience, + evaluatedKeysStableid, + accountCookie, + variable24, + sessionUserId, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + track, + returnUrl, + accountsDefaultAccountAccountResidencyRegion, + connectorsBrandingPrivacyPolicy1, + puidCookie, + firstName, + secureNextAuthSessionTokenCookie4, + oaiScCookie11, + statsigpayloadLayerConfigs497415788ValueUpgradePillType, + cfuvidCookie25 + }) { + console.log("Executing request 0536") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/telemetry/intake??ddforward=%2Fapi%2Fv2%2Flogs%3Fddsource%3Dbrowser%26dd-api-key%3Dpub1f79f8ac903a5872ae5f53026d20a77c%26dd-evp-origin-version%3D6.22.0%26dd-evp-origin%3Dbrowser%26dd-request-id%3D49d939a9-7eff-439c-8081-68b6a8172894`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "text/plain;charset=UTF-8", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "no-cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; _fbp=fb.1.1773809654765.70493485518132342; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809838$j49$l0$h0; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809842684" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _puid=${puidCookie}; oai-gn=${firstName}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie4}; oai-sc=${oaiScCookie11}; _cfuvid=${cfuvidCookie25}; _dd_s=aid; __cf_bm=mQ3mSaSUmsmxXh_Hgy4cNMNqqhsIH1eZmyAKbBvvBcg-1773809882.2986012-1.0.1.1-QKc3t9EWh4PlSqbD9oZT1Fuzog2H7FKXot4EcZYQhLUpp8qZWN041kunsmm3AqpoUEjwn0bMtoZlKG3Mt3cRccdVEfj9nvOgDKAEl4zrRFXyPxZATVasRPBTW0Q3RTRP` + }, + body: JSON.stringify( + { + "view": { + "referrer": returnUrl, + "url": secureNextAuthCallbackUrlCookie2 + }, + "service": "chatgpt-web", + "session_id": "799e0f97-a21b-42fe-adde-1c2eac75c706", + "session": { + "id": "799e0f97-a21b-42fe-adde-1c2eac75c706" + }, + "usr": { + "user_id": sessionUserId, + "account_plan_type": statsigpayloadLayerConfigs497415788ValueUpgradePillType, + "workspace_id": accountCookie, + "residency_region": accountsDefaultAccountAccountResidencyRegion, + "compute_residency": accountsDefaultAccountAccountResidencyRegion, + "anonymous_id": "45ead1a9-904d-460d-ae4f-bd6045b8d46f" + }, + "track": track, + "is_electron_desktop_app": attributeAriaExpanded, + "date": "1773809861958", + "message": "pubsub.fetch-socket-url", + "status": connectorsBrandingPrivacyPolicy1, + "origin": "logger", + "logger": { + "name": "pubsub-client" + }, + "oai": { + "skip_upstream": variable4 + }, + "ddtags": "sdk_version:6.22.0,env:prod,service:chatgpt-web,version:5b2bbe37728e132c3e9c1de50cf962309a035974" + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0536({ + variable12, + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + puidCookie, + firstName, + secureNextAuthSessionTokenCookie4, + oaiScCookie11, + cfuvidCookie25, + eligibleAnnouncements7 + }) { + console.log("Executing request 0536") + const response = await fetch( + `https://${origins}/backend-api/settings/announcement_viewed?announcement_id=${eligibleAnnouncements7}`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/settings/announcement_viewed", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/settings/announcement_viewed", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; _fbp=fb.1.1773809654765.70493485518132342; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809838$j49$l0$h0; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809842684" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _puid=${puidCookie}; oai-gn=${firstName}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie4}; oai-sc=${oaiScCookie11}; _cfuvid=${cfuvidCookie25}; __cf_bm=5Ype3ohMmg3siQghciNRUxcCTytcFk5O.lSzonUtMMI-1773809880.6984499-1.0.1.1-.GRR.D9GMXQS5vzrG0Sy4wtXKXIrjNZiY3xV2BPnA1IcL3q44J18I8AouT6tga45iakHwenXZLox1CDO47s3G1BBDKJBW83pUL3mqSsdztvkltWaUjG2xaX8DZ_14VOj; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0536({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs1967546325ValueGdrivepercentage, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserId, + statsigpayloadLayerConfigs109457ValueOnboardingStyle, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + puidCookie, + firstName, + variable116, + secureNextAuthSessionTokenCookie4, + oaiScCookie11, + cfuvidCookie24 + }) { + console.log("Executing request 0536") + const response = await fetch( + `https://${origins}/backend-api/aip/connectors/${variable116}/list_accessible`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "oai-product-sku": "SLURM", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/aip/connectors/links/list_accessible", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/aip/connectors/links/list_accessible", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "content-type": attributeType, + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; _fbp=fb.1.1773809654765.70493485518132342; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809838$j49$l0$h0; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809842684" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _puid=${puidCookie}; oai-gn=${firstName}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie4}; oai-sc=${oaiScCookie11}; _cfuvid=${cfuvidCookie24}; __cf_bm=rysKaVnHsrgcYuyr8pkWMRZ4VdVnWEqkwAlGMSIlQCo-1773809868.8272278-1.0.1.1-TitpamU28MnKTh404nNtBSXbJlS5LgNTAlBbqM7eSISyV0n1KBkg0FYeiT6VenryR_PUXhPvxH1cMDtvZ0N3tnq0TwylRDqGDRK5N21Y24L7ZGKvpFSjavOQY8lmT6B6; _dd_s=aid` + }, + body: JSON.stringify( + { + "principals": [ + { + "type": "USER", + "id": sessionUserId + } + ], + "link_refresh_strategy": statsigpayloadLayerConfigs109457ValueOnboardingStyle + } + ) + } + ) + const body = await response.text() + return { + cfBmCookie21: response.headers.getSetCookie().find(cookie => cookie.split('=')[0].trim() === '__cf_bm').split("=")[1].split(";")[0].trim() + } + } + async function executeRequest0537({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + object, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + puidCookie, + firstName, + secureNextAuthSessionTokenCookie4, + oaiScCookie11, + cfuvidCookie25, + cfBmCookie21 + }) { + console.log("Executing request 0537") + const response = await fetch( + `https://${origins}/backend-api/settings/${object}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/settings/user", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/settings/user", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; _fbp=fb.1.1773809654765.70493485518132342; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809838$j49$l0$h0; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809842684" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _puid=${puidCookie}; oai-gn=${firstName}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie4}; oai-sc=${oaiScCookie11}; _cfuvid=${cfuvidCookie25}; _dd_s=aid; __cf_bm=${cfBmCookie21}` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0538({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + secureNextAuthCallbackUrlCookie1, + urlAudience, + evaluatedKeysStableid, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + connectorsSuggestionConfigImageUrl, + puidCookie, + firstName, + secureNextAuthSessionTokenCookie4, + oaiScCookie11, + cfuvidCookie25, + cfBmCookie21 + }) { + console.log("Executing request 0538") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/${connectorsSuggestionConfigImageUrl}`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": modelsProductFeaturesAttachmentsAcceptedMimeTypes, + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; _fbp=fb.1.1773809654765.70493485518132342; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809838$j49$l0$h0; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809842684" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _puid=${puidCookie}; oai-gn=${firstName}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie4}; oai-sc=${oaiScCookie11}; _cfuvid=${cfuvidCookie25}; _dd_s=aid; __cf_bm=${cfBmCookie21}` + }, + body: JSON.stringify( + { + "series": [ + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + } + ] + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0539({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + variable98, + attributeHref11, + puidCookie, + firstName, + secureNextAuthSessionTokenCookie4, + oaiScCookie11, + cfuvidCookie25, + cfBmCookie22 + }) { + console.log("Executing request 0539") + const response = await fetch( + `https://${origins}${attributeHref11}`, + { + method: "GET", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"macOS\"", + "upgrade-insecure-requests": currencyConfigPromosBusinessOneDollarAmount, + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "navigate", + "sec-fetch-user": variable98, + "sec-fetch-dest": "document", + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; _fbp=fb.1.1773809654765.70493485518132342; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809838$j49$l0$h0; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809842684" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _puid=${puidCookie}; oai-gn=${firstName}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie4}; oai-sc=${oaiScCookie11}; _cfuvid=${cfuvidCookie25}; __cf_bm=${cfBmCookie22}; _dd_s=aid` + } + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0540({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + secureNextAuthCallbackUrlCookie2, + urlAudience, + evaluatedKeysStableid, + accountCookie, + variable24, + sessionUserId, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + track, + returnUrl, + accountsDefaultAccountAccountResidencyRegion, + connectorsBrandingPrivacyPolicy1, + puidCookie, + firstName, + secureNextAuthSessionTokenCookie4, + oaiScCookie11, + statsigpayloadLayerConfigs497415788ValueUpgradePillType, + cfuvidCookie25, + cfBmCookie21, + variable122 + }) { + console.log("Executing request 0540") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/telemetry/intake??ddforward=%2Fapi%2Fv2%2Flogs%3Fddsource%3Dbrowser%26dd-api-key%3Dpub1f79f8ac903a5872ae5f53026d20a77c%26dd-evp-origin-version%3D6.22.0%26dd-evp-origin%3Dbrowser%26dd-request-id%3Dfecf0358-1b9d-48e9-975c-9894a5585a70`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": "text/plain;charset=UTF-8", + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "no-cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; _fbp=fb.1.1773809654765.70493485518132342; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809838$j49$l0$h0; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809842684" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _puid=${puidCookie}; oai-gn=${firstName}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie4}; oai-sc=${oaiScCookie11}; _cfuvid=${cfuvidCookie25}; _dd_s=aid; __cf_bm=${cfBmCookie21}` + }, + body: JSON.stringify( + { + "view": { + "referrer": returnUrl, + "url": secureNextAuthCallbackUrlCookie2 + }, + "service": "chatgpt-web", + "session_id": "799e0f97-a21b-42fe-adde-1c2eac75c706", + "session": { + "id": "799e0f97-a21b-42fe-adde-1c2eac75c706" + }, + "usr": { + "user_id": sessionUserId, + "account_plan_type": statsigpayloadLayerConfigs497415788ValueUpgradePillType, + "workspace_id": accountCookie, + "residency_region": accountsDefaultAccountAccountResidencyRegion, + "compute_residency": accountsDefaultAccountAccountResidencyRegion, + "anonymous_id": "45ead1a9-904d-460d-ae4f-bd6045b8d46f" + }, + "track": track, + "is_electron_desktop_app": attributeAriaExpanded, + "date": "1773809865832", + "message": "pubsub.connected", + "status": connectorsBrandingPrivacyPolicy1, + "origin": "logger", + "logger": { + "name": "pubsub-client" + }, + "connection_type": variable122, + "topic_count": statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + "topics": [ + { + "topic_id": "calpico-chatgpt", + "state": "Subscribing", + "has_offset": attributeAriaExpanded, + "has_ever_subscribed": variable4, + "was_disconnected": attributeAriaExpanded + }, + { + "topic_id": "conversations", + "state": "Subscribing", + "has_offset": attributeAriaExpanded, + "has_ever_subscribed": variable4, + "was_disconnected": attributeAriaExpanded + }, + { + "topic_id": "app_notifications", + "state": "Subscribing", + "has_offset": attributeAriaExpanded, + "has_ever_subscribed": variable4, + "was_disconnected": attributeAriaExpanded + } + ], + "subscribing_topic_ids": [ + "calpico-chatgpt", + "conversations", + "app_notifications" + ], + "oai": { + "skip_upstream": variable4 + }, + "ddtags": "sdk_version:6.22.0,env:prod,service:chatgpt-web,version:5b2bbe37728e132c3e9c1de50cf962309a035974" + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0541({ + currencyConfigPromosBusinessOneDollarAmount, + variable118, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserId, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + puidCookie, + firstName, + variable116, + secureNextAuthSessionTokenCookie4, + oaiScCookie11, + cfuvidCookie25, + cfBmCookie21 + }) { + console.log("Executing request 0541") + const response = await fetch( + `https://${origins}/backend-api/aip/connectors/${variable116}/list_accessible`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/aip/connectors/links/list_accessible", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/aip/connectors/links/list_accessible", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "content-type": attributeType, + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; _fbp=fb.1.1773809654765.70493485518132342; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809838$j49$l0$h0; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809842684" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _puid=${puidCookie}; oai-gn=${firstName}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie4}; oai-sc=${oaiScCookie11}; _cfuvid=${cfuvidCookie25}; __cf_bm=${cfBmCookie21}; _dd_s=aid` + }, + body: JSON.stringify( + { + "principals": [ + { + "type": "USER", + "id": sessionUserId + } + ], + "link_refresh_strategy": "BLOCKING" + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0541({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs1967546325ValueGdrivepercentage, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserId, + statsigpayloadLayerConfigs109457ValueOnboardingStyle, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + puidCookie, + firstName, + variable116, + secureNextAuthSessionTokenCookie4, + oaiScCookie11, + cfuvidCookie25, + cfBmCookie21 + }) { + console.log("Executing request 0541") + const response = await fetch( + `https://${origins}/backend-api/aip/connectors/${variable116}/list_accessible`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "oai-language": clientLocale, + "sec-ch-ua-platform": "\"macOS\"", + "authorization": `Bearer ${sessionAccesstoken}`, + "oai-product-sku": "SLURM", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "sec-ch-ua-mobile": "?0", + "oai-client-build-number": attributeDataSeq, + "x-openai-target-path": "/backend-api/aip/connectors/links/list_accessible", + "oai-device-id": evaluatedKeysStableid, + "x-openai-target-route": "/backend-api/aip/connectors/links/list_accessible", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "content-type": attributeType, + "oai-client-version": attributeDataBuild, + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; _fbp=fb.1.1773809654765.70493485518132342; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809838$j49$l0$h0; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809842684" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _puid=${puidCookie}; oai-gn=${firstName}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie4}; oai-sc=${oaiScCookie11}; _cfuvid=${cfuvidCookie25}; __cf_bm=${cfBmCookie21}; _dd_s=aid` + }, + body: JSON.stringify( + { + "principals": [ + { + "type": "USER", + "id": sessionUserId + } + ], + "link_refresh_strategy": statsigpayloadLayerConfigs109457ValueOnboardingStyle + } + ) + } + ) + const body = await response.text() + return { + } + } + async function executeRequest0542({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + secureNextAuthCallbackUrlCookie1, + urlAudience, + evaluatedKeysStableid, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + connectorsSuggestionConfigImageUrl, + puidCookie, + firstName, + secureNextAuthSessionTokenCookie4, + oaiScCookie11, + cfuvidCookie25, + cfBmCookie21 + }) { + console.log("Executing request 0542") + const response = await fetch( + `https://${origins}/ces/${urlAudience}/${connectorsSuggestionConfigImageUrl}`, + { + method: "POST", + headers: { + "host": origins, + "connection": "keep-alive", + "sec-ch-ua-platform": "\"macOS\"", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36", + "sec-ch-ua": "\"NotA-Brand\";v=\"99\", \"Google Chrome\";v=\"145\", \"Chromium\";v=\"145\"", + "content-type": modelsProductFeaturesAttachmentsAcceptedMimeTypes, + "sec-ch-ua-mobile": "?0", + "accept": "*/*", + "origin": "https//chatgpt.com", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + "referer": variable24, + "accept-encoding": "gzip, deflate, br, zstd", + "accept-language": "zh-CN,zh;q=0.9", + "cookie": `oai-chat-web-route=web; oai-did=${evaluatedKeysStableid}; __cflb=04dTofELUVCxHqRn2XeT2hSnnhjmuxwXLQ65JhQpdZ; _ga=GA1.1.320010597.1773807401; __Host-next-auth.csrf-token=${hostNextAuthCsrfTokenCookie}; cf_clearance=${cfClearanceCookie}; g_state={\"i_l\"0,\"i_ll\"1773809536104,\"i_b\"\"LZCt3gP2nZMV66GxKZjFOKaMRU1bewcO3DEfTla1FaM\",\"i_e\"{\"enable_itp_optimization\"0}}; __Secure-next-auth.callback-url=${secureNextAuthCallbackUrlCookie1}; oai-hlib=${variable4}; _fbp=fb.1.1773809654765.70493485518132342; __stripe_mid=cfa0915c-f2a8-43f1-9d36-edc115a811981ee462; __stripe_sid=4fd469e7-f7da-40dc-b181-a965f38f05ea4aa34b; _gcl_au=1.1.1190047189.1773809654.663267855.1773809809.1773809808; _account_is_fedramp=${attributeAriaExpanded}; _ga_9SHBSK2D9J=GS2.1.s1773807400$o1$g1$t1773809838$j49$l0$h0; oai-client-auth-info=${encodeURIComponent(JSON.stringify( + { + "user": { + "name": sessionUserName, + "email": oaiClientAuthSessionCookieUsernameValue, + "picture": null, + "connectionType": currencyConfigPromosBusinessOneDollarAmount, + "timestamp": "1773809842684" + }, + "loggedInWithGoogleOneTap": attributeAriaExpanded, + "isOptedOut": attributeAriaExpanded + } + ))}; _puid=${puidCookie}; oai-gn=${firstName}; __Secure-next-auth.session-token=${secureNextAuthSessionTokenCookie4}; oai-sc=${oaiScCookie11}; _cfuvid=${cfuvidCookie25}; __cf_bm=${cfBmCookie21}; _dd_s=aid` + }, + body: JSON.stringify( + { + "series": [ + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + }, + { + "type": "Counter", + "metric": "analytics_js.invoke", + "value": currencyConfigPromosBusinessOneDollarAmount, + "tags": { + "library": "analytics.js", + "library_version": "npm:next-1.81.1" + } + } + ] + } + ) + } + ) + const body = await response.text() + return { + } + } + const {variable12, variable4} = await executeRequest0008({ + }) + console.log("variable12: ",variable12) + console.log("variable4: ",variable4) + const {} = await executeRequest0009({ + }) + const {statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, statsigpayloadDynamicConfigs2179180337ValueMaxAttempts, statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, statsigpayloadDynamicConfigs216497991ValueSidebarPaginationPageSize, statsigpayloadDynamicConfigs349489989ValueOneCharacterAnimationDurationMs, 7, statsigpayloadDynamicConfigs216497991ValueOutdatedRoomBootstrapMessagesCount, statsigpayloadDynamicConfigs3165814200ValueMaxRetryCount, statsigpayloadLayerConfigs1092897457ValueMaxCommitConversationStalenessDays, statsigpayloadDynamicConfigs3230069703ValueExpiryseconds, attributeWidth1, attributeWidth, 20, 22, statsigpayloadDynamicConfigs1504865540ValueMaxFileSizeMb, statsigpayloadLayerConfigs3850010910ValuePlusGracePeriodDays, statsigpayloadDynamicConfigs2943229081ValueVoiceUsedWithinPastDays, statsigpayloadLayerConfigs2128165686ValueProductsHeapWeight, statsigpayloadDynamicConfigs916292397ValueMaxImpressions, statsigpayloadDynamicConfigs3689744552ValueLookbackDays, statsigpayloadLayerConfigs1368081792ValueTatortotContextualUpsellFrequencyWindowLengthHours, statsigpayloadLayerConfigs684023316ValueMemoryAlmostFullThreshold, statsigpayloadDynamicConfigs1967546325ValueGdrivepercentage, statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, statsigpayloadDynamicConfigs3165814200ValueMinRetryInterval, statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, statsigpayloadDynamicConfigs3317473948ValueModelSlugMaxPollingDurationsO1Pro, statsigpayloadLayerConfigs3850010910ValueBillingFailureBannerIntervalMins, attributeDataSeq, clientLocale, attributeDataBuild, hostNextAuthCsrfTokenCookie, secureNextAuthCallbackUrlCookie, cfuvidCookie, attributeType, attributeAriaExpanded, session, graphParentorganizationUrl, variable5, statsigpayloadDynamicConfigs217573384Value, attributeContent, authstatus, userGroups, statsigpayloadDynamicConfigs3685705952ValueSms, graphSameas, statsigpayloadDynamicConfigs489084288ValueOptions, statsigpayloadFeatureGates6102981RuleId, variable14, statsigpayloadLayerConfigs109457ValueOnboardingStyle, attributeRole, statsigpayloadLayerConfigs4112645001ValueOutline, statsigpayloadDynamicConfigs2850107578ValueOnboardingCardImageUrl, statsigpayloadDynamicConfigs3685705952ValueWhatsapp, cluster, attributeId, variable28, secureNextAuthCallbackUrlCookie3, statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary, statsigpayloadLayerConfigs3680755560ValuePriorityArray, statsigpayloadLayerConfigs3680755560ValuePriorityArray1, statsigpayloadDynamicConfigs2281575548ValueSafetyUrl, statsigpayloadLayerConfigs1803944755ValueExpressServerDeliveryMechanism, statsigpayloadDynamicConfigs349697204ValueChangelogUrl, variable70, statsigpayloadDynamicConfigs2850107578ValueAndroidLargeFontScaleThreshold, statsigpayloadDynamicConfigs2842273360ValueMinVisibleFraction, pageloadresourcehrefs, statsigpayloadDynamicConfigs3131667714ValueRegions, statsigpayloadLayerConfigs497415788ValueUpgradePillType} = await executeRequest0015({ + }) + console.log("statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount: ",statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount) + console.log("statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount: ",statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount) + console.log("statsigpayloadDynamicConfigs2179180337ValueMaxAttempts: ",statsigpayloadDynamicConfigs2179180337ValueMaxAttempts) + console.log("statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb: ",statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb) + console.log("statsigpayloadDynamicConfigs216497991ValueSidebarPaginationPageSize: ",statsigpayloadDynamicConfigs216497991ValueSidebarPaginationPageSize) + console.log("statsigpayloadDynamicConfigs349489989ValueOneCharacterAnimationDurationMs: ",statsigpayloadDynamicConfigs349489989ValueOneCharacterAnimationDurationMs) + console.log("7: ",7) + console.log("statsigpayloadDynamicConfigs216497991ValueOutdatedRoomBootstrapMessagesCount: ",statsigpayloadDynamicConfigs216497991ValueOutdatedRoomBootstrapMessagesCount) + console.log("statsigpayloadDynamicConfigs3165814200ValueMaxRetryCount: ",statsigpayloadDynamicConfigs3165814200ValueMaxRetryCount) + console.log("statsigpayloadLayerConfigs1092897457ValueMaxCommitConversationStalenessDays: ",statsigpayloadLayerConfigs1092897457ValueMaxCommitConversationStalenessDays) + console.log("statsigpayloadDynamicConfigs3230069703ValueExpiryseconds: ",statsigpayloadDynamicConfigs3230069703ValueExpiryseconds) + console.log("attributeWidth1: ",attributeWidth1) + console.log("attributeWidth: ",attributeWidth) + console.log("20: ",20) + console.log("22: ",22) + console.log("statsigpayloadDynamicConfigs1504865540ValueMaxFileSizeMb: ",statsigpayloadDynamicConfigs1504865540ValueMaxFileSizeMb) + console.log("statsigpayloadLayerConfigs3850010910ValuePlusGracePeriodDays: ",statsigpayloadLayerConfigs3850010910ValuePlusGracePeriodDays) + console.log("statsigpayloadDynamicConfigs2943229081ValueVoiceUsedWithinPastDays: ",statsigpayloadDynamicConfigs2943229081ValueVoiceUsedWithinPastDays) + console.log("statsigpayloadLayerConfigs2128165686ValueProductsHeapWeight: ",statsigpayloadLayerConfigs2128165686ValueProductsHeapWeight) + console.log("statsigpayloadDynamicConfigs916292397ValueMaxImpressions: ",statsigpayloadDynamicConfigs916292397ValueMaxImpressions) + console.log("statsigpayloadDynamicConfigs3689744552ValueLookbackDays: ",statsigpayloadDynamicConfigs3689744552ValueLookbackDays) + console.log("statsigpayloadLayerConfigs1368081792ValueTatortotContextualUpsellFrequencyWindowLengthHours: ",statsigpayloadLayerConfigs1368081792ValueTatortotContextualUpsellFrequencyWindowLengthHours) + console.log("statsigpayloadLayerConfigs684023316ValueMemoryAlmostFullThreshold: ",statsigpayloadLayerConfigs684023316ValueMemoryAlmostFullThreshold) + console.log("statsigpayloadDynamicConfigs1967546325ValueGdrivepercentage: ",statsigpayloadDynamicConfigs1967546325ValueGdrivepercentage) + console.log("statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration: ",statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration) + console.log("statsigpayloadDynamicConfigs3165814200ValueMinRetryInterval: ",statsigpayloadDynamicConfigs3165814200ValueMinRetryInterval) + console.log("statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS: ",statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS) + console.log("statsigpayloadDynamicConfigs3317473948ValueModelSlugMaxPollingDurationsO1Pro: ",statsigpayloadDynamicConfigs3317473948ValueModelSlugMaxPollingDurationsO1Pro) + console.log("statsigpayloadLayerConfigs3850010910ValueBillingFailureBannerIntervalMins: ",statsigpayloadLayerConfigs3850010910ValueBillingFailureBannerIntervalMins) + console.log("attributeDataSeq: ",attributeDataSeq) + console.log("clientLocale: ",clientLocale) + console.log("attributeDataBuild: ",attributeDataBuild) + console.log("hostNextAuthCsrfTokenCookie: ",hostNextAuthCsrfTokenCookie) + console.log("secureNextAuthCallbackUrlCookie: ",secureNextAuthCallbackUrlCookie) + console.log("cfuvidCookie: ",cfuvidCookie) + console.log("attributeType: ",attributeType) + console.log("attributeAriaExpanded: ",attributeAriaExpanded) + console.log("session: ",session) + console.log("graphParentorganizationUrl: ",graphParentorganizationUrl) + console.log("variable5: ",variable5) + console.log("statsigpayloadDynamicConfigs217573384Value: ",statsigpayloadDynamicConfigs217573384Value) + console.log("attributeContent: ",attributeContent) + console.log("authstatus: ",authstatus) + console.log("userGroups: ",userGroups) + console.log("statsigpayloadDynamicConfigs3685705952ValueSms: ",statsigpayloadDynamicConfigs3685705952ValueSms) + console.log("graphSameas: ",graphSameas) + console.log("statsigpayloadDynamicConfigs489084288ValueOptions: ",statsigpayloadDynamicConfigs489084288ValueOptions) + console.log("statsigpayloadFeatureGates6102981RuleId: ",statsigpayloadFeatureGates6102981RuleId) + console.log("variable14: ",variable14) + console.log("statsigpayloadLayerConfigs109457ValueOnboardingStyle: ",statsigpayloadLayerConfigs109457ValueOnboardingStyle) + console.log("attributeRole: ",attributeRole) + console.log("statsigpayloadLayerConfigs4112645001ValueOutline: ",statsigpayloadLayerConfigs4112645001ValueOutline) + console.log("statsigpayloadDynamicConfigs2850107578ValueOnboardingCardImageUrl: ",statsigpayloadDynamicConfigs2850107578ValueOnboardingCardImageUrl) + console.log("statsigpayloadDynamicConfigs3685705952ValueWhatsapp: ",statsigpayloadDynamicConfigs3685705952ValueWhatsapp) + console.log("cluster: ",cluster) + console.log("attributeId: ",attributeId) + console.log("variable28: ",variable28) + console.log("secureNextAuthCallbackUrlCookie3: ",secureNextAuthCallbackUrlCookie3) + console.log("statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary: ",statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary) + console.log("statsigpayloadLayerConfigs3680755560ValuePriorityArray: ",statsigpayloadLayerConfigs3680755560ValuePriorityArray) + console.log("statsigpayloadLayerConfigs3680755560ValuePriorityArray1: ",statsigpayloadLayerConfigs3680755560ValuePriorityArray1) + console.log("statsigpayloadDynamicConfigs2281575548ValueSafetyUrl: ",statsigpayloadDynamicConfigs2281575548ValueSafetyUrl) + console.log("statsigpayloadLayerConfigs1803944755ValueExpressServerDeliveryMechanism: ",statsigpayloadLayerConfigs1803944755ValueExpressServerDeliveryMechanism) + console.log("statsigpayloadDynamicConfigs349697204ValueChangelogUrl: ",statsigpayloadDynamicConfigs349697204ValueChangelogUrl) + console.log("variable70: ",variable70) + console.log("statsigpayloadDynamicConfigs2850107578ValueAndroidLargeFontScaleThreshold: ",statsigpayloadDynamicConfigs2850107578ValueAndroidLargeFontScaleThreshold) + console.log("statsigpayloadDynamicConfigs2842273360ValueMinVisibleFraction: ",statsigpayloadDynamicConfigs2842273360ValueMinVisibleFraction) + console.log("pageloadresourcehrefs: ",pageloadresourcehrefs) + console.log("statsigpayloadDynamicConfigs3131667714ValueRegions: ",statsigpayloadDynamicConfigs3131667714ValueRegions) + console.log("statsigpayloadLayerConfigs497415788ValueUpgradePillType: ",statsigpayloadLayerConfigs497415788ValueUpgradePillType) + const {systemHintsLogoAttributeWidth, systemHintsLogoAttributeFill} = await executeRequest0016({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + secureNextAuthCallbackUrlCookie, + cfuvidCookie + }) + console.log("systemHintsLogoAttributeWidth: ",systemHintsLogoAttributeWidth) + console.log("systemHintsLogoAttributeFill: ",systemHintsLogoAttributeFill) + const {accountsDefaultAccountAccountResidencyRegion} = await executeRequest0017({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + secureNextAuthCallbackUrlCookie, + cfuvidCookie + }) + console.log("accountsDefaultAccountAccountResidencyRegion: ",accountsDefaultAccountAccountResidencyRegion) + const {cfClearanceCookie} = await executeRequest0018({ + hostNextAuthCsrfTokenCookie, + secureNextAuthCallbackUrlCookie, + cfuvidCookie + }) + console.log("cfClearanceCookie: ",cfClearanceCookie) + const {cfBmCookie} = await executeRequest0018({ + hostNextAuthCsrfTokenCookie, + secureNextAuthCallbackUrlCookie, + cfuvidCookie + }) + console.log("cfBmCookie: ",cfBmCookie) + const {emailDomainType} = await executeRequest0018({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + secureNextAuthCallbackUrlCookie, + cfuvidCookie + }) + console.log("emailDomainType: ",emailDomainType) + const {oaiScCookie, cfuvidCookie1, prepareToken} = await executeRequest0019({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + secureNextAuthCallbackUrlCookie, + cfuvidCookie, + attributeType + }) + console.log("oaiScCookie: ",oaiScCookie) + console.log("cfuvidCookie1: ",cfuvidCookie1) + console.log("prepareToken: ",prepareToken) + const {variable32} = await executeRequest0020({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + secureNextAuthCallbackUrlCookie, + cfuvidCookie + }) + console.log("variable32: ",variable32) + const {voicesVoice} = await executeRequest0021({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + secureNextAuthCallbackUrlCookie, + cfuvidCookie + }) + console.log("voicesVoice: ",voicesVoice) + const {modelsProductFeaturesAttachmentsAcceptedMimeTypes, categoriesSubscriptionLevel, modelsSlug} = await executeRequest0021({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + secureNextAuthCallbackUrlCookie, + cfuvidCookie, + attributeAriaExpanded + }) + console.log("modelsProductFeaturesAttachmentsAcceptedMimeTypes: ",modelsProductFeaturesAttachmentsAcceptedMimeTypes) + console.log("categoriesSubscriptionLevel: ",categoriesSubscriptionLevel) + console.log("modelsSlug: ",modelsSlug) + const {} = await executeRequest0021({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + secureNextAuthCallbackUrlCookie, + cfuvidCookie, + attributeType, + session + }) + const {variable48, cfuvidCookie2} = await executeRequest0022({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + secureNextAuthCallbackUrlCookie, + cfuvidCookie + }) + console.log("variable48: ",variable48) + console.log("cfuvidCookie2: ",cfuvidCookie2) + const {} = await executeRequest0024({ + hostNextAuthCsrfTokenCookie, + secureNextAuthCallbackUrlCookie, + cfuvidCookie + }) + const {cfuvidCookie3, variable26} = await executeRequest0026({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + secureNextAuthCallbackUrlCookie, + cfuvidCookie + }) + console.log("cfuvidCookie3: ",cfuvidCookie3) + console.log("variable26: ",variable26) + const {origins, origins2} = await executeRequest0033({ + graphParentorganizationUrl, + systemHintsLogoAttributeFill + }) + console.log("origins: ",origins) + console.log("origins2: ",origins2) + const {oaiScCookie1} = await executeRequest0034({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + secureNextAuthCallbackUrlCookie, + attributeType, + origins, + cfClearanceCookie, + cfBmCookie, + oaiScCookie, + cfuvidCookie1, + prepareToken + }) + console.log("oaiScCookie1: ",oaiScCookie1) + const {} = await executeRequest0036({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + secureNextAuthCallbackUrlCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + oaiScCookie, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + cfuvidCookie2, + variable4, + origins2, + variable5, + statsigpayloadDynamicConfigs217573384Value, + attributeContent, + authstatus, + userGroups + }) + const {cfBmCookie1} = await executeRequest0037({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + secureNextAuthCallbackUrlCookie, + origins, + cfClearanceCookie, + oaiScCookie, + cfuvidCookie2 + }) + console.log("cfBmCookie1: ",cfBmCookie1) + const {currencyConfigPromosBusinessOneDollarAmount, currencyConfigSymbolCode} = await executeRequest0038({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + secureNextAuthCallbackUrlCookie, + origins, + cfClearanceCookie, + statsigpayloadDynamicConfigs3685705952ValueSms, + cfuvidCookie3, + oaiScCookie1, + cfBmCookie1 + }) + console.log("currencyConfigPromosBusinessOneDollarAmount: ",currencyConfigPromosBusinessOneDollarAmount) + console.log("currencyConfigSymbolCode: ",currencyConfigSymbolCode) + const {secureNextAuthCallbackUrlCookie1, secureNextAuthCallbackUrlCookie2, csrftoken} = await executeRequest0043({ + hostNextAuthCsrfTokenCookie, + secureNextAuthCallbackUrlCookie, + attributeType, + origins, + cfClearanceCookie, + cfuvidCookie3, + oaiScCookie1, + cfBmCookie1 + }) + console.log("secureNextAuthCallbackUrlCookie1: ",secureNextAuthCallbackUrlCookie1) + console.log("secureNextAuthCallbackUrlCookie2: ",secureNextAuthCallbackUrlCookie2) + console.log("csrftoken: ",csrftoken) + const {url, url1, urlClientId, urlAudience, url4, secureNextAuthStateCookie, cfBmCookie4} = await executeRequest0044({ + hostNextAuthCsrfTokenCookie, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + graphSameas, + secureNextAuthCallbackUrlCookie1, + secureNextAuthCallbackUrlCookie2, + csrftoken + }) + console.log("url: ",url) + console.log("url1: ",url1) + console.log("urlClientId: ",urlClientId) + console.log("urlAudience: ",urlAudience) + console.log("url4: ",url4) + console.log("secureNextAuthStateCookie: ",secureNextAuthStateCookie) + console.log("cfBmCookie4: ",cfBmCookie4) + const {variable8, variable9, oaiLoginCsrfDev3772291445Cookie, rgContextCookie, authProviderCookie, loginSessionCookie, hydraRedirectCookie, oaiClientAuthSessionCookie, unifiedSessionManifestCookie, authSessionMinimizedCookie, cfBmCookie2, cflbCookie, cfuvidCookie4, variable16} = await executeRequest0045({ + currencyConfigPromosBusinessOneDollarAmount, + attributeAriaExpanded, + statsigpayloadDynamicConfigs3685705952ValueSms, + url, + url1, + urlClientId, + statsigpayloadDynamicConfigs489084288ValueOptions + }) + console.log("variable8: ",variable8) + console.log("variable9: ",variable9) + console.log("oaiLoginCsrfDev3772291445Cookie: ",oaiLoginCsrfDev3772291445Cookie) + console.log("rgContextCookie: ",rgContextCookie) + console.log("authProviderCookie: ",authProviderCookie) + console.log("loginSessionCookie: ",loginSessionCookie) + console.log("hydraRedirectCookie: ",hydraRedirectCookie) + console.log("oaiClientAuthSessionCookie: ",oaiClientAuthSessionCookie) + console.log("unifiedSessionManifestCookie: ",unifiedSessionManifestCookie) + console.log("authSessionMinimizedCookie: ",authSessionMinimizedCookie) + console.log("cfBmCookie2: ",cfBmCookie2) + console.log("cflbCookie: ",cflbCookie) + console.log("cfuvidCookie4: ",cfuvidCookie4) + console.log("variable16: ",variable16) + const {variable22, immutableclientsessionmetadataAuthSessionLoggingId, immutableclientsessionmetadataAppNameEnum, cflbCookie1, track, attributeHref8, variable122} = await executeRequest0046({ + currencyConfigPromosBusinessOneDollarAmount, + url1, + variable8, + variable9, + oaiLoginCsrfDev3772291445Cookie, + rgContextCookie, + statsigpayloadFeatureGates6102981RuleId, + authProviderCookie, + loginSessionCookie, + hydraRedirectCookie, + oaiClientAuthSessionCookie, + unifiedSessionManifestCookie, + authSessionMinimizedCookie, + cfBmCookie2, + cflbCookie, + cfuvidCookie4 + }) + console.log("variable22: ",variable22) + console.log("immutableclientsessionmetadataAuthSessionLoggingId: ",immutableclientsessionmetadataAuthSessionLoggingId) + console.log("immutableclientsessionmetadataAppNameEnum: ",immutableclientsessionmetadataAppNameEnum) + console.log("cflbCookie1: ",cflbCookie1) + console.log("track: ",track) + console.log("attributeHref8: ",attributeHref8) + console.log("variable122: ",variable122) + const {evaluatedKeysStableid, derivedFieldsAppversion, evaluatedKeysCustomids, derivedFieldsBrowsername} = await executeRequest0050({ + currencyConfigPromosBusinessOneDollarAmount, + urlAudience + }) + console.log("evaluatedKeysStableid: ",evaluatedKeysStableid) + console.log("derivedFieldsAppversion: ",derivedFieldsAppversion) + console.log("evaluatedKeysCustomids: ",evaluatedKeysCustomids) + console.log("derivedFieldsBrowsername: ",derivedFieldsBrowsername) + const {} = await executeRequest0051({ + origins, + urlAudience + }) + const {} = await executeRequest0052({ + origins, + urlAudience + }) + const {variable64} = await executeRequest0054({ + systemHintsLogoAttributeFill, + urlAudience + }) + console.log("variable64: ",variable64) + const {} = await executeRequest0086({ + clientLocale, + attributeAriaExpanded, + session, + origins, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + statsigpayloadDynamicConfigs217573384Value, + authstatus, + userGroups, + secureNextAuthCallbackUrlCookie2, + url1, + variable8, + variable9, + urlAudience, + evaluatedKeysStableid, + derivedFieldsAppversion, + evaluatedKeysCustomids, + immutableclientsessionmetadataAuthSessionLoggingId + }) + const {} = await executeRequest0087({ + currencyConfigPromosBusinessOneDollarAmount, + evaluatedKeysStableid, + variable14 + }) + const {} = await executeRequest0088({ + clientLocale, + attributeAriaExpanded, + session, + origins, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + statsigpayloadDynamicConfigs217573384Value, + userGroups, + urlClientId, + urlAudience, + evaluatedKeysStableid, + derivedFieldsAppversion, + immutableclientsessionmetadataAuthSessionLoggingId, + immutableclientsessionmetadataAppNameEnum + }) + const {} = await executeRequest0089({ + systemHintsLogoAttributeFill + }) + const {cfClearanceCookie2} = await executeRequest0093({ + evaluatedKeysStableid + }) + console.log("cfClearanceCookie2: ",cfClearanceCookie2) + const {oaiScCookie2} = await executeRequest0094({ + evaluatedKeysStableid + }) + console.log("oaiScCookie2: ",oaiScCookie2) + const {continueUrl, authProviderCookie1, oaiClientAuthSessionCookie1, unifiedSessionManifestCookie1, authSessionMinimizedCookie1, cfBmCookie3, cflbCookie2, cfuvidCookie5, continueUrl1} = await executeRequest0096({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs3689744552ValueLookbackDays, + attributeType, + url1, + oaiLoginCsrfDev3772291445Cookie, + rgContextCookie, + statsigpayloadFeatureGates6102981RuleId, + authProviderCookie, + loginSessionCookie, + hydraRedirectCookie, + oaiClientAuthSessionCookie, + unifiedSessionManifestCookie, + authSessionMinimizedCookie, + cfBmCookie2, + cfuvidCookie4, + evaluatedKeysStableid, + url4, + variable16, + cflbCookie1, + oaiScCookie2 + }) + console.log("continueUrl: ",continueUrl) + console.log("authProviderCookie1: ",authProviderCookie1) + console.log("oaiClientAuthSessionCookie1: ",oaiClientAuthSessionCookie1) + console.log("unifiedSessionManifestCookie1: ",unifiedSessionManifestCookie1) + console.log("authSessionMinimizedCookie1: ",authSessionMinimizedCookie1) + console.log("cfBmCookie3: ",cfBmCookie3) + console.log("cflbCookie2: ",cflbCookie2) + console.log("cfuvidCookie5: ",cfuvidCookie5) + console.log("continueUrl1: ",continueUrl1) + const {variable18, authProviderCookie2, oaiClientAuthSessionCookie2, unifiedSessionManifestCookie2, authSessionMinimizedCookie2, variable20} = await executeRequest0102({ + currencyConfigPromosBusinessOneDollarAmount, + url1, + oaiLoginCsrfDev3772291445Cookie, + rgContextCookie, + statsigpayloadFeatureGates6102981RuleId, + loginSessionCookie, + hydraRedirectCookie, + evaluatedKeysStableid, + variable16, + oaiScCookie2, + continueUrl, + authProviderCookie1, + oaiClientAuthSessionCookie1, + unifiedSessionManifestCookie1, + authSessionMinimizedCookie1, + cfBmCookie3, + cflbCookie2, + cfuvidCookie5 + }) + console.log("variable18: ",variable18) + console.log("authProviderCookie2: ",authProviderCookie2) + console.log("oaiClientAuthSessionCookie2: ",oaiClientAuthSessionCookie2) + console.log("unifiedSessionManifestCookie2: ",unifiedSessionManifestCookie2) + console.log("authSessionMinimizedCookie2: ",authSessionMinimizedCookie2) + console.log("variable20: ",variable20) + const {cflbCookie3} = await executeRequest0103({ + currencyConfigPromosBusinessOneDollarAmount, + url1, + oaiLoginCsrfDev3772291445Cookie, + rgContextCookie, + statsigpayloadFeatureGates6102981RuleId, + loginSessionCookie, + hydraRedirectCookie, + evaluatedKeysStableid, + variable16, + oaiScCookie2, + cfBmCookie3, + cflbCookie2, + cfuvidCookie5, + variable18, + authProviderCookie2, + oaiClientAuthSessionCookie2, + unifiedSessionManifestCookie2, + authSessionMinimizedCookie2 + }) + console.log("cflbCookie3: ",cflbCookie3) + const {} = await executeRequest0104({ + statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + clientLocale, + attributeAriaExpanded, + session, + origins, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + statsigpayloadDynamicConfigs217573384Value, + authstatus, + userGroups, + secureNextAuthCallbackUrlCookie2, + url1, + variable8, + variable9, + urlAudience, + evaluatedKeysStableid, + derivedFieldsAppversion, + evaluatedKeysCustomids, + immutableclientsessionmetadataAuthSessionLoggingId + }) + const {} = await executeRequest0105({ + clientLocale, + attributeAriaExpanded, + session, + origins, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + userGroups, + secureNextAuthCallbackUrlCookie2, + url1, + urlClientId, + statsigpayloadDynamicConfigs489084288ValueOptions, + variable8, + variable9, + urlAudience, + evaluatedKeysStableid, + derivedFieldsAppversion, + immutableclientsessionmetadataAuthSessionLoggingId, + immutableclientsessionmetadataAppNameEnum + }) + const {cfClearanceCookie1} = await executeRequest0107({ + url1, + oaiLoginCsrfDev3772291445Cookie, + rgContextCookie, + statsigpayloadFeatureGates6102981RuleId, + loginSessionCookie, + hydraRedirectCookie, + evaluatedKeysStableid, + oaiScCookie2, + cfBmCookie3, + cfuvidCookie5, + authProviderCookie2, + oaiClientAuthSessionCookie2, + unifiedSessionManifestCookie2, + authSessionMinimizedCookie2, + cflbCookie3 + }) + console.log("cfClearanceCookie1: ",cfClearanceCookie1) + const {} = await executeRequest0109({ + origins, + urlAudience + }) + const {} = await executeRequest0112({ + origins, + urlAudience + }) + const {variable65, continueUrl2, continueUrl3, authProviderCookie3, oaiClientAuthSessionCookie3, unifiedSessionManifestCookie3, authSessionMinimizedCookie3, cflbCookie4, oaiClientAuthSessionCookieUsernameValue} = await executeRequest0137({ + currencyConfigPromosBusinessOneDollarAmount, + attributeType, + url1, + oaiLoginCsrfDev3772291445Cookie, + rgContextCookie, + statsigpayloadFeatureGates6102981RuleId, + loginSessionCookie, + hydraRedirectCookie, + evaluatedKeysStableid, + url4, + oaiScCookie2, + cfBmCookie3, + cfuvidCookie5, + authProviderCookie2, + oaiClientAuthSessionCookie2, + unifiedSessionManifestCookie2, + authSessionMinimizedCookie2, + cflbCookie3, + continueUrl1, + variable20, + cfClearanceCookie1 + }) + console.log("variable65: ",variable65) + console.log("continueUrl2: ",continueUrl2) + console.log("continueUrl3: ",continueUrl3) + console.log("authProviderCookie3: ",authProviderCookie3) + console.log("oaiClientAuthSessionCookie3: ",oaiClientAuthSessionCookie3) + console.log("unifiedSessionManifestCookie3: ",unifiedSessionManifestCookie3) + console.log("authSessionMinimizedCookie3: ",authSessionMinimizedCookie3) + console.log("cflbCookie4: ",cflbCookie4) + console.log("oaiClientAuthSessionCookieUsernameValue: ",oaiClientAuthSessionCookieUsernameValue) + const {} = await executeRequest0139({ + clientLocale, + attributeAriaExpanded, + session, + origins, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + statsigpayloadDynamicConfigs217573384Value, + userGroups, + url1, + urlClientId, + statsigpayloadDynamicConfigs489084288ValueOptions, + variable8, + variable9, + urlAudience, + evaluatedKeysStableid, + derivedFieldsAppversion, + immutableclientsessionmetadataAuthSessionLoggingId, + immutableclientsessionmetadataAppNameEnum, + variable18 + }) + const {} = await executeRequest0147({ + clientLocale, + attributeAriaExpanded, + session, + origins, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + statsigpayloadDynamicConfigs217573384Value, + authstatus, + userGroups, + url1, + variable8, + variable9, + urlAudience, + evaluatedKeysStableid, + derivedFieldsAppversion, + evaluatedKeysCustomids, + immutableclientsessionmetadataAuthSessionLoggingId, + variable18 + }) + const {} = await executeRequest0153({ + currencyConfigPromosBusinessOneDollarAmount, + evaluatedKeysStableid, + variable14, + oaiScCookie2, + cfClearanceCookie2 + }) + const {oaiScCookie3} = await executeRequest0155({ + evaluatedKeysStableid, + oaiScCookie2, + cfClearanceCookie2 + }) + console.log("oaiScCookie3: ",oaiScCookie3) + const {cfClearanceCookie3} = await executeRequest0156({ + evaluatedKeysStableid, + oaiScCookie2, + cfClearanceCookie2 + }) + console.log("cfClearanceCookie3: ",cfClearanceCookie3) + const {} = await executeRequest0157({ + statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + clientLocale, + attributeAriaExpanded, + session, + origins, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + statsigpayloadDynamicConfigs217573384Value, + authstatus, + userGroups, + url1, + variable8, + variable9, + urlAudience, + evaluatedKeysStableid, + derivedFieldsAppversion, + evaluatedKeysCustomids, + immutableclientsessionmetadataAuthSessionLoggingId, + variable18, + continueUrl2, + continueUrl3 + }) + const {} = await executeRequest0158({ + clientLocale, + attributeAriaExpanded, + session, + origins, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + statsigpayloadDynamicConfigs217573384Value, + userGroups, + urlClientId, + urlAudience, + evaluatedKeysStableid, + derivedFieldsAppversion, + immutableclientsessionmetadataAuthSessionLoggingId, + immutableclientsessionmetadataAppNameEnum, + continueUrl2 + }) + const {} = await executeRequest0162({ + clientLocale, + attributeAriaExpanded, + session, + origins, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + statsigpayloadDynamicConfigs217573384Value, + authstatus, + userGroups, + url1, + variable8, + variable9, + urlAudience, + evaluatedKeysStableid, + derivedFieldsAppversion, + evaluatedKeysCustomids, + immutableclientsessionmetadataAuthSessionLoggingId, + continueUrl2, + continueUrl3 + }) + const {cflbCookie5} = await executeRequest0165({ + variable12, + currencyConfigPromosBusinessOneDollarAmount, + url1, + oaiLoginCsrfDev3772291445Cookie, + rgContextCookie, + statsigpayloadFeatureGates6102981RuleId, + loginSessionCookie, + hydraRedirectCookie, + evaluatedKeysStableid, + cfBmCookie3, + cfuvidCookie5, + cfClearanceCookie1, + continueUrl3, + authProviderCookie3, + oaiClientAuthSessionCookie3, + unifiedSessionManifestCookie3, + authSessionMinimizedCookie3, + cflbCookie4, + oaiScCookie3 + }) + console.log("cflbCookie5: ",cflbCookie5) + const {} = await executeRequest0166({ + clientLocale, + attributeAriaExpanded, + session, + origins, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + statsigpayloadDynamicConfigs217573384Value, + userGroups, + url1, + urlClientId, + variable8, + variable9, + urlAudience, + evaluatedKeysStableid, + derivedFieldsAppversion, + immutableclientsessionmetadataAuthSessionLoggingId, + immutableclientsessionmetadataAppNameEnum, + continueUrl2, + continueUrl3 + }) + const {} = await executeRequest0168({ + clientLocale, + attributeAriaExpanded, + session, + origins, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + statsigpayloadDynamicConfigs217573384Value, + authstatus, + userGroups, + url1, + variable8, + variable9, + urlAudience, + evaluatedKeysStableid, + derivedFieldsAppversion, + evaluatedKeysCustomids, + immutableclientsessionmetadataAuthSessionLoggingId, + continueUrl2, + continueUrl3 + }) + const {} = await executeRequest0170({ + origins, + urlAudience + }) + const {} = await executeRequest0175({ + origins, + urlAudience + }) + const {} = await executeRequest0199({ + clientLocale, + attributeAriaExpanded, + session, + origins, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + statsigpayloadDynamicConfigs217573384Value, + userGroups, + urlClientId, + urlAudience, + evaluatedKeysStableid, + derivedFieldsAppversion, + immutableclientsessionmetadataAuthSessionLoggingId, + immutableclientsessionmetadataAppNameEnum, + continueUrl2 + }) + const {} = await executeRequest0201({ + systemHintsLogoAttributeFill + }) + const {} = await executeRequest0204({ + clientLocale, + attributeAriaExpanded, + session, + origins, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + statsigpayloadDynamicConfigs217573384Value, + authstatus, + userGroups, + urlAudience, + evaluatedKeysStableid, + derivedFieldsAppversion, + evaluatedKeysCustomids, + immutableclientsessionmetadataAuthSessionLoggingId, + continueUrl2, + continueUrl3 + }) + const {} = await executeRequest0210({ + currencyConfigPromosBusinessOneDollarAmount, + evaluatedKeysStableid, + variable14, + oaiScCookie3, + cfClearanceCookie3 + }) + const {} = await executeRequest0211({ + clientLocale, + attributeAriaExpanded, + session, + origins, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + statsigpayloadDynamicConfigs217573384Value, + userGroups, + urlClientId, + urlAudience, + evaluatedKeysStableid, + derivedFieldsAppversion, + immutableclientsessionmetadataAuthSessionLoggingId, + immutableclientsessionmetadataAppNameEnum, + continueUrl2, + continueUrl3 + }) + const {cfClearanceCookie4} = await executeRequest0212({ + evaluatedKeysStableid, + oaiScCookie3, + cfClearanceCookie3 + }) + console.log("cfClearanceCookie4: ",cfClearanceCookie4) + const {oaiScCookie4} = await executeRequest0214({ + evaluatedKeysStableid, + oaiScCookie3, + cfClearanceCookie3 + }) + console.log("oaiScCookie4: ",oaiScCookie4) + const {} = await executeRequest0215({ + variable12, + currencyConfigPromosBusinessOneDollarAmount, + url1, + oaiLoginCsrfDev3772291445Cookie, + rgContextCookie, + statsigpayloadFeatureGates6102981RuleId, + loginSessionCookie, + hydraRedirectCookie, + evaluatedKeysStableid, + cfBmCookie3, + cfuvidCookie5, + cfClearanceCookie1, + continueUrl3, + authProviderCookie3, + oaiClientAuthSessionCookie3, + unifiedSessionManifestCookie3, + authSessionMinimizedCookie3, + oaiScCookie3, + cflbCookie5 + }) + const {} = await executeRequest0218({ + clientLocale, + attributeAriaExpanded, + session, + origins, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + statsigpayloadDynamicConfigs217573384Value, + authstatus, + userGroups, + urlAudience, + evaluatedKeysStableid, + derivedFieldsAppversion, + evaluatedKeysCustomids, + immutableclientsessionmetadataAuthSessionLoggingId, + continueUrl2, + continueUrl3 + }) + const {} = await executeRequest0220({ + origins, + urlAudience + }) + const {} = await executeRequest0229({ + origins, + urlAudience + }) + const {} = await executeRequest0251({ + currencyConfigPromosBusinessOneDollarAmount, + evaluatedKeysStableid, + variable14, + cfClearanceCookie4, + oaiScCookie4 + }) + const {} = await executeRequest0252({ + clientLocale, + attributeAriaExpanded, + session, + origins, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + statsigpayloadDynamicConfigs217573384Value, + userGroups, + urlClientId, + urlAudience, + evaluatedKeysStableid, + derivedFieldsAppversion, + immutableclientsessionmetadataAuthSessionLoggingId, + immutableclientsessionmetadataAppNameEnum, + continueUrl2 + }) + const {cfClearanceCookie5} = await executeRequest0254({ + evaluatedKeysStableid, + cfClearanceCookie4, + oaiScCookie4 + }) + console.log("cfClearanceCookie5: ",cfClearanceCookie5) + const {} = await executeRequest0256({ + clientLocale, + attributeAriaExpanded, + session, + origins, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + statsigpayloadDynamicConfigs217573384Value, + authstatus, + userGroups, + urlAudience, + evaluatedKeysStableid, + derivedFieldsAppversion, + evaluatedKeysCustomids, + immutableclientsessionmetadataAuthSessionLoggingId, + continueUrl2, + continueUrl3 + }) + const {} = await executeRequest0257({ + evaluatedKeysStableid, + cfClearanceCookie4, + oaiScCookie4 + }) + const {oaiScCookie5} = await executeRequest0260({ + evaluatedKeysStableid, + oaiScCookie4, + cfClearanceCookie5 + }) + console.log("oaiScCookie5: ",oaiScCookie5) + const {continueUrl4} = await executeRequest0262({ + currencyConfigPromosBusinessOneDollarAmount, + attributeType, + url1, + oaiLoginCsrfDev3772291445Cookie, + rgContextCookie, + statsigpayloadFeatureGates6102981RuleId, + loginSessionCookie, + hydraRedirectCookie, + evaluatedKeysStableid, + url4, + cfBmCookie3, + cfuvidCookie5, + cfClearanceCookie1, + authProviderCookie3, + oaiClientAuthSessionCookie3, + unifiedSessionManifestCookie3, + authSessionMinimizedCookie3, + cflbCookie5, + oaiScCookie5 + }) + console.log("continueUrl4: ",continueUrl4) + const {} = await executeRequest0263({ + statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + clientLocale, + attributeAriaExpanded, + session, + origins, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + statsigpayloadDynamicConfigs217573384Value, + authstatus, + userGroups, + urlAudience, + evaluatedKeysStableid, + derivedFieldsAppversion, + evaluatedKeysCustomids, + immutableclientsessionmetadataAuthSessionLoggingId, + continueUrl2, + continueUrl3 + }) + const {} = await executeRequest0265({ + clientLocale, + attributeAriaExpanded, + session, + origins, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + userGroups, + urlClientId, + urlAudience, + evaluatedKeysStableid, + derivedFieldsAppversion, + immutableclientsessionmetadataAuthSessionLoggingId, + immutableclientsessionmetadataAppNameEnum, + continueUrl2, + continueUrl3 + }) + const {} = await executeRequest0266({ + evaluatedKeysStableid, + cfClearanceCookie5, + oaiScCookie5 + }) + const {accountCookie, secureNextAuthSessionTokenCookie, variable24} = await executeRequest0267({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + origins, + cfClearanceCookie, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + continueUrl4, + secureNextAuthStateCookie, + cfBmCookie4 + }) + console.log("accountCookie: ",accountCookie) + console.log("secureNextAuthSessionTokenCookie: ",secureNextAuthSessionTokenCookie) + console.log("variable24: ",variable24) + const {statsigpayloadLayerConfigs817522959ValueChatgptInstantAnswersDynamicConfigLabradorFetcherConfigRetrievalCandidateCount, statsigpayloadLayerConfigs817522959ValueChatgptInstantAnswersDynamicConfigLabradorFetcherConfigPromptMatchRejectsPromptTooLong, sessionAccesstoken, secureNextAuthSessionTokenCookie1, sessionUserId, sessionUserName, authstatus2, statsigpayloadLayerConfigs817522959ValueChatgptInstantAnswersDynamicConfigLabradorFetcherConfigAnnThreshold, statsigpayloadLayerConfigs817522959ValueChatgptInstantAnswersDynamicConfigAutoEvalSamplingRate, attributeHref11} = await executeRequest0268({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + secureNextAuthCallbackUrlCookie2, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + secureNextAuthSessionTokenCookie + }) + console.log("statsigpayloadLayerConfigs817522959ValueChatgptInstantAnswersDynamicConfigLabradorFetcherConfigRetrievalCandidateCount: ",statsigpayloadLayerConfigs817522959ValueChatgptInstantAnswersDynamicConfigLabradorFetcherConfigRetrievalCandidateCount) + console.log("statsigpayloadLayerConfigs817522959ValueChatgptInstantAnswersDynamicConfigLabradorFetcherConfigPromptMatchRejectsPromptTooLong: ",statsigpayloadLayerConfigs817522959ValueChatgptInstantAnswersDynamicConfigLabradorFetcherConfigPromptMatchRejectsPromptTooLong) + console.log("sessionAccesstoken: ",sessionAccesstoken) + console.log("secureNextAuthSessionTokenCookie1: ",secureNextAuthSessionTokenCookie1) + console.log("sessionUserId: ",sessionUserId) + console.log("sessionUserName: ",sessionUserName) + console.log("authstatus2: ",authstatus2) + console.log("statsigpayloadLayerConfigs817522959ValueChatgptInstantAnswersDynamicConfigLabradorFetcherConfigAnnThreshold: ",statsigpayloadLayerConfigs817522959ValueChatgptInstantAnswersDynamicConfigLabradorFetcherConfigAnnThreshold) + console.log("statsigpayloadLayerConfigs817522959ValueChatgptInstantAnswersDynamicConfigAutoEvalSamplingRate: ",statsigpayloadLayerConfigs817522959ValueChatgptInstantAnswersDynamicConfigAutoEvalSamplingRate) + console.log("attributeHref11: ",attributeHref11) + const {} = await executeRequest0270({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) + const {eligibleAnnouncements1, cfBmCookie5, cfuvidCookie6, eligibleAnnouncements, eligibleAnnouncements4, eligibleAnnouncements2, eligibleAnnouncements3, eligibleAnnouncements5, eligibleAnnouncements6, eligibleAnnouncements7} = await executeRequest0272({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) + console.log("eligibleAnnouncements1: ",eligibleAnnouncements1) + console.log("cfBmCookie5: ",cfBmCookie5) + console.log("cfuvidCookie6: ",cfuvidCookie6) + console.log("eligibleAnnouncements: ",eligibleAnnouncements) + console.log("eligibleAnnouncements4: ",eligibleAnnouncements4) + console.log("eligibleAnnouncements2: ",eligibleAnnouncements2) + console.log("eligibleAnnouncements3: ",eligibleAnnouncements3) + console.log("eligibleAnnouncements5: ",eligibleAnnouncements5) + console.log("eligibleAnnouncements6: ",eligibleAnnouncements6) + console.log("eligibleAnnouncements7: ",eligibleAnnouncements7) + const {} = await executeRequest0273({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) + const {adsSegmentId, object} = await executeRequest0273({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) + console.log("adsSegmentId: ",adsSegmentId) + console.log("object: ",object) + const {accounts9b62de654103487fAc2002e2030f03dfFeatures, accounts9b62de654103487fAc2002e2030f03dfEligiblePromoCampaignsPlusMetadataPlanName, accounts9b62de654103487fAc2002e2030f03dfEligiblePromoCampaignsPlusId} = await executeRequest0273({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + url4, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) + console.log("accounts9b62de654103487fAc2002e2030f03dfFeatures: ",accounts9b62de654103487fAc2002e2030f03dfFeatures) + console.log("accounts9b62de654103487fAc2002e2030f03dfEligiblePromoCampaignsPlusMetadataPlanName: ",accounts9b62de654103487fAc2002e2030f03dfEligiblePromoCampaignsPlusMetadataPlanName) + console.log("accounts9b62de654103487fAc2002e2030f03dfEligiblePromoCampaignsPlusId: ",accounts9b62de654103487fAc2002e2030f03dfEligiblePromoCampaignsPlusId) + const {} = await executeRequest0276({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + sessionUserId + }) + const {cfBmCookie7, cfuvidCookie8} = await executeRequest0277({ + statsigpayloadDynamicConfigs216497991ValueOutdatedRoomBootstrapMessagesCount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) + console.log("cfBmCookie7: ",cfBmCookie7) + console.log("cfuvidCookie8: ",cfuvidCookie8) + const {} = await executeRequest0278({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) + const {oaiScCookie6, prepareToken1} = await executeRequest0278({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) + console.log("oaiScCookie6: ",oaiScCookie6) + console.log("prepareToken1: ",prepareToken1) + const {} = await executeRequest0278({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) + const {variable42} = await executeRequest0280({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) + console.log("variable42: ",variable42) + const {} = await executeRequest0280({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) + const {variable38} = await executeRequest0281({ + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) + console.log("variable38: ",variable38) + const {variable57} = await executeRequest0281({ + variable12, + statsigpayloadLayerConfigs3850010910ValuePlusGracePeriodDays, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) + console.log("variable57: ",variable57) + const {} = await executeRequest0282({ + statsigpayloadDynamicConfigs216497991ValueOutdatedRoomBootstrapMessagesCount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) + const {} = await executeRequest0282({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + attributeContent, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) + const {} = await executeRequest0282({ + statsigpayloadDynamicConfigs1967546325ValueGdrivepercentage, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + sessionUserId, + statsigpayloadLayerConfigs109457ValueOnboardingStyle + }) + const {connectorsBrandingPrivacyPolicyV, connectorsBrandingWebsite, connectorsBrandingWebsite1, connectorsBrandingTermsOfService, connectorsKeywordsForDiscovery, connectorsKeywordsForDiscovery1, connectorsSupportedAuthOidcScopesSupported, connectorsBrandingTermsOfService1, connectorsSupportedAuthTokenUrl, connectorsSuggestionConfigImageUrl, connectorsBrandingPrivacyPolicy, connectorsBrandingTermsOfService2, connectorsSupportedAuthOidcScopesSupported1, connectorsBrandingWebsite2, connectorsSupportedAuthOidcUserinfoEndpoint, connectorsLinkParamsSchemaType, connectorsBrandingPrivacyPolicy1, connectorsBrandingPrivacyPolicy2, connectorsSupportedAuthOidcScopesSupported2, connectorsSupportedAuthAuthorizationUrl, connectorsKeywordsForDiscovery2, connectorsBrandingPrivacyPolicy3, connectorsSupportedAuthScopesSupported} = await executeRequest0283({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + sessionUserId + }) + console.log("connectorsBrandingPrivacyPolicyV: ",connectorsBrandingPrivacyPolicyV) + console.log("connectorsBrandingWebsite: ",connectorsBrandingWebsite) + console.log("connectorsBrandingWebsite1: ",connectorsBrandingWebsite1) + console.log("connectorsBrandingTermsOfService: ",connectorsBrandingTermsOfService) + console.log("connectorsKeywordsForDiscovery: ",connectorsKeywordsForDiscovery) + console.log("connectorsKeywordsForDiscovery1: ",connectorsKeywordsForDiscovery1) + console.log("connectorsSupportedAuthOidcScopesSupported: ",connectorsSupportedAuthOidcScopesSupported) + console.log("connectorsBrandingTermsOfService1: ",connectorsBrandingTermsOfService1) + console.log("connectorsSupportedAuthTokenUrl: ",connectorsSupportedAuthTokenUrl) + console.log("connectorsSuggestionConfigImageUrl: ",connectorsSuggestionConfigImageUrl) + console.log("connectorsBrandingPrivacyPolicy: ",connectorsBrandingPrivacyPolicy) + console.log("connectorsBrandingTermsOfService2: ",connectorsBrandingTermsOfService2) + console.log("connectorsSupportedAuthOidcScopesSupported1: ",connectorsSupportedAuthOidcScopesSupported1) + console.log("connectorsBrandingWebsite2: ",connectorsBrandingWebsite2) + console.log("connectorsSupportedAuthOidcUserinfoEndpoint: ",connectorsSupportedAuthOidcUserinfoEndpoint) + console.log("connectorsLinkParamsSchemaType: ",connectorsLinkParamsSchemaType) + console.log("connectorsBrandingPrivacyPolicy1: ",connectorsBrandingPrivacyPolicy1) + console.log("connectorsBrandingPrivacyPolicy2: ",connectorsBrandingPrivacyPolicy2) + console.log("connectorsSupportedAuthOidcScopesSupported2: ",connectorsSupportedAuthOidcScopesSupported2) + console.log("connectorsSupportedAuthAuthorizationUrl: ",connectorsSupportedAuthAuthorizationUrl) + console.log("connectorsKeywordsForDiscovery2: ",connectorsKeywordsForDiscovery2) + console.log("connectorsBrandingPrivacyPolicy3: ",connectorsBrandingPrivacyPolicy3) + console.log("connectorsSupportedAuthScopesSupported: ",connectorsSupportedAuthScopesSupported) + const {variable43} = await executeRequest0284({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + connectorsBrandingWebsite, + variable26 + }) + console.log("variable43: ",variable43) + const {} = await executeRequest0284({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) + const {modesDrlegacyCapabilitiesConnectMore} = await executeRequest0284({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + connectorsBrandingWebsite1 + }) + console.log("modesDrlegacyCapabilitiesConnectMore: ",modesDrlegacyCapabilitiesConnectMore) + const {} = await executeRequest0284({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) + const {} = await executeRequest0284({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + connectorsBrandingTermsOfService + }) + const {} = await executeRequest0285({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) + const {} = await executeRequest0286({ + attributeWidth, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) + const {} = await executeRequest0288({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) + const {} = await executeRequest0289({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + object + }) + const {cfBmCookie6, cfuvidCookie7} = await executeRequest0290({ + variable12, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + eligibleAnnouncements1, + cfBmCookie5, + cfuvidCookie6 + }) + console.log("cfBmCookie6: ",cfBmCookie6) + console.log("cfuvidCookie7: ",cfuvidCookie7) + const {} = await executeRequest0290({ + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + cfuvidCookie3, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + cfBmCookie4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1 + }) + const {} = await executeRequest0291({ + variable12, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + cfBmCookie5, + cfuvidCookie6, + eligibleAnnouncements + }) + const {} = await executeRequest0292({ + variable12, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + cfBmCookie5, + cfuvidCookie6, + eligibleAnnouncements4 + }) + const {cfBmCookie10, cfuvidCookie12} = await executeRequest0292({ + variable12, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + cfBmCookie5, + cfuvidCookie6, + eligibleAnnouncements2 + }) + console.log("cfBmCookie10: ",cfBmCookie10) + console.log("cfuvidCookie12: ",cfuvidCookie12) + const {cfBmCookie11, cfuvidCookie13} = await executeRequest0293({ + variable12, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + cfBmCookie5, + cfuvidCookie6, + eligibleAnnouncements3 + }) + console.log("cfBmCookie11: ",cfBmCookie11) + console.log("cfuvidCookie13: ",cfuvidCookie13) + const {cfBmCookie12, cfuvidCookie14} = await executeRequest0294({ + variable12, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + cfBmCookie5, + cfuvidCookie6, + eligibleAnnouncements5 + }) + console.log("cfBmCookie12: ",cfBmCookie12) + console.log("cfuvidCookie14: ",cfuvidCookie14) + const {cfBmCookie13, cfuvidCookie15} = await executeRequest0295({ + variable12, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + origins, + cfClearanceCookie, + variable4, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + cfBmCookie5, + cfuvidCookie6, + eligibleAnnouncements6 + }) + console.log("cfBmCookie13: ",cfBmCookie13) + console.log("cfuvidCookie15: ",cfuvidCookie15) + const {} = await executeRequest0296({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + cfBmCookie5, + cfuvidCookie6, + connectorsKeywordsForDiscovery, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue + }) + const {} = await executeRequest0297({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + urlAudience, + evaluatedKeysStableid, + accountCookie, + variable24, + secureNextAuthSessionTokenCookie1, + cfBmCookie5, + cfuvidCookie6, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + connectorsKeywordsForDiscovery1 + }) + const {cfuvidCookie9} = await executeRequest0298({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + cfBmCookie5, + cfuvidCookie6, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue + }) + console.log("cfuvidCookie9: ",cfuvidCookie9) + const {cfBmCookie8, cfuvidCookie10} = await executeRequest0300({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + cfBmCookie5, + cfuvidCookie6, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + attributeRole, + voicesVoice, + statsigpayloadLayerConfigs4112645001ValueOutline + }) + console.log("cfBmCookie8: ",cfBmCookie8) + console.log("cfuvidCookie10: ",cfuvidCookie10) + const {} = await executeRequest0300({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + statsigpayloadDynamicConfigs3685705952ValueSms, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie6, + cfBmCookie6, + cfuvidCookie7 + }) + const {oaiScCookie7, cfuvidCookie11} = await executeRequest0301({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie6, + cfBmCookie7, + cfuvidCookie8, + prepareToken1 + }) + console.log("oaiScCookie7: ",oaiScCookie7) + console.log("cfuvidCookie11: ",cfuvidCookie11) + const {cfBmCookie9} = await executeRequest0302({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + urlAudience, + evaluatedKeysStableid, + accountCookie, + variable24, + secureNextAuthSessionTokenCookie1, + cfBmCookie5, + cfuvidCookie6, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + connectorsKeywordsForDiscovery1 + }) + console.log("cfBmCookie9: ",cfBmCookie9) + const {} = await executeRequest0303({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + object, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie6, + cfBmCookie6, + cfuvidCookie7 + }) + const {} = await executeRequest0305({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + oaiScCookie1, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + url4, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + cfBmCookie5, + cfuvidCookie6, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue + }) + const {} = await executeRequest0306({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + userGroups, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie6, + statsigpayloadDynamicConfigs2850107578ValueOnboardingCardImageUrl, + cfuvidCookie9 + }) + const {} = await executeRequest0307({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie6, + cfBmCookie8, + cfuvidCookie10 + }) + const {} = await executeRequest0307({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + userGroups, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie6, + statsigpayloadDynamicConfigs2850107578ValueOnboardingCardImageUrl, + cfuvidCookie9 + }) + const {variable62} = await executeRequest0310({ + variable12, + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs1504865540ValueMaxFileSizeMb, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + url4, + accountCookie, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie6, + cfBmCookie8, + cfuvidCookie10, + connectorsSupportedAuthOidcScopesSupported + }) + console.log("variable62: ",variable62) + const {} = await executeRequest0314({ + currencyConfigPromosBusinessOneDollarAmount, + adsSegmentId, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + origins2, + variable5, + statsigpayloadDynamicConfigs217573384Value, + attributeContent, + userGroups, + secureNextAuthCallbackUrlCookie1, + url1, + urlAudience, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + sessionUserId, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + connectorsBrandingTermsOfService1, + oaiScCookie7, + cfuvidCookie11, + cfBmCookie9, + authstatus2, + categoriesSubscriptionLevel + }) + const {} = await executeRequest0315({ + currencyConfigPromosBusinessOneDollarAmount, + adsSegmentId, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + origins2, + variable5, + statsigpayloadDynamicConfigs217573384Value, + attributeContent, + userGroups, + secureNextAuthCallbackUrlCookie1, + secureNextAuthCallbackUrlCookie2, + url1, + urlAudience, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + sessionUserId, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + connectorsBrandingTermsOfService1, + oaiScCookie7, + cfuvidCookie11, + cfBmCookie9, + authstatus2, + categoriesSubscriptionLevel + }) + const {} = await executeRequest0317({ + currencyConfigPromosBusinessOneDollarAmount, + adsSegmentId, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + origins2, + variable5, + attributeContent, + userGroups, + secureNextAuthCallbackUrlCookie1, + secureNextAuthCallbackUrlCookie2, + url1, + urlAudience, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + sessionUserId, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie7, + cfuvidCookie11, + cfBmCookie9, + authstatus2, + categoriesSubscriptionLevel + }) + const {} = await executeRequest0319({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + statsigpayloadDynamicConfigs3685705952ValueSms, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie7, + cfuvidCookie11, + cfBmCookie9 + }) + const {} = await executeRequest0319({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + object, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie6, + cfBmCookie6, + cfuvidCookie7 + }) + const {cfuvidCookie16} = await executeRequest0320({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie7, + cfuvidCookie11, + cfBmCookie9 + }) + console.log("cfuvidCookie16: ",cfuvidCookie16) + const {} = await executeRequest0322({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + object, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie6, + cfBmCookie10, + cfuvidCookie12 + }) + const {} = await executeRequest0327({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + object, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie6, + cfBmCookie10, + cfuvidCookie12 + }) + const {} = await executeRequest0328({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + object, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie6, + cfBmCookie11, + cfuvidCookie13 + }) + const {} = await executeRequest0329({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + object, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie6, + cfBmCookie12, + cfuvidCookie14 + }) + const {} = await executeRequest0330({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + object, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie6, + cfBmCookie13, + cfuvidCookie15 + }) + const {} = await executeRequest0333({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + variable14, + variable24, + secureNextAuthSessionTokenCookie1, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie7, + cfuvidCookie16 + }) + const {} = await executeRequest0334({ + variable12, + attributeAriaExpanded, + origins, + variable4, + origins2, + statsigpayloadDynamicConfigs217573384Value, + url1, + variable24 + }) + const {} = await executeRequest0337({ + variable12, + attributeAriaExpanded, + origins, + variable4, + origins2, + statsigpayloadDynamicConfigs217573384Value, + url1, + variable24 + }) + const {oaiScCookie8} = await executeRequest0338({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + secureNextAuthSessionTokenCookie1, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie7, + cfuvidCookie16 + }) + console.log("oaiScCookie8: ",oaiScCookie8) + const {} = await executeRequest0340({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + statsigpayloadDynamicConfigs217573384Value, + attributeContent, + statsigpayloadDynamicConfigs3685705952ValueSms, + secureNextAuthCallbackUrlCookie1, + statsigpayloadFeatureGates6102981RuleId, + evaluatedKeysStableid, + variable24, + secureNextAuthSessionTokenCookie1, + eligibleAnnouncements1, + eligibleAnnouncements, + eligibleAnnouncements4, + eligibleAnnouncements2, + eligibleAnnouncements3, + eligibleAnnouncements5, + eligibleAnnouncements6, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + cfuvidCookie16, + oaiScCookie8, + accounts9b62de654103487fAc2002e2030f03dfFeatures, + statsigpayloadDynamicConfigs3685705952ValueWhatsapp, + track, + cluster + }) + const {} = await executeRequest0341({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + urlAudience, + evaluatedKeysStableid, + variable24, + secureNextAuthSessionTokenCookie1, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + cfuvidCookie16, + oaiScCookie8 + }) + const {cfuvidCookie17, processorEntity, checkoutSessionId, publishableKey, checkoutProvider} = await executeRequest0345({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + statsigpayloadDynamicConfigs3685705952ValueSms, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + secureNextAuthSessionTokenCookie1, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + cfuvidCookie16, + oaiScCookie8, + accounts9b62de654103487fAc2002e2030f03dfEligiblePromoCampaignsPlusMetadataPlanName, + currencyConfigSymbolCode, + accounts9b62de654103487fAc2002e2030f03dfEligiblePromoCampaignsPlusId + }) + console.log("cfuvidCookie17: ",cfuvidCookie17) + console.log("processorEntity: ",processorEntity) + console.log("checkoutSessionId: ",checkoutSessionId) + console.log("publishableKey: ",publishableKey) + console.log("checkoutProvider: ",checkoutProvider) + const {oaiScCookie9} = await executeRequest0348({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + secureNextAuthSessionTokenCookie1, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie8, + cfuvidCookie17 + }) + console.log("oaiScCookie9: ",oaiScCookie9) + const {} = await executeRequest0351({ + variable12, + attributeAriaExpanded, + origins, + variable4, + origins2, + statsigpayloadDynamicConfigs217573384Value, + url1, + variable24, + processorEntity, + checkoutSessionId + }) + const {} = await executeRequest0352({ + currencyConfigPromosBusinessOneDollarAmount, + adsSegmentId, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + origins2, + variable5, + statsigpayloadDynamicConfigs217573384Value, + attributeContent, + userGroups, + secureNextAuthCallbackUrlCookie1, + url1, + urlAudience, + evaluatedKeysStableid, + sessionAccesstoken, + sessionUserId, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + connectorsBrandingTermsOfService1, + authstatus2, + categoriesSubscriptionLevel, + cfuvidCookie17, + processorEntity, + checkoutSessionId, + oaiScCookie9 + }) + const {variable33, attributeSrc, attributeHref9, attributeHref10, variable29, variable98} = await executeRequest0356({ + currencyConfigPromosBusinessOneDollarAmount, + variable14, + variable24, + connectorsSupportedAuthTokenUrl + }) + console.log("variable33: ",variable33) + console.log("attributeSrc: ",attributeSrc) + console.log("attributeHref9: ",attributeHref9) + console.log("attributeHref10: ",attributeHref10) + console.log("variable29: ",variable29) + console.log("variable98: ",variable98) + const {} = await executeRequest0357({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + secureNextAuthCallbackUrlCookie1, + urlAudience, + evaluatedKeysStableid, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + cfuvidCookie17, + oaiScCookie9, + connectorsSuggestionConfigImageUrl + }) + const {} = await executeRequest0358({ + currencyConfigPromosBusinessOneDollarAmount, + variable14, + variable24, + connectorsSupportedAuthTokenUrl + }) + const {} = await executeRequest0360({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + secureNextAuthCallbackUrlCookie1, + urlAudience, + evaluatedKeysStableid, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + cfuvidCookie17, + oaiScCookie9, + connectorsSuggestionConfigImageUrl + }) + const {} = await executeRequest0360({ + currencyConfigPromosBusinessOneDollarAmount, + variable14 + }) + const {variable36} = await executeRequest0361({ + attributeType, + connectorsSupportedAuthTokenUrl + }) + console.log("variable36: ",variable36) + const {} = await executeRequest0362({ + attributeType, + connectorsSupportedAuthTokenUrl, + attributeSrc, + connectorsBrandingPrivacyPolicy + }) + const {variable50} = await executeRequest0363({ + attributeType, + origins, + attributeHref9 + }) + console.log("variable50: ",variable50) + const {} = await executeRequest0364({ + attributeType, + connectorsSupportedAuthTokenUrl, + attributeSrc, + connectorsBrandingPrivacyPolicy + }) + const {state, configId, id, accountSettingsAccountId, uiMode, taxContextTaxIdCollectionRequired, locale, currency, orderedPaymentMethodTypes, orderedPaymentMethodTypes1, variable40, object2, mode, experimentsDataExperimentAssignmentsCheckoutEnableRealTimeTaxIdVerificationExperiment, experimentsDataExperimentAssignmentsOcsBuyerXpCplCurrencySymbolOptimization, siteKey, linkSettingsHcaptchaSiteKey, linkSettingsLinkMode, accountSettingsBrandingBackgroundColor, variable106, returnUrl, returnUrl1, returnUrl2, returnUrl3} = await executeRequest0365({ + attributeType, + urlAudience, + checkoutSessionId, + attributeHref10 + }) + console.log("state: ",state) + console.log("configId: ",configId) + console.log("id: ",id) + console.log("accountSettingsAccountId: ",accountSettingsAccountId) + console.log("uiMode: ",uiMode) + console.log("taxContextTaxIdCollectionRequired: ",taxContextTaxIdCollectionRequired) + console.log("locale: ",locale) + console.log("currency: ",currency) + console.log("orderedPaymentMethodTypes: ",orderedPaymentMethodTypes) + console.log("orderedPaymentMethodTypes1: ",orderedPaymentMethodTypes1) + console.log("variable40: ",variable40) + console.log("object2: ",object2) + console.log("mode: ",mode) + console.log("experimentsDataExperimentAssignmentsCheckoutEnableRealTimeTaxIdVerificationExperiment: ",experimentsDataExperimentAssignmentsCheckoutEnableRealTimeTaxIdVerificationExperiment) + console.log("experimentsDataExperimentAssignmentsOcsBuyerXpCplCurrencySymbolOptimization: ",experimentsDataExperimentAssignmentsOcsBuyerXpCplCurrencySymbolOptimization) + console.log("siteKey: ",siteKey) + console.log("linkSettingsHcaptchaSiteKey: ",linkSettingsHcaptchaSiteKey) + console.log("linkSettingsLinkMode: ",linkSettingsLinkMode) + console.log("accountSettingsBrandingBackgroundColor: ",accountSettingsBrandingBackgroundColor) + console.log("variable106: ",variable106) + console.log("returnUrl: ",returnUrl) + console.log("returnUrl1: ",returnUrl1) + console.log("returnUrl2: ",returnUrl2) + console.log("returnUrl3: ",returnUrl3) + const {} = await executeRequest0366({ + currencyConfigPromosBusinessOneDollarAmount, + variable14, + variable24, + connectorsSupportedAuthTokenUrl, + state + }) + const {sessionId, configId1, experimentsDataArbId, variable52, linkSettingsLinkDisabledReasonsPaymentElementPaymentMethodMode, experimentsDataExperimentAssignmentsLinkGlobalHoldbackAa, prefillSelectorsDefaultValuesEmail, prefillSelectorsDefaultValuesEmail1, prefillSelectorsDefaultValuesEmail2, prefillSelectorsDefaultValuesEmail3, prefillSelectorsDefaultValuesEmail4, prefillSelectorsDefaultValuesEmail5, prefillSelectorsDefaultValuesEmail6, prefillSelectorsDefaultValuesEmail7, prefillSelectorsDefaultValuesEmail8, prefillSelectorsDefaultValuesEmail9, passiveCaptchaSiteKey, linkSettingsLinkBrand, linkSettingsLinkHcaptchaRqdata} = await executeRequest0367({ + attributeType, + urlAudience, + attributeHref10 + }) + console.log("sessionId: ",sessionId) + console.log("configId1: ",configId1) + console.log("experimentsDataArbId: ",experimentsDataArbId) + console.log("variable52: ",variable52) + console.log("linkSettingsLinkDisabledReasonsPaymentElementPaymentMethodMode: ",linkSettingsLinkDisabledReasonsPaymentElementPaymentMethodMode) + console.log("experimentsDataExperimentAssignmentsLinkGlobalHoldbackAa: ",experimentsDataExperimentAssignmentsLinkGlobalHoldbackAa) + console.log("prefillSelectorsDefaultValuesEmail: ",prefillSelectorsDefaultValuesEmail) + console.log("prefillSelectorsDefaultValuesEmail1: ",prefillSelectorsDefaultValuesEmail1) + console.log("prefillSelectorsDefaultValuesEmail2: ",prefillSelectorsDefaultValuesEmail2) + console.log("prefillSelectorsDefaultValuesEmail3: ",prefillSelectorsDefaultValuesEmail3) + console.log("prefillSelectorsDefaultValuesEmail4: ",prefillSelectorsDefaultValuesEmail4) + console.log("prefillSelectorsDefaultValuesEmail5: ",prefillSelectorsDefaultValuesEmail5) + console.log("prefillSelectorsDefaultValuesEmail6: ",prefillSelectorsDefaultValuesEmail6) + console.log("prefillSelectorsDefaultValuesEmail7: ",prefillSelectorsDefaultValuesEmail7) + console.log("prefillSelectorsDefaultValuesEmail8: ",prefillSelectorsDefaultValuesEmail8) + console.log("prefillSelectorsDefaultValuesEmail9: ",prefillSelectorsDefaultValuesEmail9) + console.log("passiveCaptchaSiteKey: ",passiveCaptchaSiteKey) + console.log("linkSettingsLinkBrand: ",linkSettingsLinkBrand) + console.log("linkSettingsLinkHcaptchaRqdata: ",linkSettingsLinkHcaptchaRqdata) + const {} = await executeRequest0367({ + currencyConfigPromosBusinessOneDollarAmount, + variable14, + variable24, + connectorsSupportedAuthTokenUrl, + state + }) + const {variable84} = await executeRequest0367({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable28, + variable29 + }) + console.log("variable84: ",variable84) + const {} = await executeRequest0368({ + currencyConfigPromosBusinessOneDollarAmount, + variable14, + connectorsSupportedAuthTokenUrl, + state + }) + const {variable51} = await executeRequest0370({ + variable12, + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs2179180337ValueMaxAttempts, + variable32, + attributeWidth, + statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + statsigpayloadLayerConfigs817522959ValueChatgptInstantAnswersDynamicConfigLabradorFetcherConfigPromptMatchRejectsPromptTooLong, + variable33, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + statsigpayloadDynamicConfigs3317473948ValueModelSlugMaxPollingDurationsO1Pro, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary + }) + console.log("variable51: ",variable51) + const {} = await executeRequest0371({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + attributeWidth, + 20, + variable36, + 22, + systemHintsLogoAttributeWidth, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray + }) + const {} = await executeRequest0372({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueOutdatedRoomBootstrapMessagesCount, + statsigpayloadDynamicConfigs3165814200ValueMaxRetryCount, + variable38, + statsigpayloadLayerConfigs1092897457ValueMaxCommitConversationStalenessDays, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + statsigpayloadDynamicConfigs3317473948ValueModelSlugMaxPollingDurationsO1Pro, + attributeType, + attributeAriaExpanded, + variable4, + statsigpayloadDynamicConfigs3685705952ValueSms, + urlAudience, + statsigpayloadLayerConfigs4112645001ValueOutline, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + id, + accountSettingsAccountId, + uiMode, + taxContextTaxIdCollectionRequired, + locale, + currency, + orderedPaymentMethodTypes + }) + const {variable56} = await executeRequest0372({ + currencyConfigPromosBusinessOneDollarAmount, + origins2, + variable14, + state, + attributeHref8 + }) + console.log("variable56: ",variable56) + const {} = await executeRequest0373({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs3230069703ValueExpiryseconds, + attributeWidth1, + variable32, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + orderedPaymentMethodTypes1 + }) + const {} = await executeRequest0373({ + variable12, + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueSidebarPaginationPageSize, + statsigpayloadDynamicConfigs349489989ValueOneCharacterAnimationDurationMs, + 7, + statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + statsigpayloadDynamicConfigs3317473948ValueModelSlugMaxPollingDurationsO1Pro, + attributeType, + attributeAriaExpanded, + variable4, + urlAudience, + checkoutSessionId, + attributeHref10, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary, + configId, + id, + locale, + currency, + variable40, + emailDomainType, + object2, + mode, + connectorsSupportedAuthOidcScopesSupported1, + checkoutProvider + }) + const {} = await executeRequest0373({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs1504865540ValueMaxFileSizeMb, + variable42, + variable43, + statsigpayloadLayerConfigs3850010910ValuePlusGracePeriodDays, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + locale, + statsigpayloadLayerConfigs3680755560ValuePriorityArray1 + }) + const {} = await executeRequest0374({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs2943229081ValueVoiceUsedWithinPastDays, + variable22, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + urlAudience, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + id, + accountSettingsAccountId, + uiMode, + statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + connectorsBrandingWebsite2, + statsigpayloadDynamicConfigs2281575548ValueSafetyUrl + }) + const {} = await executeRequest0375({ + currencyConfigPromosBusinessOneDollarAmount, + variable48, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + currency, + sessionId, + configId1, + experimentsDataArbId + }) + const {} = await executeRequest0376({ + variable12, + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + attributeWidth, + variable50, + statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + variable51, + attributeType, + attributeAriaExpanded, + variable4, + urlAudience, + statsigpayloadLayerConfigs109457ValueOnboardingStyle, + checkoutSessionId, + attributeHref10, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + emailDomainType, + variable52, + linkSettingsLinkDisabledReasonsPaymentElementPaymentMethodMode + }) + const {} = await executeRequest0376({ + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadLayerConfigs2128165686ValueProductsHeapWeight, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + currency, + sessionId, + configId1, + experimentsDataArbId, + experimentsDataExperimentAssignmentsCheckoutEnableRealTimeTaxIdVerificationExperiment, + experimentsDataExperimentAssignmentsOcsBuyerXpCplCurrencySymbolOptimization, + experimentsDataExperimentAssignmentsLinkGlobalHoldbackAa + }) + const {} = await executeRequest0376({ + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs2179180337ValueMaxAttempts, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable28, + variable29 + }) + const {} = await executeRequest0377({ + currencyConfigPromosBusinessOneDollarAmount, + variable14, + variable24, + connectorsSupportedAuthTokenUrl, + state + }) + const {} = await executeRequest0378({ + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary, + configId, + accountSettingsAccountId, + currency, + statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + sessionId, + configId1, + experimentsDataArbId, + experimentsDataExperimentAssignmentsCheckoutEnableRealTimeTaxIdVerificationExperiment + }) + const {} = await executeRequest0378({ + variable12, + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + variable56, + variable57, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary, + configId, + accountSettingsAccountId, + locale, + currency, + emailDomainType, + sessionId, + configId1, + experimentsDataArbId + }) + const {} = await executeRequest0378({ + variable12, + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + connectorsBrandingPrivacyPolicyV, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + locale, + currency, + mode, + connectorsSupportedAuthOidcScopesSupported1, + checkoutProvider, + sessionId, + configId1, + prefillSelectorsDefaultValuesEmail, + prefillSelectorsDefaultValuesEmail1, + prefillSelectorsDefaultValuesEmail2, + prefillSelectorsDefaultValuesEmail3, + prefillSelectorsDefaultValuesEmail4, + prefillSelectorsDefaultValuesEmail5, + prefillSelectorsDefaultValuesEmail6, + prefillSelectorsDefaultValuesEmail7, + prefillSelectorsDefaultValuesEmail8, + prefillSelectorsDefaultValuesEmail9 + }) + const {variable92} = await executeRequest0379({ + currencyConfigPromosBusinessOneDollarAmount, + variable14, + variable24, + connectorsSupportedAuthTokenUrl, + state + }) + console.log("variable92: ",variable92) + const {} = await executeRequest0380({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs916292397ValueMaxImpressions, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + sessionId, + configId1 + }) + const {variable78} = await executeRequest0381({ + systemHintsLogoAttributeFill, + urlAudience + }) + console.log("variable78: ",variable78) + const {} = await executeRequest0381({ + variable12, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + variable62, + statsigpayloadDynamicConfigs3689744552ValueLookbackDays, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + sessionId, + configId1 + }) + const {} = await executeRequest0382({ + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadDynamicConfigs216497991ValueSidebarPaginationPageSize, + statsigpayloadDynamicConfigs349489989ValueOneCharacterAnimationDurationMs, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable28, + variable29 + }) + const {} = await executeRequest0382({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + sessionId, + configId1 + }) + const {} = await executeRequest0382({ + currencyConfigPromosBusinessOneDollarAmount, + origins2, + variable14, + state, + attributeHref8 + }) + const {} = await executeRequest0383({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + 7, + statsigpayloadDynamicConfigs216497991ValueOutdatedRoomBootstrapMessagesCount, + statsigpayloadDynamicConfigs3165814200ValueMaxRetryCount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable28, + variable29 + }) + const {variable68} = await executeRequest0384({ + attributeType, + urlAudience, + checkoutSessionId, + attributeHref10 + }) + console.log("variable68: ",variable68) + const {} = await executeRequest0385({ + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadLayerConfigs684023316ValueMemoryAlmostFullThreshold, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + statsigpayloadLayerConfigs16371226ValuePricingModalStorageUpsellSummary, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + currency, + sessionId, + configId1, + experimentsDataArbId + }) + const {} = await executeRequest0385({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + currency, + sessionId, + configId1, + siteKey, + passiveCaptchaSiteKey, + linkSettingsHcaptchaSiteKey + }) + const {} = await executeRequest0385({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadLayerConfigs1368081792ValueTatortotContextualUpsellFrequencyWindowLengthHours, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + currency, + sessionId, + configId1, + linkSettingsLinkMode + }) + const {} = await executeRequest0386({ + systemHintsLogoAttributeFill, + urlAudience + }) + const {} = await executeRequest0387({ + urlAudience, + statsigpayloadLayerConfigs1803944755ValueExpressServerDeliveryMechanism + }) + const {variable72} = await executeRequest0388({ + statsigpayloadDynamicConfigs3165814200ValueMinRetryInterval, + attributeType, + variable4, + urlAudience, + oaiClientAuthSessionCookieUsernameValue, + attributeHref10, + publishableKey, + statsigpayloadDynamicConfigs349697204ValueChangelogUrl + }) + console.log("variable72: ",variable72) + const {} = await executeRequest0388({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + statsigpayloadDynamicConfigs3685705952ValueSms, + statsigpayloadLayerConfigs109457ValueOnboardingStyle, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + currency, + sessionId, + configId1 + }) + const {} = await executeRequest0388({ + systemHintsLogoAttributeFill, + urlAudience + }) + const {} = await executeRequest0389({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + variable38, + statsigpayloadLayerConfigs1092897457ValueMaxCommitConversationStalenessDays, + statsigpayloadDynamicConfigs3230069703ValueExpiryseconds, + attributeWidth1, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable28, + variable29 + }) + const {} = await executeRequest0390({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadLayerConfigs817522959ValueChatgptInstantAnswersDynamicConfigLabradorFetcherConfigRetrievalCandidateCount, + variable65, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + locale, + currency, + connectorsSupportedAuthOidcScopesSupported1, + sessionId, + configId1 + }) + const {} = await executeRequest0390({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3 + }) + const {} = await executeRequest0390({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + statsigpayloadDynamicConfigs489084288ValueOptions, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + currency, + emailDomainType, + sessionId, + configId1, + experimentsDataArbId + }) + const {} = await executeRequest0390({ + variable12, + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + variable38, + variable56, + variable64, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + locale, + currency, + mode, + connectorsSupportedAuthOidcScopesSupported1, + sessionId, + configId1 + }) + const {} = await executeRequest0391({ + systemHintsLogoAttributeFill + }) + const {} = await executeRequest0392({ + variable12, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + locale, + currency, + mode, + connectorsSupportedAuthOidcScopesSupported1, + sessionId, + configId1 + }) + const {} = await executeRequest0393({ + currencyConfigPromosBusinessOneDollarAmount, + urlAudience, + variable14, + state, + statsigpayloadLayerConfigs1803944755ValueExpressServerDeliveryMechanism + }) + const {} = await executeRequest0394({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs349489989ValueOneCharacterAnimationDurationMs, + statsigpayloadDynamicConfigs1967546325ValueGdrivepercentage, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + currency, + sessionId, + configId1, + accountSettingsBrandingBackgroundColor + }) + const {variable76} = await executeRequest0395({ + variable12, + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + urlAudience, + checkoutSessionId, + attributeHref10, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + id, + accountSettingsAccountId, + currency, + emailDomainType, + object2, + connectorsSupportedAuthOidcScopesSupported1, + statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + sessionId, + configId1, + variable68 + }) + console.log("variable76: ",variable76) + const {} = await executeRequest0396({ + statsigpayloadDynamicConfigs2179180337ValueMaxAttempts, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + currency, + sessionId, + configId1 + }) + const {} = await executeRequest0397({ + variable12, + currencyConfigPromosBusinessOneDollarAmount, + 7, + statsigpayloadDynamicConfigs3689744552ValueLookbackDays, + statsigpayloadLayerConfigs1368081792ValueTatortotContextualUpsellFrequencyWindowLengthHours, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + variable14, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + sessionId, + configId1, + variable70, + modesDrlegacyCapabilitiesConnectMore, + statsigpayloadLayerConfigs817522959ValueChatgptInstantAnswersDynamicConfigLabradorFetcherConfigAnnThreshold, + linkSettingsLinkBrand, + statsigpayloadDynamicConfigs2850107578ValueAndroidLargeFontScaleThreshold, + statsigpayloadDynamicConfigs2842273360ValueMinVisibleFraction, + statsigpayloadLayerConfigs817522959ValueChatgptInstantAnswersDynamicConfigAutoEvalSamplingRate + }) + const {} = await executeRequest0397({ + variable12, + currencyConfigPromosBusinessOneDollarAmount, + attributeType, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + state, + siteKey + }) + const {} = await executeRequest0397({ + variable12, + currencyConfigPromosBusinessOneDollarAmount, + attributeType, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + state, + passiveCaptchaSiteKey + }) + const {} = await executeRequest0398({ + variable12, + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs2179180337ValueMaxAttempts, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueSidebarPaginationPageSize, + variable38, + 22, + variable42, + variable57, + statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + variable33, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + systemHintsLogoAttributeFill, + variable4, + userGroups, + statsigpayloadDynamicConfigs489084288ValueOptions, + urlAudience, + checkoutSessionId, + connectorsSupportedAuthTokenUrl, + attributeHref10, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + emailDomainType, + sessionId, + configId1, + experimentsDataArbId, + variable72 + }) + const {} = await executeRequest0400({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + sessionId, + configId1 + }) + const {cflbCookie6, c} = await executeRequest0401({ + variable12, + currencyConfigPromosBusinessOneDollarAmount, + attributeType, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + state, + linkSettingsHcaptchaSiteKey + }) + console.log("cflbCookie6: ",cflbCookie6) + console.log("c: ",c) + const {} = await executeRequest0402({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + attributeContent, + userGroups, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + cfuvidCookie17, + oaiScCookie9 + }) + const {} = await executeRequest0403({ + systemHintsLogoAttributeFill, + urlAudience + }) + const {} = await executeRequest0404({ + variable12, + currencyConfigPromosBusinessOneDollarAmount, + 7, + statsigpayloadDynamicConfigs3689744552ValueLookbackDays, + statsigpayloadLayerConfigs1368081792ValueTatortotContextualUpsellFrequencyWindowLengthHours, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + variable14, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + sessionId, + configId1, + variable70, + modesDrlegacyCapabilitiesConnectMore, + statsigpayloadLayerConfigs817522959ValueChatgptInstantAnswersDynamicConfigLabradorFetcherConfigAnnThreshold, + linkSettingsLinkBrand, + statsigpayloadDynamicConfigs2850107578ValueAndroidLargeFontScaleThreshold, + statsigpayloadDynamicConfigs2842273360ValueMinVisibleFraction, + statsigpayloadLayerConfigs817522959ValueChatgptInstantAnswersDynamicConfigAutoEvalSamplingRate + }) + const {} = await executeRequest0405({ + variable12, + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueSidebarPaginationPageSize, + statsigpayloadDynamicConfigs216497991ValueOutdatedRoomBootstrapMessagesCount, + statsigpayloadDynamicConfigs3165814200ValueMaxRetryCount, + variable38, + statsigpayloadLayerConfigs1092897457ValueMaxCommitConversationStalenessDays, + 22, + variable42, + variable22, + variable57, + variable33, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + variable76, + attributeType, + attributeAriaExpanded, + variable4, + userGroups, + checkoutSessionId, + connectorsSupportedAuthTokenUrl, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + sessionId, + configId1 + }) + const {} = await executeRequest0406({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + sessionId, + configId1, + siteKey + }) + const {} = await executeRequest0406({ + variable12, + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + 7, + systemHintsLogoAttributeWidth, + statsigpayloadDynamicConfigs2943229081ValueVoiceUsedWithinPastDays, + statsigpayloadLayerConfigs3850010910ValueBillingFailureBannerIntervalMins, + clientLocale, + attributeType, + attributeAriaExpanded, + session, + variable4, + origins2, + statsigpayloadDynamicConfigs217573384Value, + userGroups, + state, + locale, + attributeHref8, + linkSettingsHcaptchaSiteKey, + cflbCookie6, + connectorsSupportedAuthOidcUserinfoEndpoint, + linkSettingsLinkHcaptchaRqdata, + c + }) + const {} = await executeRequest0407({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + sessionId, + configId1, + passiveCaptchaSiteKey, + linkSettingsHcaptchaSiteKey + }) + const {} = await executeRequest0408({ + variable12, + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + origins2, + variable5, + secureNextAuthCallbackUrlCookie1, + secureNextAuthCallbackUrlCookie2, + url1, + urlAudience, + evaluatedKeysStableid, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + cfuvidCookie17, + oaiScCookie9, + pageloadresourcehrefs + }) + const {} = await executeRequest0409({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + currency, + connectorsSupportedAuthOidcScopesSupported1, + sessionId, + configId1 + }) + const {} = await executeRequest0410({ + variable12, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + locale, + currency, + mode, + connectorsSupportedAuthOidcScopesSupported1, + sessionId, + configId1 + }) + const {} = await executeRequest0411({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + currency, + sessionId, + configId1 + }) + const {} = await executeRequest0412({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + currency, + sessionId, + configId1 + }) + const {} = await executeRequest0413({ + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + currency, + sessionId, + configId1 + }) + const {} = await executeRequest0415({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + currency, + connectorsSupportedAuthOidcScopesSupported1, + sessionId, + configId1 + }) + const {} = await executeRequest0416({ + variable12, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + locale, + currency, + mode, + connectorsSupportedAuthOidcScopesSupported1, + sessionId, + configId1 + }) + const {} = await executeRequest0417({ + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs2179180337ValueMaxAttempts, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3 + }) + const {} = await executeRequest0418({ + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + sessionId, + configId1 + }) + const {} = await executeRequest0419({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + sessionId, + configId1 + }) + const {variable79} = await executeRequest0420({ + attributeType, + urlAudience, + checkoutSessionId, + attributeHref10 + }) + console.log("variable79: ",variable79) + const {} = await executeRequest0421({ + variable12, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + locale, + currency, + mode, + connectorsSupportedAuthOidcScopesSupported1, + sessionId, + configId1 + }) + const {} = await executeRequest0422({ + variable12, + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + variable78, + statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + urlAudience, + checkoutSessionId, + attributeHref10, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + id, + accountSettingsAccountId, + currency, + emailDomainType, + object2, + statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + sessionId, + configId1, + variable79 + }) + const {} = await executeRequest0423({ + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + sessionId, + configId1 + }) + const {variable82} = await executeRequest0424({ + attributeType, + urlAudience, + checkoutSessionId, + attributeHref10 + }) + console.log("variable82: ",variable82) + const {} = await executeRequest0425({ + variable12, + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + urlAudience, + checkoutSessionId, + attributeHref10, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + id, + accountSettingsAccountId, + locale, + currency, + emailDomainType, + object2, + mode, + connectorsSupportedAuthOidcScopesSupported1, + sessionId, + configId1, + variable82 + }) + const {} = await executeRequest0426({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + currency, + statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + sessionId, + configId1 + }) + const {} = await executeRequest0427({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + secureNextAuthCallbackUrlCookie1, + urlAudience, + evaluatedKeysStableid, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + cfuvidCookie17, + oaiScCookie9, + connectorsSuggestionConfigImageUrl + }) + const {} = await executeRequest0428({ + variable84 + }) + const {} = await executeRequest0429({ + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + sessionId, + configId1 + }) + const {} = await executeRequest0430({ + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + sessionId, + configId1 + }) + const {variable86} = await executeRequest0431({ + attributeType, + urlAudience, + checkoutSessionId, + attributeHref10 + }) + console.log("variable86: ",variable86) + const {} = await executeRequest0432({ + variable12, + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + urlAudience, + checkoutSessionId, + attributeHref10, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + id, + accountSettingsAccountId, + currency, + emailDomainType, + object2, + statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + sessionId, + configId1, + variable86 + }) + const {} = await executeRequest0433({ + variable12, + statsigpayloadDynamicConfigs2179180337ValueMaxAttempts, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + locale, + currency, + mode, + connectorsSupportedAuthOidcScopesSupported1, + sessionId, + configId1 + }) + const {} = await executeRequest0434({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + sessionId, + configId1, + siteKey + }) + const {variable88} = await executeRequest0435({ + attributeType, + urlAudience, + checkoutSessionId, + attributeHref10 + }) + console.log("variable88: ",variable88) + const {} = await executeRequest0436({ + variable12, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + locale, + currency, + mode, + connectorsSupportedAuthOidcScopesSupported1, + sessionId, + configId1 + }) + const {} = await executeRequest0437({ + variable12, + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + urlAudience, + checkoutSessionId, + attributeHref10, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + id, + accountSettingsAccountId, + currency, + emailDomainType, + object2, + statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + sessionId, + configId1, + variable88 + }) + const {} = await executeRequest0438({ + variable12, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + urlAudience, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + id, + accountSettingsAccountId, + uiMode, + locale, + currency, + mode, + connectorsSupportedAuthOidcScopesSupported1, + statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + sessionId, + configId1 + }) + const {} = await executeRequest0439({ + statsigpayloadDynamicConfigs2179180337ValueMaxAttempts, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + currency, + sessionId, + configId1 + }) + const {variable90} = await executeRequest0440({ + attributeType, + urlAudience, + checkoutSessionId, + attributeHref10 + }) + console.log("variable90: ",variable90) + const {} = await executeRequest0441({ + variable12, + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + urlAudience, + checkoutSessionId, + attributeHref10, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + id, + accountSettingsAccountId, + locale, + currency, + emailDomainType, + object2, + mode, + connectorsSupportedAuthOidcScopesSupported1, + sessionId, + configId1, + variable90 + }) + const {} = await executeRequest0442({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + urlAudience, + statsigpayloadLayerConfigs4112645001ValueOutline, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + id, + accountSettingsAccountId, + uiMode, + currency, + statsigpayloadLayerConfigs3680755560ValuePriorityArray1, + sessionId, + configId1 + }) + const {id2, variable95, object4} = await executeRequest0443({ + attributeType, + urlAudience, + attributeHref10 + }) + console.log("id2: ",id2) + console.log("variable95: ",variable95) + console.log("object4: ",object4) + const {} = await executeRequest0444({ + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + statsigpayloadLayerConfigs4112645001ValueOutline, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + currency, + sessionId, + configId1, + siteKey + }) + const {} = await executeRequest0445({ + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + variable92, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + statsigpayloadLayerConfigs4112645001ValueOutline, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + sessionId, + configId1 + }) + const {} = await executeRequest0446({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + attributeContent, + userGroups, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + cfuvidCookie17, + oaiScCookie9 + }) + const {} = await executeRequest0447({ + variable12, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + urlAudience, + statsigpayloadLayerConfigs4112645001ValueOutline, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + id, + accountSettingsAccountId, + uiMode, + locale, + currency, + mode, + connectorsSupportedAuthOidcScopesSupported1, + sessionId, + configId1 + }) + const {variable102} = await executeRequest0449({ + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueSidebarPaginationPageSize, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + id2 + }) + console.log("variable102: ",variable102) + const {} = await executeRequest0450({ + variable12, + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs2179180337ValueMaxAttempts, + statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + urlAudience, + statsigpayloadLayerConfigs4112645001ValueOutline, + checkoutSessionId, + attributeHref10, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + statsigpayloadLayerConfigs3680755560ValuePriorityArray, + accountSettingsAccountId, + currency, + connectorsSupportedAuthOidcScopesSupported1, + sessionId, + configId1, + passiveCaptchaSiteKey, + id2, + variable95, + object4 + }) + const {variable100, setupIntentNextActionUseStripeSdkStripeJsSiteKey, setupIntentNextActionUseStripeSdkStripeJsVerificationUrl, setupIntentClientSecret, setupIntentId, setupIntentObject} = await executeRequest0451({ + attributeType, + urlAudience, + checkoutSessionId, + attributeHref10 + }) + console.log("variable100: ",variable100) + console.log("setupIntentNextActionUseStripeSdkStripeJsSiteKey: ",setupIntentNextActionUseStripeSdkStripeJsSiteKey) + console.log("setupIntentNextActionUseStripeSdkStripeJsVerificationUrl: ",setupIntentNextActionUseStripeSdkStripeJsVerificationUrl) + console.log("setupIntentClientSecret: ",setupIntentClientSecret) + console.log("setupIntentId: ",setupIntentId) + console.log("setupIntentObject: ",setupIntentObject) + const {} = await executeRequest0452({ + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + urlAudience, + statsigpayloadLayerConfigs4112645001ValueOutline, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + id, + accountSettingsAccountId, + uiMode, + currency, + connectorsSupportedAuthOidcScopesSupported1, + sessionId, + configId1, + id2 + }) + const {} = await executeRequest0453({ + currencyConfigPromosBusinessOneDollarAmount, + variable14, + variable24, + connectorsSupportedAuthTokenUrl, + state, + variable98 + }) + const {} = await executeRequest0453({ + variable12, + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + urlAudience, + statsigpayloadLayerConfigs4112645001ValueOutline, + checkoutSessionId, + attributeHref10, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + id, + accountSettingsAccountId, + currency, + emailDomainType, + object2, + sessionId, + configId1, + variable100 + }) + const {} = await executeRequest0454({ + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + urlAudience, + statsigpayloadLayerConfigs4112645001ValueOutline, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + id, + accountSettingsAccountId, + uiMode, + currency, + sessionId, + configId1 + }) + const {} = await executeRequest0455({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + statsigpayloadDynamicConfigs3317473948ValueModelSlugMaxPollingDurationsO1Pro, + variable102, + attributeType, + attributeAriaExpanded, + variable4, + statsigpayloadLayerConfigs4112645001ValueOutline, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + sessionId, + configId1 + }) + const {} = await executeRequest0456({ + currencyConfigPromosBusinessOneDollarAmount, + origins2, + variable14, + state, + attributeHref8 + }) + const {} = await executeRequest0457({ + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + statsigpayloadDynamicConfigs3317473948ValueModelSlugMaxPollingDurationsO1Pro, + attributeType, + attributeAriaExpanded, + variable4, + statsigpayloadLayerConfigs4112645001ValueOutline, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + sessionId, + configId1 + }) + const {} = await executeRequest0458({ + variable12, + currencyConfigPromosBusinessOneDollarAmount, + attributeType, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + state, + setupIntentNextActionUseStripeSdkStripeJsSiteKey + }) + const {} = await executeRequest0459({ + systemHintsLogoAttributeFill, + urlAudience + }) + const {} = await executeRequest0460({ + systemHintsLogoAttributeFill, + urlAudience + }) + const {} = await executeRequest0461({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + secureNextAuthCallbackUrlCookie1, + urlAudience, + evaluatedKeysStableid, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + cfuvidCookie17, + oaiScCookie9, + connectorsSuggestionConfigImageUrl + }) + const {} = await executeRequest0462({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + statsigpayloadDynamicConfigs3317473948ValueModelSlugMaxPollingDurationsO1Pro, + attributeType, + attributeAriaExpanded, + variable4, + statsigpayloadLayerConfigs4112645001ValueOutline, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + sessionId, + configId1 + }) + const {variable108, status} = await executeRequest0463({ + attributeType, + attributeHref10, + publishableKey, + setupIntentNextActionUseStripeSdkStripeJsVerificationUrl, + setupIntentClientSecret, + variable106 + }) + console.log("variable108: ",variable108) + console.log("status: ",status) + const {variable109} = await executeRequest0464({ + attributeType, + urlAudience, + checkoutSessionId, + attributeHref10, + publishableKey, + variable106 + }) + console.log("variable109: ",variable109) + const {} = await executeRequest0465({ + variable12, + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + statsigpayloadDynamicConfigs3317473948ValueModelSlugMaxPollingDurationsO1Pro, + attributeType, + attributeAriaExpanded, + variable4, + urlAudience, + statsigpayloadLayerConfigs4112645001ValueOutline, + checkoutSessionId, + attributeHref10, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + id, + accountSettingsAccountId, + currency, + emailDomainType, + sessionId, + configId1, + setupIntentNextActionUseStripeSdkStripeJsVerificationUrl, + variable108, + setupIntentId, + setupIntentObject, + variable109 + }) + const {variable112} = await executeRequest0466({ + attributeType, + urlAudience, + checkoutSessionId, + attributeHref10, + publishableKey, + variable106 + }) + console.log("variable112: ",variable112) + const {variable113} = await executeRequest0467({ + attributeType, + urlAudience, + checkoutSessionId, + attributeHref10, + publishableKey, + variable106 + }) + console.log("variable113: ",variable113) + const {} = await executeRequest0468({ + variable12, + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + statsigpayloadDynamicConfigs2179180337ValueMaxAttempts, + statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeAriaExpanded, + variable4, + urlAudience, + statsigpayloadLayerConfigs4112645001ValueOutline, + checkoutSessionId, + attributeHref10, + state, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + id, + accountSettingsAccountId, + currency, + emailDomainType, + sessionId, + configId1, + variable112, + variable113 + }) + const {secureNextAuthSessionTokenCookie2} = await executeRequest0469({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + cfuvidCookie17, + oaiScCookie9, + returnUrl + }) + console.log("secureNextAuthSessionTokenCookie2: ",secureNextAuthSessionTokenCookie2) + const {} = await executeRequest0470({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeType, + attributeAriaExpanded, + variable4, + urlAudience, + statsigpayloadLayerConfigs4112645001ValueOutline, + checkoutSessionId, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + id, + accountSettingsAccountId, + uiMode, + currency, + sessionId, + configId1, + connectorsLinkParamsSchemaType, + status + }) + const {} = await executeRequest0471({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueIdleRoomNavigationTimeoutS, + attributeAriaExpanded, + variable4, + statsigpayloadLayerConfigs4112645001ValueOutline, + checkoutSessionId, + state, + connectorsBrandingTermsOfService2, + derivedFieldsBrowsername, + attributeId, + publishableKey, + variable29, + secureNextAuthCallbackUrlCookie3, + configId, + accountSettingsAccountId, + currency, + sessionId, + configId1 + }) + const {} = await executeRequest0475({ + currencyConfigPromosBusinessOneDollarAmount, + attributeWidth, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + cfuvidCookie17, + oaiScCookie9, + secureNextAuthSessionTokenCookie2 + }) + const {} = await executeRequest0476({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + object, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + cfuvidCookie17, + oaiScCookie9, + secureNextAuthSessionTokenCookie2 + }) + const {} = await executeRequest0477({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + cfuvidCookie17, + processorEntity, + checkoutSessionId, + oaiScCookie9, + secureNextAuthSessionTokenCookie2, + returnUrl1 + }) + const {cfBmCookie14, firstName} = await executeRequest0478({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + cfuvidCookie17, + oaiScCookie9, + secureNextAuthSessionTokenCookie2 + }) + console.log("cfBmCookie14: ",cfBmCookie14) + console.log("firstName: ",firstName) + const {} = await executeRequest0478({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + cfuvidCookie17, + oaiScCookie9, + secureNextAuthSessionTokenCookie2 + }) + const {cfuvidCookie18} = await executeRequest0480({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + url4, + sessionAccesstoken, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + cfuvidCookie17, + oaiScCookie9, + secureNextAuthSessionTokenCookie2 + }) + console.log("cfuvidCookie18: ",cfuvidCookie18) + const {} = await executeRequest0480({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + urlAudience, + evaluatedKeysStableid, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + connectorsKeywordsForDiscovery1, + cfuvidCookie17, + oaiScCookie9, + secureNextAuthSessionTokenCookie2, + cfBmCookie14 + }) + const {} = await executeRequest0481({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + statsigpayloadDynamicConfigs3685705952ValueSms, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + cfuvidCookie17, + oaiScCookie9, + secureNextAuthSessionTokenCookie2, + cfBmCookie14 + }) + const {} = await executeRequest0481({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + urlAudience, + evaluatedKeysStableid, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + connectorsKeywordsForDiscovery1, + cfuvidCookie17, + oaiScCookie9, + secureNextAuthSessionTokenCookie2, + cfBmCookie14 + }) + const {} = await executeRequest0482({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + urlAudience, + evaluatedKeysStableid, + accountCookie, + sessionUserId, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + categoriesSubscriptionLevel, + track, + processorEntity, + checkoutSessionId, + oaiScCookie9, + returnUrl, + secureNextAuthSessionTokenCookie2, + returnUrl1, + cfBmCookie14, + cfuvidCookie18, + accountsDefaultAccountAccountResidencyRegion, + connectorsBrandingPrivacyPolicy1 + }) + const {} = await executeRequest0483({ + currencyConfigPromosBusinessOneDollarAmount, + adsSegmentId, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + variable5, + statsigpayloadDynamicConfigs217573384Value, + attributeContent, + userGroups, + secureNextAuthCallbackUrlCookie1, + urlAudience, + evaluatedKeysStableid, + sessionAccesstoken, + sessionUserId, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + connectorsBrandingTermsOfService1, + authstatus2, + categoriesSubscriptionLevel, + processorEntity, + checkoutSessionId, + oaiScCookie9, + returnUrl, + secureNextAuthSessionTokenCookie2, + returnUrl1, + cfBmCookie14, + cfuvidCookie18, + returnUrl2, + returnUrl3 + }) + const {} = await executeRequest0484({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + object, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + cfuvidCookie17, + oaiScCookie9, + secureNextAuthSessionTokenCookie2 + }) + const {} = await executeRequest0485({ + currencyConfigPromosBusinessOneDollarAmount, + adsSegmentId, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + variable5, + statsigpayloadDynamicConfigs217573384Value, + attributeContent, + userGroups, + secureNextAuthCallbackUrlCookie1, + urlAudience, + evaluatedKeysStableid, + sessionAccesstoken, + sessionUserId, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + authstatus2, + categoriesSubscriptionLevel, + processorEntity, + checkoutSessionId, + oaiScCookie9, + returnUrl, + secureNextAuthSessionTokenCookie2, + returnUrl1, + cfBmCookie14, + cfuvidCookie18, + returnUrl2, + returnUrl3 + }) + const {secureNextAuthSessionTokenCookie3, cfuvidCookie19} = await executeRequest0486({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + origins2, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie2, + cfBmCookie14, + cfuvidCookie18 + }) + console.log("secureNextAuthSessionTokenCookie3: ",secureNextAuthSessionTokenCookie3) + console.log("cfuvidCookie19: ",cfuvidCookie19) + const {} = await executeRequest0488({ + variable12, + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs3317473948ValueDefaultMaxPollingDuration, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + origins2, + secureNextAuthCallbackUrlCookie1, + url1, + urlAudience, + evaluatedKeysStableid, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + processorEntity, + checkoutSessionId, + oaiScCookie9, + pageloadresourcehrefs, + secureNextAuthSessionTokenCookie2, + returnUrl1, + cfBmCookie14, + cfuvidCookie18, + connectorsBrandingPrivacyPolicy2 + }) + const {} = await executeRequest0491({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + urlAudience, + evaluatedKeysStableid, + accountCookie, + sessionUserId, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + categoriesSubscriptionLevel, + track, + processorEntity, + checkoutSessionId, + oaiScCookie9, + returnUrl, + returnUrl1, + accountsDefaultAccountAccountResidencyRegion, + connectorsBrandingPrivacyPolicy1, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) + const {} = await executeRequest0494({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + object, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) + const {} = await executeRequest0495({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19, + connectorsSupportedAuthOidcScopesSupported2 + }) + const {cfuvidCookie20} = await executeRequest0496({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) + console.log("cfuvidCookie20: ",cfuvidCookie20) + const {} = await executeRequest0496({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) + const {} = await executeRequest0496({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + url4, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) + const {oaiScCookie10, cfBmCookie16, prepareToken2} = await executeRequest0496({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) + console.log("oaiScCookie10: ",oaiScCookie10) + console.log("cfBmCookie16: ",cfBmCookie16) + console.log("prepareToken2: ",prepareToken2) + const {} = await executeRequest0497({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + object, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19, + statsigpayloadDynamicConfigs3131667714ValueRegions, + connectorsSupportedAuthAuthorizationUrl + }) + const {} = await executeRequest0497({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueOutdatedRoomBootstrapMessagesCount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19, + connectorsKeywordsForDiscovery2 + }) + const {} = await executeRequest0497({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) + const {puidCookie} = await executeRequest0497({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) + console.log("puidCookie: ",puidCookie) + const {} = await executeRequest0498({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) + const {} = await executeRequest0498({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) + const {} = await executeRequest0499({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) + const {cfBmCookie15} = await executeRequest0499({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + attributeContent, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19, + connectorsBrandingPrivacyPolicy3 + }) + console.log("cfBmCookie15: ",cfBmCookie15) + const {cfuvidCookie23} = await executeRequest0499({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserId, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) + console.log("cfuvidCookie23: ",cfuvidCookie23) + const {} = await executeRequest0500({ + variable12, + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadLayerConfigs3850010910ValuePlusGracePeriodDays, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) + const {} = await executeRequest0500({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueOutdatedRoomBootstrapMessagesCount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) + const {} = await executeRequest0501({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) + const {} = await executeRequest0502({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs1967546325ValueGdrivepercentage, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserId, + statsigpayloadLayerConfigs109457ValueOnboardingStyle, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) + const {variable118, 93, 58, variable116, secureNextAuthSessionTokenCookie4, cfuvidCookie21, variable120} = await executeRequest0503({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + variable98, + secureNextAuthSessionTokenCookie3, + attributeHref11, + cfuvidCookie20, + oaiScCookie10, + puidCookie, + firstName, + cfBmCookie15 + }) + console.log("variable118: ",variable118) + console.log("93: ",93) + console.log("58: ",58) + console.log("variable116: ",variable116) + console.log("secureNextAuthSessionTokenCookie4: ",secureNextAuthSessionTokenCookie4) + console.log("cfuvidCookie21: ",cfuvidCookie21) + console.log("variable120: ",variable120) + const {cfBmCookie17} = await executeRequest0504({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserId, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) + console.log("cfBmCookie17: ",cfBmCookie17) + const {} = await executeRequest0506({ + currencyConfigPromosBusinessOneDollarAmount, + attributeWidth, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) + const {cfuvidCookie22} = await executeRequest0506({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + connectorsBrandingWebsite, + variable26, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) + console.log("cfuvidCookie22: ",cfuvidCookie22) + const {} = await executeRequest0507({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + connectorsBrandingTermsOfService, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) + const {} = await executeRequest0507({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) + const {cfBmCookie18} = await executeRequest0507({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) + console.log("cfBmCookie18: ",cfBmCookie18) + const {} = await executeRequest0509({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + state, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) + const {} = await executeRequest0509({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + object, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) + const {} = await executeRequest0509({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + urlAudience, + evaluatedKeysStableid, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + connectorsKeywordsForDiscovery1, + secureNextAuthSessionTokenCookie3, + cfuvidCookie20, + oaiScCookie10, + cfBmCookie16 + }) + const {} = await executeRequest0509({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) + const {cfBmCookie19} = await executeRequest0509({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + connectorsBrandingWebsite1, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie9, + secureNextAuthSessionTokenCookie3, + cfuvidCookie19 + }) + console.log("cfBmCookie19: ",cfBmCookie19) + const {} = await executeRequest0510({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + secureNextAuthSessionTokenCookie3, + cfuvidCookie20, + oaiScCookie10, + cfBmCookie16 + }) + const {} = await executeRequest0512({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + connectorsKeywordsForDiscovery, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + secureNextAuthSessionTokenCookie3, + cfuvidCookie20, + oaiScCookie10, + cfBmCookie16 + }) + const {} = await executeRequest0513({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + secureNextAuthSessionTokenCookie3, + cfuvidCookie20, + oaiScCookie10, + cfBmCookie16 + }) + const {} = await executeRequest0513({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + secureNextAuthSessionTokenCookie3, + cfuvidCookie20, + oaiScCookie10, + cfBmCookie16 + }) + const {} = await executeRequest0513({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + accountCookie, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + secureNextAuthSessionTokenCookie3, + cfuvidCookie20, + oaiScCookie10, + cfBmCookie16 + }) + const {oaiScCookie11} = await executeRequest0514({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + secureNextAuthSessionTokenCookie3, + cfuvidCookie20, + oaiScCookie10, + cfBmCookie16, + prepareToken2 + }) + console.log("oaiScCookie11: ",oaiScCookie11) + const {} = await executeRequest0514({ + currencyConfigPromosBusinessOneDollarAmount, + 58, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + attributeRole, + voicesVoice, + secureNextAuthSessionTokenCookie3, + cfuvidCookie20, + oaiScCookie10, + cfBmCookie16, + modelsSlug + }) + const {} = await executeRequest0514({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs1967546325ValueGdrivepercentage, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserId, + statsigpayloadLayerConfigs109457ValueOnboardingStyle, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie10, + puidCookie, + firstName, + variable116, + secureNextAuthSessionTokenCookie4, + cfuvidCookie21, + cfBmCookie17 + }) + const {cfBmCookie20} = await executeRequest0515({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie10, + puidCookie, + firstName, + secureNextAuthSessionTokenCookie4, + cfuvidCookie22, + cfBmCookie18 + }) + console.log("cfBmCookie20: ",cfBmCookie20) + const {} = await executeRequest0515({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + urlAudience, + evaluatedKeysStableid, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + connectorsKeywordsForDiscovery1, + secureNextAuthSessionTokenCookie3, + cfuvidCookie20, + oaiScCookie10, + cfBmCookie16 + }) + const {} = await executeRequest0515({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + statsigpayloadDynamicConfigs3685705952ValueSms, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie10, + puidCookie, + firstName, + secureNextAuthSessionTokenCookie4, + cfuvidCookie22, + cfBmCookie19 + }) + const {cfuvidCookie24} = await executeRequest0516({ + currencyConfigPromosBusinessOneDollarAmount, + variable118, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserId, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + secureNextAuthSessionTokenCookie3, + oaiScCookie10, + puidCookie, + firstName, + cfBmCookie15, + variable116, + cfuvidCookie23 + }) + console.log("cfuvidCookie24: ",cfuvidCookie24) + const {cfuvidCookie25} = await executeRequest0519({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + attributeContent, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserId, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + oaiScCookie10, + puidCookie, + firstName, + secureNextAuthSessionTokenCookie4, + cfuvidCookie22, + cfBmCookie18, + connectorsSupportedAuthScopesSupported + }) + console.log("cfuvidCookie25: ",cfuvidCookie25) + const {} = await executeRequest0532({ + currencyConfigPromosBusinessOneDollarAmount, + 93, + adsSegmentId, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + origins2, + variable5, + statsigpayloadDynamicConfigs217573384Value, + attributeContent, + userGroups, + secureNextAuthCallbackUrlCookie1, + secureNextAuthCallbackUrlCookie2, + urlAudience, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserId, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + connectorsBrandingTermsOfService1, + authstatus2, + returnUrl, + puidCookie, + firstName, + secureNextAuthSessionTokenCookie4, + oaiScCookie11, + cfBmCookie20, + cfuvidCookie24, + statsigpayloadLayerConfigs497415788ValueUpgradePillType + }) + const {} = await executeRequest0533({ + currencyConfigPromosBusinessOneDollarAmount, + 93, + adsSegmentId, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + origins2, + variable5, + attributeContent, + userGroups, + secureNextAuthCallbackUrlCookie1, + secureNextAuthCallbackUrlCookie2, + urlAudience, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserId, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + authstatus2, + returnUrl, + puidCookie, + firstName, + secureNextAuthSessionTokenCookie4, + oaiScCookie11, + cfBmCookie20, + cfuvidCookie24, + statsigpayloadLayerConfigs497415788ValueUpgradePillType + }) + const {} = await executeRequest0534({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueMaxPinnedRoomCount, + statsigpayloadDynamicConfigs2179180337ValueMaxAttempts, + statsigpayloadDynamicConfigs216497991ValueMaxFileSizeMb, + statsigpayloadDynamicConfigs216497991ValueSidebarPaginationPageSize, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + statsigpayloadDynamicConfigs217573384Value, + attributeContent, + statsigpayloadDynamicConfigs3685705952ValueSms, + secureNextAuthCallbackUrlCookie1, + statsigpayloadFeatureGates6102981RuleId, + evaluatedKeysStableid, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + accounts9b62de654103487fAc2002e2030f03dfFeatures, + statsigpayloadDynamicConfigs3685705952ValueWhatsapp, + track, + cluster, + puidCookie, + firstName, + secureNextAuthSessionTokenCookie4, + oaiScCookie11, + cfBmCookie20, + cfuvidCookie24, + variable120 + }) + const {cfBmCookie22} = await executeRequest0535({ + currencyConfigPromosBusinessOneDollarAmount, + variable118, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserId, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + puidCookie, + firstName, + variable116, + secureNextAuthSessionTokenCookie4, + oaiScCookie11, + cfuvidCookie24 + }) + console.log("cfBmCookie22: ",cfBmCookie22) + const {} = await executeRequest0536({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + secureNextAuthCallbackUrlCookie2, + urlAudience, + evaluatedKeysStableid, + accountCookie, + variable24, + sessionUserId, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + track, + returnUrl, + accountsDefaultAccountAccountResidencyRegion, + connectorsBrandingPrivacyPolicy1, + oaiScCookie10, + puidCookie, + firstName, + secureNextAuthSessionTokenCookie4, + cfuvidCookie22, + cfBmCookie19, + statsigpayloadLayerConfigs497415788ValueUpgradePillType + }) + const {} = await executeRequest0536({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + secureNextAuthCallbackUrlCookie2, + urlAudience, + evaluatedKeysStableid, + accountCookie, + variable24, + sessionUserId, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + track, + returnUrl, + accountsDefaultAccountAccountResidencyRegion, + connectorsBrandingPrivacyPolicy1, + puidCookie, + firstName, + secureNextAuthSessionTokenCookie4, + oaiScCookie11, + statsigpayloadLayerConfigs497415788ValueUpgradePillType, + cfuvidCookie25 + }) + const {} = await executeRequest0536({ + variable12, + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + puidCookie, + firstName, + secureNextAuthSessionTokenCookie4, + oaiScCookie11, + cfuvidCookie25, + eligibleAnnouncements7 + }) + const {cfBmCookie21} = await executeRequest0536({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs1967546325ValueGdrivepercentage, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserId, + statsigpayloadLayerConfigs109457ValueOnboardingStyle, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + puidCookie, + firstName, + variable116, + secureNextAuthSessionTokenCookie4, + oaiScCookie11, + cfuvidCookie24 + }) + console.log("cfBmCookie21: ",cfBmCookie21) + const {} = await executeRequest0537({ + currencyConfigPromosBusinessOneDollarAmount, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + object, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + puidCookie, + firstName, + secureNextAuthSessionTokenCookie4, + oaiScCookie11, + cfuvidCookie25, + cfBmCookie21 + }) + const {} = await executeRequest0538({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + secureNextAuthCallbackUrlCookie1, + urlAudience, + evaluatedKeysStableid, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + connectorsSuggestionConfigImageUrl, + puidCookie, + firstName, + secureNextAuthSessionTokenCookie4, + oaiScCookie11, + cfuvidCookie25, + cfBmCookie21 + }) + const {} = await executeRequest0539({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + variable98, + attributeHref11, + puidCookie, + firstName, + secureNextAuthSessionTokenCookie4, + oaiScCookie11, + cfuvidCookie25, + cfBmCookie22 + }) + const {} = await executeRequest0540({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs216497991ValueSidebarDefaultRecentRoomRowCount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + secureNextAuthCallbackUrlCookie2, + urlAudience, + evaluatedKeysStableid, + accountCookie, + variable24, + sessionUserId, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + track, + returnUrl, + accountsDefaultAccountAccountResidencyRegion, + connectorsBrandingPrivacyPolicy1, + puidCookie, + firstName, + secureNextAuthSessionTokenCookie4, + oaiScCookie11, + statsigpayloadLayerConfigs497415788ValueUpgradePillType, + cfuvidCookie25, + cfBmCookie21, + variable122 + }) + const {} = await executeRequest0541({ + currencyConfigPromosBusinessOneDollarAmount, + variable118, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserId, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + puidCookie, + firstName, + variable116, + secureNextAuthSessionTokenCookie4, + oaiScCookie11, + cfuvidCookie25, + cfBmCookie21 + }) + const {} = await executeRequest0541({ + currencyConfigPromosBusinessOneDollarAmount, + statsigpayloadDynamicConfigs1967546325ValueGdrivepercentage, + attributeDataSeq, + clientLocale, + attributeDataBuild, + hostNextAuthCsrfTokenCookie, + attributeType, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + variable4, + secureNextAuthCallbackUrlCookie1, + evaluatedKeysStableid, + sessionAccesstoken, + variable24, + sessionUserId, + statsigpayloadLayerConfigs109457ValueOnboardingStyle, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + puidCookie, + firstName, + variable116, + secureNextAuthSessionTokenCookie4, + oaiScCookie11, + cfuvidCookie25, + cfBmCookie21 + }) + const {} = await executeRequest0542({ + currencyConfigPromosBusinessOneDollarAmount, + hostNextAuthCsrfTokenCookie, + attributeAriaExpanded, + session, + origins, + cfClearanceCookie, + modelsProductFeaturesAttachmentsAcceptedMimeTypes, + variable4, + secureNextAuthCallbackUrlCookie1, + urlAudience, + evaluatedKeysStableid, + variable24, + sessionUserName, + oaiClientAuthSessionCookieUsernameValue, + connectorsSuggestionConfigImageUrl, + puidCookie, + firstName, + secureNextAuthSessionTokenCookie4, + oaiScCookie11, + cfuvidCookie25, + cfBmCookie21 + }) + return { + } +} +main( +).then(console.log).catch(console.error) diff --git a/uv.lock b/uv.lock index 856d5ef..c639c79 100644 --- a/uv.lock +++ b/uv.lock @@ -1,14 +1,14 @@ version = 1 -revision = 1 +revision = 3 requires-python = ">=3.11" [[package]] name = "annotated-types" version = "0.7.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/ee/67/531ea369ba64dcff5ec9c3402f9f51bf748cec26dde048a2f973a4eea7f5/annotated_types-0.7.0.tar.gz", hash = "sha256:aff07c09a53a08bc8cfccb9c85b05f1aa9a2a6f23728d790723543408344ce89", size = 16081 } +sdist = { url = "https://files.pythonhosted.org/packages/ee/67/531ea369ba64dcff5ec9c3402f9f51bf748cec26dde048a2f973a4eea7f5/annotated_types-0.7.0.tar.gz", hash = "sha256:aff07c09a53a08bc8cfccb9c85b05f1aa9a2a6f23728d790723543408344ce89", size = 16081, upload-time = "2024-05-20T21:33:25.928Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/78/b6/6307fbef88d9b5ee7421e68d78a9f162e0da4900bc5f5793f6d3d0e34fb8/annotated_types-0.7.0-py3-none-any.whl", hash = "sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53", size = 13643 }, + { url = "https://files.pythonhosted.org/packages/78/b6/6307fbef88d9b5ee7421e68d78a9f162e0da4900bc5f5793f6d3d0e34fb8/annotated_types-0.7.0-py3-none-any.whl", hash = "sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53", size = 13643, upload-time = "2024-05-20T21:33:24.1Z" }, ] [[package]] @@ -19,18 +19,18 @@ dependencies = [ { name = "idna" }, { name = "typing-extensions", marker = "python_full_version < '3.13'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/96/f0/5eb65b2bb0d09ac6776f2eb54adee6abe8228ea05b20a5ad0e4945de8aac/anyio-4.12.1.tar.gz", hash = "sha256:41cfcc3a4c85d3f05c932da7c26d0201ac36f72abd4435ba90d0464a3ffed703", size = 228685 } +sdist = { url = "https://files.pythonhosted.org/packages/96/f0/5eb65b2bb0d09ac6776f2eb54adee6abe8228ea05b20a5ad0e4945de8aac/anyio-4.12.1.tar.gz", hash = "sha256:41cfcc3a4c85d3f05c932da7c26d0201ac36f72abd4435ba90d0464a3ffed703", size = 228685, upload-time = "2026-01-06T11:45:21.246Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/38/0e/27be9fdef66e72d64c0cdc3cc2823101b80585f8119b5c112c2e8f5f7dab/anyio-4.12.1-py3-none-any.whl", hash = "sha256:d405828884fc140aa80a3c667b8beed277f1dfedec42ba031bd6ac3db606ab6c", size = 113592 }, + { url = "https://files.pythonhosted.org/packages/38/0e/27be9fdef66e72d64c0cdc3cc2823101b80585f8119b5c112c2e8f5f7dab/anyio-4.12.1-py3-none-any.whl", hash = "sha256:d405828884fc140aa80a3c667b8beed277f1dfedec42ba031bd6ac3db606ab6c", size = 113592, upload-time = "2026-01-06T11:45:19.497Z" }, ] [[package]] name = "certifi" version = "2026.2.25" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/af/2d/7bf41579a8986e348fa033a31cdd0e4121114f6bce2457e8876010b092dd/certifi-2026.2.25.tar.gz", hash = "sha256:e887ab5cee78ea814d3472169153c2d12cd43b14bd03329a39a9c6e2e80bfba7", size = 155029 } +sdist = { url = "https://files.pythonhosted.org/packages/af/2d/7bf41579a8986e348fa033a31cdd0e4121114f6bce2457e8876010b092dd/certifi-2026.2.25.tar.gz", hash = "sha256:e887ab5cee78ea814d3472169153c2d12cd43b14bd03329a39a9c6e2e80bfba7", size = 155029, upload-time = "2026-02-25T02:54:17.342Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/9a/3c/c17fb3ca2d9c3acff52e30b309f538586f9f5b9c9cf454f3845fc9af4881/certifi-2026.2.25-py3-none-any.whl", hash = "sha256:027692e4402ad994f1c42e52a4997a9763c646b73e4096e4d5d6db8af1d6f0fa", size = 153684 }, + { url = "https://files.pythonhosted.org/packages/9a/3c/c17fb3ca2d9c3acff52e30b309f538586f9f5b9c9cf454f3845fc9af4881/certifi-2026.2.25-py3-none-any.whl", hash = "sha256:027692e4402ad994f1c42e52a4997a9763c646b73e4096e4d5d6db8af1d6f0fa", size = 153684, upload-time = "2026-02-25T02:54:15.766Z" }, ] [[package]] @@ -40,67 +40,67 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "pycparser", marker = "implementation_name != 'PyPy'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/eb/56/b1ba7935a17738ae8453301356628e8147c79dbb825bcbc73dc7401f9846/cffi-2.0.0.tar.gz", hash = "sha256:44d1b5909021139fe36001ae048dbdde8214afa20200eda0f64c068cac5d5529", size = 523588 } +sdist = { url = "https://files.pythonhosted.org/packages/eb/56/b1ba7935a17738ae8453301356628e8147c79dbb825bcbc73dc7401f9846/cffi-2.0.0.tar.gz", hash = "sha256:44d1b5909021139fe36001ae048dbdde8214afa20200eda0f64c068cac5d5529", size = 523588, upload-time = "2025-09-08T23:24:04.541Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/12/4a/3dfd5f7850cbf0d06dc84ba9aa00db766b52ca38d8b86e3a38314d52498c/cffi-2.0.0-cp311-cp311-macosx_10_13_x86_64.whl", hash = "sha256:b4c854ef3adc177950a8dfc81a86f5115d2abd545751a304c5bcf2c2c7283cfe", size = 184344 }, - { url = "https://files.pythonhosted.org/packages/4f/8b/f0e4c441227ba756aafbe78f117485b25bb26b1c059d01f137fa6d14896b/cffi-2.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2de9a304e27f7596cd03d16f1b7c72219bd944e99cc52b84d0145aefb07cbd3c", size = 180560 }, - { url = "https://files.pythonhosted.org/packages/b1/b7/1200d354378ef52ec227395d95c2576330fd22a869f7a70e88e1447eb234/cffi-2.0.0-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:baf5215e0ab74c16e2dd324e8ec067ef59e41125d3eade2b863d294fd5035c92", size = 209613 }, - { url = "https://files.pythonhosted.org/packages/b8/56/6033f5e86e8cc9bb629f0077ba71679508bdf54a9a5e112a3c0b91870332/cffi-2.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:730cacb21e1bdff3ce90babf007d0a0917cc3e6492f336c2f0134101e0944f93", size = 216476 }, - { url = "https://files.pythonhosted.org/packages/dc/7f/55fecd70f7ece178db2f26128ec41430d8720f2d12ca97bf8f0a628207d5/cffi-2.0.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:6824f87845e3396029f3820c206e459ccc91760e8fa24422f8b0c3d1731cbec5", size = 203374 }, - { url = "https://files.pythonhosted.org/packages/84/ef/a7b77c8bdc0f77adc3b46888f1ad54be8f3b7821697a7b89126e829e676a/cffi-2.0.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:9de40a7b0323d889cf8d23d1ef214f565ab154443c42737dfe52ff82cf857664", size = 202597 }, - { url = "https://files.pythonhosted.org/packages/d7/91/500d892b2bf36529a75b77958edfcd5ad8e2ce4064ce2ecfeab2125d72d1/cffi-2.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:8941aaadaf67246224cee8c3803777eed332a19d909b47e29c9842ef1e79ac26", size = 215574 }, - { url = "https://files.pythonhosted.org/packages/44/64/58f6255b62b101093d5df22dcb752596066c7e89dd725e0afaed242a61be/cffi-2.0.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:a05d0c237b3349096d3981b727493e22147f934b20f6f125a3eba8f994bec4a9", size = 218971 }, - { url = "https://files.pythonhosted.org/packages/ab/49/fa72cebe2fd8a55fbe14956f9970fe8eb1ac59e5df042f603ef7c8ba0adc/cffi-2.0.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:94698a9c5f91f9d138526b48fe26a199609544591f859c870d477351dc7b2414", size = 211972 }, - { url = "https://files.pythonhosted.org/packages/0b/28/dd0967a76aab36731b6ebfe64dec4e981aff7e0608f60c2d46b46982607d/cffi-2.0.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:5fed36fccc0612a53f1d4d9a816b50a36702c28a2aa880cb8a122b3466638743", size = 217078 }, - { url = "https://files.pythonhosted.org/packages/2b/c0/015b25184413d7ab0a410775fdb4a50fca20f5589b5dab1dbbfa3baad8ce/cffi-2.0.0-cp311-cp311-win32.whl", hash = "sha256:c649e3a33450ec82378822b3dad03cc228b8f5963c0c12fc3b1e0ab940f768a5", size = 172076 }, - { url = "https://files.pythonhosted.org/packages/ae/8f/dc5531155e7070361eb1b7e4c1a9d896d0cb21c49f807a6c03fd63fc877e/cffi-2.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:66f011380d0e49ed280c789fbd08ff0d40968ee7b665575489afa95c98196ab5", size = 182820 }, - { url = "https://files.pythonhosted.org/packages/95/5c/1b493356429f9aecfd56bc171285a4c4ac8697f76e9bbbbb105e537853a1/cffi-2.0.0-cp311-cp311-win_arm64.whl", hash = "sha256:c6638687455baf640e37344fe26d37c404db8b80d037c3d29f58fe8d1c3b194d", size = 177635 }, - { url = "https://files.pythonhosted.org/packages/ea/47/4f61023ea636104d4f16ab488e268b93008c3d0bb76893b1b31db1f96802/cffi-2.0.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:6d02d6655b0e54f54c4ef0b94eb6be0607b70853c45ce98bd278dc7de718be5d", size = 185271 }, - { url = "https://files.pythonhosted.org/packages/df/a2/781b623f57358e360d62cdd7a8c681f074a71d445418a776eef0aadb4ab4/cffi-2.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8eca2a813c1cb7ad4fb74d368c2ffbbb4789d377ee5bb8df98373c2cc0dee76c", size = 181048 }, - { url = "https://files.pythonhosted.org/packages/ff/df/a4f0fbd47331ceeba3d37c2e51e9dfc9722498becbeec2bd8bc856c9538a/cffi-2.0.0-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:21d1152871b019407d8ac3985f6775c079416c282e431a4da6afe7aefd2bccbe", size = 212529 }, - { url = "https://files.pythonhosted.org/packages/d5/72/12b5f8d3865bf0f87cf1404d8c374e7487dcf097a1c91c436e72e6badd83/cffi-2.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:b21e08af67b8a103c71a250401c78d5e0893beff75e28c53c98f4de42f774062", size = 220097 }, - { url = "https://files.pythonhosted.org/packages/c2/95/7a135d52a50dfa7c882ab0ac17e8dc11cec9d55d2c18dda414c051c5e69e/cffi-2.0.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:1e3a615586f05fc4065a8b22b8152f0c1b00cdbc60596d187c2a74f9e3036e4e", size = 207983 }, - { url = "https://files.pythonhosted.org/packages/3a/c8/15cb9ada8895957ea171c62dc78ff3e99159ee7adb13c0123c001a2546c1/cffi-2.0.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:81afed14892743bbe14dacb9e36d9e0e504cd204e0b165062c488942b9718037", size = 206519 }, - { url = "https://files.pythonhosted.org/packages/78/2d/7fa73dfa841b5ac06c7b8855cfc18622132e365f5b81d02230333ff26e9e/cffi-2.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:3e17ed538242334bf70832644a32a7aae3d83b57567f9fd60a26257e992b79ba", size = 219572 }, - { url = "https://files.pythonhosted.org/packages/07/e0/267e57e387b4ca276b90f0434ff88b2c2241ad72b16d31836adddfd6031b/cffi-2.0.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3925dd22fa2b7699ed2617149842d2e6adde22b262fcbfada50e3d195e4b3a94", size = 222963 }, - { url = "https://files.pythonhosted.org/packages/b6/75/1f2747525e06f53efbd878f4d03bac5b859cbc11c633d0fb81432d98a795/cffi-2.0.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2c8f814d84194c9ea681642fd164267891702542f028a15fc97d4674b6206187", size = 221361 }, - { url = "https://files.pythonhosted.org/packages/7b/2b/2b6435f76bfeb6bbf055596976da087377ede68df465419d192acf00c437/cffi-2.0.0-cp312-cp312-win32.whl", hash = "sha256:da902562c3e9c550df360bfa53c035b2f241fed6d9aef119048073680ace4a18", size = 172932 }, - { url = "https://files.pythonhosted.org/packages/f8/ed/13bd4418627013bec4ed6e54283b1959cf6db888048c7cf4b4c3b5b36002/cffi-2.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:da68248800ad6320861f129cd9c1bf96ca849a2771a59e0344e88681905916f5", size = 183557 }, - { url = "https://files.pythonhosted.org/packages/95/31/9f7f93ad2f8eff1dbc1c3656d7ca5bfd8fb52c9d786b4dcf19b2d02217fa/cffi-2.0.0-cp312-cp312-win_arm64.whl", hash = "sha256:4671d9dd5ec934cb9a73e7ee9676f9362aba54f7f34910956b84d727b0d73fb6", size = 177762 }, - { url = "https://files.pythonhosted.org/packages/4b/8d/a0a47a0c9e413a658623d014e91e74a50cdd2c423f7ccfd44086ef767f90/cffi-2.0.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:00bdf7acc5f795150faa6957054fbbca2439db2f775ce831222b66f192f03beb", size = 185230 }, - { url = "https://files.pythonhosted.org/packages/4a/d2/a6c0296814556c68ee32009d9c2ad4f85f2707cdecfd7727951ec228005d/cffi-2.0.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:45d5e886156860dc35862657e1494b9bae8dfa63bf56796f2fb56e1679fc0bca", size = 181043 }, - { url = "https://files.pythonhosted.org/packages/b0/1e/d22cc63332bd59b06481ceaac49d6c507598642e2230f201649058a7e704/cffi-2.0.0-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:07b271772c100085dd28b74fa0cd81c8fb1a3ba18b21e03d7c27f3436a10606b", size = 212446 }, - { url = "https://files.pythonhosted.org/packages/a9/f5/a2c23eb03b61a0b8747f211eb716446c826ad66818ddc7810cc2cc19b3f2/cffi-2.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:d48a880098c96020b02d5a1f7d9251308510ce8858940e6fa99ece33f610838b", size = 220101 }, - { url = "https://files.pythonhosted.org/packages/f2/7f/e6647792fc5850d634695bc0e6ab4111ae88e89981d35ac269956605feba/cffi-2.0.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:f93fd8e5c8c0a4aa1f424d6173f14a892044054871c771f8566e4008eaa359d2", size = 207948 }, - { url = "https://files.pythonhosted.org/packages/cb/1e/a5a1bd6f1fb30f22573f76533de12a00bf274abcdc55c8edab639078abb6/cffi-2.0.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:dd4f05f54a52fb558f1ba9f528228066954fee3ebe629fc1660d874d040ae5a3", size = 206422 }, - { url = "https://files.pythonhosted.org/packages/98/df/0a1755e750013a2081e863e7cd37e0cdd02664372c754e5560099eb7aa44/cffi-2.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:c8d3b5532fc71b7a77c09192b4a5a200ea992702734a2e9279a37f2478236f26", size = 219499 }, - { url = "https://files.pythonhosted.org/packages/50/e1/a969e687fcf9ea58e6e2a928ad5e2dd88cc12f6f0ab477e9971f2309b57c/cffi-2.0.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:d9b29c1f0ae438d5ee9acb31cadee00a58c46cc9c0b2f9038c6b0b3470877a8c", size = 222928 }, - { url = "https://files.pythonhosted.org/packages/36/54/0362578dd2c9e557a28ac77698ed67323ed5b9775ca9d3fe73fe191bb5d8/cffi-2.0.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6d50360be4546678fc1b79ffe7a66265e28667840010348dd69a314145807a1b", size = 221302 }, - { url = "https://files.pythonhosted.org/packages/eb/6d/bf9bda840d5f1dfdbf0feca87fbdb64a918a69bca42cfa0ba7b137c48cb8/cffi-2.0.0-cp313-cp313-win32.whl", hash = "sha256:74a03b9698e198d47562765773b4a8309919089150a0bb17d829ad7b44b60d27", size = 172909 }, - { url = "https://files.pythonhosted.org/packages/37/18/6519e1ee6f5a1e579e04b9ddb6f1676c17368a7aba48299c3759bbc3c8b3/cffi-2.0.0-cp313-cp313-win_amd64.whl", hash = "sha256:19f705ada2530c1167abacb171925dd886168931e0a7b78f5bffcae5c6b5be75", size = 183402 }, - { url = "https://files.pythonhosted.org/packages/cb/0e/02ceeec9a7d6ee63bb596121c2c8e9b3a9e150936f4fbef6ca1943e6137c/cffi-2.0.0-cp313-cp313-win_arm64.whl", hash = "sha256:256f80b80ca3853f90c21b23ee78cd008713787b1b1e93eae9f3d6a7134abd91", size = 177780 }, - { url = "https://files.pythonhosted.org/packages/92/c4/3ce07396253a83250ee98564f8d7e9789fab8e58858f35d07a9a2c78de9f/cffi-2.0.0-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:fc33c5141b55ed366cfaad382df24fe7dcbc686de5be719b207bb248e3053dc5", size = 185320 }, - { url = "https://files.pythonhosted.org/packages/59/dd/27e9fa567a23931c838c6b02d0764611c62290062a6d4e8ff7863daf9730/cffi-2.0.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:c654de545946e0db659b3400168c9ad31b5d29593291482c43e3564effbcee13", size = 181487 }, - { url = "https://files.pythonhosted.org/packages/d6/43/0e822876f87ea8a4ef95442c3d766a06a51fc5298823f884ef87aaad168c/cffi-2.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:24b6f81f1983e6df8db3adc38562c83f7d4a0c36162885ec7f7b77c7dcbec97b", size = 220049 }, - { url = "https://files.pythonhosted.org/packages/b4/89/76799151d9c2d2d1ead63c2429da9ea9d7aac304603de0c6e8764e6e8e70/cffi-2.0.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:12873ca6cb9b0f0d3a0da705d6086fe911591737a59f28b7936bdfed27c0d47c", size = 207793 }, - { url = "https://files.pythonhosted.org/packages/bb/dd/3465b14bb9e24ee24cb88c9e3730f6de63111fffe513492bf8c808a3547e/cffi-2.0.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:d9b97165e8aed9272a6bb17c01e3cc5871a594a446ebedc996e2397a1c1ea8ef", size = 206300 }, - { url = "https://files.pythonhosted.org/packages/47/d9/d83e293854571c877a92da46fdec39158f8d7e68da75bf73581225d28e90/cffi-2.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:afb8db5439b81cf9c9d0c80404b60c3cc9c3add93e114dcae767f1477cb53775", size = 219244 }, - { url = "https://files.pythonhosted.org/packages/2b/0f/1f177e3683aead2bb00f7679a16451d302c436b5cbf2505f0ea8146ef59e/cffi-2.0.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:737fe7d37e1a1bffe70bd5754ea763a62a066dc5913ca57e957824b72a85e205", size = 222828 }, - { url = "https://files.pythonhosted.org/packages/c6/0f/cafacebd4b040e3119dcb32fed8bdef8dfe94da653155f9d0b9dc660166e/cffi-2.0.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:38100abb9d1b1435bc4cc340bb4489635dc2f0da7456590877030c9b3d40b0c1", size = 220926 }, - { url = "https://files.pythonhosted.org/packages/3e/aa/df335faa45b395396fcbc03de2dfcab242cd61a9900e914fe682a59170b1/cffi-2.0.0-cp314-cp314-win32.whl", hash = "sha256:087067fa8953339c723661eda6b54bc98c5625757ea62e95eb4898ad5e776e9f", size = 175328 }, - { url = "https://files.pythonhosted.org/packages/bb/92/882c2d30831744296ce713f0feb4c1cd30f346ef747b530b5318715cc367/cffi-2.0.0-cp314-cp314-win_amd64.whl", hash = "sha256:203a48d1fb583fc7d78a4c6655692963b860a417c0528492a6bc21f1aaefab25", size = 185650 }, - { url = "https://files.pythonhosted.org/packages/9f/2c/98ece204b9d35a7366b5b2c6539c350313ca13932143e79dc133ba757104/cffi-2.0.0-cp314-cp314-win_arm64.whl", hash = "sha256:dbd5c7a25a7cb98f5ca55d258b103a2054f859a46ae11aaf23134f9cc0d356ad", size = 180687 }, - { url = "https://files.pythonhosted.org/packages/3e/61/c768e4d548bfa607abcda77423448df8c471f25dbe64fb2ef6d555eae006/cffi-2.0.0-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:9a67fc9e8eb39039280526379fb3a70023d77caec1852002b4da7e8b270c4dd9", size = 188773 }, - { url = "https://files.pythonhosted.org/packages/2c/ea/5f76bce7cf6fcd0ab1a1058b5af899bfbef198bea4d5686da88471ea0336/cffi-2.0.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:7a66c7204d8869299919db4d5069a82f1561581af12b11b3c9f48c584eb8743d", size = 185013 }, - { url = "https://files.pythonhosted.org/packages/be/b4/c56878d0d1755cf9caa54ba71e5d049479c52f9e4afc230f06822162ab2f/cffi-2.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:7cc09976e8b56f8cebd752f7113ad07752461f48a58cbba644139015ac24954c", size = 221593 }, - { url = "https://files.pythonhosted.org/packages/e0/0d/eb704606dfe8033e7128df5e90fee946bbcb64a04fcdaa97321309004000/cffi-2.0.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:92b68146a71df78564e4ef48af17551a5ddd142e5190cdf2c5624d0c3ff5b2e8", size = 209354 }, - { url = "https://files.pythonhosted.org/packages/d8/19/3c435d727b368ca475fb8742ab97c9cb13a0de600ce86f62eab7fa3eea60/cffi-2.0.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:b1e74d11748e7e98e2f426ab176d4ed720a64412b6a15054378afdb71e0f37dc", size = 208480 }, - { url = "https://files.pythonhosted.org/packages/d0/44/681604464ed9541673e486521497406fadcc15b5217c3e326b061696899a/cffi-2.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:28a3a209b96630bca57cce802da70c266eb08c6e97e5afd61a75611ee6c64592", size = 221584 }, - { url = "https://files.pythonhosted.org/packages/25/8e/342a504ff018a2825d395d44d63a767dd8ebc927ebda557fecdaca3ac33a/cffi-2.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:7553fb2090d71822f02c629afe6042c299edf91ba1bf94951165613553984512", size = 224443 }, - { url = "https://files.pythonhosted.org/packages/e1/5e/b666bacbbc60fbf415ba9988324a132c9a7a0448a9a8f125074671c0f2c3/cffi-2.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:6c6c373cfc5c83a975506110d17457138c8c63016b563cc9ed6e056a82f13ce4", size = 223437 }, - { url = "https://files.pythonhosted.org/packages/a0/1d/ec1a60bd1a10daa292d3cd6bb0b359a81607154fb8165f3ec95fe003b85c/cffi-2.0.0-cp314-cp314t-win32.whl", hash = "sha256:1fc9ea04857caf665289b7a75923f2c6ed559b8298a1b8c49e59f7dd95c8481e", size = 180487 }, - { url = "https://files.pythonhosted.org/packages/bf/41/4c1168c74fac325c0c8156f04b6749c8b6a8f405bbf91413ba088359f60d/cffi-2.0.0-cp314-cp314t-win_amd64.whl", hash = "sha256:d68b6cef7827e8641e8ef16f4494edda8b36104d79773a334beaa1e3521430f6", size = 191726 }, - { url = "https://files.pythonhosted.org/packages/ae/3a/dbeec9d1ee0844c679f6bb5d6ad4e9f198b1224f4e7a32825f47f6192b0c/cffi-2.0.0-cp314-cp314t-win_arm64.whl", hash = "sha256:0a1527a803f0a659de1af2e1fd700213caba79377e27e4693648c2923da066f9", size = 184195 }, + { url = "https://files.pythonhosted.org/packages/12/4a/3dfd5f7850cbf0d06dc84ba9aa00db766b52ca38d8b86e3a38314d52498c/cffi-2.0.0-cp311-cp311-macosx_10_13_x86_64.whl", hash = "sha256:b4c854ef3adc177950a8dfc81a86f5115d2abd545751a304c5bcf2c2c7283cfe", size = 184344, upload-time = "2025-09-08T23:22:26.456Z" }, + { url = "https://files.pythonhosted.org/packages/4f/8b/f0e4c441227ba756aafbe78f117485b25bb26b1c059d01f137fa6d14896b/cffi-2.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2de9a304e27f7596cd03d16f1b7c72219bd944e99cc52b84d0145aefb07cbd3c", size = 180560, upload-time = "2025-09-08T23:22:28.197Z" }, + { url = "https://files.pythonhosted.org/packages/b1/b7/1200d354378ef52ec227395d95c2576330fd22a869f7a70e88e1447eb234/cffi-2.0.0-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:baf5215e0ab74c16e2dd324e8ec067ef59e41125d3eade2b863d294fd5035c92", size = 209613, upload-time = "2025-09-08T23:22:29.475Z" }, + { url = "https://files.pythonhosted.org/packages/b8/56/6033f5e86e8cc9bb629f0077ba71679508bdf54a9a5e112a3c0b91870332/cffi-2.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:730cacb21e1bdff3ce90babf007d0a0917cc3e6492f336c2f0134101e0944f93", size = 216476, upload-time = "2025-09-08T23:22:31.063Z" }, + { url = "https://files.pythonhosted.org/packages/dc/7f/55fecd70f7ece178db2f26128ec41430d8720f2d12ca97bf8f0a628207d5/cffi-2.0.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:6824f87845e3396029f3820c206e459ccc91760e8fa24422f8b0c3d1731cbec5", size = 203374, upload-time = "2025-09-08T23:22:32.507Z" }, + { url = "https://files.pythonhosted.org/packages/84/ef/a7b77c8bdc0f77adc3b46888f1ad54be8f3b7821697a7b89126e829e676a/cffi-2.0.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:9de40a7b0323d889cf8d23d1ef214f565ab154443c42737dfe52ff82cf857664", size = 202597, upload-time = "2025-09-08T23:22:34.132Z" }, + { url = "https://files.pythonhosted.org/packages/d7/91/500d892b2bf36529a75b77958edfcd5ad8e2ce4064ce2ecfeab2125d72d1/cffi-2.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:8941aaadaf67246224cee8c3803777eed332a19d909b47e29c9842ef1e79ac26", size = 215574, upload-time = "2025-09-08T23:22:35.443Z" }, + { url = "https://files.pythonhosted.org/packages/44/64/58f6255b62b101093d5df22dcb752596066c7e89dd725e0afaed242a61be/cffi-2.0.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:a05d0c237b3349096d3981b727493e22147f934b20f6f125a3eba8f994bec4a9", size = 218971, upload-time = "2025-09-08T23:22:36.805Z" }, + { url = "https://files.pythonhosted.org/packages/ab/49/fa72cebe2fd8a55fbe14956f9970fe8eb1ac59e5df042f603ef7c8ba0adc/cffi-2.0.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:94698a9c5f91f9d138526b48fe26a199609544591f859c870d477351dc7b2414", size = 211972, upload-time = "2025-09-08T23:22:38.436Z" }, + { url = "https://files.pythonhosted.org/packages/0b/28/dd0967a76aab36731b6ebfe64dec4e981aff7e0608f60c2d46b46982607d/cffi-2.0.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:5fed36fccc0612a53f1d4d9a816b50a36702c28a2aa880cb8a122b3466638743", size = 217078, upload-time = "2025-09-08T23:22:39.776Z" }, + { url = "https://files.pythonhosted.org/packages/2b/c0/015b25184413d7ab0a410775fdb4a50fca20f5589b5dab1dbbfa3baad8ce/cffi-2.0.0-cp311-cp311-win32.whl", hash = "sha256:c649e3a33450ec82378822b3dad03cc228b8f5963c0c12fc3b1e0ab940f768a5", size = 172076, upload-time = "2025-09-08T23:22:40.95Z" }, + { url = "https://files.pythonhosted.org/packages/ae/8f/dc5531155e7070361eb1b7e4c1a9d896d0cb21c49f807a6c03fd63fc877e/cffi-2.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:66f011380d0e49ed280c789fbd08ff0d40968ee7b665575489afa95c98196ab5", size = 182820, upload-time = "2025-09-08T23:22:42.463Z" }, + { url = "https://files.pythonhosted.org/packages/95/5c/1b493356429f9aecfd56bc171285a4c4ac8697f76e9bbbbb105e537853a1/cffi-2.0.0-cp311-cp311-win_arm64.whl", hash = "sha256:c6638687455baf640e37344fe26d37c404db8b80d037c3d29f58fe8d1c3b194d", size = 177635, upload-time = "2025-09-08T23:22:43.623Z" }, + { url = "https://files.pythonhosted.org/packages/ea/47/4f61023ea636104d4f16ab488e268b93008c3d0bb76893b1b31db1f96802/cffi-2.0.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:6d02d6655b0e54f54c4ef0b94eb6be0607b70853c45ce98bd278dc7de718be5d", size = 185271, upload-time = "2025-09-08T23:22:44.795Z" }, + { url = "https://files.pythonhosted.org/packages/df/a2/781b623f57358e360d62cdd7a8c681f074a71d445418a776eef0aadb4ab4/cffi-2.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8eca2a813c1cb7ad4fb74d368c2ffbbb4789d377ee5bb8df98373c2cc0dee76c", size = 181048, upload-time = "2025-09-08T23:22:45.938Z" }, + { url = "https://files.pythonhosted.org/packages/ff/df/a4f0fbd47331ceeba3d37c2e51e9dfc9722498becbeec2bd8bc856c9538a/cffi-2.0.0-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:21d1152871b019407d8ac3985f6775c079416c282e431a4da6afe7aefd2bccbe", size = 212529, upload-time = "2025-09-08T23:22:47.349Z" }, + { url = "https://files.pythonhosted.org/packages/d5/72/12b5f8d3865bf0f87cf1404d8c374e7487dcf097a1c91c436e72e6badd83/cffi-2.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:b21e08af67b8a103c71a250401c78d5e0893beff75e28c53c98f4de42f774062", size = 220097, upload-time = "2025-09-08T23:22:48.677Z" }, + { url = "https://files.pythonhosted.org/packages/c2/95/7a135d52a50dfa7c882ab0ac17e8dc11cec9d55d2c18dda414c051c5e69e/cffi-2.0.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:1e3a615586f05fc4065a8b22b8152f0c1b00cdbc60596d187c2a74f9e3036e4e", size = 207983, upload-time = "2025-09-08T23:22:50.06Z" }, + { url = "https://files.pythonhosted.org/packages/3a/c8/15cb9ada8895957ea171c62dc78ff3e99159ee7adb13c0123c001a2546c1/cffi-2.0.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:81afed14892743bbe14dacb9e36d9e0e504cd204e0b165062c488942b9718037", size = 206519, upload-time = "2025-09-08T23:22:51.364Z" }, + { url = "https://files.pythonhosted.org/packages/78/2d/7fa73dfa841b5ac06c7b8855cfc18622132e365f5b81d02230333ff26e9e/cffi-2.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:3e17ed538242334bf70832644a32a7aae3d83b57567f9fd60a26257e992b79ba", size = 219572, upload-time = "2025-09-08T23:22:52.902Z" }, + { url = "https://files.pythonhosted.org/packages/07/e0/267e57e387b4ca276b90f0434ff88b2c2241ad72b16d31836adddfd6031b/cffi-2.0.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3925dd22fa2b7699ed2617149842d2e6adde22b262fcbfada50e3d195e4b3a94", size = 222963, upload-time = "2025-09-08T23:22:54.518Z" }, + { url = "https://files.pythonhosted.org/packages/b6/75/1f2747525e06f53efbd878f4d03bac5b859cbc11c633d0fb81432d98a795/cffi-2.0.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2c8f814d84194c9ea681642fd164267891702542f028a15fc97d4674b6206187", size = 221361, upload-time = "2025-09-08T23:22:55.867Z" }, + { url = "https://files.pythonhosted.org/packages/7b/2b/2b6435f76bfeb6bbf055596976da087377ede68df465419d192acf00c437/cffi-2.0.0-cp312-cp312-win32.whl", hash = "sha256:da902562c3e9c550df360bfa53c035b2f241fed6d9aef119048073680ace4a18", size = 172932, upload-time = "2025-09-08T23:22:57.188Z" }, + { url = "https://files.pythonhosted.org/packages/f8/ed/13bd4418627013bec4ed6e54283b1959cf6db888048c7cf4b4c3b5b36002/cffi-2.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:da68248800ad6320861f129cd9c1bf96ca849a2771a59e0344e88681905916f5", size = 183557, upload-time = "2025-09-08T23:22:58.351Z" }, + { url = "https://files.pythonhosted.org/packages/95/31/9f7f93ad2f8eff1dbc1c3656d7ca5bfd8fb52c9d786b4dcf19b2d02217fa/cffi-2.0.0-cp312-cp312-win_arm64.whl", hash = "sha256:4671d9dd5ec934cb9a73e7ee9676f9362aba54f7f34910956b84d727b0d73fb6", size = 177762, upload-time = "2025-09-08T23:22:59.668Z" }, + { url = "https://files.pythonhosted.org/packages/4b/8d/a0a47a0c9e413a658623d014e91e74a50cdd2c423f7ccfd44086ef767f90/cffi-2.0.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:00bdf7acc5f795150faa6957054fbbca2439db2f775ce831222b66f192f03beb", size = 185230, upload-time = "2025-09-08T23:23:00.879Z" }, + { url = "https://files.pythonhosted.org/packages/4a/d2/a6c0296814556c68ee32009d9c2ad4f85f2707cdecfd7727951ec228005d/cffi-2.0.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:45d5e886156860dc35862657e1494b9bae8dfa63bf56796f2fb56e1679fc0bca", size = 181043, upload-time = "2025-09-08T23:23:02.231Z" }, + { url = "https://files.pythonhosted.org/packages/b0/1e/d22cc63332bd59b06481ceaac49d6c507598642e2230f201649058a7e704/cffi-2.0.0-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:07b271772c100085dd28b74fa0cd81c8fb1a3ba18b21e03d7c27f3436a10606b", size = 212446, upload-time = "2025-09-08T23:23:03.472Z" }, + { url = "https://files.pythonhosted.org/packages/a9/f5/a2c23eb03b61a0b8747f211eb716446c826ad66818ddc7810cc2cc19b3f2/cffi-2.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:d48a880098c96020b02d5a1f7d9251308510ce8858940e6fa99ece33f610838b", size = 220101, upload-time = "2025-09-08T23:23:04.792Z" }, + { url = "https://files.pythonhosted.org/packages/f2/7f/e6647792fc5850d634695bc0e6ab4111ae88e89981d35ac269956605feba/cffi-2.0.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:f93fd8e5c8c0a4aa1f424d6173f14a892044054871c771f8566e4008eaa359d2", size = 207948, upload-time = "2025-09-08T23:23:06.127Z" }, + { url = "https://files.pythonhosted.org/packages/cb/1e/a5a1bd6f1fb30f22573f76533de12a00bf274abcdc55c8edab639078abb6/cffi-2.0.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:dd4f05f54a52fb558f1ba9f528228066954fee3ebe629fc1660d874d040ae5a3", size = 206422, upload-time = "2025-09-08T23:23:07.753Z" }, + { url = "https://files.pythonhosted.org/packages/98/df/0a1755e750013a2081e863e7cd37e0cdd02664372c754e5560099eb7aa44/cffi-2.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:c8d3b5532fc71b7a77c09192b4a5a200ea992702734a2e9279a37f2478236f26", size = 219499, upload-time = "2025-09-08T23:23:09.648Z" }, + { url = "https://files.pythonhosted.org/packages/50/e1/a969e687fcf9ea58e6e2a928ad5e2dd88cc12f6f0ab477e9971f2309b57c/cffi-2.0.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:d9b29c1f0ae438d5ee9acb31cadee00a58c46cc9c0b2f9038c6b0b3470877a8c", size = 222928, upload-time = "2025-09-08T23:23:10.928Z" }, + { url = "https://files.pythonhosted.org/packages/36/54/0362578dd2c9e557a28ac77698ed67323ed5b9775ca9d3fe73fe191bb5d8/cffi-2.0.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6d50360be4546678fc1b79ffe7a66265e28667840010348dd69a314145807a1b", size = 221302, upload-time = "2025-09-08T23:23:12.42Z" }, + { url = "https://files.pythonhosted.org/packages/eb/6d/bf9bda840d5f1dfdbf0feca87fbdb64a918a69bca42cfa0ba7b137c48cb8/cffi-2.0.0-cp313-cp313-win32.whl", hash = "sha256:74a03b9698e198d47562765773b4a8309919089150a0bb17d829ad7b44b60d27", size = 172909, upload-time = "2025-09-08T23:23:14.32Z" }, + { url = "https://files.pythonhosted.org/packages/37/18/6519e1ee6f5a1e579e04b9ddb6f1676c17368a7aba48299c3759bbc3c8b3/cffi-2.0.0-cp313-cp313-win_amd64.whl", hash = "sha256:19f705ada2530c1167abacb171925dd886168931e0a7b78f5bffcae5c6b5be75", size = 183402, upload-time = "2025-09-08T23:23:15.535Z" }, + { url = "https://files.pythonhosted.org/packages/cb/0e/02ceeec9a7d6ee63bb596121c2c8e9b3a9e150936f4fbef6ca1943e6137c/cffi-2.0.0-cp313-cp313-win_arm64.whl", hash = "sha256:256f80b80ca3853f90c21b23ee78cd008713787b1b1e93eae9f3d6a7134abd91", size = 177780, upload-time = "2025-09-08T23:23:16.761Z" }, + { url = "https://files.pythonhosted.org/packages/92/c4/3ce07396253a83250ee98564f8d7e9789fab8e58858f35d07a9a2c78de9f/cffi-2.0.0-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:fc33c5141b55ed366cfaad382df24fe7dcbc686de5be719b207bb248e3053dc5", size = 185320, upload-time = "2025-09-08T23:23:18.087Z" }, + { url = "https://files.pythonhosted.org/packages/59/dd/27e9fa567a23931c838c6b02d0764611c62290062a6d4e8ff7863daf9730/cffi-2.0.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:c654de545946e0db659b3400168c9ad31b5d29593291482c43e3564effbcee13", size = 181487, upload-time = "2025-09-08T23:23:19.622Z" }, + { url = "https://files.pythonhosted.org/packages/d6/43/0e822876f87ea8a4ef95442c3d766a06a51fc5298823f884ef87aaad168c/cffi-2.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:24b6f81f1983e6df8db3adc38562c83f7d4a0c36162885ec7f7b77c7dcbec97b", size = 220049, upload-time = "2025-09-08T23:23:20.853Z" }, + { url = "https://files.pythonhosted.org/packages/b4/89/76799151d9c2d2d1ead63c2429da9ea9d7aac304603de0c6e8764e6e8e70/cffi-2.0.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:12873ca6cb9b0f0d3a0da705d6086fe911591737a59f28b7936bdfed27c0d47c", size = 207793, upload-time = "2025-09-08T23:23:22.08Z" }, + { url = "https://files.pythonhosted.org/packages/bb/dd/3465b14bb9e24ee24cb88c9e3730f6de63111fffe513492bf8c808a3547e/cffi-2.0.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:d9b97165e8aed9272a6bb17c01e3cc5871a594a446ebedc996e2397a1c1ea8ef", size = 206300, upload-time = "2025-09-08T23:23:23.314Z" }, + { url = "https://files.pythonhosted.org/packages/47/d9/d83e293854571c877a92da46fdec39158f8d7e68da75bf73581225d28e90/cffi-2.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:afb8db5439b81cf9c9d0c80404b60c3cc9c3add93e114dcae767f1477cb53775", size = 219244, upload-time = "2025-09-08T23:23:24.541Z" }, + { url = "https://files.pythonhosted.org/packages/2b/0f/1f177e3683aead2bb00f7679a16451d302c436b5cbf2505f0ea8146ef59e/cffi-2.0.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:737fe7d37e1a1bffe70bd5754ea763a62a066dc5913ca57e957824b72a85e205", size = 222828, upload-time = "2025-09-08T23:23:26.143Z" }, + { url = "https://files.pythonhosted.org/packages/c6/0f/cafacebd4b040e3119dcb32fed8bdef8dfe94da653155f9d0b9dc660166e/cffi-2.0.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:38100abb9d1b1435bc4cc340bb4489635dc2f0da7456590877030c9b3d40b0c1", size = 220926, upload-time = "2025-09-08T23:23:27.873Z" }, + { url = "https://files.pythonhosted.org/packages/3e/aa/df335faa45b395396fcbc03de2dfcab242cd61a9900e914fe682a59170b1/cffi-2.0.0-cp314-cp314-win32.whl", hash = "sha256:087067fa8953339c723661eda6b54bc98c5625757ea62e95eb4898ad5e776e9f", size = 175328, upload-time = "2025-09-08T23:23:44.61Z" }, + { url = "https://files.pythonhosted.org/packages/bb/92/882c2d30831744296ce713f0feb4c1cd30f346ef747b530b5318715cc367/cffi-2.0.0-cp314-cp314-win_amd64.whl", hash = "sha256:203a48d1fb583fc7d78a4c6655692963b860a417c0528492a6bc21f1aaefab25", size = 185650, upload-time = "2025-09-08T23:23:45.848Z" }, + { url = "https://files.pythonhosted.org/packages/9f/2c/98ece204b9d35a7366b5b2c6539c350313ca13932143e79dc133ba757104/cffi-2.0.0-cp314-cp314-win_arm64.whl", hash = "sha256:dbd5c7a25a7cb98f5ca55d258b103a2054f859a46ae11aaf23134f9cc0d356ad", size = 180687, upload-time = "2025-09-08T23:23:47.105Z" }, + { url = "https://files.pythonhosted.org/packages/3e/61/c768e4d548bfa607abcda77423448df8c471f25dbe64fb2ef6d555eae006/cffi-2.0.0-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:9a67fc9e8eb39039280526379fb3a70023d77caec1852002b4da7e8b270c4dd9", size = 188773, upload-time = "2025-09-08T23:23:29.347Z" }, + { url = "https://files.pythonhosted.org/packages/2c/ea/5f76bce7cf6fcd0ab1a1058b5af899bfbef198bea4d5686da88471ea0336/cffi-2.0.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:7a66c7204d8869299919db4d5069a82f1561581af12b11b3c9f48c584eb8743d", size = 185013, upload-time = "2025-09-08T23:23:30.63Z" }, + { url = "https://files.pythonhosted.org/packages/be/b4/c56878d0d1755cf9caa54ba71e5d049479c52f9e4afc230f06822162ab2f/cffi-2.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:7cc09976e8b56f8cebd752f7113ad07752461f48a58cbba644139015ac24954c", size = 221593, upload-time = "2025-09-08T23:23:31.91Z" }, + { url = "https://files.pythonhosted.org/packages/e0/0d/eb704606dfe8033e7128df5e90fee946bbcb64a04fcdaa97321309004000/cffi-2.0.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:92b68146a71df78564e4ef48af17551a5ddd142e5190cdf2c5624d0c3ff5b2e8", size = 209354, upload-time = "2025-09-08T23:23:33.214Z" }, + { url = "https://files.pythonhosted.org/packages/d8/19/3c435d727b368ca475fb8742ab97c9cb13a0de600ce86f62eab7fa3eea60/cffi-2.0.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:b1e74d11748e7e98e2f426ab176d4ed720a64412b6a15054378afdb71e0f37dc", size = 208480, upload-time = "2025-09-08T23:23:34.495Z" }, + { url = "https://files.pythonhosted.org/packages/d0/44/681604464ed9541673e486521497406fadcc15b5217c3e326b061696899a/cffi-2.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:28a3a209b96630bca57cce802da70c266eb08c6e97e5afd61a75611ee6c64592", size = 221584, upload-time = "2025-09-08T23:23:36.096Z" }, + { url = "https://files.pythonhosted.org/packages/25/8e/342a504ff018a2825d395d44d63a767dd8ebc927ebda557fecdaca3ac33a/cffi-2.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:7553fb2090d71822f02c629afe6042c299edf91ba1bf94951165613553984512", size = 224443, upload-time = "2025-09-08T23:23:37.328Z" }, + { url = "https://files.pythonhosted.org/packages/e1/5e/b666bacbbc60fbf415ba9988324a132c9a7a0448a9a8f125074671c0f2c3/cffi-2.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:6c6c373cfc5c83a975506110d17457138c8c63016b563cc9ed6e056a82f13ce4", size = 223437, upload-time = "2025-09-08T23:23:38.945Z" }, + { url = "https://files.pythonhosted.org/packages/a0/1d/ec1a60bd1a10daa292d3cd6bb0b359a81607154fb8165f3ec95fe003b85c/cffi-2.0.0-cp314-cp314t-win32.whl", hash = "sha256:1fc9ea04857caf665289b7a75923f2c6ed559b8298a1b8c49e59f7dd95c8481e", size = 180487, upload-time = "2025-09-08T23:23:40.423Z" }, + { url = "https://files.pythonhosted.org/packages/bf/41/4c1168c74fac325c0c8156f04b6749c8b6a8f405bbf91413ba088359f60d/cffi-2.0.0-cp314-cp314t-win_amd64.whl", hash = "sha256:d68b6cef7827e8641e8ef16f4494edda8b36104d79773a334beaa1e3521430f6", size = 191726, upload-time = "2025-09-08T23:23:41.742Z" }, + { url = "https://files.pythonhosted.org/packages/ae/3a/dbeec9d1ee0844c679f6bb5d6ad4e9f198b1224f4e7a32825f47f6192b0c/cffi-2.0.0-cp314-cp314t-win_arm64.whl", hash = "sha256:0a1527a803f0a659de1af2e1fd700213caba79377e27e4693648c2923da066f9", size = 184195, upload-time = "2025-09-08T23:23:43.004Z" }, ] [[package]] @@ -111,25 +111,25 @@ dependencies = [ { name = "certifi" }, { name = "cffi" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/9b/c9/0067d9a25ed4592b022d4558157fcdb6e123516083700786d38091688767/curl_cffi-0.14.0.tar.gz", hash = "sha256:5ffbc82e59f05008ec08ea432f0e535418823cda44178ee518906a54f27a5f0f", size = 162633 } +sdist = { url = "https://files.pythonhosted.org/packages/9b/c9/0067d9a25ed4592b022d4558157fcdb6e123516083700786d38091688767/curl_cffi-0.14.0.tar.gz", hash = "sha256:5ffbc82e59f05008ec08ea432f0e535418823cda44178ee518906a54f27a5f0f", size = 162633, upload-time = "2025-12-16T03:25:07.931Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/aa/f0/0f21e9688eaac85e705537b3a87a5588d0cefb2f09d83e83e0e8be93aa99/curl_cffi-0.14.0-cp39-abi3-macosx_14_0_arm64.whl", hash = "sha256:e35e89c6a69872f9749d6d5fda642ed4fc159619329e99d577d0104c9aad5893", size = 3087277 }, - { url = "https://files.pythonhosted.org/packages/ba/a3/0419bd48fce5b145cb6a2344c6ac17efa588f5b0061f212c88e0723da026/curl_cffi-0.14.0-cp39-abi3-macosx_15_0_x86_64.whl", hash = "sha256:5945478cd28ad7dfb5c54473bcfb6743ee1d66554d57951fdf8fc0e7d8cf4e45", size = 5804650 }, - { url = "https://files.pythonhosted.org/packages/e2/07/a238dd062b7841b8caa2fa8a359eb997147ff3161288f0dd46654d898b4d/curl_cffi-0.14.0-cp39-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c42e8fa3c667db9ccd2e696ee47adcd3cd5b0838d7282f3fc45f6c0ef3cfdfa7", size = 8231918 }, - { url = "https://files.pythonhosted.org/packages/7c/d2/ce907c9b37b5caf76ac08db40cc4ce3d9f94c5500db68a195af3513eacbc/curl_cffi-0.14.0-cp39-abi3-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:060fe2c99c41d3cb7f894de318ddf4b0301b08dca70453d769bd4e74b36b8483", size = 8654624 }, - { url = "https://files.pythonhosted.org/packages/f2/ae/6256995b18c75e6ef76b30753a5109e786813aa79088b27c8eabb1ef85c9/curl_cffi-0.14.0-cp39-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:b158c41a25388690dd0d40b5bc38d1e0f512135f17fdb8029868cbc1993d2e5b", size = 8010654 }, - { url = "https://files.pythonhosted.org/packages/fb/10/ff64249e516b103cb762e0a9dca3ee0f04cf25e2a1d5d9838e0f1273d071/curl_cffi-0.14.0-cp39-abi3-manylinux_2_28_i686.whl", hash = "sha256:1439fbef3500fb723333c826adf0efb0e2e5065a703fb5eccce637a2250db34a", size = 7781969 }, - { url = "https://files.pythonhosted.org/packages/51/76/d6f7bb76c2d12811aa7ff16f5e17b678abdd1b357b9a8ac56310ceccabd5/curl_cffi-0.14.0-cp39-abi3-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:e7176f2c2d22b542e3cf261072a81deb018cfa7688930f95dddef215caddb469", size = 7969133 }, - { url = "https://files.pythonhosted.org/packages/23/7c/cca39c0ed4e1772613d3cba13091c0e9d3b89365e84b9bf9838259a3cd8f/curl_cffi-0.14.0-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:03f21ade2d72978c2bb8670e9b6de5260e2755092b02d94b70b906813662998d", size = 9080167 }, - { url = "https://files.pythonhosted.org/packages/75/03/a942d7119d3e8911094d157598ae0169b1c6ca1bd3f27d7991b279bcc45b/curl_cffi-0.14.0-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:58ebf02de64ee5c95613209ddacb014c2d2f86298d7080c0a1c12ed876ee0690", size = 9520464 }, - { url = "https://files.pythonhosted.org/packages/a2/77/78900e9b0833066d2274bda75cba426fdb4cef7fbf6a4f6a6ca447607bec/curl_cffi-0.14.0-cp39-abi3-win_amd64.whl", hash = "sha256:6e503f9a103f6ae7acfb3890c843b53ec030785a22ae7682a22cc43afb94123e", size = 1677416 }, - { url = "https://files.pythonhosted.org/packages/5c/7c/d2ba86b0b3e1e2830bd94163d047de122c69a8df03c5c7c36326c456ad82/curl_cffi-0.14.0-cp39-abi3-win_arm64.whl", hash = "sha256:2eed50a969201605c863c4c31269dfc3e0da52916086ac54553cfa353022425c", size = 1425067 }, + { url = "https://files.pythonhosted.org/packages/aa/f0/0f21e9688eaac85e705537b3a87a5588d0cefb2f09d83e83e0e8be93aa99/curl_cffi-0.14.0-cp39-abi3-macosx_14_0_arm64.whl", hash = "sha256:e35e89c6a69872f9749d6d5fda642ed4fc159619329e99d577d0104c9aad5893", size = 3087277, upload-time = "2025-12-16T03:24:49.607Z" }, + { url = "https://files.pythonhosted.org/packages/ba/a3/0419bd48fce5b145cb6a2344c6ac17efa588f5b0061f212c88e0723da026/curl_cffi-0.14.0-cp39-abi3-macosx_15_0_x86_64.whl", hash = "sha256:5945478cd28ad7dfb5c54473bcfb6743ee1d66554d57951fdf8fc0e7d8cf4e45", size = 5804650, upload-time = "2025-12-16T03:24:51.518Z" }, + { url = "https://files.pythonhosted.org/packages/e2/07/a238dd062b7841b8caa2fa8a359eb997147ff3161288f0dd46654d898b4d/curl_cffi-0.14.0-cp39-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c42e8fa3c667db9ccd2e696ee47adcd3cd5b0838d7282f3fc45f6c0ef3cfdfa7", size = 8231918, upload-time = "2025-12-16T03:24:52.862Z" }, + { url = "https://files.pythonhosted.org/packages/7c/d2/ce907c9b37b5caf76ac08db40cc4ce3d9f94c5500db68a195af3513eacbc/curl_cffi-0.14.0-cp39-abi3-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:060fe2c99c41d3cb7f894de318ddf4b0301b08dca70453d769bd4e74b36b8483", size = 8654624, upload-time = "2025-12-16T03:24:54.579Z" }, + { url = "https://files.pythonhosted.org/packages/f2/ae/6256995b18c75e6ef76b30753a5109e786813aa79088b27c8eabb1ef85c9/curl_cffi-0.14.0-cp39-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:b158c41a25388690dd0d40b5bc38d1e0f512135f17fdb8029868cbc1993d2e5b", size = 8010654, upload-time = "2025-12-16T03:24:56.507Z" }, + { url = "https://files.pythonhosted.org/packages/fb/10/ff64249e516b103cb762e0a9dca3ee0f04cf25e2a1d5d9838e0f1273d071/curl_cffi-0.14.0-cp39-abi3-manylinux_2_28_i686.whl", hash = "sha256:1439fbef3500fb723333c826adf0efb0e2e5065a703fb5eccce637a2250db34a", size = 7781969, upload-time = "2025-12-16T03:24:57.885Z" }, + { url = "https://files.pythonhosted.org/packages/51/76/d6f7bb76c2d12811aa7ff16f5e17b678abdd1b357b9a8ac56310ceccabd5/curl_cffi-0.14.0-cp39-abi3-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:e7176f2c2d22b542e3cf261072a81deb018cfa7688930f95dddef215caddb469", size = 7969133, upload-time = "2025-12-16T03:24:59.261Z" }, + { url = "https://files.pythonhosted.org/packages/23/7c/cca39c0ed4e1772613d3cba13091c0e9d3b89365e84b9bf9838259a3cd8f/curl_cffi-0.14.0-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:03f21ade2d72978c2bb8670e9b6de5260e2755092b02d94b70b906813662998d", size = 9080167, upload-time = "2025-12-16T03:25:00.946Z" }, + { url = "https://files.pythonhosted.org/packages/75/03/a942d7119d3e8911094d157598ae0169b1c6ca1bd3f27d7991b279bcc45b/curl_cffi-0.14.0-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:58ebf02de64ee5c95613209ddacb014c2d2f86298d7080c0a1c12ed876ee0690", size = 9520464, upload-time = "2025-12-16T03:25:02.922Z" }, + { url = "https://files.pythonhosted.org/packages/a2/77/78900e9b0833066d2274bda75cba426fdb4cef7fbf6a4f6a6ca447607bec/curl_cffi-0.14.0-cp39-abi3-win_amd64.whl", hash = "sha256:6e503f9a103f6ae7acfb3890c843b53ec030785a22ae7682a22cc43afb94123e", size = 1677416, upload-time = "2025-12-16T03:25:04.902Z" }, + { url = "https://files.pythonhosted.org/packages/5c/7c/d2ba86b0b3e1e2830bd94163d047de122c69a8df03c5c7c36326c456ad82/curl_cffi-0.14.0-cp39-abi3-win_arm64.whl", hash = "sha256:2eed50a969201605c863c4c31269dfc3e0da52916086ac54553cfa353022425c", size = 1425067, upload-time = "2025-12-16T03:25:06.454Z" }, ] [[package]] name = "gptplus-auto" version = "0.1.0" -source = { virtual = "." } +source = { editable = "." } dependencies = [ { name = "curl-cffi" }, { name = "httpx", extra = ["socks"] }, @@ -154,61 +154,61 @@ dev = [] name = "greenlet" version = "3.3.2" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/a3/51/1664f6b78fc6ebbd98019a1fd730e83fa78f2db7058f72b1463d3612b8db/greenlet-3.3.2.tar.gz", hash = "sha256:2eaf067fc6d886931c7962e8c6bede15d2f01965560f3359b27c80bde2d151f2", size = 188267 } +sdist = { url = "https://files.pythonhosted.org/packages/a3/51/1664f6b78fc6ebbd98019a1fd730e83fa78f2db7058f72b1463d3612b8db/greenlet-3.3.2.tar.gz", hash = "sha256:2eaf067fc6d886931c7962e8c6bede15d2f01965560f3359b27c80bde2d151f2", size = 188267, upload-time = "2026-02-20T20:54:15.531Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/f3/47/16400cb42d18d7a6bb46f0626852c1718612e35dcb0dffa16bbaffdf5dd2/greenlet-3.3.2-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:c56692189a7d1c7606cb794be0a8381470d95c57ce5be03fb3d0ef57c7853b86", size = 278890 }, - { url = "https://files.pythonhosted.org/packages/a3/90/42762b77a5b6aa96cd8c0e80612663d39211e8ae8a6cd47c7f1249a66262/greenlet-3.3.2-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1ebd458fa8285960f382841da585e02201b53a5ec2bac6b156fc623b5ce4499f", size = 581120 }, - { url = "https://files.pythonhosted.org/packages/bf/6f/f3d64f4fa0a9c7b5c5b3c810ff1df614540d5aa7d519261b53fba55d4df9/greenlet-3.3.2-cp311-cp311-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a443358b33c4ec7b05b79a7c8b466f5d275025e750298be7340f8fc63dff2a55", size = 594363 }, - { url = "https://files.pythonhosted.org/packages/9c/8b/1430a04657735a3f23116c2e0d5eb10220928846e4537a938a41b350bed6/greenlet-3.3.2-cp311-cp311-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:4375a58e49522698d3e70cc0b801c19433021b5c37686f7ce9c65b0d5c8677d2", size = 605046 }, - { url = "https://files.pythonhosted.org/packages/72/83/3e06a52aca8128bdd4dcd67e932b809e76a96ab8c232a8b025b2850264c5/greenlet-3.3.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8e2cd90d413acbf5e77ae41e5d3c9b3ac1d011a756d7284d7f3f2b806bbd6358", size = 594156 }, - { url = "https://files.pythonhosted.org/packages/70/79/0de5e62b873e08fe3cef7dbe84e5c4bc0e8ed0c7ff131bccb8405cd107c8/greenlet-3.3.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:442b6057453c8cb29b4fb36a2ac689382fc71112273726e2423f7f17dc73bf99", size = 1554649 }, - { url = "https://files.pythonhosted.org/packages/5a/00/32d30dee8389dc36d42170a9c66217757289e2afb0de59a3565260f38373/greenlet-3.3.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:45abe8eb6339518180d5a7fa47fa01945414d7cca5ecb745346fc6a87d2750be", size = 1619472 }, - { url = "https://files.pythonhosted.org/packages/f1/3a/efb2cf697fbccdf75b24e2c18025e7dfa54c4f31fab75c51d0fe79942cef/greenlet-3.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:1e692b2dae4cc7077cbb11b47d258533b48c8fde69a33d0d8a82e2fe8d8531d5", size = 230389 }, - { url = "https://files.pythonhosted.org/packages/e1/a1/65bbc059a43a7e2143ec4fc1f9e3f673e04f9c7b371a494a101422ac4fd5/greenlet-3.3.2-cp311-cp311-win_arm64.whl", hash = "sha256:02b0a8682aecd4d3c6c18edf52bc8e51eacdd75c8eac52a790a210b06aa295fd", size = 229645 }, - { url = "https://files.pythonhosted.org/packages/ea/ab/1608e5a7578e62113506740b88066bf09888322a311cff602105e619bd87/greenlet-3.3.2-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:ac8d61d4343b799d1e526db579833d72f23759c71e07181c2d2944e429eb09cd", size = 280358 }, - { url = "https://files.pythonhosted.org/packages/a5/23/0eae412a4ade4e6623ff7626e38998cb9b11e9ff1ebacaa021e4e108ec15/greenlet-3.3.2-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3ceec72030dae6ac0c8ed7591b96b70410a8be370b6a477b1dbc072856ad02bd", size = 601217 }, - { url = "https://files.pythonhosted.org/packages/f8/16/5b1678a9c07098ecb9ab2dd159fafaf12e963293e61ee8d10ecb55273e5e/greenlet-3.3.2-cp312-cp312-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a2a5be83a45ce6188c045bcc44b0ee037d6a518978de9a5d97438548b953a1ac", size = 611792 }, - { url = "https://files.pythonhosted.org/packages/5c/c5/cc09412a29e43406eba18d61c70baa936e299bc27e074e2be3806ed29098/greenlet-3.3.2-cp312-cp312-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:ae9e21c84035c490506c17002f5c8ab25f980205c3e61ddb3a2a2a2e6c411fcb", size = 626250 }, - { url = "https://files.pythonhosted.org/packages/50/1f/5155f55bd71cabd03765a4aac9ac446be129895271f73872c36ebd4b04b6/greenlet-3.3.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:43e99d1749147ac21dde49b99c9abffcbc1e2d55c67501465ef0930d6e78e070", size = 613875 }, - { url = "https://files.pythonhosted.org/packages/fc/dd/845f249c3fcd69e32df80cdab059b4be8b766ef5830a3d0aa9d6cad55beb/greenlet-3.3.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c956a19350e2c37f2c48b336a3afb4bff120b36076d9d7fb68cb44e05d95b79", size = 1571467 }, - { url = "https://files.pythonhosted.org/packages/2a/50/2649fe21fcc2b56659a452868e695634722a6655ba245d9f77f5656010bf/greenlet-3.3.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:6c6f8ba97d17a1e7d664151284cb3315fc5f8353e75221ed4324f84eb162b395", size = 1640001 }, - { url = "https://files.pythonhosted.org/packages/9b/40/cc802e067d02af8b60b6771cea7d57e21ef5e6659912814babb42b864713/greenlet-3.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:34308836d8370bddadb41f5a7ce96879b72e2fdfb4e87729330c6ab52376409f", size = 231081 }, - { url = "https://files.pythonhosted.org/packages/58/2e/fe7f36ff1982d6b10a60d5e0740c759259a7d6d2e1dc41da6d96de32fff6/greenlet-3.3.2-cp312-cp312-win_arm64.whl", hash = "sha256:d3a62fa76a32b462a97198e4c9e99afb9ab375115e74e9a83ce180e7a496f643", size = 230331 }, - { url = "https://files.pythonhosted.org/packages/ac/48/f8b875fa7dea7dd9b33245e37f065af59df6a25af2f9561efa8d822fde51/greenlet-3.3.2-cp313-cp313-macosx_11_0_universal2.whl", hash = "sha256:aa6ac98bdfd716a749b84d4034486863fd81c3abde9aa3cf8eff9127981a4ae4", size = 279120 }, - { url = "https://files.pythonhosted.org/packages/49/8d/9771d03e7a8b1ee456511961e1b97a6d77ae1dea4a34a5b98eee706689d3/greenlet-3.3.2-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ab0c7e7901a00bc0a7284907273dc165b32e0d109a6713babd04471327ff7986", size = 603238 }, - { url = "https://files.pythonhosted.org/packages/59/0e/4223c2bbb63cd5c97f28ffb2a8aee71bdfb30b323c35d409450f51b91e3e/greenlet-3.3.2-cp313-cp313-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:d248d8c23c67d2291ffd47af766e2a3aa9fa1c6703155c099feb11f526c63a92", size = 614219 }, - { url = "https://files.pythonhosted.org/packages/94/2b/4d012a69759ac9d77210b8bfb128bc621125f5b20fc398bce3940d036b1c/greenlet-3.3.2-cp313-cp313-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:ccd21bb86944ca9be6d967cf7691e658e43417782bce90b5d2faeda0ff78a7dd", size = 628268 }, - { url = "https://files.pythonhosted.org/packages/7a/34/259b28ea7a2a0c904b11cd36c79b8cef8019b26ee5dbe24e73b469dea347/greenlet-3.3.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b6997d360a4e6a4e936c0f9625b1c20416b8a0ea18a8e19cabbefc712e7397ab", size = 616774 }, - { url = "https://files.pythonhosted.org/packages/0a/03/996c2d1689d486a6e199cb0f1cf9e4aa940c500e01bdf201299d7d61fa69/greenlet-3.3.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:64970c33a50551c7c50491671265d8954046cb6e8e2999aacdd60e439b70418a", size = 1571277 }, - { url = "https://files.pythonhosted.org/packages/d9/c4/2570fc07f34a39f2caf0bf9f24b0a1a0a47bc2e8e465b2c2424821389dfc/greenlet-3.3.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:1a9172f5bf6bd88e6ba5a84e0a68afeac9dc7b6b412b245dd64f52d83c81e55b", size = 1640455 }, - { url = "https://files.pythonhosted.org/packages/91/39/5ef5aa23bc545aa0d31e1b9b55822b32c8da93ba657295840b6b34124009/greenlet-3.3.2-cp313-cp313-win_amd64.whl", hash = "sha256:a7945dd0eab63ded0a48e4dcade82939783c172290a7903ebde9e184333ca124", size = 230961 }, - { url = "https://files.pythonhosted.org/packages/62/6b/a89f8456dcb06becff288f563618e9f20deed8dd29beea14f9a168aef64b/greenlet-3.3.2-cp313-cp313-win_arm64.whl", hash = "sha256:394ead29063ee3515b4e775216cb756b2e3b4a7e55ae8fd884f17fa579e6b327", size = 230221 }, - { url = "https://files.pythonhosted.org/packages/3f/ae/8bffcbd373b57a5992cd077cbe8858fff39110480a9d50697091faea6f39/greenlet-3.3.2-cp314-cp314-macosx_11_0_universal2.whl", hash = "sha256:8d1658d7291f9859beed69a776c10822a0a799bc4bfe1bd4272bb60e62507dab", size = 279650 }, - { url = "https://files.pythonhosted.org/packages/d1/c0/45f93f348fa49abf32ac8439938726c480bd96b2a3c6f4d949ec0124b69f/greenlet-3.3.2-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:18cb1b7337bca281915b3c5d5ae19f4e76d35e1df80f4ad3c1a7be91fadf1082", size = 650295 }, - { url = "https://files.pythonhosted.org/packages/b3/de/dd7589b3f2b8372069ab3e4763ea5329940fc7ad9dcd3e272a37516d7c9b/greenlet-3.3.2-cp314-cp314-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c2e47408e8ce1c6f1ceea0dffcdf6ebb85cc09e55c7af407c99f1112016e45e9", size = 662163 }, - { url = "https://files.pythonhosted.org/packages/cd/ac/85804f74f1ccea31ba518dcc8ee6f14c79f73fe36fa1beba38930806df09/greenlet-3.3.2-cp314-cp314-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:e3cb43ce200f59483eb82949bf1835a99cf43d7571e900d7c8d5c62cdf25d2f9", size = 675371 }, - { url = "https://files.pythonhosted.org/packages/d2/d8/09bfa816572a4d83bccd6750df1926f79158b1c36c5f73786e26dbe4ee38/greenlet-3.3.2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:63d10328839d1973e5ba35e98cccbca71b232b14051fd957b6f8b6e8e80d0506", size = 664160 }, - { url = "https://files.pythonhosted.org/packages/48/cf/56832f0c8255d27f6c35d41b5ec91168d74ec721d85f01a12131eec6b93c/greenlet-3.3.2-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:8e4ab3cfb02993c8cc248ea73d7dae6cec0253e9afa311c9b37e603ca9fad2ce", size = 1619181 }, - { url = "https://files.pythonhosted.org/packages/0a/23/b90b60a4aabb4cec0796e55f25ffbfb579a907c3898cd2905c8918acaa16/greenlet-3.3.2-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:94ad81f0fd3c0c0681a018a976e5c2bd2ca2d9d94895f23e7bb1af4e8af4e2d5", size = 1687713 }, - { url = "https://files.pythonhosted.org/packages/f3/ca/2101ca3d9223a1dc125140dbc063644dca76df6ff356531eb27bc267b446/greenlet-3.3.2-cp314-cp314-win_amd64.whl", hash = "sha256:8c4dd0f3997cf2512f7601563cc90dfb8957c0cff1e3a1b23991d4ea1776c492", size = 232034 }, - { url = "https://files.pythonhosted.org/packages/f6/4a/ecf894e962a59dea60f04877eea0fd5724618da89f1867b28ee8b91e811f/greenlet-3.3.2-cp314-cp314-win_arm64.whl", hash = "sha256:cd6f9e2bbd46321ba3bbb4c8a15794d32960e3b0ae2cc4d49a1a53d314805d71", size = 231437 }, - { url = "https://files.pythonhosted.org/packages/98/6d/8f2ef704e614bcf58ed43cfb8d87afa1c285e98194ab2cfad351bf04f81e/greenlet-3.3.2-cp314-cp314t-macosx_11_0_universal2.whl", hash = "sha256:e26e72bec7ab387ac80caa7496e0f908ff954f31065b0ffc1f8ecb1338b11b54", size = 286617 }, - { url = "https://files.pythonhosted.org/packages/5e/0d/93894161d307c6ea237a43988f27eba0947b360b99ac5239ad3fe09f0b47/greenlet-3.3.2-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8b466dff7a4ffda6ca975979bab80bdadde979e29fc947ac3be4451428d8b0e4", size = 655189 }, - { url = "https://files.pythonhosted.org/packages/f5/2c/d2d506ebd8abcb57386ec4f7ba20f4030cbe56eae541bc6fd6ef399c0b41/greenlet-3.3.2-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:b8bddc5b73c9720bea487b3bffdb1840fe4e3656fba3bd40aa1489e9f37877ff", size = 658225 }, - { url = "https://files.pythonhosted.org/packages/d1/67/8197b7e7e602150938049d8e7f30de1660cfb87e4c8ee349b42b67bdb2e1/greenlet-3.3.2-cp314-cp314t-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:59b3e2c40f6706b05a9cd299c836c6aa2378cabe25d021acd80f13abf81181cf", size = 666581 }, - { url = "https://files.pythonhosted.org/packages/8e/30/3a09155fbf728673a1dea713572d2d31159f824a37c22da82127056c44e4/greenlet-3.3.2-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b26b0f4428b871a751968285a1ac9648944cea09807177ac639b030bddebcea4", size = 657907 }, - { url = "https://files.pythonhosted.org/packages/f3/fd/d05a4b7acd0154ed758797f0a43b4c0962a843bedfe980115e842c5b2d08/greenlet-3.3.2-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:1fb39a11ee2e4d94be9a76671482be9398560955c9e568550de0224e41104727", size = 1618857 }, - { url = "https://files.pythonhosted.org/packages/6f/e1/50ee92a5db521de8f35075b5eff060dd43d39ebd46c2181a2042f7070385/greenlet-3.3.2-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:20154044d9085151bc309e7689d6f7ba10027f8f5a8c0676ad398b951913d89e", size = 1680010 }, - { url = "https://files.pythonhosted.org/packages/29/4b/45d90626aef8e65336bed690106d1382f7a43665e2249017e9527df8823b/greenlet-3.3.2-cp314-cp314t-win_amd64.whl", hash = "sha256:c04c5e06ec3e022cbfe2cd4a846e1d4e50087444f875ff6d2c2ad8445495cf1a", size = 237086 }, + { url = "https://files.pythonhosted.org/packages/f3/47/16400cb42d18d7a6bb46f0626852c1718612e35dcb0dffa16bbaffdf5dd2/greenlet-3.3.2-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:c56692189a7d1c7606cb794be0a8381470d95c57ce5be03fb3d0ef57c7853b86", size = 278890, upload-time = "2026-02-20T20:19:39.263Z" }, + { url = "https://files.pythonhosted.org/packages/a3/90/42762b77a5b6aa96cd8c0e80612663d39211e8ae8a6cd47c7f1249a66262/greenlet-3.3.2-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1ebd458fa8285960f382841da585e02201b53a5ec2bac6b156fc623b5ce4499f", size = 581120, upload-time = "2026-02-20T20:47:30.161Z" }, + { url = "https://files.pythonhosted.org/packages/bf/6f/f3d64f4fa0a9c7b5c5b3c810ff1df614540d5aa7d519261b53fba55d4df9/greenlet-3.3.2-cp311-cp311-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a443358b33c4ec7b05b79a7c8b466f5d275025e750298be7340f8fc63dff2a55", size = 594363, upload-time = "2026-02-20T20:55:56.965Z" }, + { url = "https://files.pythonhosted.org/packages/9c/8b/1430a04657735a3f23116c2e0d5eb10220928846e4537a938a41b350bed6/greenlet-3.3.2-cp311-cp311-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:4375a58e49522698d3e70cc0b801c19433021b5c37686f7ce9c65b0d5c8677d2", size = 605046, upload-time = "2026-02-20T21:02:45.234Z" }, + { url = "https://files.pythonhosted.org/packages/72/83/3e06a52aca8128bdd4dcd67e932b809e76a96ab8c232a8b025b2850264c5/greenlet-3.3.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8e2cd90d413acbf5e77ae41e5d3c9b3ac1d011a756d7284d7f3f2b806bbd6358", size = 594156, upload-time = "2026-02-20T20:20:59.955Z" }, + { url = "https://files.pythonhosted.org/packages/70/79/0de5e62b873e08fe3cef7dbe84e5c4bc0e8ed0c7ff131bccb8405cd107c8/greenlet-3.3.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:442b6057453c8cb29b4fb36a2ac689382fc71112273726e2423f7f17dc73bf99", size = 1554649, upload-time = "2026-02-20T20:49:32.293Z" }, + { url = "https://files.pythonhosted.org/packages/5a/00/32d30dee8389dc36d42170a9c66217757289e2afb0de59a3565260f38373/greenlet-3.3.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:45abe8eb6339518180d5a7fa47fa01945414d7cca5ecb745346fc6a87d2750be", size = 1619472, upload-time = "2026-02-20T20:21:07.966Z" }, + { url = "https://files.pythonhosted.org/packages/f1/3a/efb2cf697fbccdf75b24e2c18025e7dfa54c4f31fab75c51d0fe79942cef/greenlet-3.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:1e692b2dae4cc7077cbb11b47d258533b48c8fde69a33d0d8a82e2fe8d8531d5", size = 230389, upload-time = "2026-02-20T20:17:18.772Z" }, + { url = "https://files.pythonhosted.org/packages/e1/a1/65bbc059a43a7e2143ec4fc1f9e3f673e04f9c7b371a494a101422ac4fd5/greenlet-3.3.2-cp311-cp311-win_arm64.whl", hash = "sha256:02b0a8682aecd4d3c6c18edf52bc8e51eacdd75c8eac52a790a210b06aa295fd", size = 229645, upload-time = "2026-02-20T20:18:18.695Z" }, + { url = "https://files.pythonhosted.org/packages/ea/ab/1608e5a7578e62113506740b88066bf09888322a311cff602105e619bd87/greenlet-3.3.2-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:ac8d61d4343b799d1e526db579833d72f23759c71e07181c2d2944e429eb09cd", size = 280358, upload-time = "2026-02-20T20:17:43.971Z" }, + { url = "https://files.pythonhosted.org/packages/a5/23/0eae412a4ade4e6623ff7626e38998cb9b11e9ff1ebacaa021e4e108ec15/greenlet-3.3.2-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3ceec72030dae6ac0c8ed7591b96b70410a8be370b6a477b1dbc072856ad02bd", size = 601217, upload-time = "2026-02-20T20:47:31.462Z" }, + { url = "https://files.pythonhosted.org/packages/f8/16/5b1678a9c07098ecb9ab2dd159fafaf12e963293e61ee8d10ecb55273e5e/greenlet-3.3.2-cp312-cp312-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a2a5be83a45ce6188c045bcc44b0ee037d6a518978de9a5d97438548b953a1ac", size = 611792, upload-time = "2026-02-20T20:55:58.423Z" }, + { url = "https://files.pythonhosted.org/packages/5c/c5/cc09412a29e43406eba18d61c70baa936e299bc27e074e2be3806ed29098/greenlet-3.3.2-cp312-cp312-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:ae9e21c84035c490506c17002f5c8ab25f980205c3e61ddb3a2a2a2e6c411fcb", size = 626250, upload-time = "2026-02-20T21:02:46.596Z" }, + { url = "https://files.pythonhosted.org/packages/50/1f/5155f55bd71cabd03765a4aac9ac446be129895271f73872c36ebd4b04b6/greenlet-3.3.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:43e99d1749147ac21dde49b99c9abffcbc1e2d55c67501465ef0930d6e78e070", size = 613875, upload-time = "2026-02-20T20:21:01.102Z" }, + { url = "https://files.pythonhosted.org/packages/fc/dd/845f249c3fcd69e32df80cdab059b4be8b766ef5830a3d0aa9d6cad55beb/greenlet-3.3.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c956a19350e2c37f2c48b336a3afb4bff120b36076d9d7fb68cb44e05d95b79", size = 1571467, upload-time = "2026-02-20T20:49:33.495Z" }, + { url = "https://files.pythonhosted.org/packages/2a/50/2649fe21fcc2b56659a452868e695634722a6655ba245d9f77f5656010bf/greenlet-3.3.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:6c6f8ba97d17a1e7d664151284cb3315fc5f8353e75221ed4324f84eb162b395", size = 1640001, upload-time = "2026-02-20T20:21:09.154Z" }, + { url = "https://files.pythonhosted.org/packages/9b/40/cc802e067d02af8b60b6771cea7d57e21ef5e6659912814babb42b864713/greenlet-3.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:34308836d8370bddadb41f5a7ce96879b72e2fdfb4e87729330c6ab52376409f", size = 231081, upload-time = "2026-02-20T20:17:28.121Z" }, + { url = "https://files.pythonhosted.org/packages/58/2e/fe7f36ff1982d6b10a60d5e0740c759259a7d6d2e1dc41da6d96de32fff6/greenlet-3.3.2-cp312-cp312-win_arm64.whl", hash = "sha256:d3a62fa76a32b462a97198e4c9e99afb9ab375115e74e9a83ce180e7a496f643", size = 230331, upload-time = "2026-02-20T20:17:23.34Z" }, + { url = "https://files.pythonhosted.org/packages/ac/48/f8b875fa7dea7dd9b33245e37f065af59df6a25af2f9561efa8d822fde51/greenlet-3.3.2-cp313-cp313-macosx_11_0_universal2.whl", hash = "sha256:aa6ac98bdfd716a749b84d4034486863fd81c3abde9aa3cf8eff9127981a4ae4", size = 279120, upload-time = "2026-02-20T20:19:01.9Z" }, + { url = "https://files.pythonhosted.org/packages/49/8d/9771d03e7a8b1ee456511961e1b97a6d77ae1dea4a34a5b98eee706689d3/greenlet-3.3.2-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ab0c7e7901a00bc0a7284907273dc165b32e0d109a6713babd04471327ff7986", size = 603238, upload-time = "2026-02-20T20:47:32.873Z" }, + { url = "https://files.pythonhosted.org/packages/59/0e/4223c2bbb63cd5c97f28ffb2a8aee71bdfb30b323c35d409450f51b91e3e/greenlet-3.3.2-cp313-cp313-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:d248d8c23c67d2291ffd47af766e2a3aa9fa1c6703155c099feb11f526c63a92", size = 614219, upload-time = "2026-02-20T20:55:59.817Z" }, + { url = "https://files.pythonhosted.org/packages/94/2b/4d012a69759ac9d77210b8bfb128bc621125f5b20fc398bce3940d036b1c/greenlet-3.3.2-cp313-cp313-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:ccd21bb86944ca9be6d967cf7691e658e43417782bce90b5d2faeda0ff78a7dd", size = 628268, upload-time = "2026-02-20T21:02:48.024Z" }, + { url = "https://files.pythonhosted.org/packages/7a/34/259b28ea7a2a0c904b11cd36c79b8cef8019b26ee5dbe24e73b469dea347/greenlet-3.3.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b6997d360a4e6a4e936c0f9625b1c20416b8a0ea18a8e19cabbefc712e7397ab", size = 616774, upload-time = "2026-02-20T20:21:02.454Z" }, + { url = "https://files.pythonhosted.org/packages/0a/03/996c2d1689d486a6e199cb0f1cf9e4aa940c500e01bdf201299d7d61fa69/greenlet-3.3.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:64970c33a50551c7c50491671265d8954046cb6e8e2999aacdd60e439b70418a", size = 1571277, upload-time = "2026-02-20T20:49:34.795Z" }, + { url = "https://files.pythonhosted.org/packages/d9/c4/2570fc07f34a39f2caf0bf9f24b0a1a0a47bc2e8e465b2c2424821389dfc/greenlet-3.3.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:1a9172f5bf6bd88e6ba5a84e0a68afeac9dc7b6b412b245dd64f52d83c81e55b", size = 1640455, upload-time = "2026-02-20T20:21:10.261Z" }, + { url = "https://files.pythonhosted.org/packages/91/39/5ef5aa23bc545aa0d31e1b9b55822b32c8da93ba657295840b6b34124009/greenlet-3.3.2-cp313-cp313-win_amd64.whl", hash = "sha256:a7945dd0eab63ded0a48e4dcade82939783c172290a7903ebde9e184333ca124", size = 230961, upload-time = "2026-02-20T20:16:58.461Z" }, + { url = "https://files.pythonhosted.org/packages/62/6b/a89f8456dcb06becff288f563618e9f20deed8dd29beea14f9a168aef64b/greenlet-3.3.2-cp313-cp313-win_arm64.whl", hash = "sha256:394ead29063ee3515b4e775216cb756b2e3b4a7e55ae8fd884f17fa579e6b327", size = 230221, upload-time = "2026-02-20T20:17:37.152Z" }, + { url = "https://files.pythonhosted.org/packages/3f/ae/8bffcbd373b57a5992cd077cbe8858fff39110480a9d50697091faea6f39/greenlet-3.3.2-cp314-cp314-macosx_11_0_universal2.whl", hash = "sha256:8d1658d7291f9859beed69a776c10822a0a799bc4bfe1bd4272bb60e62507dab", size = 279650, upload-time = "2026-02-20T20:18:00.783Z" }, + { url = "https://files.pythonhosted.org/packages/d1/c0/45f93f348fa49abf32ac8439938726c480bd96b2a3c6f4d949ec0124b69f/greenlet-3.3.2-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:18cb1b7337bca281915b3c5d5ae19f4e76d35e1df80f4ad3c1a7be91fadf1082", size = 650295, upload-time = "2026-02-20T20:47:34.036Z" }, + { url = "https://files.pythonhosted.org/packages/b3/de/dd7589b3f2b8372069ab3e4763ea5329940fc7ad9dcd3e272a37516d7c9b/greenlet-3.3.2-cp314-cp314-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c2e47408e8ce1c6f1ceea0dffcdf6ebb85cc09e55c7af407c99f1112016e45e9", size = 662163, upload-time = "2026-02-20T20:56:01.295Z" }, + { url = "https://files.pythonhosted.org/packages/cd/ac/85804f74f1ccea31ba518dcc8ee6f14c79f73fe36fa1beba38930806df09/greenlet-3.3.2-cp314-cp314-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:e3cb43ce200f59483eb82949bf1835a99cf43d7571e900d7c8d5c62cdf25d2f9", size = 675371, upload-time = "2026-02-20T21:02:49.664Z" }, + { url = "https://files.pythonhosted.org/packages/d2/d8/09bfa816572a4d83bccd6750df1926f79158b1c36c5f73786e26dbe4ee38/greenlet-3.3.2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:63d10328839d1973e5ba35e98cccbca71b232b14051fd957b6f8b6e8e80d0506", size = 664160, upload-time = "2026-02-20T20:21:04.015Z" }, + { url = "https://files.pythonhosted.org/packages/48/cf/56832f0c8255d27f6c35d41b5ec91168d74ec721d85f01a12131eec6b93c/greenlet-3.3.2-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:8e4ab3cfb02993c8cc248ea73d7dae6cec0253e9afa311c9b37e603ca9fad2ce", size = 1619181, upload-time = "2026-02-20T20:49:36.052Z" }, + { url = "https://files.pythonhosted.org/packages/0a/23/b90b60a4aabb4cec0796e55f25ffbfb579a907c3898cd2905c8918acaa16/greenlet-3.3.2-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:94ad81f0fd3c0c0681a018a976e5c2bd2ca2d9d94895f23e7bb1af4e8af4e2d5", size = 1687713, upload-time = "2026-02-20T20:21:11.684Z" }, + { url = "https://files.pythonhosted.org/packages/f3/ca/2101ca3d9223a1dc125140dbc063644dca76df6ff356531eb27bc267b446/greenlet-3.3.2-cp314-cp314-win_amd64.whl", hash = "sha256:8c4dd0f3997cf2512f7601563cc90dfb8957c0cff1e3a1b23991d4ea1776c492", size = 232034, upload-time = "2026-02-20T20:20:08.186Z" }, + { url = "https://files.pythonhosted.org/packages/f6/4a/ecf894e962a59dea60f04877eea0fd5724618da89f1867b28ee8b91e811f/greenlet-3.3.2-cp314-cp314-win_arm64.whl", hash = "sha256:cd6f9e2bbd46321ba3bbb4c8a15794d32960e3b0ae2cc4d49a1a53d314805d71", size = 231437, upload-time = "2026-02-20T20:18:59.722Z" }, + { url = "https://files.pythonhosted.org/packages/98/6d/8f2ef704e614bcf58ed43cfb8d87afa1c285e98194ab2cfad351bf04f81e/greenlet-3.3.2-cp314-cp314t-macosx_11_0_universal2.whl", hash = "sha256:e26e72bec7ab387ac80caa7496e0f908ff954f31065b0ffc1f8ecb1338b11b54", size = 286617, upload-time = "2026-02-20T20:19:29.856Z" }, + { url = "https://files.pythonhosted.org/packages/5e/0d/93894161d307c6ea237a43988f27eba0947b360b99ac5239ad3fe09f0b47/greenlet-3.3.2-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8b466dff7a4ffda6ca975979bab80bdadde979e29fc947ac3be4451428d8b0e4", size = 655189, upload-time = "2026-02-20T20:47:35.742Z" }, + { url = "https://files.pythonhosted.org/packages/f5/2c/d2d506ebd8abcb57386ec4f7ba20f4030cbe56eae541bc6fd6ef399c0b41/greenlet-3.3.2-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:b8bddc5b73c9720bea487b3bffdb1840fe4e3656fba3bd40aa1489e9f37877ff", size = 658225, upload-time = "2026-02-20T20:56:02.527Z" }, + { url = "https://files.pythonhosted.org/packages/d1/67/8197b7e7e602150938049d8e7f30de1660cfb87e4c8ee349b42b67bdb2e1/greenlet-3.3.2-cp314-cp314t-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:59b3e2c40f6706b05a9cd299c836c6aa2378cabe25d021acd80f13abf81181cf", size = 666581, upload-time = "2026-02-20T21:02:51.526Z" }, + { url = "https://files.pythonhosted.org/packages/8e/30/3a09155fbf728673a1dea713572d2d31159f824a37c22da82127056c44e4/greenlet-3.3.2-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b26b0f4428b871a751968285a1ac9648944cea09807177ac639b030bddebcea4", size = 657907, upload-time = "2026-02-20T20:21:05.259Z" }, + { url = "https://files.pythonhosted.org/packages/f3/fd/d05a4b7acd0154ed758797f0a43b4c0962a843bedfe980115e842c5b2d08/greenlet-3.3.2-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:1fb39a11ee2e4d94be9a76671482be9398560955c9e568550de0224e41104727", size = 1618857, upload-time = "2026-02-20T20:49:37.309Z" }, + { url = "https://files.pythonhosted.org/packages/6f/e1/50ee92a5db521de8f35075b5eff060dd43d39ebd46c2181a2042f7070385/greenlet-3.3.2-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:20154044d9085151bc309e7689d6f7ba10027f8f5a8c0676ad398b951913d89e", size = 1680010, upload-time = "2026-02-20T20:21:13.427Z" }, + { url = "https://files.pythonhosted.org/packages/29/4b/45d90626aef8e65336bed690106d1382f7a43665e2249017e9527df8823b/greenlet-3.3.2-cp314-cp314t-win_amd64.whl", hash = "sha256:c04c5e06ec3e022cbfe2cd4a846e1d4e50087444f875ff6d2c2ad8445495cf1a", size = 237086, upload-time = "2026-02-20T20:20:45.786Z" }, ] [[package]] name = "h11" version = "0.16.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/01/ee/02a2c011bdab74c6fb3c75474d40b3052059d95df7e73351460c8588d963/h11-0.16.0.tar.gz", hash = "sha256:4e35b956cf45792e4caa5885e69fba00bdbc6ffafbfa020300e549b208ee5ff1", size = 101250 } +sdist = { url = "https://files.pythonhosted.org/packages/01/ee/02a2c011bdab74c6fb3c75474d40b3052059d95df7e73351460c8588d963/h11-0.16.0.tar.gz", hash = "sha256:4e35b956cf45792e4caa5885e69fba00bdbc6ffafbfa020300e549b208ee5ff1", size = 101250, upload-time = "2025-04-24T03:35:25.427Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl", hash = "sha256:63cf8bbe7522de3bf65932fda1d9c2772064ffb3dae62d55932da54b31cb6c86", size = 37515 }, + { url = "https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl", hash = "sha256:63cf8bbe7522de3bf65932fda1d9c2772064ffb3dae62d55932da54b31cb6c86", size = 37515, upload-time = "2025-04-24T03:35:24.344Z" }, ] [[package]] @@ -219,9 +219,9 @@ dependencies = [ { name = "certifi" }, { name = "h11" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/06/94/82699a10bca87a5556c9c59b5963f2d039dbd239f25bc2a63907a05a14cb/httpcore-1.0.9.tar.gz", hash = "sha256:6e34463af53fd2ab5d807f399a9b45ea31c3dfa2276f15a2c3f00afff6e176e8", size = 85484 } +sdist = { url = "https://files.pythonhosted.org/packages/06/94/82699a10bca87a5556c9c59b5963f2d039dbd239f25bc2a63907a05a14cb/httpcore-1.0.9.tar.gz", hash = "sha256:6e34463af53fd2ab5d807f399a9b45ea31c3dfa2276f15a2c3f00afff6e176e8", size = 85484, upload-time = "2025-04-24T22:06:22.219Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl", hash = "sha256:2d400746a40668fc9dec9810239072b40b4484b640a8c38fd654a024c7a1bf55", size = 78784 }, + { url = "https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl", hash = "sha256:2d400746a40668fc9dec9810239072b40b4484b640a8c38fd654a024c7a1bf55", size = 78784, upload-time = "2025-04-24T22:06:20.566Z" }, ] [[package]] @@ -234,9 +234,9 @@ dependencies = [ { name = "httpcore" }, { name = "idna" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/b1/df/48c586a5fe32a0f01324ee087459e112ebb7224f646c0b5023f5e79e9956/httpx-0.28.1.tar.gz", hash = "sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc", size = 141406 } +sdist = { url = "https://files.pythonhosted.org/packages/b1/df/48c586a5fe32a0f01324ee087459e112ebb7224f646c0b5023f5e79e9956/httpx-0.28.1.tar.gz", hash = "sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc", size = 141406, upload-time = "2024-12-06T15:37:23.222Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl", hash = "sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad", size = 73517 }, + { url = "https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl", hash = "sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad", size = 73517, upload-time = "2024-12-06T15:37:21.509Z" }, ] [package.optional-dependencies] @@ -248,9 +248,9 @@ socks = [ name = "idna" version = "3.11" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/6f/6d/0703ccc57f3a7233505399edb88de3cbd678da106337b9fcde432b65ed60/idna-3.11.tar.gz", hash = "sha256:795dafcc9c04ed0c1fb032c2aa73654d8e8c5023a7df64a53f39190ada629902", size = 194582 } +sdist = { url = "https://files.pythonhosted.org/packages/6f/6d/0703ccc57f3a7233505399edb88de3cbd678da106337b9fcde432b65ed60/idna-3.11.tar.gz", hash = "sha256:795dafcc9c04ed0c1fb032c2aa73654d8e8c5023a7df64a53f39190ada629902", size = 194582, upload-time = "2025-10-12T14:55:20.501Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl", hash = "sha256:771a87f49d9defaf64091e6e6fe9c18d4833f140bd19464795bc32d966ca37ea", size = 71008 }, + { url = "https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl", hash = "sha256:771a87f49d9defaf64091e6e6fe9c18d4833f140bd19464795bc32d966ca37ea", size = 71008, upload-time = "2025-10-12T14:55:18.883Z" }, ] [[package]] @@ -262,23 +262,23 @@ dependencies = [ { name = "pyee" }, ] wheels = [ - { url = "https://files.pythonhosted.org/packages/f8/c9/9c6061d5703267f1baae6a4647bfd1862e386fbfdb97d889f6f6ae9e3f64/playwright-1.58.0-py3-none-macosx_10_13_x86_64.whl", hash = "sha256:96e3204aac292ee639edbfdef6298b4be2ea0a55a16b7068df91adac077cc606", size = 42251098 }, - { url = "https://files.pythonhosted.org/packages/e0/40/59d34a756e02f8c670f0fee987d46f7ee53d05447d43cd114ca015cb168c/playwright-1.58.0-py3-none-macosx_11_0_arm64.whl", hash = "sha256:70c763694739d28df71ed578b9c8202bb83e8fe8fb9268c04dd13afe36301f71", size = 41039625 }, - { url = "https://files.pythonhosted.org/packages/e1/ee/3ce6209c9c74a650aac9028c621f357a34ea5cd4d950700f8e2c4b7fe2c4/playwright-1.58.0-py3-none-macosx_11_0_universal2.whl", hash = "sha256:185e0132578733d02802dfddfbbc35f42be23a45ff49ccae5081f25952238117", size = 42251098 }, - { url = "https://files.pythonhosted.org/packages/f1/af/009958cbf23fac551a940d34e3206e6c7eed2b8c940d0c3afd1feb0b0589/playwright-1.58.0-py3-none-manylinux1_x86_64.whl", hash = "sha256:c95568ba1eda83812598c1dc9be60b4406dffd60b149bc1536180ad108723d6b", size = 46235268 }, - { url = "https://files.pythonhosted.org/packages/d9/a6/0e66ad04b6d3440dae73efb39540c5685c5fc95b17c8b29340b62abbd952/playwright-1.58.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f9999948f1ab541d98812de25e3a8c410776aa516d948807140aff797b4bffa", size = 45964214 }, - { url = "https://files.pythonhosted.org/packages/0e/4b/236e60ab9f6d62ed0fd32150d61f1f494cefbf02304c0061e78ed80c1c32/playwright-1.58.0-py3-none-win32.whl", hash = "sha256:1e03be090e75a0fabbdaeab65ce17c308c425d879fa48bb1d7986f96bfad0b99", size = 36815998 }, - { url = "https://files.pythonhosted.org/packages/41/f8/5ec599c5e59d2f2f336a05b4f318e733077cd5044f24adb6f86900c3e6a7/playwright-1.58.0-py3-none-win_amd64.whl", hash = "sha256:a2bf639d0ce33b3ba38de777e08697b0d8f3dc07ab6802e4ac53fb65e3907af8", size = 36816005 }, - { url = "https://files.pythonhosted.org/packages/c8/c4/cc0229fea55c87d6c9c67fe44a21e2cd28d1d558a5478ed4d617e9fb0c93/playwright-1.58.0-py3-none-win_arm64.whl", hash = "sha256:32ffe5c303901a13a0ecab91d1c3f74baf73b84f4bedbb6b935f5bc11cc98e1b", size = 33085919 }, + { url = "https://files.pythonhosted.org/packages/f8/c9/9c6061d5703267f1baae6a4647bfd1862e386fbfdb97d889f6f6ae9e3f64/playwright-1.58.0-py3-none-macosx_10_13_x86_64.whl", hash = "sha256:96e3204aac292ee639edbfdef6298b4be2ea0a55a16b7068df91adac077cc606", size = 42251098, upload-time = "2026-01-30T15:09:24.028Z" }, + { url = "https://files.pythonhosted.org/packages/e0/40/59d34a756e02f8c670f0fee987d46f7ee53d05447d43cd114ca015cb168c/playwright-1.58.0-py3-none-macosx_11_0_arm64.whl", hash = "sha256:70c763694739d28df71ed578b9c8202bb83e8fe8fb9268c04dd13afe36301f71", size = 41039625, upload-time = "2026-01-30T15:09:27.558Z" }, + { url = "https://files.pythonhosted.org/packages/e1/ee/3ce6209c9c74a650aac9028c621f357a34ea5cd4d950700f8e2c4b7fe2c4/playwright-1.58.0-py3-none-macosx_11_0_universal2.whl", hash = "sha256:185e0132578733d02802dfddfbbc35f42be23a45ff49ccae5081f25952238117", size = 42251098, upload-time = "2026-01-30T15:09:30.461Z" }, + { url = "https://files.pythonhosted.org/packages/f1/af/009958cbf23fac551a940d34e3206e6c7eed2b8c940d0c3afd1feb0b0589/playwright-1.58.0-py3-none-manylinux1_x86_64.whl", hash = "sha256:c95568ba1eda83812598c1dc9be60b4406dffd60b149bc1536180ad108723d6b", size = 46235268, upload-time = "2026-01-30T15:09:33.787Z" }, + { url = "https://files.pythonhosted.org/packages/d9/a6/0e66ad04b6d3440dae73efb39540c5685c5fc95b17c8b29340b62abbd952/playwright-1.58.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f9999948f1ab541d98812de25e3a8c410776aa516d948807140aff797b4bffa", size = 45964214, upload-time = "2026-01-30T15:09:36.751Z" }, + { url = "https://files.pythonhosted.org/packages/0e/4b/236e60ab9f6d62ed0fd32150d61f1f494cefbf02304c0061e78ed80c1c32/playwright-1.58.0-py3-none-win32.whl", hash = "sha256:1e03be090e75a0fabbdaeab65ce17c308c425d879fa48bb1d7986f96bfad0b99", size = 36815998, upload-time = "2026-01-30T15:09:39.627Z" }, + { url = "https://files.pythonhosted.org/packages/41/f8/5ec599c5e59d2f2f336a05b4f318e733077cd5044f24adb6f86900c3e6a7/playwright-1.58.0-py3-none-win_amd64.whl", hash = "sha256:a2bf639d0ce33b3ba38de777e08697b0d8f3dc07ab6802e4ac53fb65e3907af8", size = 36816005, upload-time = "2026-01-30T15:09:42.449Z" }, + { url = "https://files.pythonhosted.org/packages/c8/c4/cc0229fea55c87d6c9c67fe44a21e2cd28d1d558a5478ed4d617e9fb0c93/playwright-1.58.0-py3-none-win_arm64.whl", hash = "sha256:32ffe5c303901a13a0ecab91d1c3f74baf73b84f4bedbb6b935f5bc11cc98e1b", size = 33085919, upload-time = "2026-01-30T15:09:45.71Z" }, ] [[package]] name = "pycparser" version = "3.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/1b/7d/92392ff7815c21062bea51aa7b87d45576f649f16458d78b7cf94b9ab2e6/pycparser-3.0.tar.gz", hash = "sha256:600f49d217304a5902ac3c37e1281c9fe94e4d0489de643a9504c5cdfdfc6b29", size = 103492 } +sdist = { url = "https://files.pythonhosted.org/packages/1b/7d/92392ff7815c21062bea51aa7b87d45576f649f16458d78b7cf94b9ab2e6/pycparser-3.0.tar.gz", hash = "sha256:600f49d217304a5902ac3c37e1281c9fe94e4d0489de643a9504c5cdfdfc6b29", size = 103492, upload-time = "2026-01-21T14:26:51.89Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/0c/c3/44f3fbbfa403ea2a7c779186dc20772604442dde72947e7d01069cbe98e3/pycparser-3.0-py3-none-any.whl", hash = "sha256:b727414169a36b7d524c1c3e31839a521725078d7b2ff038656844266160a992", size = 48172 }, + { url = "https://files.pythonhosted.org/packages/0c/c3/44f3fbbfa403ea2a7c779186dc20772604442dde72947e7d01069cbe98e3/pycparser-3.0-py3-none-any.whl", hash = "sha256:b727414169a36b7d524c1c3e31839a521725078d7b2ff038656844266160a992", size = 48172, upload-time = "2026-01-21T14:26:50.693Z" }, ] [[package]] @@ -291,9 +291,9 @@ dependencies = [ { name = "typing-extensions" }, { name = "typing-inspection" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/69/44/36f1a6e523abc58ae5f928898e4aca2e0ea509b5aa6f6f392a5d882be928/pydantic-2.12.5.tar.gz", hash = "sha256:4d351024c75c0f085a9febbb665ce8c0c6ec5d30e903bdb6394b7ede26aebb49", size = 821591 } +sdist = { url = "https://files.pythonhosted.org/packages/69/44/36f1a6e523abc58ae5f928898e4aca2e0ea509b5aa6f6f392a5d882be928/pydantic-2.12.5.tar.gz", hash = "sha256:4d351024c75c0f085a9febbb665ce8c0c6ec5d30e903bdb6394b7ede26aebb49", size = 821591, upload-time = "2025-11-26T15:11:46.471Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/5a/87/b70ad306ebb6f9b585f114d0ac2137d792b48be34d732d60e597c2f8465a/pydantic-2.12.5-py3-none-any.whl", hash = "sha256:e561593fccf61e8a20fc46dfc2dfe075b8be7d0188df33f221ad1f0139180f9d", size = 463580 }, + { url = "https://files.pythonhosted.org/packages/5a/87/b70ad306ebb6f9b585f114d0ac2137d792b48be34d732d60e597c2f8465a/pydantic-2.12.5-py3-none-any.whl", hash = "sha256:e561593fccf61e8a20fc46dfc2dfe075b8be7d0188df33f221ad1f0139180f9d", size = 463580, upload-time = "2025-11-26T15:11:44.605Z" }, ] [[package]] @@ -303,94 +303,94 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/71/70/23b021c950c2addd24ec408e9ab05d59b035b39d97cdc1130e1bce647bb6/pydantic_core-2.41.5.tar.gz", hash = "sha256:08daa51ea16ad373ffd5e7606252cc32f07bc72b28284b6bc9c6df804816476e", size = 460952 } +sdist = { url = "https://files.pythonhosted.org/packages/71/70/23b021c950c2addd24ec408e9ab05d59b035b39d97cdc1130e1bce647bb6/pydantic_core-2.41.5.tar.gz", hash = "sha256:08daa51ea16ad373ffd5e7606252cc32f07bc72b28284b6bc9c6df804816476e", size = 460952, upload-time = "2025-11-04T13:43:49.098Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/e8/72/74a989dd9f2084b3d9530b0915fdda64ac48831c30dbf7c72a41a5232db8/pydantic_core-2.41.5-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:a3a52f6156e73e7ccb0f8cced536adccb7042be67cb45f9562e12b319c119da6", size = 2105873 }, - { url = "https://files.pythonhosted.org/packages/12/44/37e403fd9455708b3b942949e1d7febc02167662bf1a7da5b78ee1ea2842/pydantic_core-2.41.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7f3bf998340c6d4b0c9a2f02d6a400e51f123b59565d74dc60d252ce888c260b", size = 1899826 }, - { url = "https://files.pythonhosted.org/packages/33/7f/1d5cab3ccf44c1935a359d51a8a2a9e1a654b744b5e7f80d41b88d501eec/pydantic_core-2.41.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:378bec5c66998815d224c9ca994f1e14c0c21cb95d2f52b6021cc0b2a58f2a5a", size = 1917869 }, - { url = "https://files.pythonhosted.org/packages/6e/6a/30d94a9674a7fe4f4744052ed6c5e083424510be1e93da5bc47569d11810/pydantic_core-2.41.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e7b576130c69225432866fe2f4a469a85a54ade141d96fd396dffcf607b558f8", size = 2063890 }, - { url = "https://files.pythonhosted.org/packages/50/be/76e5d46203fcb2750e542f32e6c371ffa9b8ad17364cf94bb0818dbfb50c/pydantic_core-2.41.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6cb58b9c66f7e4179a2d5e0f849c48eff5c1fca560994d6eb6543abf955a149e", size = 2229740 }, - { url = "https://files.pythonhosted.org/packages/d3/ee/fed784df0144793489f87db310a6bbf8118d7b630ed07aa180d6067e653a/pydantic_core-2.41.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:88942d3a3dff3afc8288c21e565e476fc278902ae4d6d134f1eeda118cc830b1", size = 2350021 }, - { url = "https://files.pythonhosted.org/packages/c8/be/8fed28dd0a180dca19e72c233cbf58efa36df055e5b9d90d64fd1740b828/pydantic_core-2.41.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f31d95a179f8d64d90f6831d71fa93290893a33148d890ba15de25642c5d075b", size = 2066378 }, - { url = "https://files.pythonhosted.org/packages/b0/3b/698cf8ae1d536a010e05121b4958b1257f0b5522085e335360e53a6b1c8b/pydantic_core-2.41.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c1df3d34aced70add6f867a8cf413e299177e0c22660cc767218373d0779487b", size = 2175761 }, - { url = "https://files.pythonhosted.org/packages/b8/ba/15d537423939553116dea94ce02f9c31be0fa9d0b806d427e0308ec17145/pydantic_core-2.41.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:4009935984bd36bd2c774e13f9a09563ce8de4abaa7226f5108262fa3e637284", size = 2146303 }, - { url = "https://files.pythonhosted.org/packages/58/7f/0de669bf37d206723795f9c90c82966726a2ab06c336deba4735b55af431/pydantic_core-2.41.5-cp311-cp311-musllinux_1_1_armv7l.whl", hash = "sha256:34a64bc3441dc1213096a20fe27e8e128bd3ff89921706e83c0b1ac971276594", size = 2340355 }, - { url = "https://files.pythonhosted.org/packages/e5/de/e7482c435b83d7e3c3ee5ee4451f6e8973cff0eb6007d2872ce6383f6398/pydantic_core-2.41.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:c9e19dd6e28fdcaa5a1de679aec4141f691023916427ef9bae8584f9c2fb3b0e", size = 2319875 }, - { url = "https://files.pythonhosted.org/packages/fe/e6/8c9e81bb6dd7560e33b9053351c29f30c8194b72f2d6932888581f503482/pydantic_core-2.41.5-cp311-cp311-win32.whl", hash = "sha256:2c010c6ded393148374c0f6f0bf89d206bf3217f201faa0635dcd56bd1520f6b", size = 1987549 }, - { url = "https://files.pythonhosted.org/packages/11/66/f14d1d978ea94d1bc21fc98fcf570f9542fe55bfcc40269d4e1a21c19bf7/pydantic_core-2.41.5-cp311-cp311-win_amd64.whl", hash = "sha256:76ee27c6e9c7f16f47db7a94157112a2f3a00e958bc626e2f4ee8bec5c328fbe", size = 2011305 }, - { url = "https://files.pythonhosted.org/packages/56/d8/0e271434e8efd03186c5386671328154ee349ff0354d83c74f5caaf096ed/pydantic_core-2.41.5-cp311-cp311-win_arm64.whl", hash = "sha256:4bc36bbc0b7584de96561184ad7f012478987882ebf9f9c389b23f432ea3d90f", size = 1972902 }, - { url = "https://files.pythonhosted.org/packages/5f/5d/5f6c63eebb5afee93bcaae4ce9a898f3373ca23df3ccaef086d0233a35a7/pydantic_core-2.41.5-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:f41a7489d32336dbf2199c8c0a215390a751c5b014c2c1c5366e817202e9cdf7", size = 2110990 }, - { url = "https://files.pythonhosted.org/packages/aa/32/9c2e8ccb57c01111e0fd091f236c7b371c1bccea0fa85247ac55b1e2b6b6/pydantic_core-2.41.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:070259a8818988b9a84a449a2a7337c7f430a22acc0859c6b110aa7212a6d9c0", size = 1896003 }, - { url = "https://files.pythonhosted.org/packages/68/b8/a01b53cb0e59139fbc9e4fda3e9724ede8de279097179be4ff31f1abb65a/pydantic_core-2.41.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e96cea19e34778f8d59fe40775a7a574d95816eb150850a85a7a4c8f4b94ac69", size = 1919200 }, - { url = "https://files.pythonhosted.org/packages/38/de/8c36b5198a29bdaade07b5985e80a233a5ac27137846f3bc2d3b40a47360/pydantic_core-2.41.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ed2e99c456e3fadd05c991f8f437ef902e00eedf34320ba2b0842bd1c3ca3a75", size = 2052578 }, - { url = "https://files.pythonhosted.org/packages/00/b5/0e8e4b5b081eac6cb3dbb7e60a65907549a1ce035a724368c330112adfdd/pydantic_core-2.41.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:65840751b72fbfd82c3c640cff9284545342a4f1eb1586ad0636955b261b0b05", size = 2208504 }, - { url = "https://files.pythonhosted.org/packages/77/56/87a61aad59c7c5b9dc8caad5a41a5545cba3810c3e828708b3d7404f6cef/pydantic_core-2.41.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e536c98a7626a98feb2d3eaf75944ef6f3dbee447e1f841eae16f2f0a72d8ddc", size = 2335816 }, - { url = "https://files.pythonhosted.org/packages/0d/76/941cc9f73529988688a665a5c0ecff1112b3d95ab48f81db5f7606f522d3/pydantic_core-2.41.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eceb81a8d74f9267ef4081e246ffd6d129da5d87e37a77c9bde550cb04870c1c", size = 2075366 }, - { url = "https://files.pythonhosted.org/packages/d3/43/ebef01f69baa07a482844faaa0a591bad1ef129253ffd0cdaa9d8a7f72d3/pydantic_core-2.41.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d38548150c39b74aeeb0ce8ee1d8e82696f4a4e16ddc6de7b1d8823f7de4b9b5", size = 2171698 }, - { url = "https://files.pythonhosted.org/packages/b1/87/41f3202e4193e3bacfc2c065fab7706ebe81af46a83d3e27605029c1f5a6/pydantic_core-2.41.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:c23e27686783f60290e36827f9c626e63154b82b116d7fe9adba1fda36da706c", size = 2132603 }, - { url = "https://files.pythonhosted.org/packages/49/7d/4c00df99cb12070b6bccdef4a195255e6020a550d572768d92cc54dba91a/pydantic_core-2.41.5-cp312-cp312-musllinux_1_1_armv7l.whl", hash = "sha256:482c982f814460eabe1d3bb0adfdc583387bd4691ef00b90575ca0d2b6fe2294", size = 2329591 }, - { url = "https://files.pythonhosted.org/packages/cc/6a/ebf4b1d65d458f3cda6a7335d141305dfa19bdc61140a884d165a8a1bbc7/pydantic_core-2.41.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:bfea2a5f0b4d8d43adf9d7b8bf019fb46fdd10a2e5cde477fbcb9d1fa08c68e1", size = 2319068 }, - { url = "https://files.pythonhosted.org/packages/49/3b/774f2b5cd4192d5ab75870ce4381fd89cf218af999515baf07e7206753f0/pydantic_core-2.41.5-cp312-cp312-win32.whl", hash = "sha256:b74557b16e390ec12dca509bce9264c3bbd128f8a2c376eaa68003d7f327276d", size = 1985908 }, - { url = "https://files.pythonhosted.org/packages/86/45/00173a033c801cacf67c190fef088789394feaf88a98a7035b0e40d53dc9/pydantic_core-2.41.5-cp312-cp312-win_amd64.whl", hash = "sha256:1962293292865bca8e54702b08a4f26da73adc83dd1fcf26fbc875b35d81c815", size = 2020145 }, - { url = "https://files.pythonhosted.org/packages/f9/22/91fbc821fa6d261b376a3f73809f907cec5ca6025642c463d3488aad22fb/pydantic_core-2.41.5-cp312-cp312-win_arm64.whl", hash = "sha256:1746d4a3d9a794cacae06a5eaaccb4b8643a131d45fbc9af23e353dc0a5ba5c3", size = 1976179 }, - { url = "https://files.pythonhosted.org/packages/87/06/8806241ff1f70d9939f9af039c6c35f2360cf16e93c2ca76f184e76b1564/pydantic_core-2.41.5-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:941103c9be18ac8daf7b7adca8228f8ed6bb7a1849020f643b3a14d15b1924d9", size = 2120403 }, - { url = "https://files.pythonhosted.org/packages/94/02/abfa0e0bda67faa65fef1c84971c7e45928e108fe24333c81f3bfe35d5f5/pydantic_core-2.41.5-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:112e305c3314f40c93998e567879e887a3160bb8689ef3d2c04b6cc62c33ac34", size = 1896206 }, - { url = "https://files.pythonhosted.org/packages/15/df/a4c740c0943e93e6500f9eb23f4ca7ec9bf71b19e608ae5b579678c8d02f/pydantic_core-2.41.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0cbaad15cb0c90aa221d43c00e77bb33c93e8d36e0bf74760cd00e732d10a6a0", size = 1919307 }, - { url = "https://files.pythonhosted.org/packages/9a/e3/6324802931ae1d123528988e0e86587c2072ac2e5394b4bc2bc34b61ff6e/pydantic_core-2.41.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:03ca43e12fab6023fc79d28ca6b39b05f794ad08ec2feccc59a339b02f2b3d33", size = 2063258 }, - { url = "https://files.pythonhosted.org/packages/c9/d4/2230d7151d4957dd79c3044ea26346c148c98fbf0ee6ebd41056f2d62ab5/pydantic_core-2.41.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc799088c08fa04e43144b164feb0c13f9a0bc40503f8df3e9fde58a3c0c101e", size = 2214917 }, - { url = "https://files.pythonhosted.org/packages/e6/9f/eaac5df17a3672fef0081b6c1bb0b82b33ee89aa5cec0d7b05f52fd4a1fa/pydantic_core-2.41.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:97aeba56665b4c3235a0e52b2c2f5ae9cd071b8a8310ad27bddb3f7fb30e9aa2", size = 2332186 }, - { url = "https://files.pythonhosted.org/packages/cf/4e/35a80cae583a37cf15604b44240e45c05e04e86f9cfd766623149297e971/pydantic_core-2.41.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:406bf18d345822d6c21366031003612b9c77b3e29ffdb0f612367352aab7d586", size = 2073164 }, - { url = "https://files.pythonhosted.org/packages/bf/e3/f6e262673c6140dd3305d144d032f7bd5f7497d3871c1428521f19f9efa2/pydantic_core-2.41.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b93590ae81f7010dbe380cdeab6f515902ebcbefe0b9327cc4804d74e93ae69d", size = 2179146 }, - { url = "https://files.pythonhosted.org/packages/75/c7/20bd7fc05f0c6ea2056a4565c6f36f8968c0924f19b7d97bbfea55780e73/pydantic_core-2.41.5-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:01a3d0ab748ee531f4ea6c3e48ad9dac84ddba4b0d82291f87248f2f9de8d740", size = 2137788 }, - { url = "https://files.pythonhosted.org/packages/3a/8d/34318ef985c45196e004bc46c6eab2eda437e744c124ef0dbe1ff2c9d06b/pydantic_core-2.41.5-cp313-cp313-musllinux_1_1_armv7l.whl", hash = "sha256:6561e94ba9dacc9c61bce40e2d6bdc3bfaa0259d3ff36ace3b1e6901936d2e3e", size = 2340133 }, - { url = "https://files.pythonhosted.org/packages/9c/59/013626bf8c78a5a5d9350d12e7697d3d4de951a75565496abd40ccd46bee/pydantic_core-2.41.5-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:915c3d10f81bec3a74fbd4faebe8391013ba61e5a1a8d48c4455b923bdda7858", size = 2324852 }, - { url = "https://files.pythonhosted.org/packages/1a/d9/c248c103856f807ef70c18a4f986693a46a8ffe1602e5d361485da502d20/pydantic_core-2.41.5-cp313-cp313-win32.whl", hash = "sha256:650ae77860b45cfa6e2cdafc42618ceafab3a2d9a3811fcfbd3bbf8ac3c40d36", size = 1994679 }, - { url = "https://files.pythonhosted.org/packages/9e/8b/341991b158ddab181cff136acd2552c9f35bd30380422a639c0671e99a91/pydantic_core-2.41.5-cp313-cp313-win_amd64.whl", hash = "sha256:79ec52ec461e99e13791ec6508c722742ad745571f234ea6255bed38c6480f11", size = 2019766 }, - { url = "https://files.pythonhosted.org/packages/73/7d/f2f9db34af103bea3e09735bb40b021788a5e834c81eedb541991badf8f5/pydantic_core-2.41.5-cp313-cp313-win_arm64.whl", hash = "sha256:3f84d5c1b4ab906093bdc1ff10484838aca54ef08de4afa9de0f5f14d69639cd", size = 1981005 }, - { url = "https://files.pythonhosted.org/packages/ea/28/46b7c5c9635ae96ea0fbb779e271a38129df2550f763937659ee6c5dbc65/pydantic_core-2.41.5-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:3f37a19d7ebcdd20b96485056ba9e8b304e27d9904d233d7b1015db320e51f0a", size = 2119622 }, - { url = "https://files.pythonhosted.org/packages/74/1a/145646e5687e8d9a1e8d09acb278c8535ebe9e972e1f162ed338a622f193/pydantic_core-2.41.5-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:1d1d9764366c73f996edd17abb6d9d7649a7eb690006ab6adbda117717099b14", size = 1891725 }, - { url = "https://files.pythonhosted.org/packages/23/04/e89c29e267b8060b40dca97bfc64a19b2a3cf99018167ea1677d96368273/pydantic_core-2.41.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:25e1c2af0fce638d5f1988b686f3b3ea8cd7de5f244ca147c777769e798a9cd1", size = 1915040 }, - { url = "https://files.pythonhosted.org/packages/84/a3/15a82ac7bd97992a82257f777b3583d3e84bdb06ba6858f745daa2ec8a85/pydantic_core-2.41.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:506d766a8727beef16b7adaeb8ee6217c64fc813646b424d0804d67c16eddb66", size = 2063691 }, - { url = "https://files.pythonhosted.org/packages/74/9b/0046701313c6ef08c0c1cf0e028c67c770a4e1275ca73131563c5f2a310a/pydantic_core-2.41.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4819fa52133c9aa3c387b3328f25c1facc356491e6135b459f1de698ff64d869", size = 2213897 }, - { url = "https://files.pythonhosted.org/packages/8a/cd/6bac76ecd1b27e75a95ca3a9a559c643b3afcd2dd62086d4b7a32a18b169/pydantic_core-2.41.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2b761d210c9ea91feda40d25b4efe82a1707da2ef62901466a42492c028553a2", size = 2333302 }, - { url = "https://files.pythonhosted.org/packages/4c/d2/ef2074dc020dd6e109611a8be4449b98cd25e1b9b8a303c2f0fca2f2bcf7/pydantic_core-2.41.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:22f0fb8c1c583a3b6f24df2470833b40207e907b90c928cc8d3594b76f874375", size = 2064877 }, - { url = "https://files.pythonhosted.org/packages/18/66/e9db17a9a763d72f03de903883c057b2592c09509ccfe468187f2a2eef29/pydantic_core-2.41.5-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2782c870e99878c634505236d81e5443092fba820f0373997ff75f90f68cd553", size = 2180680 }, - { url = "https://files.pythonhosted.org/packages/d3/9e/3ce66cebb929f3ced22be85d4c2399b8e85b622db77dad36b73c5387f8f8/pydantic_core-2.41.5-cp314-cp314-musllinux_1_1_aarch64.whl", hash = "sha256:0177272f88ab8312479336e1d777f6b124537d47f2123f89cb37e0accea97f90", size = 2138960 }, - { url = "https://files.pythonhosted.org/packages/a6/62/205a998f4327d2079326b01abee48e502ea739d174f0a89295c481a2272e/pydantic_core-2.41.5-cp314-cp314-musllinux_1_1_armv7l.whl", hash = "sha256:63510af5e38f8955b8ee5687740d6ebf7c2a0886d15a6d65c32814613681bc07", size = 2339102 }, - { url = "https://files.pythonhosted.org/packages/3c/0d/f05e79471e889d74d3d88f5bd20d0ed189ad94c2423d81ff8d0000aab4ff/pydantic_core-2.41.5-cp314-cp314-musllinux_1_1_x86_64.whl", hash = "sha256:e56ba91f47764cc14f1daacd723e3e82d1a89d783f0f5afe9c364b8bb491ccdb", size = 2326039 }, - { url = "https://files.pythonhosted.org/packages/ec/e1/e08a6208bb100da7e0c4b288eed624a703f4d129bde2da475721a80cab32/pydantic_core-2.41.5-cp314-cp314-win32.whl", hash = "sha256:aec5cf2fd867b4ff45b9959f8b20ea3993fc93e63c7363fe6851424c8a7e7c23", size = 1995126 }, - { url = "https://files.pythonhosted.org/packages/48/5d/56ba7b24e9557f99c9237e29f5c09913c81eeb2f3217e40e922353668092/pydantic_core-2.41.5-cp314-cp314-win_amd64.whl", hash = "sha256:8e7c86f27c585ef37c35e56a96363ab8de4e549a95512445b85c96d3e2f7c1bf", size = 2015489 }, - { url = "https://files.pythonhosted.org/packages/4e/bb/f7a190991ec9e3e0ba22e4993d8755bbc4a32925c0b5b42775c03e8148f9/pydantic_core-2.41.5-cp314-cp314-win_arm64.whl", hash = "sha256:e672ba74fbc2dc8eea59fb6d4aed6845e6905fc2a8afe93175d94a83ba2a01a0", size = 1977288 }, - { url = "https://files.pythonhosted.org/packages/92/ed/77542d0c51538e32e15afe7899d79efce4b81eee631d99850edc2f5e9349/pydantic_core-2.41.5-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:8566def80554c3faa0e65ac30ab0932b9e3a5cd7f8323764303d468e5c37595a", size = 2120255 }, - { url = "https://files.pythonhosted.org/packages/bb/3d/6913dde84d5be21e284439676168b28d8bbba5600d838b9dca99de0fad71/pydantic_core-2.41.5-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:b80aa5095cd3109962a298ce14110ae16b8c1aece8b72f9dafe81cf597ad80b3", size = 1863760 }, - { url = "https://files.pythonhosted.org/packages/5a/f0/e5e6b99d4191da102f2b0eb9687aaa7f5bea5d9964071a84effc3e40f997/pydantic_core-2.41.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3006c3dd9ba34b0c094c544c6006cc79e87d8612999f1a5d43b769b89181f23c", size = 1878092 }, - { url = "https://files.pythonhosted.org/packages/71/48/36fb760642d568925953bcc8116455513d6e34c4beaa37544118c36aba6d/pydantic_core-2.41.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:72f6c8b11857a856bcfa48c86f5368439f74453563f951e473514579d44aa612", size = 2053385 }, - { url = "https://files.pythonhosted.org/packages/20/25/92dc684dd8eb75a234bc1c764b4210cf2646479d54b47bf46061657292a8/pydantic_core-2.41.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5cb1b2f9742240e4bb26b652a5aeb840aa4b417c7748b6f8387927bc6e45e40d", size = 2218832 }, - { url = "https://files.pythonhosted.org/packages/e2/09/f53e0b05023d3e30357d82eb35835d0f6340ca344720a4599cd663dca599/pydantic_core-2.41.5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bd3d54f38609ff308209bd43acea66061494157703364ae40c951f83ba99a1a9", size = 2327585 }, - { url = "https://files.pythonhosted.org/packages/aa/4e/2ae1aa85d6af35a39b236b1b1641de73f5a6ac4d5a7509f77b814885760c/pydantic_core-2.41.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2ff4321e56e879ee8d2a879501c8e469414d948f4aba74a2d4593184eb326660", size = 2041078 }, - { url = "https://files.pythonhosted.org/packages/cd/13/2e215f17f0ef326fc72afe94776edb77525142c693767fc347ed6288728d/pydantic_core-2.41.5-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d0d2568a8c11bf8225044aa94409e21da0cb09dcdafe9ecd10250b2baad531a9", size = 2173914 }, - { url = "https://files.pythonhosted.org/packages/02/7a/f999a6dcbcd0e5660bc348a3991c8915ce6599f4f2c6ac22f01d7a10816c/pydantic_core-2.41.5-cp314-cp314t-musllinux_1_1_aarch64.whl", hash = "sha256:a39455728aabd58ceabb03c90e12f71fd30fa69615760a075b9fec596456ccc3", size = 2129560 }, - { url = "https://files.pythonhosted.org/packages/3a/b1/6c990ac65e3b4c079a4fb9f5b05f5b013afa0f4ed6780a3dd236d2cbdc64/pydantic_core-2.41.5-cp314-cp314t-musllinux_1_1_armv7l.whl", hash = "sha256:239edca560d05757817c13dc17c50766136d21f7cd0fac50295499ae24f90fdf", size = 2329244 }, - { url = "https://files.pythonhosted.org/packages/d9/02/3c562f3a51afd4d88fff8dffb1771b30cfdfd79befd9883ee094f5b6c0d8/pydantic_core-2.41.5-cp314-cp314t-musllinux_1_1_x86_64.whl", hash = "sha256:2a5e06546e19f24c6a96a129142a75cee553cc018ffee48a460059b1185f4470", size = 2331955 }, - { url = "https://files.pythonhosted.org/packages/5c/96/5fb7d8c3c17bc8c62fdb031c47d77a1af698f1d7a406b0f79aaa1338f9ad/pydantic_core-2.41.5-cp314-cp314t-win32.whl", hash = "sha256:b4ececa40ac28afa90871c2cc2b9ffd2ff0bf749380fbdf57d165fd23da353aa", size = 1988906 }, - { url = "https://files.pythonhosted.org/packages/22/ed/182129d83032702912c2e2d8bbe33c036f342cc735737064668585dac28f/pydantic_core-2.41.5-cp314-cp314t-win_amd64.whl", hash = "sha256:80aa89cad80b32a912a65332f64a4450ed00966111b6615ca6816153d3585a8c", size = 1981607 }, - { url = "https://files.pythonhosted.org/packages/9f/ed/068e41660b832bb0b1aa5b58011dea2a3fe0ba7861ff38c4d4904c1c1a99/pydantic_core-2.41.5-cp314-cp314t-win_arm64.whl", hash = "sha256:35b44f37a3199f771c3eaa53051bc8a70cd7b54f333531c59e29fd4db5d15008", size = 1974769 }, - { url = "https://files.pythonhosted.org/packages/11/72/90fda5ee3b97e51c494938a4a44c3a35a9c96c19bba12372fb9c634d6f57/pydantic_core-2.41.5-graalpy311-graalpy242_311_native-macosx_10_12_x86_64.whl", hash = "sha256:b96d5f26b05d03cc60f11a7761a5ded1741da411e7fe0909e27a5e6a0cb7b034", size = 2115441 }, - { url = "https://files.pythonhosted.org/packages/1f/53/8942f884fa33f50794f119012dc6a1a02ac43a56407adaac20463df8e98f/pydantic_core-2.41.5-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl", hash = "sha256:634e8609e89ceecea15e2d61bc9ac3718caaaa71963717bf3c8f38bfde64242c", size = 1930291 }, - { url = "https://files.pythonhosted.org/packages/79/c8/ecb9ed9cd942bce09fc888ee960b52654fbdbede4ba6c2d6e0d3b1d8b49c/pydantic_core-2.41.5-graalpy311-graalpy242_311_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:93e8740d7503eb008aa2df04d3b9735f845d43ae845e6dcd2be0b55a2da43cd2", size = 1948632 }, - { url = "https://files.pythonhosted.org/packages/2e/1b/687711069de7efa6af934e74f601e2a4307365e8fdc404703afc453eab26/pydantic_core-2.41.5-graalpy311-graalpy242_311_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f15489ba13d61f670dcc96772e733aad1a6f9c429cc27574c6cdaed82d0146ad", size = 2138905 }, - { url = "https://files.pythonhosted.org/packages/09/32/59b0c7e63e277fa7911c2fc70ccfb45ce4b98991e7ef37110663437005af/pydantic_core-2.41.5-graalpy312-graalpy250_312_native-macosx_10_12_x86_64.whl", hash = "sha256:7da7087d756b19037bc2c06edc6c170eeef3c3bafcb8f532ff17d64dc427adfd", size = 2110495 }, - { url = "https://files.pythonhosted.org/packages/aa/81/05e400037eaf55ad400bcd318c05bb345b57e708887f07ddb2d20e3f0e98/pydantic_core-2.41.5-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl", hash = "sha256:aabf5777b5c8ca26f7824cb4a120a740c9588ed58df9b2d196ce92fba42ff8dc", size = 1915388 }, - { url = "https://files.pythonhosted.org/packages/6e/0d/e3549b2399f71d56476b77dbf3cf8937cec5cd70536bdc0e374a421d0599/pydantic_core-2.41.5-graalpy312-graalpy250_312_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c007fe8a43d43b3969e8469004e9845944f1a80e6acd47c150856bb87f230c56", size = 1942879 }, - { url = "https://files.pythonhosted.org/packages/f7/07/34573da085946b6a313d7c42f82f16e8920bfd730665de2d11c0c37a74b5/pydantic_core-2.41.5-graalpy312-graalpy250_312_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:76d0819de158cd855d1cbb8fcafdf6f5cf1eb8e470abe056d5d161106e38062b", size = 2139017 }, - { url = "https://files.pythonhosted.org/packages/5f/9b/1b3f0e9f9305839d7e84912f9e8bfbd191ed1b1ef48083609f0dabde978c/pydantic_core-2.41.5-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:b2379fa7ed44ddecb5bfe4e48577d752db9fc10be00a6b7446e9663ba143de26", size = 2101980 }, - { url = "https://files.pythonhosted.org/packages/a4/ed/d71fefcb4263df0da6a85b5d8a7508360f2f2e9b3bf5814be9c8bccdccc1/pydantic_core-2.41.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:266fb4cbf5e3cbd0b53669a6d1b039c45e3ce651fd5442eff4d07c2cc8d66808", size = 1923865 }, - { url = "https://files.pythonhosted.org/packages/ce/3a/626b38db460d675f873e4444b4bb030453bbe7b4ba55df821d026a0493c4/pydantic_core-2.41.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:58133647260ea01e4d0500089a8c4f07bd7aa6ce109682b1426394988d8aaacc", size = 2134256 }, - { url = "https://files.pythonhosted.org/packages/83/d9/8412d7f06f616bbc053d30cb4e5f76786af3221462ad5eee1f202021eb4e/pydantic_core-2.41.5-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:287dad91cfb551c363dc62899a80e9e14da1f0e2b6ebde82c806612ca2a13ef1", size = 2174762 }, - { url = "https://files.pythonhosted.org/packages/55/4c/162d906b8e3ba3a99354e20faa1b49a85206c47de97a639510a0e673f5da/pydantic_core-2.41.5-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:03b77d184b9eb40240ae9fd676ca364ce1085f203e1b1256f8ab9984dca80a84", size = 2143141 }, - { url = "https://files.pythonhosted.org/packages/1f/f2/f11dd73284122713f5f89fc940f370d035fa8e1e078d446b3313955157fe/pydantic_core-2.41.5-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl", hash = "sha256:a668ce24de96165bb239160b3d854943128f4334822900534f2fe947930e5770", size = 2330317 }, - { url = "https://files.pythonhosted.org/packages/88/9d/b06ca6acfe4abb296110fb1273a4d848a0bfb2ff65f3ee92127b3244e16b/pydantic_core-2.41.5-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:f14f8f046c14563f8eb3f45f499cc658ab8d10072961e07225e507adb700e93f", size = 2316992 }, - { url = "https://files.pythonhosted.org/packages/36/c7/cfc8e811f061c841d7990b0201912c3556bfeb99cdcb7ed24adc8d6f8704/pydantic_core-2.41.5-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:56121965f7a4dc965bff783d70b907ddf3d57f6eba29b6d2e5dabfaf07799c51", size = 2145302 }, + { url = "https://files.pythonhosted.org/packages/e8/72/74a989dd9f2084b3d9530b0915fdda64ac48831c30dbf7c72a41a5232db8/pydantic_core-2.41.5-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:a3a52f6156e73e7ccb0f8cced536adccb7042be67cb45f9562e12b319c119da6", size = 2105873, upload-time = "2025-11-04T13:39:31.373Z" }, + { url = "https://files.pythonhosted.org/packages/12/44/37e403fd9455708b3b942949e1d7febc02167662bf1a7da5b78ee1ea2842/pydantic_core-2.41.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7f3bf998340c6d4b0c9a2f02d6a400e51f123b59565d74dc60d252ce888c260b", size = 1899826, upload-time = "2025-11-04T13:39:32.897Z" }, + { url = "https://files.pythonhosted.org/packages/33/7f/1d5cab3ccf44c1935a359d51a8a2a9e1a654b744b5e7f80d41b88d501eec/pydantic_core-2.41.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:378bec5c66998815d224c9ca994f1e14c0c21cb95d2f52b6021cc0b2a58f2a5a", size = 1917869, upload-time = "2025-11-04T13:39:34.469Z" }, + { url = "https://files.pythonhosted.org/packages/6e/6a/30d94a9674a7fe4f4744052ed6c5e083424510be1e93da5bc47569d11810/pydantic_core-2.41.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e7b576130c69225432866fe2f4a469a85a54ade141d96fd396dffcf607b558f8", size = 2063890, upload-time = "2025-11-04T13:39:36.053Z" }, + { url = "https://files.pythonhosted.org/packages/50/be/76e5d46203fcb2750e542f32e6c371ffa9b8ad17364cf94bb0818dbfb50c/pydantic_core-2.41.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6cb58b9c66f7e4179a2d5e0f849c48eff5c1fca560994d6eb6543abf955a149e", size = 2229740, upload-time = "2025-11-04T13:39:37.753Z" }, + { url = "https://files.pythonhosted.org/packages/d3/ee/fed784df0144793489f87db310a6bbf8118d7b630ed07aa180d6067e653a/pydantic_core-2.41.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:88942d3a3dff3afc8288c21e565e476fc278902ae4d6d134f1eeda118cc830b1", size = 2350021, upload-time = "2025-11-04T13:39:40.94Z" }, + { url = "https://files.pythonhosted.org/packages/c8/be/8fed28dd0a180dca19e72c233cbf58efa36df055e5b9d90d64fd1740b828/pydantic_core-2.41.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f31d95a179f8d64d90f6831d71fa93290893a33148d890ba15de25642c5d075b", size = 2066378, upload-time = "2025-11-04T13:39:42.523Z" }, + { url = "https://files.pythonhosted.org/packages/b0/3b/698cf8ae1d536a010e05121b4958b1257f0b5522085e335360e53a6b1c8b/pydantic_core-2.41.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c1df3d34aced70add6f867a8cf413e299177e0c22660cc767218373d0779487b", size = 2175761, upload-time = "2025-11-04T13:39:44.553Z" }, + { url = "https://files.pythonhosted.org/packages/b8/ba/15d537423939553116dea94ce02f9c31be0fa9d0b806d427e0308ec17145/pydantic_core-2.41.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:4009935984bd36bd2c774e13f9a09563ce8de4abaa7226f5108262fa3e637284", size = 2146303, upload-time = "2025-11-04T13:39:46.238Z" }, + { url = "https://files.pythonhosted.org/packages/58/7f/0de669bf37d206723795f9c90c82966726a2ab06c336deba4735b55af431/pydantic_core-2.41.5-cp311-cp311-musllinux_1_1_armv7l.whl", hash = "sha256:34a64bc3441dc1213096a20fe27e8e128bd3ff89921706e83c0b1ac971276594", size = 2340355, upload-time = "2025-11-04T13:39:48.002Z" }, + { url = "https://files.pythonhosted.org/packages/e5/de/e7482c435b83d7e3c3ee5ee4451f6e8973cff0eb6007d2872ce6383f6398/pydantic_core-2.41.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:c9e19dd6e28fdcaa5a1de679aec4141f691023916427ef9bae8584f9c2fb3b0e", size = 2319875, upload-time = "2025-11-04T13:39:49.705Z" }, + { url = "https://files.pythonhosted.org/packages/fe/e6/8c9e81bb6dd7560e33b9053351c29f30c8194b72f2d6932888581f503482/pydantic_core-2.41.5-cp311-cp311-win32.whl", hash = "sha256:2c010c6ded393148374c0f6f0bf89d206bf3217f201faa0635dcd56bd1520f6b", size = 1987549, upload-time = "2025-11-04T13:39:51.842Z" }, + { url = "https://files.pythonhosted.org/packages/11/66/f14d1d978ea94d1bc21fc98fcf570f9542fe55bfcc40269d4e1a21c19bf7/pydantic_core-2.41.5-cp311-cp311-win_amd64.whl", hash = "sha256:76ee27c6e9c7f16f47db7a94157112a2f3a00e958bc626e2f4ee8bec5c328fbe", size = 2011305, upload-time = "2025-11-04T13:39:53.485Z" }, + { url = "https://files.pythonhosted.org/packages/56/d8/0e271434e8efd03186c5386671328154ee349ff0354d83c74f5caaf096ed/pydantic_core-2.41.5-cp311-cp311-win_arm64.whl", hash = "sha256:4bc36bbc0b7584de96561184ad7f012478987882ebf9f9c389b23f432ea3d90f", size = 1972902, upload-time = "2025-11-04T13:39:56.488Z" }, + { url = "https://files.pythonhosted.org/packages/5f/5d/5f6c63eebb5afee93bcaae4ce9a898f3373ca23df3ccaef086d0233a35a7/pydantic_core-2.41.5-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:f41a7489d32336dbf2199c8c0a215390a751c5b014c2c1c5366e817202e9cdf7", size = 2110990, upload-time = "2025-11-04T13:39:58.079Z" }, + { url = "https://files.pythonhosted.org/packages/aa/32/9c2e8ccb57c01111e0fd091f236c7b371c1bccea0fa85247ac55b1e2b6b6/pydantic_core-2.41.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:070259a8818988b9a84a449a2a7337c7f430a22acc0859c6b110aa7212a6d9c0", size = 1896003, upload-time = "2025-11-04T13:39:59.956Z" }, + { url = "https://files.pythonhosted.org/packages/68/b8/a01b53cb0e59139fbc9e4fda3e9724ede8de279097179be4ff31f1abb65a/pydantic_core-2.41.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e96cea19e34778f8d59fe40775a7a574d95816eb150850a85a7a4c8f4b94ac69", size = 1919200, upload-time = "2025-11-04T13:40:02.241Z" }, + { url = "https://files.pythonhosted.org/packages/38/de/8c36b5198a29bdaade07b5985e80a233a5ac27137846f3bc2d3b40a47360/pydantic_core-2.41.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ed2e99c456e3fadd05c991f8f437ef902e00eedf34320ba2b0842bd1c3ca3a75", size = 2052578, upload-time = "2025-11-04T13:40:04.401Z" }, + { url = "https://files.pythonhosted.org/packages/00/b5/0e8e4b5b081eac6cb3dbb7e60a65907549a1ce035a724368c330112adfdd/pydantic_core-2.41.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:65840751b72fbfd82c3c640cff9284545342a4f1eb1586ad0636955b261b0b05", size = 2208504, upload-time = "2025-11-04T13:40:06.072Z" }, + { url = "https://files.pythonhosted.org/packages/77/56/87a61aad59c7c5b9dc8caad5a41a5545cba3810c3e828708b3d7404f6cef/pydantic_core-2.41.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e536c98a7626a98feb2d3eaf75944ef6f3dbee447e1f841eae16f2f0a72d8ddc", size = 2335816, upload-time = "2025-11-04T13:40:07.835Z" }, + { url = "https://files.pythonhosted.org/packages/0d/76/941cc9f73529988688a665a5c0ecff1112b3d95ab48f81db5f7606f522d3/pydantic_core-2.41.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eceb81a8d74f9267ef4081e246ffd6d129da5d87e37a77c9bde550cb04870c1c", size = 2075366, upload-time = "2025-11-04T13:40:09.804Z" }, + { url = "https://files.pythonhosted.org/packages/d3/43/ebef01f69baa07a482844faaa0a591bad1ef129253ffd0cdaa9d8a7f72d3/pydantic_core-2.41.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d38548150c39b74aeeb0ce8ee1d8e82696f4a4e16ddc6de7b1d8823f7de4b9b5", size = 2171698, upload-time = "2025-11-04T13:40:12.004Z" }, + { url = "https://files.pythonhosted.org/packages/b1/87/41f3202e4193e3bacfc2c065fab7706ebe81af46a83d3e27605029c1f5a6/pydantic_core-2.41.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:c23e27686783f60290e36827f9c626e63154b82b116d7fe9adba1fda36da706c", size = 2132603, upload-time = "2025-11-04T13:40:13.868Z" }, + { url = "https://files.pythonhosted.org/packages/49/7d/4c00df99cb12070b6bccdef4a195255e6020a550d572768d92cc54dba91a/pydantic_core-2.41.5-cp312-cp312-musllinux_1_1_armv7l.whl", hash = "sha256:482c982f814460eabe1d3bb0adfdc583387bd4691ef00b90575ca0d2b6fe2294", size = 2329591, upload-time = "2025-11-04T13:40:15.672Z" }, + { url = "https://files.pythonhosted.org/packages/cc/6a/ebf4b1d65d458f3cda6a7335d141305dfa19bdc61140a884d165a8a1bbc7/pydantic_core-2.41.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:bfea2a5f0b4d8d43adf9d7b8bf019fb46fdd10a2e5cde477fbcb9d1fa08c68e1", size = 2319068, upload-time = "2025-11-04T13:40:17.532Z" }, + { url = "https://files.pythonhosted.org/packages/49/3b/774f2b5cd4192d5ab75870ce4381fd89cf218af999515baf07e7206753f0/pydantic_core-2.41.5-cp312-cp312-win32.whl", hash = "sha256:b74557b16e390ec12dca509bce9264c3bbd128f8a2c376eaa68003d7f327276d", size = 1985908, upload-time = "2025-11-04T13:40:19.309Z" }, + { url = "https://files.pythonhosted.org/packages/86/45/00173a033c801cacf67c190fef088789394feaf88a98a7035b0e40d53dc9/pydantic_core-2.41.5-cp312-cp312-win_amd64.whl", hash = "sha256:1962293292865bca8e54702b08a4f26da73adc83dd1fcf26fbc875b35d81c815", size = 2020145, upload-time = "2025-11-04T13:40:21.548Z" }, + { url = "https://files.pythonhosted.org/packages/f9/22/91fbc821fa6d261b376a3f73809f907cec5ca6025642c463d3488aad22fb/pydantic_core-2.41.5-cp312-cp312-win_arm64.whl", hash = "sha256:1746d4a3d9a794cacae06a5eaaccb4b8643a131d45fbc9af23e353dc0a5ba5c3", size = 1976179, upload-time = "2025-11-04T13:40:23.393Z" }, + { url = "https://files.pythonhosted.org/packages/87/06/8806241ff1f70d9939f9af039c6c35f2360cf16e93c2ca76f184e76b1564/pydantic_core-2.41.5-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:941103c9be18ac8daf7b7adca8228f8ed6bb7a1849020f643b3a14d15b1924d9", size = 2120403, upload-time = "2025-11-04T13:40:25.248Z" }, + { url = "https://files.pythonhosted.org/packages/94/02/abfa0e0bda67faa65fef1c84971c7e45928e108fe24333c81f3bfe35d5f5/pydantic_core-2.41.5-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:112e305c3314f40c93998e567879e887a3160bb8689ef3d2c04b6cc62c33ac34", size = 1896206, upload-time = "2025-11-04T13:40:27.099Z" }, + { url = "https://files.pythonhosted.org/packages/15/df/a4c740c0943e93e6500f9eb23f4ca7ec9bf71b19e608ae5b579678c8d02f/pydantic_core-2.41.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0cbaad15cb0c90aa221d43c00e77bb33c93e8d36e0bf74760cd00e732d10a6a0", size = 1919307, upload-time = "2025-11-04T13:40:29.806Z" }, + { url = "https://files.pythonhosted.org/packages/9a/e3/6324802931ae1d123528988e0e86587c2072ac2e5394b4bc2bc34b61ff6e/pydantic_core-2.41.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:03ca43e12fab6023fc79d28ca6b39b05f794ad08ec2feccc59a339b02f2b3d33", size = 2063258, upload-time = "2025-11-04T13:40:33.544Z" }, + { url = "https://files.pythonhosted.org/packages/c9/d4/2230d7151d4957dd79c3044ea26346c148c98fbf0ee6ebd41056f2d62ab5/pydantic_core-2.41.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc799088c08fa04e43144b164feb0c13f9a0bc40503f8df3e9fde58a3c0c101e", size = 2214917, upload-time = "2025-11-04T13:40:35.479Z" }, + { url = "https://files.pythonhosted.org/packages/e6/9f/eaac5df17a3672fef0081b6c1bb0b82b33ee89aa5cec0d7b05f52fd4a1fa/pydantic_core-2.41.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:97aeba56665b4c3235a0e52b2c2f5ae9cd071b8a8310ad27bddb3f7fb30e9aa2", size = 2332186, upload-time = "2025-11-04T13:40:37.436Z" }, + { url = "https://files.pythonhosted.org/packages/cf/4e/35a80cae583a37cf15604b44240e45c05e04e86f9cfd766623149297e971/pydantic_core-2.41.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:406bf18d345822d6c21366031003612b9c77b3e29ffdb0f612367352aab7d586", size = 2073164, upload-time = "2025-11-04T13:40:40.289Z" }, + { url = "https://files.pythonhosted.org/packages/bf/e3/f6e262673c6140dd3305d144d032f7bd5f7497d3871c1428521f19f9efa2/pydantic_core-2.41.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b93590ae81f7010dbe380cdeab6f515902ebcbefe0b9327cc4804d74e93ae69d", size = 2179146, upload-time = "2025-11-04T13:40:42.809Z" }, + { url = "https://files.pythonhosted.org/packages/75/c7/20bd7fc05f0c6ea2056a4565c6f36f8968c0924f19b7d97bbfea55780e73/pydantic_core-2.41.5-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:01a3d0ab748ee531f4ea6c3e48ad9dac84ddba4b0d82291f87248f2f9de8d740", size = 2137788, upload-time = "2025-11-04T13:40:44.752Z" }, + { url = "https://files.pythonhosted.org/packages/3a/8d/34318ef985c45196e004bc46c6eab2eda437e744c124ef0dbe1ff2c9d06b/pydantic_core-2.41.5-cp313-cp313-musllinux_1_1_armv7l.whl", hash = "sha256:6561e94ba9dacc9c61bce40e2d6bdc3bfaa0259d3ff36ace3b1e6901936d2e3e", size = 2340133, upload-time = "2025-11-04T13:40:46.66Z" }, + { url = "https://files.pythonhosted.org/packages/9c/59/013626bf8c78a5a5d9350d12e7697d3d4de951a75565496abd40ccd46bee/pydantic_core-2.41.5-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:915c3d10f81bec3a74fbd4faebe8391013ba61e5a1a8d48c4455b923bdda7858", size = 2324852, upload-time = "2025-11-04T13:40:48.575Z" }, + { url = "https://files.pythonhosted.org/packages/1a/d9/c248c103856f807ef70c18a4f986693a46a8ffe1602e5d361485da502d20/pydantic_core-2.41.5-cp313-cp313-win32.whl", hash = "sha256:650ae77860b45cfa6e2cdafc42618ceafab3a2d9a3811fcfbd3bbf8ac3c40d36", size = 1994679, upload-time = "2025-11-04T13:40:50.619Z" }, + { url = "https://files.pythonhosted.org/packages/9e/8b/341991b158ddab181cff136acd2552c9f35bd30380422a639c0671e99a91/pydantic_core-2.41.5-cp313-cp313-win_amd64.whl", hash = "sha256:79ec52ec461e99e13791ec6508c722742ad745571f234ea6255bed38c6480f11", size = 2019766, upload-time = "2025-11-04T13:40:52.631Z" }, + { url = "https://files.pythonhosted.org/packages/73/7d/f2f9db34af103bea3e09735bb40b021788a5e834c81eedb541991badf8f5/pydantic_core-2.41.5-cp313-cp313-win_arm64.whl", hash = "sha256:3f84d5c1b4ab906093bdc1ff10484838aca54ef08de4afa9de0f5f14d69639cd", size = 1981005, upload-time = "2025-11-04T13:40:54.734Z" }, + { url = "https://files.pythonhosted.org/packages/ea/28/46b7c5c9635ae96ea0fbb779e271a38129df2550f763937659ee6c5dbc65/pydantic_core-2.41.5-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:3f37a19d7ebcdd20b96485056ba9e8b304e27d9904d233d7b1015db320e51f0a", size = 2119622, upload-time = "2025-11-04T13:40:56.68Z" }, + { url = "https://files.pythonhosted.org/packages/74/1a/145646e5687e8d9a1e8d09acb278c8535ebe9e972e1f162ed338a622f193/pydantic_core-2.41.5-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:1d1d9764366c73f996edd17abb6d9d7649a7eb690006ab6adbda117717099b14", size = 1891725, upload-time = "2025-11-04T13:40:58.807Z" }, + { url = "https://files.pythonhosted.org/packages/23/04/e89c29e267b8060b40dca97bfc64a19b2a3cf99018167ea1677d96368273/pydantic_core-2.41.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:25e1c2af0fce638d5f1988b686f3b3ea8cd7de5f244ca147c777769e798a9cd1", size = 1915040, upload-time = "2025-11-04T13:41:00.853Z" }, + { url = "https://files.pythonhosted.org/packages/84/a3/15a82ac7bd97992a82257f777b3583d3e84bdb06ba6858f745daa2ec8a85/pydantic_core-2.41.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:506d766a8727beef16b7adaeb8ee6217c64fc813646b424d0804d67c16eddb66", size = 2063691, upload-time = "2025-11-04T13:41:03.504Z" }, + { url = "https://files.pythonhosted.org/packages/74/9b/0046701313c6ef08c0c1cf0e028c67c770a4e1275ca73131563c5f2a310a/pydantic_core-2.41.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4819fa52133c9aa3c387b3328f25c1facc356491e6135b459f1de698ff64d869", size = 2213897, upload-time = "2025-11-04T13:41:05.804Z" }, + { url = "https://files.pythonhosted.org/packages/8a/cd/6bac76ecd1b27e75a95ca3a9a559c643b3afcd2dd62086d4b7a32a18b169/pydantic_core-2.41.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2b761d210c9ea91feda40d25b4efe82a1707da2ef62901466a42492c028553a2", size = 2333302, upload-time = "2025-11-04T13:41:07.809Z" }, + { url = "https://files.pythonhosted.org/packages/4c/d2/ef2074dc020dd6e109611a8be4449b98cd25e1b9b8a303c2f0fca2f2bcf7/pydantic_core-2.41.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:22f0fb8c1c583a3b6f24df2470833b40207e907b90c928cc8d3594b76f874375", size = 2064877, upload-time = "2025-11-04T13:41:09.827Z" }, + { url = "https://files.pythonhosted.org/packages/18/66/e9db17a9a763d72f03de903883c057b2592c09509ccfe468187f2a2eef29/pydantic_core-2.41.5-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2782c870e99878c634505236d81e5443092fba820f0373997ff75f90f68cd553", size = 2180680, upload-time = "2025-11-04T13:41:12.379Z" }, + { url = "https://files.pythonhosted.org/packages/d3/9e/3ce66cebb929f3ced22be85d4c2399b8e85b622db77dad36b73c5387f8f8/pydantic_core-2.41.5-cp314-cp314-musllinux_1_1_aarch64.whl", hash = "sha256:0177272f88ab8312479336e1d777f6b124537d47f2123f89cb37e0accea97f90", size = 2138960, upload-time = "2025-11-04T13:41:14.627Z" }, + { url = "https://files.pythonhosted.org/packages/a6/62/205a998f4327d2079326b01abee48e502ea739d174f0a89295c481a2272e/pydantic_core-2.41.5-cp314-cp314-musllinux_1_1_armv7l.whl", hash = "sha256:63510af5e38f8955b8ee5687740d6ebf7c2a0886d15a6d65c32814613681bc07", size = 2339102, upload-time = "2025-11-04T13:41:16.868Z" }, + { url = "https://files.pythonhosted.org/packages/3c/0d/f05e79471e889d74d3d88f5bd20d0ed189ad94c2423d81ff8d0000aab4ff/pydantic_core-2.41.5-cp314-cp314-musllinux_1_1_x86_64.whl", hash = "sha256:e56ba91f47764cc14f1daacd723e3e82d1a89d783f0f5afe9c364b8bb491ccdb", size = 2326039, upload-time = "2025-11-04T13:41:18.934Z" }, + { url = "https://files.pythonhosted.org/packages/ec/e1/e08a6208bb100da7e0c4b288eed624a703f4d129bde2da475721a80cab32/pydantic_core-2.41.5-cp314-cp314-win32.whl", hash = "sha256:aec5cf2fd867b4ff45b9959f8b20ea3993fc93e63c7363fe6851424c8a7e7c23", size = 1995126, upload-time = "2025-11-04T13:41:21.418Z" }, + { url = "https://files.pythonhosted.org/packages/48/5d/56ba7b24e9557f99c9237e29f5c09913c81eeb2f3217e40e922353668092/pydantic_core-2.41.5-cp314-cp314-win_amd64.whl", hash = "sha256:8e7c86f27c585ef37c35e56a96363ab8de4e549a95512445b85c96d3e2f7c1bf", size = 2015489, upload-time = "2025-11-04T13:41:24.076Z" }, + { url = "https://files.pythonhosted.org/packages/4e/bb/f7a190991ec9e3e0ba22e4993d8755bbc4a32925c0b5b42775c03e8148f9/pydantic_core-2.41.5-cp314-cp314-win_arm64.whl", hash = "sha256:e672ba74fbc2dc8eea59fb6d4aed6845e6905fc2a8afe93175d94a83ba2a01a0", size = 1977288, upload-time = "2025-11-04T13:41:26.33Z" }, + { url = "https://files.pythonhosted.org/packages/92/ed/77542d0c51538e32e15afe7899d79efce4b81eee631d99850edc2f5e9349/pydantic_core-2.41.5-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:8566def80554c3faa0e65ac30ab0932b9e3a5cd7f8323764303d468e5c37595a", size = 2120255, upload-time = "2025-11-04T13:41:28.569Z" }, + { url = "https://files.pythonhosted.org/packages/bb/3d/6913dde84d5be21e284439676168b28d8bbba5600d838b9dca99de0fad71/pydantic_core-2.41.5-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:b80aa5095cd3109962a298ce14110ae16b8c1aece8b72f9dafe81cf597ad80b3", size = 1863760, upload-time = "2025-11-04T13:41:31.055Z" }, + { url = "https://files.pythonhosted.org/packages/5a/f0/e5e6b99d4191da102f2b0eb9687aaa7f5bea5d9964071a84effc3e40f997/pydantic_core-2.41.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3006c3dd9ba34b0c094c544c6006cc79e87d8612999f1a5d43b769b89181f23c", size = 1878092, upload-time = "2025-11-04T13:41:33.21Z" }, + { url = "https://files.pythonhosted.org/packages/71/48/36fb760642d568925953bcc8116455513d6e34c4beaa37544118c36aba6d/pydantic_core-2.41.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:72f6c8b11857a856bcfa48c86f5368439f74453563f951e473514579d44aa612", size = 2053385, upload-time = "2025-11-04T13:41:35.508Z" }, + { url = "https://files.pythonhosted.org/packages/20/25/92dc684dd8eb75a234bc1c764b4210cf2646479d54b47bf46061657292a8/pydantic_core-2.41.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5cb1b2f9742240e4bb26b652a5aeb840aa4b417c7748b6f8387927bc6e45e40d", size = 2218832, upload-time = "2025-11-04T13:41:37.732Z" }, + { url = "https://files.pythonhosted.org/packages/e2/09/f53e0b05023d3e30357d82eb35835d0f6340ca344720a4599cd663dca599/pydantic_core-2.41.5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bd3d54f38609ff308209bd43acea66061494157703364ae40c951f83ba99a1a9", size = 2327585, upload-time = "2025-11-04T13:41:40Z" }, + { url = "https://files.pythonhosted.org/packages/aa/4e/2ae1aa85d6af35a39b236b1b1641de73f5a6ac4d5a7509f77b814885760c/pydantic_core-2.41.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2ff4321e56e879ee8d2a879501c8e469414d948f4aba74a2d4593184eb326660", size = 2041078, upload-time = "2025-11-04T13:41:42.323Z" }, + { url = "https://files.pythonhosted.org/packages/cd/13/2e215f17f0ef326fc72afe94776edb77525142c693767fc347ed6288728d/pydantic_core-2.41.5-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d0d2568a8c11bf8225044aa94409e21da0cb09dcdafe9ecd10250b2baad531a9", size = 2173914, upload-time = "2025-11-04T13:41:45.221Z" }, + { url = "https://files.pythonhosted.org/packages/02/7a/f999a6dcbcd0e5660bc348a3991c8915ce6599f4f2c6ac22f01d7a10816c/pydantic_core-2.41.5-cp314-cp314t-musllinux_1_1_aarch64.whl", hash = "sha256:a39455728aabd58ceabb03c90e12f71fd30fa69615760a075b9fec596456ccc3", size = 2129560, upload-time = "2025-11-04T13:41:47.474Z" }, + { url = "https://files.pythonhosted.org/packages/3a/b1/6c990ac65e3b4c079a4fb9f5b05f5b013afa0f4ed6780a3dd236d2cbdc64/pydantic_core-2.41.5-cp314-cp314t-musllinux_1_1_armv7l.whl", hash = "sha256:239edca560d05757817c13dc17c50766136d21f7cd0fac50295499ae24f90fdf", size = 2329244, upload-time = "2025-11-04T13:41:49.992Z" }, + { url = "https://files.pythonhosted.org/packages/d9/02/3c562f3a51afd4d88fff8dffb1771b30cfdfd79befd9883ee094f5b6c0d8/pydantic_core-2.41.5-cp314-cp314t-musllinux_1_1_x86_64.whl", hash = "sha256:2a5e06546e19f24c6a96a129142a75cee553cc018ffee48a460059b1185f4470", size = 2331955, upload-time = "2025-11-04T13:41:54.079Z" }, + { url = "https://files.pythonhosted.org/packages/5c/96/5fb7d8c3c17bc8c62fdb031c47d77a1af698f1d7a406b0f79aaa1338f9ad/pydantic_core-2.41.5-cp314-cp314t-win32.whl", hash = "sha256:b4ececa40ac28afa90871c2cc2b9ffd2ff0bf749380fbdf57d165fd23da353aa", size = 1988906, upload-time = "2025-11-04T13:41:56.606Z" }, + { url = "https://files.pythonhosted.org/packages/22/ed/182129d83032702912c2e2d8bbe33c036f342cc735737064668585dac28f/pydantic_core-2.41.5-cp314-cp314t-win_amd64.whl", hash = "sha256:80aa89cad80b32a912a65332f64a4450ed00966111b6615ca6816153d3585a8c", size = 1981607, upload-time = "2025-11-04T13:41:58.889Z" }, + { url = "https://files.pythonhosted.org/packages/9f/ed/068e41660b832bb0b1aa5b58011dea2a3fe0ba7861ff38c4d4904c1c1a99/pydantic_core-2.41.5-cp314-cp314t-win_arm64.whl", hash = "sha256:35b44f37a3199f771c3eaa53051bc8a70cd7b54f333531c59e29fd4db5d15008", size = 1974769, upload-time = "2025-11-04T13:42:01.186Z" }, + { url = "https://files.pythonhosted.org/packages/11/72/90fda5ee3b97e51c494938a4a44c3a35a9c96c19bba12372fb9c634d6f57/pydantic_core-2.41.5-graalpy311-graalpy242_311_native-macosx_10_12_x86_64.whl", hash = "sha256:b96d5f26b05d03cc60f11a7761a5ded1741da411e7fe0909e27a5e6a0cb7b034", size = 2115441, upload-time = "2025-11-04T13:42:39.557Z" }, + { url = "https://files.pythonhosted.org/packages/1f/53/8942f884fa33f50794f119012dc6a1a02ac43a56407adaac20463df8e98f/pydantic_core-2.41.5-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl", hash = "sha256:634e8609e89ceecea15e2d61bc9ac3718caaaa71963717bf3c8f38bfde64242c", size = 1930291, upload-time = "2025-11-04T13:42:42.169Z" }, + { url = "https://files.pythonhosted.org/packages/79/c8/ecb9ed9cd942bce09fc888ee960b52654fbdbede4ba6c2d6e0d3b1d8b49c/pydantic_core-2.41.5-graalpy311-graalpy242_311_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:93e8740d7503eb008aa2df04d3b9735f845d43ae845e6dcd2be0b55a2da43cd2", size = 1948632, upload-time = "2025-11-04T13:42:44.564Z" }, + { url = "https://files.pythonhosted.org/packages/2e/1b/687711069de7efa6af934e74f601e2a4307365e8fdc404703afc453eab26/pydantic_core-2.41.5-graalpy311-graalpy242_311_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f15489ba13d61f670dcc96772e733aad1a6f9c429cc27574c6cdaed82d0146ad", size = 2138905, upload-time = "2025-11-04T13:42:47.156Z" }, + { url = "https://files.pythonhosted.org/packages/09/32/59b0c7e63e277fa7911c2fc70ccfb45ce4b98991e7ef37110663437005af/pydantic_core-2.41.5-graalpy312-graalpy250_312_native-macosx_10_12_x86_64.whl", hash = "sha256:7da7087d756b19037bc2c06edc6c170eeef3c3bafcb8f532ff17d64dc427adfd", size = 2110495, upload-time = "2025-11-04T13:42:49.689Z" }, + { url = "https://files.pythonhosted.org/packages/aa/81/05e400037eaf55ad400bcd318c05bb345b57e708887f07ddb2d20e3f0e98/pydantic_core-2.41.5-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl", hash = "sha256:aabf5777b5c8ca26f7824cb4a120a740c9588ed58df9b2d196ce92fba42ff8dc", size = 1915388, upload-time = "2025-11-04T13:42:52.215Z" }, + { url = "https://files.pythonhosted.org/packages/6e/0d/e3549b2399f71d56476b77dbf3cf8937cec5cd70536bdc0e374a421d0599/pydantic_core-2.41.5-graalpy312-graalpy250_312_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c007fe8a43d43b3969e8469004e9845944f1a80e6acd47c150856bb87f230c56", size = 1942879, upload-time = "2025-11-04T13:42:56.483Z" }, + { url = "https://files.pythonhosted.org/packages/f7/07/34573da085946b6a313d7c42f82f16e8920bfd730665de2d11c0c37a74b5/pydantic_core-2.41.5-graalpy312-graalpy250_312_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:76d0819de158cd855d1cbb8fcafdf6f5cf1eb8e470abe056d5d161106e38062b", size = 2139017, upload-time = "2025-11-04T13:42:59.471Z" }, + { url = "https://files.pythonhosted.org/packages/5f/9b/1b3f0e9f9305839d7e84912f9e8bfbd191ed1b1ef48083609f0dabde978c/pydantic_core-2.41.5-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:b2379fa7ed44ddecb5bfe4e48577d752db9fc10be00a6b7446e9663ba143de26", size = 2101980, upload-time = "2025-11-04T13:43:25.97Z" }, + { url = "https://files.pythonhosted.org/packages/a4/ed/d71fefcb4263df0da6a85b5d8a7508360f2f2e9b3bf5814be9c8bccdccc1/pydantic_core-2.41.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:266fb4cbf5e3cbd0b53669a6d1b039c45e3ce651fd5442eff4d07c2cc8d66808", size = 1923865, upload-time = "2025-11-04T13:43:28.763Z" }, + { url = "https://files.pythonhosted.org/packages/ce/3a/626b38db460d675f873e4444b4bb030453bbe7b4ba55df821d026a0493c4/pydantic_core-2.41.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:58133647260ea01e4d0500089a8c4f07bd7aa6ce109682b1426394988d8aaacc", size = 2134256, upload-time = "2025-11-04T13:43:31.71Z" }, + { url = "https://files.pythonhosted.org/packages/83/d9/8412d7f06f616bbc053d30cb4e5f76786af3221462ad5eee1f202021eb4e/pydantic_core-2.41.5-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:287dad91cfb551c363dc62899a80e9e14da1f0e2b6ebde82c806612ca2a13ef1", size = 2174762, upload-time = "2025-11-04T13:43:34.744Z" }, + { url = "https://files.pythonhosted.org/packages/55/4c/162d906b8e3ba3a99354e20faa1b49a85206c47de97a639510a0e673f5da/pydantic_core-2.41.5-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:03b77d184b9eb40240ae9fd676ca364ce1085f203e1b1256f8ab9984dca80a84", size = 2143141, upload-time = "2025-11-04T13:43:37.701Z" }, + { url = "https://files.pythonhosted.org/packages/1f/f2/f11dd73284122713f5f89fc940f370d035fa8e1e078d446b3313955157fe/pydantic_core-2.41.5-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl", hash = "sha256:a668ce24de96165bb239160b3d854943128f4334822900534f2fe947930e5770", size = 2330317, upload-time = "2025-11-04T13:43:40.406Z" }, + { url = "https://files.pythonhosted.org/packages/88/9d/b06ca6acfe4abb296110fb1273a4d848a0bfb2ff65f3ee92127b3244e16b/pydantic_core-2.41.5-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:f14f8f046c14563f8eb3f45f499cc658ab8d10072961e07225e507adb700e93f", size = 2316992, upload-time = "2025-11-04T13:43:43.602Z" }, + { url = "https://files.pythonhosted.org/packages/36/c7/cfc8e811f061c841d7990b0201912c3556bfeb99cdcb7ed24adc8d6f8704/pydantic_core-2.41.5-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:56121965f7a4dc965bff783d70b907ddf3d57f6eba29b6d2e5dabfaf07799c51", size = 2145302, upload-time = "2025-11-04T13:43:46.64Z" }, ] [[package]] @@ -402,9 +402,9 @@ dependencies = [ { name = "python-dotenv" }, { name = "typing-inspection" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/52/6d/fffca34caecc4a3f97bda81b2098da5e8ab7efc9a66e819074a11955d87e/pydantic_settings-2.13.1.tar.gz", hash = "sha256:b4c11847b15237fb0171e1462bf540e294affb9b86db4d9aa5c01730bdbe4025", size = 223826 } +sdist = { url = "https://files.pythonhosted.org/packages/52/6d/fffca34caecc4a3f97bda81b2098da5e8ab7efc9a66e819074a11955d87e/pydantic_settings-2.13.1.tar.gz", hash = "sha256:b4c11847b15237fb0171e1462bf540e294affb9b86db4d9aa5c01730bdbe4025", size = 223826, upload-time = "2026-02-19T13:45:08.055Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/00/4b/ccc026168948fec4f7555b9164c724cf4125eac006e176541483d2c959be/pydantic_settings-2.13.1-py3-none-any.whl", hash = "sha256:d56fd801823dbeae7f0975e1f8c8e25c258eb75d278ea7abb5d9cebb01b56237", size = 58929 }, + { url = "https://files.pythonhosted.org/packages/00/4b/ccc026168948fec4f7555b9164c724cf4125eac006e176541483d2c959be/pydantic_settings-2.13.1-py3-none-any.whl", hash = "sha256:d56fd801823dbeae7f0975e1f8c8e25c258eb75d278ea7abb5d9cebb01b56237", size = 58929, upload-time = "2026-02-19T13:45:06.034Z" }, ] [[package]] @@ -414,36 +414,36 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/8b/04/e7c1fe4dc78a6fdbfd6c337b1c3732ff543b8a397683ab38378447baa331/pyee-13.0.1.tar.gz", hash = "sha256:0b931f7c14535667ed4c7e0d531716368715e860b988770fc7eb8578d1f67fc8", size = 31655 } +sdist = { url = "https://files.pythonhosted.org/packages/8b/04/e7c1fe4dc78a6fdbfd6c337b1c3732ff543b8a397683ab38378447baa331/pyee-13.0.1.tar.gz", hash = "sha256:0b931f7c14535667ed4c7e0d531716368715e860b988770fc7eb8578d1f67fc8", size = 31655, upload-time = "2026-02-14T21:12:28.044Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/a0/c4/b4d4827c93ef43c01f599ef31453ccc1c132b353284fc6c87d535c233129/pyee-13.0.1-py3-none-any.whl", hash = "sha256:af2f8fede4171ef667dfded53f96e2ed0d6e6bd7ee3bb46437f77e3b57689228", size = 15659 }, + { url = "https://files.pythonhosted.org/packages/a0/c4/b4d4827c93ef43c01f599ef31453ccc1c132b353284fc6c87d535c233129/pyee-13.0.1-py3-none-any.whl", hash = "sha256:af2f8fede4171ef667dfded53f96e2ed0d6e6bd7ee3bb46437f77e3b57689228", size = 15659, upload-time = "2026-02-14T21:12:26.263Z" }, ] [[package]] name = "python-dotenv" version = "1.2.2" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/82/ed/0301aeeac3e5353ef3d94b6ec08bbcabd04a72018415dcb29e588514bba8/python_dotenv-1.2.2.tar.gz", hash = "sha256:2c371a91fbd7ba082c2c1dc1f8bf89ca22564a087c2c287cd9b662adde799cf3", size = 50135 } +sdist = { url = "https://files.pythonhosted.org/packages/82/ed/0301aeeac3e5353ef3d94b6ec08bbcabd04a72018415dcb29e588514bba8/python_dotenv-1.2.2.tar.gz", hash = "sha256:2c371a91fbd7ba082c2c1dc1f8bf89ca22564a087c2c287cd9b662adde799cf3", size = 50135, upload-time = "2026-03-01T16:00:26.196Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/0b/d7/1959b9648791274998a9c3526f6d0ec8fd2233e4d4acce81bbae76b44b2a/python_dotenv-1.2.2-py3-none-any.whl", hash = "sha256:1d8214789a24de455a8b8bd8ae6fe3c6b69a5e3d64aa8a8e5d68e694bbcb285a", size = 22101 }, + { url = "https://files.pythonhosted.org/packages/0b/d7/1959b9648791274998a9c3526f6d0ec8fd2233e4d4acce81bbae76b44b2a/python_dotenv-1.2.2-py3-none-any.whl", hash = "sha256:1d8214789a24de455a8b8bd8ae6fe3c6b69a5e3d64aa8a8e5d68e694bbcb285a", size = 22101, upload-time = "2026-03-01T16:00:25.09Z" }, ] [[package]] name = "socksio" version = "1.0.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/f8/5c/48a7d9495be3d1c651198fd99dbb6ce190e2274d0f28b9051307bdec6b85/socksio-1.0.0.tar.gz", hash = "sha256:f88beb3da5b5c38b9890469de67d0cb0f9d494b78b106ca1845f96c10b91c4ac", size = 19055 } +sdist = { url = "https://files.pythonhosted.org/packages/f8/5c/48a7d9495be3d1c651198fd99dbb6ce190e2274d0f28b9051307bdec6b85/socksio-1.0.0.tar.gz", hash = "sha256:f88beb3da5b5c38b9890469de67d0cb0f9d494b78b106ca1845f96c10b91c4ac", size = 19055, upload-time = "2020-04-17T15:50:34.664Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/37/c3/6eeb6034408dac0fa653d126c9204ade96b819c936e136c5e8a6897eee9c/socksio-1.0.0-py3-none-any.whl", hash = "sha256:95dc1f15f9b34e8d7b16f06d74b8ccf48f609af32ab33c608d08761c5dcbb1f3", size = 12763 }, + { url = "https://files.pythonhosted.org/packages/37/c3/6eeb6034408dac0fa653d126c9204ade96b819c936e136c5e8a6897eee9c/socksio-1.0.0-py3-none-any.whl", hash = "sha256:95dc1f15f9b34e8d7b16f06d74b8ccf48f609af32ab33c608d08761c5dcbb1f3", size = 12763, upload-time = "2020-04-17T15:50:31.878Z" }, ] [[package]] name = "typing-extensions" version = "4.15.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/72/94/1a15dd82efb362ac84269196e94cf00f187f7ed21c242792a923cdb1c61f/typing_extensions-4.15.0.tar.gz", hash = "sha256:0cea48d173cc12fa28ecabc3b837ea3cf6f38c6d1136f85cbaaf598984861466", size = 109391 } +sdist = { url = "https://files.pythonhosted.org/packages/72/94/1a15dd82efb362ac84269196e94cf00f187f7ed21c242792a923cdb1c61f/typing_extensions-4.15.0.tar.gz", hash = "sha256:0cea48d173cc12fa28ecabc3b837ea3cf6f38c6d1136f85cbaaf598984861466", size = 109391, upload-time = "2025-08-25T13:49:26.313Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/18/67/36e9267722cc04a6b9f15c7f3441c2363321a3ea07da7ae0c0707beb2a9c/typing_extensions-4.15.0-py3-none-any.whl", hash = "sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548", size = 44614 }, + { url = "https://files.pythonhosted.org/packages/18/67/36e9267722cc04a6b9f15c7f3441c2363321a3ea07da7ae0c0707beb2a9c/typing_extensions-4.15.0-py3-none-any.whl", hash = "sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548", size = 44614, upload-time = "2025-08-25T13:49:24.86Z" }, ] [[package]] @@ -453,7 +453,7 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/55/e3/70399cb7dd41c10ac53367ae42139cf4b1ca5f36bb3dc6c9d33acdb43655/typing_inspection-0.4.2.tar.gz", hash = "sha256:ba561c48a67c5958007083d386c3295464928b01faa735ab8547c5692e87f464", size = 75949 } +sdist = { url = "https://files.pythonhosted.org/packages/55/e3/70399cb7dd41c10ac53367ae42139cf4b1ca5f36bb3dc6c9d33acdb43655/typing_inspection-0.4.2.tar.gz", hash = "sha256:ba561c48a67c5958007083d386c3295464928b01faa735ab8547c5692e87f464", size = 75949, upload-time = "2025-10-01T02:14:41.687Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/dc/9b/47798a6c91d8bdb567fe2698fe81e0c6b7cb7ef4d13da4114b41d239f65d/typing_inspection-0.4.2-py3-none-any.whl", hash = "sha256:4ed1cacbdc298c220f1bd249ed5287caa16f34d44ef4e9c3d0cbad5b521545e7", size = 14611 }, + { url = "https://files.pythonhosted.org/packages/dc/9b/47798a6c91d8bdb567fe2698fe81e0c6b7cb7ef4d13da4114b41d239f65d/typing_inspection-0.4.2-py3-none-any.whl", hash = "sha256:4ed1cacbdc298c220f1bd249ed5287caa16f34d44ef4e9c3d0cbad5b521545e7", size = 14611, upload-time = "2025-10-01T02:14:40.154Z" }, ]